Containers vs. Serverless
If you use microservices, you have to use service meshes. And, then your business logic ends up in meshes.
Wants, WantedBy, Requires etc explained
Want, WantedBy, Before, After etc -
Syntax for systemd files
User-configured (non-root) systemd services
An alternate option is to have an httpd.service file under webteam home directory ~/.config/systemd/user and they can start/stop/enable etc themselves: systemctl --user enable httpd.service systemctl --user start httpd.service
Contempt to programming languages that are 'not mine'
Suborbital is a company dealing with wasm
wat=wasm text format; sat=server to run wat; subo=project that oversees sat
Ask a question if Flutter built for WASM writes on canvas from WASM.
Has a simple example of Dart event loop implementation
a) add the async keyword to the main() function. b) add the await keyword in front of the future object. Result: Once Dart encounters the await keyword, it sends all the code starting from that line to the event queue and waits for the future to complete. That’s why you see the number 2 before 3.
Coroutine is a routine which can yield. Coroutines are typically scheduled cooperatively (=non-preemptively). Coroutines are similar to threads, although threads are typically scheduled preemptively (scheduler pre-empts=forces execution to pause and yield, even without yield in the language)
Emscripten is a complete Open Source compiler toolchain to WebAssembly. Using Emscripten you can: Compile C and C++ code, or any other language that uses LLVM, into WebAssembly, and run it on the Web, Node.js, or other Wasm runtimes.
Serve files from another directory