Urbeker

joined 1 year ago
[–] Urbeker 3 points 1 year ago

I'd love to be able to do this as well. Or subscribe to a whole instance somehow.

[–] Urbeker 1 points 1 year ago

I'm wondering as a stopgap if lemmy supports something like multireddits. That way I can just see them all in one place.

[–] Urbeker 9 points 1 year ago (1 children)

I've found flatpak to have taken several design decisions that almost seem tailor made to make it hard to use. I use an app launcher as I use I3 to run apps, except I can't use it for flatpak because it doesn't just make stuff available on the path, I'd have to make a wrapper script or something at which point I've decided to use another app or package. It also had an issue where everytime I got a gpu driver update it updated every single flatpak fair enough but it kept all the old versions! It was using double digit percentage of my disk for no reason, and the response on issue for this on the repo was just this is intended behaviour.

If it wants to get mass adoption they need to work on letting it get out of the way of people trying to use it.

[–] Urbeker 5 points 1 year ago (1 children)

I'm just waiting for the inbuilt file explorer to stabilise. The only thing I miss is easy file navigation. The fuzzy searcher just isn't what I want most of the time.

[–] Urbeker 3 points 1 year ago (1 children)

A lot of ^s. It's like a weird dotnet dialect of c++ for interopt. I think they rebranded it to c++/cli. I mainly had to use it as a previous dev had written a large windows based app in it and I was lumbered with optimising it. (He was on the c++ standards committee so why he did this I don't know). To be honest I have forgotten most of the details about it.

[–] Urbeker 6 points 1 year ago (3 children)

Learnt Java first, then moved on to c# and dotnet. Job meant I needed to learn c, then shudder managed c++ then plain c++. Got pretty good at c++ and then moved on to Rust and haven't looked back, had to also pick up python recently. At some point I also learnt f# and a bit of haskell.

[–] Urbeker 3 points 1 year ago

I've been using Rust as my primary language as a professional software engineer for err 5 years? I think if you come from a background of needing to understand the concepts the compiler enforces but in a language that doesn't check them the learning curve is fine as you already learned those lessons the hard way (Random crashes and days-long debugging sessions) but if you are coming from a higher level language there is definitely a steep learning curve.

I think people love it because after you have had your fight with the compiler, almost always the program only contains logic errors not errors caused by baggage in the language.