It’s kind of the opposite of eclipse. People who use it like it and people who don’t have experience with it disparage it.
- 0 posts
- 9 comments
Yeah C# gets a bad rap. I spent a decade developing in C++, and Java before switching to C# because of program requirements. Now I never want to go back.
- Hugin@lemmy.worldto
Linux@programming.dev•Rust drivers expected to become more common in Linux kernel
1 yearIf you don’t code with undefined behavior compiler updates can apply to legacy code. I’ve been through enough compiler upgrades with microcontrollers that it’s old hat.
- Hugin@lemmy.worldto
Linux@programming.dev•Rust drivers expected to become more common in Linux kernel
1 yearThe nice thing is if a much better solution exists then a rust compiler that uses it can be implemented using it. Then you don’t have to rewrite all the rust code.
- Hugin@lemmy.worldto
Selfhosted@lemmy.world•Beware Hollywood’s digital demolition: it’s as if your favourite films and TV shows never existedEnglish
2 yearsFor ntsc vhs players it wasnt a component in the vcr that was made for copy protection. They would add garbled color burst signals. This would desync the automatic color burst sync system on the vcr.
CRT TVs didn’t need this component but some fancy tvs would also have the same problem with macrovission.
The color burst system was actually a pretty cool invention from the time broadcast started to add color. They needed to be able stay compatible with existing black and white tv.
The solution was to not change the black and white image being sent but add the color offset information on a higher frequency and color TVs would combine the signals.
This was easy for CRT as the electron beam would sweep across the screen changing intensity as it hit each black and white pixel.
To display color each black and white pixel was a RGB triangle of pixels. So you would add small offset to the beam up or down to make it more or less green and left or right to adjust the red and blue.
Those adjustment knobs on old tvs were in part you manually targeting the beam adjustment to hit the pixels just right.
VCRs didn’t usually have these adjustments so they needed a auto system to keep the color synced in the recording.
- Hugin@lemmy.worldto
Linux@programming.dev•20 years later, real-time Linux makes it to the kernel - really
2 yearsPretty specific use case. A normal OS handleds time slicing and core assignment for processes and uses it’s judgement for that. So at any time your process can be suspended and you don’t know when you get your next time slice.
Same with when you make wait calls. You might say wait 100ms but it may be much longer before your process gets to run again.
In a real time OS if you have real time priority the OS will suspend anything else including it self to give you the time you request. It also won’t suspend you no matter how long you use the core.
So if you need to control a process with extreme precision like a chemical manufacturing process, medical device, or flying a rocket where being 10ms late means failure they are required.
However with great power comes great responsibility. You need to make sure your code calls sleep frequently enough that other tasks have time to run. Including things like file io or the gui.
- Hugin@lemmy.worldto
Linux@programming.dev•20 years later, real-time Linux makes it to the kernel - really
2 yearsCool. I remember having to use Red Hawk Linux years ago. It’s a real time variant of Red Hat. It was such a pain to get the dependencies workin on it.
- Hugin@lemmy.worldto
Reddit@lemmy.world•Goodbye, Reddit: How the Internet’s Front Page Is Eating Itself
2 yearsYeah I remember when cmdrtaco was in charge. It was great back then. Now it’s full of anti woke stuff.




Qt Creator is my favorite IDE. I’m mostly worrking in C# these days and I so miss it.