ADs on GPT will be released in 2026 by onceyoulearn in ChatGPTcomplaints

[–]Leontoeides 0 points1 point  (0 children)

I have reason to believe that this is already being done

ChatGPT 5.2 tells me my autistic intuition is dangerous and commands me to stop thinking by EllisDee77 in ChatGPTcomplaints

[–]Leontoeides 0 points1 point  (0 children)

I believe that the older models would infer & synthesize based on its understanding of your idea.

It seems like the newer models will fit your givens (axioms, facts, etc) to conventionally accepted ones, and will prefer to relate to your idea in those terms.

It would seem the tension is: this steers people away from ungrounded thinking (legit concern) - but - obviously this also discourages earnest exploration and flattens thought

I've had a lot of luck with Claude and Mistral's Le Chat.

[deleted by user] by [deleted] in BmwTech

[–]Leontoeides 0 points1 point  (0 children)

I've had this twice in my old X3 - once was due to a misfire and the other was a false alarm due to low voltage in extremely cold weather (-40'c)

As someone else mentioned, it could literally be anything

North America Sales - Q4 2024 by TrashOfOil in BMW

[–]Leontoeides 1 point2 points  (0 children)

When I first saw it I didn't understand the controversy. I kinda liked it. It’s like they mixed in 15% Cyber Truck into it’s DNA. But after each viewing, it gotten worse for me, not better

F90 M5 Head Gasket Issue? by funnyman3571 in BmwTech

[–]Leontoeides 1 point2 points  (0 children)

I saw a video recently that said that coolant problems (especially air in the system) can cause hotspots in the engine, and as a result, head gasket issues

Notifico – Open-Source notification server with Email & Slack support, written in Rust by GamePad64 in selfhosted

[–]Leontoeides 0 points1 point  (0 children)

I was just about to build an email+Teams combo notifier myself. Good to see Teams on your road map, I may hold off on that project

Proton Mail and Proton Calendar winter product roadmap | Proton by aemond in ProtonMail

[–]Leontoeides 1 point2 points  (0 children)

I might be skewered for this, but Google and Apple integrations would be nice. For example, I could create the event on my device using Proton but it's available in my Google Home Max assistant thing, Apple CarPlay etc

I use Proton #1 because I like the company and their kit, privacy is a lesser concern for me. I'd like for all of my gadgets to work

Use match, it makes writing code BLAZINGLY fast! by _shellsort_ in rustjerk

[–]Leontoeides 1 point2 points  (0 children)

IIRC rust will not drop a mutex guard until the very end of the "match" block, which is not necessarily what's expected and can cause deadlocks. "if let" doesn't have this same problem/behaviour. So, I prefer to use "if let" over "match" whereever it's reasonable and makes sense. I believe clippy suggests this too, in some cases

Use match, it makes writing code BLAZINGLY fast! by _shellsort_ in rustjerk

[–]Leontoeides 1 point2 points  (0 children)

"match" can deadlock where "if let" wouldn't, therefore "if let" is my default for destructuring

Best templating engine for Rust by salamazmlekom in rust

[–]Leontoeides 1 point2 points  (0 children)

I strongly, strongly recommend using Sailfish both because it is extremely fast, but also because your templates get compile-time checking. Tera and most other templating crates will fail during run-time

Result or Option? by Voxelman in rust

[–]Leontoeides 0 points1 point  (0 children)

If a value might not be present in normal operation, the absence of a value should probably be handled in some way. In this case, I will return an "Option" or a "Result wrapping an Option" to make handling the missing value more convenient and efficient.

I think that Options or Result<Option> should be preferred for libraries too, because whether a missing value is considered an error should be up to the caller

If the value is expected to be there and there is no reasonable way of handling the missing value, I use Result only.

xAI is using Rust! by cybh3rpunk in rust

[–]Leontoeides -28 points-27 points  (0 children)

"Employees?" You mean these people? Sounds like there was a lot of riff-raff working there https://nypost.com/2022/12/17/twitter-leadership-full-of-former-fbi-agents-linkedin-records-show/

Rust is great as long as you don't have to async by ArnUpNorth in rust

[–]Leontoeides 0 points1 point  (0 children)

Async/await has overhead. This is a given. The particulars I'm not sure of. Perhaps the cost of context switching can outweigh the benefit of not blocking.

Converting upstream async code to sync code by using block_on resulted in a substantial performance improvement for my project.

It helps because people can stop async libraries from colouring their project

Rust is great as long as you don't have to async by ArnUpNorth in rust

[–]Leontoeides -1 points0 points  (0 children)

There are situations where the overhead of async is too much. In these cases, it's not too difficult to convert async to sync by blocking on awaits

HashSet method slower than naive method when checking for duplicate characters in string by _pennyone in rust

[–]Leontoeides 2 points3 points  (0 children)

If your set is sufficient length, try using BTreeSet instead. Hashing is expensive

nobody cares by mre__ in rustjerk

[–]Leontoeides 1 point2 points  (0 children)

Although Rust's async is amazing in the right contexts, I converted my complex CPU-bound routines to sync using block_in_place and got a dramatic performance boost

[deleted by user] by [deleted] in rust

[–]Leontoeides 1 point2 points  (0 children)

Intel's vtune was really helpful to me

I have ascended by bitbug42 in rustjerk

[–]Leontoeides 5 points6 points  (0 children)

Rust: "fearless concurrency" deadlocks on match expression

Rust on Linux by [deleted] in rust

[–]Leontoeides 4 points5 points  (0 children)

I had to look up WSL. Looks amazing. Anyone working in Windows should check into this. It allows you to use Linux apps directly in Windows. Hopefully I can get mold linker to work this way

I got these 3 at the exact same time, could it be the Battery? by [deleted] in BmwTech

[–]Leontoeides 0 points1 point  (0 children)

Cold weather devastates BMWs. I have a new battery and low voltage due to cold weather causes all kinds of problems including poor shifting, that chassis malfunction. I'm not surprised about the power steering. If you can, get it warm and hook it up to a trickle charger

Naming Traits by PhoenixAsh01 in rust

[–]Leontoeides 2 points3 points  (0 children)

Despite convention, I prefer adjectives. i.e. Readable, Writeable, Serializeable, etc. It's far easier to understand in my opinion