• 0 Posts
  • 53 Comments
Joined 2 years ago
cake
Cake day: June 2nd, 2023

help-circle






  • My last job (just left it), kept giving small raises every year. I made a chart showing my actual salary against real dollars over time and the very quickly falling downard trend over the four years of been there. The admins were just like “so?”

    It took a bit, but I’m off to a new job. Fuck that place.



  • I did the same thing with the Linux machine there, but we got it up and running with a sweet potato using a patch set for the kernel and cross compiling it from the basic potato release. We did find the drivers for the VGA card we salvaged from a scrap pile too! Got it up to the full 640x480 supported by the card.

    You could say it was a sweet setup.


  • azimir@lemmy.mltoMemes@lemmy.mlRage For The Machine
    link
    fedilink
    arrow-up
    36
    arrow-down
    1
    ·
    5 months ago

    That’s part of the power of the term. Globalism is a valid term for a view about how integrated international markets foster economic and social benefits, while Globalist is often used as a racist dogwhistle. Racists often use small variations of accepted terms to conflate and low key their hatred in public venues.



  • Your perspective might be why I enjoy microcontroller work. I love getting to know everything about the system, reading hardware documentation, and getting the low level parts to work in a highly deterministic way.

    I use ATTiny85 cores when a ESP32 costs almost the same, but the 85 only has 256 bytes of SRAM and five I/O pins so I can track it all and ensure it will do exactly what I want.








  • Yeah, those durn data size fields. At first you’re like “why would you do this? It’s specified in the spec, right?” Then you start consuming the data stream and go “oh, yeah need this”.

    I was doing some driver work for a real time location tracking board. The serial stream protocol was very well documented and designed. Plenty of byte length count fields, though.


  • This approach is so much nicer than the threading/queuing approaches we used to have. One async showed up, a ton of the work go pulled out of protocol handing and distributed subsystem sync efforts.

    Long lived the multi threaded C++ server buffer! Today, async beging to rule the roost.