Hello world.

Streamed for a couple of hours yesterday, which was only mildly disastrous.


Oh hey: So I revisited the Atari Punk Console circuit I build yesterday. Discovered I made a boneheaded mistake - the 556 IC was in the circuit backwards. Ugh. But, good news: I flipped it around on the breadboard and everything instantly started working!


Owncast looks interesting for a self-hosted "Twitch in a Box". Also neat that it can target hosting the HLS stream on AWS S3.

Also Owncast is the latest of many things that make me think I should spend some time learning Go.

HLS is neat because it's a streaming scheme that can be hosted as a rolling series of files on a static web server. The system producing the video uploads chunks of the stream as fast as it can. There's a playlist identifying the files in sequence. Clients follow behind and play slightly older files as fast as they can download. There's latency, sure, but it means that the server can be stupid (and thus cheap). No special TCP/UDP socket data stream on a bespoke server host needed. Just a web server.