Microsoft Flight Simulator 2024 is coming to Playstation 5 on December 8th
flightsimulator.com
Quicksort explained IKEA-style
idea-instructions.com
Huntington's disease treated for first time
bbc.com
Björk on nature and technology (2016)
thecreativeindependent.com
Terence Tao: The role of small organizations in society has shrunk significantly
mathstodon.xyz
Python on the Edge: Fast, sandboxed, and powered by WebAssembly
wasmer.io
SedonaDB: A new geospatial DataFrame library written in Rust
sedona.apache.org
Snapdragon X2 Elite ARM Laptop CPU
qualcomm.com
New bacteria, and two potential antibiotics, discovered in soil
rockefeller.edu
Engineering a fixed-width bit-packed integer vector in Rust
lukefleed.xyz
Launch HN: Flywheel (YC S25) – Waymo for Excavators
Learning Persian with Anki, ChatGPT and YouTube
cjauvin.github.io
How to Lead in a Room Full of Experts
idiallo.com
How fast is Go? simulating particles on a smart TV
dgerrells.com
Driving Complex Decisions
garrettdbates.com
Yt-dlp: Upcoming new requirements for YouTube downloads
github.com
That Secret Service SIM farm story is bogus
cybersect.substack.com
How AWS S3 serves 1 petabyte per second on top of slow HDDs
bigdata.2minutestreaming.com
SonyShell – an effort to "SSH into my Sony DSLR"
github.com
Zed's Pricing Has Changed: LLM Usage Is Now Token-Based
zed.dev
US airlines are pushing to remove protections for passengers and add more fees
travelandtourworld.com
EU age verification app not planning desktop support
github.com
My suggestion to the OP talking about compression.
First up, consider just PNG compressing the image for simplicity. It's a mostly black image with color dots. That would generally compress really well with PNG.
But also, knowing the nature of the image, you could pretty easily compress the image by doing offsets to the next pixel. The format could look roughly something like this
[offset byte, color byte, offset byte, color byte].
It will fail in cases where each pixel has a color and will excel when there is a run of black pixels (which there will be a lot of those). It's a dead simple format to implement and read as well.
You can even keep the frame around for writing. You'd just be counting black pixels left to right top to bottom, emitting that number or 255 then 0 resetting and then counting some more.