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
The support for BMI1 instruction set extension is almost universal by now. The extension was introduced in AMD Jaguar and Intel Haswell, both launched in 2013 i.e. 12 years ago.
Instead of doing stuff like (word >> bit_offset) & self.mask, in C or C++ I usually write _bextr_u64, or when using modern C# Bmi1.X64.BitFieldExtract. Note however these intrinsics compile into 2 instructions not one, because the CPU instruction takes start/length arguments from lower/higher bytes of a single 16-bit number.