• 0 Posts
  • 15 Comments
Joined 1 year ago
cake
Cake day: July 13th, 2023

help-circle













  • You alluded to this already but ESP32 et al is really awesome but they (and arduino) are microcontrollers, not mini pcs like a raspi which have very different purposes.

    You CAN run a webserver on a microcontroller but you’re essentially writing a program to do so. On a raspi you’re installing a full OS and then installing apps (nginx, Apache, jellyfin etc).

    Conversely raspi has GPIO which can be used to easily interface with electronics just like the ESP32 but now you’re stuck maintaining a whole os to make your LED blink.


  • This is a good post.

    As for why people don’t like systemd, it follows the kitchen-sink approach to software and does a lot of things at once.

    For people new to Linux I just want to point out - for better or for worse this goes against the Unix philosophy.

    Write programs that do one thing and do it well. Write programs to work together. Write programs to handle text streams, because that is a universal interface.