• 0 Posts
  • 83 Comments
Joined 1 year ago
cake
Cake day: June 2nd, 2023

help-circle
  • If you’re a professor with a doctorate in Germany, the official way to refer to you is Professor Doctor [last name]. If you hold two doctorates it’s Professor Doctor Doctor.

    Professor is also a serious and registered title in Germany. You can’t just start a school and start handing out professorships without oversight and approval.



  • 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.





  • Every Olympics is a political catastrophe. I’ve now watched all too many of them. They’re huge events and all it takes is some controversy or a fuck up by some middle manager and the whole world freaks out.

    Overall, this one East that bad on France’s, except probably the river pollution thing (which I hope pushes them to long term cleanup efforts). Most of the rest was all the USA (we’re #1 in being assholes to people) being assholes. Our pearl clutching about religious insensitivity, transphobic right wing hatred, and generally bring dicks was well over the top. So, that’s not on France, but the US and our own swimming in Christian nationalist right wing sewage that spilled over onto the rest of the Olympics.


  • 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.