[-] Ogeon@programming.dev 19 points 3 weeks ago

I was a teacher's assistant in beginner's programming at university for a bit. I expected them to learn C, which I knew enough of, but I got assigned to a group that learned Python instead. I had never used Python at the time. I ended up having to speed learn it while trying to teach it, to not be completely useless.

[-] Ogeon@programming.dev 11 points 1 month ago

That's definitely part of "the deal" with MIT and Apache. The other end of it is that they shouldn't really expect to get anything more than what the authors are willing to give.

[-] Ogeon@programming.dev 18 points 2 months ago

Option<T> has a From<T> implementation that lets you write Option::from($file_path).map(|path| path.to_string()) to accept both cases in the same expression.

https://doc.rust-lang.org/std/option/enum.Option.html#impl-From%3CT%3E-for-Option%3CT%3E

[-] Ogeon@programming.dev 12 points 2 months ago

Zooming in? In this economy?!

16
submitted 3 months ago by Ogeon@programming.dev to c/rust@programming.dev

The maintainer here! Feel free to ask questions. I know especially CAM16 can feel a bit abstract if you aren't in the loop, but I will try to answer what I can. I have tried my best to explain the concepts in the docs, but it can always be better.

[-] Ogeon@programming.dev 16 points 3 months ago

A "mantra" more programmers should have is to fix the cause of the issue, and not just the symptoms. You have to understand what the problem is to be able to fix it.

[-] Ogeon@programming.dev 32 points 4 months ago* (last edited 4 months ago)

Ah, taking inspiration from late 1940's literature, I see. Smart!

[-] Ogeon@programming.dev 13 points 5 months ago

Simple features are often complex to make, and complex features are often way too simple to make.

11
submitted 5 months ago by Ogeon@programming.dev to c/rust@programming.dev

Just to reiterate what the linked blog post mentions; this isn't a bug with Iced, specifically, but seemed to have been brought into light by having Iced 0.12.0 among the dependencies. Many variants of this bug has been reported to the Rust compiler repository and some seem to be fixed by the next trait resolver.

25
submitted 6 months ago* (last edited 6 months ago) by Ogeon@programming.dev to c/rust@programming.dev

Hey, folks! Here's another update for Palette, the color crate I'm maintaining. Feel free to let me know if you have any questions or feedback! I will do my best to answer.

[-] Ogeon@programming.dev 48 points 9 months ago

It's useful for keeping track of your mental gymnastics.

[-] Ogeon@programming.dev 15 points 10 months ago

My shower has its own favorite temperature and will slowly readjust itself to it.

[-] Ogeon@programming.dev 20 points 10 months ago

Got myself a proper hiking backpack. An Osprey Exos 58L. Shifting much of the weight to the hips makes a massive difference and my back was very happy!

[-] Ogeon@programming.dev 22 points 10 months ago

Static types aside, the file system has a lot of failure cases, which every language is affected by, and Rust makes them very visible. This can indeed feel like a lot, but it's an intentional feature and makes more sense in larger projects. I guess the feeling may get amplified by the author's style of long form posts with a lot of details.

Error handling in practice contains a lot of "let the caller deal with it", using the ? operator to pass errors up the call stack. The more verbose options are for when you need to actually handle it.

[-] Ogeon@programming.dev 12 points 11 months ago* (last edited 11 months ago)

I'm of course only one single anecdotal sample, but the release cadence has probably been the least of my problems. My experience is that it's fine to not update for quite some time. I have a crate with 1.60 (released about one and a half years ago) as MSRV, which means I run unit tests with that version, as well as stable, beta and nightly. The only pressure to upgrade is that some dependencies are starting to move on. Not that the newer compilers reject my code, not even anything deprecated.

Also, small, frequent releases usually takes away a lot of the drama around upgrading, in my experience. Not the opposite. A handful of changes are easier to deal with than a whole boatload. Both for the one releasing and for the users.

11

I suppose I should start posting updates here too. 😁

view more: next ›

Ogeon

joined 1 year ago