Von_Broheim

joined 3 years ago
[–] Von_Broheim@programming.dev 2 points 2 months ago

I wanted to use TheFuck on latest Linux Mint so I had to download the source and make some upgrades to make it work.

Another small project was a small app for extracting file differences between two folders, the idea was that I can mod games in windows, make a diff between vanilla and modded versions, then copy the diff onto my Linux machine and extract it into the game root installed there. Works great.

[–] Von_Broheim@programming.dev 1 points 2 months ago

If you use Rust you can check "Candles" too: https://docs.rs/candle-core/latest/candle_core/

[–] Von_Broheim@programming.dev 1 points 2 months ago

I use that feature every day and in multiple rooms.

[–] Von_Broheim@programming.dev 0 points 1 year ago

There's no magic in lombok, they're just meta annotations for class generation, no different than having each end every class implement some very specific interface exactly the same way every time. It's for reducing copy pasting. Debugging it is not a problem, especially that you can see the generated classes in the library files. Spring on the other hand is a black box, because it does too much and has become very bloated over the years, the goal of Spring is not to avoid using new the point is simplifying dependency injection and composition. The most fried part is the transaction management imo, because it's too delicate in the way it has to be configured.