The Elusive Cost Savings of the Prefabricated Home

www.construction-physics.com

It’s long been believed the constantly rising costs of new home construction, and lackluster improvements in construction productivity more generally, are fundamentally a problem of production methods. Most houses in the US are still built on-site, using manual labor and hand tools, a manner of construction that doesn’t seem all that different from construction in the 19th century. By contrast, sectors like agriculture and manufacturing have shifted from this type of “craft production,” ...

Folders for RSS feeds in Thunderbird

rubenerd.com

I recently talked about using Thunderbird for reading RSS . In this I said: It’s not immediately obvious from the UI, but you can also assign feeds to folders. If you create a “Feeds” account, then create the folders you want under this, you can then assign feeds to those folders. Andreas of 82 MHz fame, and long-time contributor Rebecca asked how this is done. I really should have described this in more detail, given I said it wasn’t “immediately obvious”. Score one for bad...

Beyond the Airframe: Scaling Mission Autonomy for CCAs

shield.ai

Years in the jet teach you one thing above all else: the enemy gets a vote. I spent the better part of my career strapped into an F-16, training day in and day out to be ready when the call came. Air combat doesn’t sit still. Every generation brings new aircraft, new tactics, new threats. For decades, we owned the skies because our platforms, our training, and our operational concepts set the pace. That edge has eroded as near-peer adversaries have built modern fighters and layered air defen...

Sabbatical #06: Tongariro National Park

darekkay.com

“One does not simply walk into Mordor.” ― The Lord of the Rings Tongariro Alpine Crossing The Tongariro Alpine Crossing is regarded as among the top ten one-day treks in the world. The hike (or as New Zealanders call them: tramp ) covers 1126 meters of elevation over a distance of 20.2 km and takes between 6 and 8 hours to complete during summer. The extreme weather and an active volcanic landscape make it even more difficult. Some people take it too lightly (as I can attes...

I don't know if I like working at higher levels of abstraction

xeiaso.net

Whenever I have Claude do something for me, I feel nothing about the results. It feels like something happens around me, not through me. That's the new level of abstraction: you stop writing code and start describing intent. You stop crafting and start delegating. I've been doing this professionally long enough to have an opinion, and I don't like what it's doing to me. All of it focuses on getting things done rather than on quality or craft. I'm more productive than I've ever been. ...

Plan du réseau du métro de Toronto

alyssarosenzweig.ca

La plus grande ville d’un pays bilingue mérite le transport en commun bilingue. Vu l’intérêt prolongé pour la francisation de la ville reine, voici enfin un plan du réseau traduit. Il y a plusieurs ans, un internaut traduisit le plan du réseau de la Société de transport de Montréal . La règle est simple : traduire le nom de chaque station, soit de français en anglais, soit d’anglais en français. Puisque le plan original mélange nos langues nationales, tout traduire le rend ...

Agentic AI Code Review: From Confidently Wrong to Evidence-Based

platformtoolsmith.com

Archbot flagged a "blocker" on a PR. It cited the diff, built a plausible chain of reasoning, and suggested a fix. It was completely wrong. Not "LLMs are sometimes wrong" wrong — more like convincing enough that a senior engineer spent 20 minutes disproving it . The missing detail wasn't subtle. It was a guard clause sitting in a helper two files away. Archbot just didn't have that file. That failure mode wasn't a prompt problem. It was a context problem . So I stopped trying to pr...

NASA falters in communications yet again with Lunar Trailblazer failure | Moon Monday #265

jatan.space

Concept image showing how Lunar Trailblazer’s remote sensing data was to distinguish between lunar water in the form of ice crystals versus mineral-bound states. Image: Jasper Miura / Lockheed Martin Joe Palca of NPR has reported that the NASA-funded  Lunar Trailblazer  spacecraft, which was lost shortly after its February 2025 launch , failed because its solar panels were pointing perfectly away from the Sun. This chiefly happened because a) the spacecraft vendor Lockheed Martin did n...

How far can you go with IX Route Servers only?

blog.benjojo.co.uk

How far can you go with IX Route Servers only? On paper internet exchanges (IX) are very simple in their implementation, simply put together a bunch of routers on a shared layer 2 ethernet switch How far can you go with IX Route Servers only? On paper internet exchanges (IX) are very simple in their implementation, simply put together a bunch of routers on a shared layer 2 ethernet switch How far can you go with IX Route Servers only? On paper internet exchanges (IX) are very simp...

Bitcoin Devs Should Be Learning Isogeny Cryptography

conduition.io

How isogenies can solve Bitcoin's Quantum problems How isogenies can solve Bitcoin's Quantum problems

Where Some See Strings, She Sees a Space-Time Made of Fractals

www.quantamagazine.org

Astrid Eichhorn spends her days thinking about how the laws of physics change at the tiniest scales. Imagine zooming in closer and closer to the device on which you’re reading this article. Its apparently smooth screen quickly dissolves into a jiggling lattice of molecules, which in turn resolve into clouds of electrons buzzing around atomic nuclei. You dive into a nucleus… Source Astrid Eichhorn spends her days thinking about how the laws of physics change at the tiniest scales. Imagine ...

Fragments: March 10

martinfowler.com

Tech firm fined $1.1m by California for selling high-school students’ data I agree with Brian Marick’s response No such story should be published without a comparison of the fine to the company’s previous year revenue and profits, or valuation of last funding round. (I could only find a valuation of $11.0M in 2017.) We desperately need corporations’ attitudes to shift from “lawbreaking is a low-risk cost of doing business; we get a net profit anyway” to “this could ...

Simulating Queueing 2

buttondown.com

Last week we simulated a queueing algorithm. Behind the scenes, I did this by writing a Go program and placing sleeps to simulate processing. This meant that running a simulation took a while. I ran each one for about a minute, and adding more simulations where I varied parameters took longer and longer. How might we run simulations that don't use the real computer clock? One way to model such a thing is as a stream of events , which is a stream of tuples of (time passed before something ha...

Examples for the tcpdump and dig man pages

jvns.ca

Hello! My big takeaway from last month’s musings about man pages was that examples in man pages are really great, so I worked on adding (or improving) examples to two of my favourite tools’ man pages. Here they are: the dig man page (now with examples) the tcpdump man page examples (this one is an update to the previous examples) the goal: include the most basic examples The goal here was really just to give the absolute most basic examples of how to use the tool, for peop...

Prefix sums at tens of gigabytes per second with ARM NEON

lemire.me

Suppose that you have a record of your sales per day. You might want to get a running record where, for each day, you are told how many sales you have made since the start of the year. day sales per day running sales 1 10$ 10 $ 2 15$ 25 $ 3 5$ 30 $ Such an operation is called a prefix sum or a scan. Implementing it in C is not difficult. It is a simple loop. for ( size_t i = 1 ; i data [ 1 ] -> data [ 2 ] -> .....

Why designing in code makes you a better designer

adamsilver.io

I didn’t start out as a designer. I started out as a frontend developer. I cared about the craft and spent a lot of time trying to master HTML, CSS, JavaScript and accessibility. Over time, I learned how these technologies affected UX, so as a dev, I started to suggest design changes to improve usability and accessibility. But most of the designers I worked with ignored my suggestions. Years later I transitioned to design. I tried to hide my engineering past because I was worried oth...

How I do, and don't, use AI on this blog

rmoff.net

tl;dr I use AI heavily on this blog. I don’t use AI to write any content. As any followers of my blog will have seen recently, I am a big fan of the productivity —and enjoyment—that AI can bring to one’s work. (In fact, I firmly believe that to opt out of using AI is a somewhat negative step to take in terms of one’s career.) Here’s how I don’t use AI, and never will : tl;dr I use AI heavily on this blog. ...

“This Is Not The Computer For You”

samhenri.gold

There is a certain kind of computer review that is really a permission slip. It tells you what you’re allowed to want. It locates you in a taxonomy — student, creative, professional, power user — and assigns you a product. It is helpful. It is responsible. It has very little interest in what you might become. The MacBook Neo has attracted a lot of these reviews. The consensus is reasonable: $599, A18 Pro, 8GB RAM, stripped-down I/O. A Chromebook killer, a first laptop, a sensible machi...

Just admit you’re playing the game

manuelmoreale.com

It’s fine. Many people do it, and you decided to do the same. That’s ok. But don’t attempt to use some wishy-washy argument to justify your actions. You either believe in something and you’re willing to power through, or you don’t, and you do what everybody else is doing. It’s fine to pick option B, but at least have the courage to admit it and don't use some bullshit argument to justify your actions. Thank you for keeping RSS alive. You're awesome. Email...

Pure Blog Is Now Feature Complete...ish

kevquirk.com

I've just released v1.8.0 of Pure Blog , which was the final big feature I wanted to add 1 . At this point, Pure Blog does all the things I would want a useful CMS to do, such as: Storing content in plain markdown, just like an SSG. Easy theme customisations . Hooks for doing clever things when something happens. Data files so I can loop through data to produce pages where I don't have to duplicate effort, like on my blogroll . A couple of simple shortcodes to make my life eas...

Tony Hoare (1934-2026)

blog.computationalcomplexity.org

Turing Award winner and former Oxford professor  Tony Hoare passed away last Thursday at the age of 92. Hoare is famous for quicksort, ALGOL, Hoare logic and so much more. Jim Miles gives his personal reflections. Jill Hoare, Tony Hoare, Jim Miles. Cambridge, 7 September 2021 Last Thursday (5th March 2026), Tony Hoare passed away, at the age of 92. He made many important contributions to Computer Science, which go well beyond just the one for which most Maths/CompSci undergraduates might know ...

A work week one bag travel

www.jonashietala.se

Life begins at the end of your comfort zone. Neale Donald Walsch I’m lucky that I have a job where I can work remotely as it allows me to live in a small community where there are no tech jobs anywhere close. It does require me to travel a few weeks per year to the office but I don’t mind that much as I appreciate minor dozes of socializing occasionally. I recently spent five nights on a trip with only a single backpack and it was a surprisingly great experience. How I used...

Perhaps not Boring Technology after all

simonwillison.net

A recurring concern I've seen regarding LLMs for programming is that they will push our technology choices towards the tools that are best represented in their training data, making it harder for new, better tools to break through the noise. This was certainly the case a couple of years ago, when asking models for help with Python or JavaScript appeared to give much better results than questions about less widely used languages. With the latest models running in good coding agent harnesses...

Random Old Posts

TitleDate
Placebo Emporium: 2025 Annual Shareholder Letter
taylor.town
November 07, 2025
Bliki: Host Leadership
martinfowler.com
February 19, 2026
Exploring Sils-Maria in Switzerland
www.robinwils.com
September 09, 2023
Moon Monday #244: Towards lunar construction
jatan.space
September 29, 2025
Real, modern Ruby development
steveklabnik.com
September 28, 2011
The Future of Industrial Process Heat
austinvernon.site
January 05, 2023
Guest Post: Money Is The Problem, by Fernando R
theluddite.org
March 01, 2023
Exploration Strategies in Deep Reinforcement Learning
lilianweng.github.io
June 07, 2020
Thorne Wolfenbarger Statement of Beliefs
blog.thornewolf.com
May 20, 2025
Loading delimited data into Kafka - quick & dirty (but effective)
rmoff.net
February 26, 2021
SpaceX's Starship: America's Secret Weapon
austinvernon.site
April 06, 2022
0026: break, preimp essay, focus + clojure, zed experiments, decorrelation and nested relations, bunny, sqlite mode, reading, links
www.scattered-thoughts.net
July 26, 2022
Implementing and Verifying "Static Program Analysis" in Agda, Part 1: Lattices
danilafe.com
July 07, 2024
Superhero stew
blog.singleton.io
January 21, 2020
Protests and Power
idlewords.com
October 04, 2020
Redis streams as a pure data structure
antirez.com
March 22, 2019
Render Hell – Book III
simonschreibt.de
August 16, 2015
Serverless Anagram Solver with Cloudflare R2 and Pages
simplyexplained.com
September 10, 2022
Leaving Intel
www.brendangregg.com
December 04, 2025
New stuff. Big Stuff.
www.doscher.com
July 06, 2025
Remembrance
third-bit.com
December 06, 2025
My Seventh Year as a Bootstrapped Founder
mtlynch.io
February 03, 2025
A template proposal for adopting Rust at work
tim.mcnamara.nz
March 15, 2023
<div xmlns="http://www.w3.org/1999/xhtml" class="if-your-feed-reader-displays-this-then-it-is-violating-the-Atom-spec-RFC-4287-section-4.2.14"></div>
tantek.com
January 03, 2026
Visual studio shortcuts
www.robinwils.com
October 26, 2022
2025 was the year of no sleep and pushing through
ohhelloana.blog
January 06, 2026
Heavy-Duty Data Transfer
samhenri.gold
April 10, 2022
How to Build a House in One Day
austinvernon.site
April 14, 2023
GDC/ADDON 2022: How (not) to create Textures for VFX
simonschreibt.de
May 22, 2022
Improving color quantization heuristics
blog.pkh.me
December 31, 2022
The Perils of Outsourcing Your MVP
mtlynch.io
December 06, 2017
A Tiling Desktop Environment
bitcannon.net
June 01, 2019
2024 Los Angeles Unconference
www.inkandswitch.com
October 26, 2024
Cross-Branch Testing
www.hillelwayne.com
June 28, 2021
Incomplete game coming up
www.jonashietala.se
August 19, 2009
LLM Inflation
tratt.net
August 06, 2025
I achieved 100 million points in Einstein@Home, and rediscovered Folding@Home
stfn.pl
May 10, 2025
Dominik Schwind
manuelmoreale.com
February 27, 2026
On Medium-of-Exchange Token Valuations
vitalik.eth.limo
October 17, 2017
Plans for Summer of Code
www.jonashietala.se
July 14, 2014
How to rewrite a C++ codebase successfully
gaultier.github.io
May 03, 2024
Resque: let's do this
steveklabnik.com
September 22, 2012
The business of wallets
www.bitsaboutmoney.com
April 30, 2024
Building the GH60
www.jonashietala.se
October 12, 2016
Podcast RSS XML (in Ugly SQL)
taylor.town
February 15, 2024
Forty years of programming
fabiensanglard.net
October 08, 2023
Mood, doing, thinking, listening
ohhelloana.blog
April 23, 2019
Streaming data from SQL Server to Kafka to Snowflake ❄️ with Kafka Connect
rmoff.net
November 20, 2019
Why is Clojure so stable?
steveklabnik.com
December 18, 2018
Mac Software Lives Again
saccade.com
May 03, 2022
A *
www.jonashietala.se
April 26, 2014
Black pixels
stephango.com
June 06, 2023
Geothermal's Path to Relevance: Cheap Drilling
austinvernon.site
October 24, 2021
How to follow CLPS Moon mission updates
jatan.space
January 20, 2025
Creating an Easy Mode for Rust
tim.mcnamara.nz
May 01, 2022
The problem with web components
adamsilver.io
June 10, 2019
Can Nuclear Power Manage Another Comeback?
austinvernon.site
September 07, 2022
Soulbound
vitalik.eth.limo
January 26, 2022
Haskell is quite OK for images: encoding QOI
0xd34df00d.me
January 29, 2022
Misadventures running Clone Hero on Linux
moonbase.lgbt
August 25, 2025
Current 2022 - 5k Fun Run
rmoff.net
September 26, 2022
Money, happiness and productivity as a solo founder (Indiehackers Podcast)
levels.io
January 26, 2022
Notes on the phi-4-reasoning Technical Paper
nishtahir.com
May 10, 2025
How to Coast with Corporate Camouflage
taylor.town
July 28, 2023
September 2022
taylor.town
October 07, 2022
Retrospective: 4 years on YouTube
simplyexplained.com
January 14, 2020
Dijkstra's Algorithm
www.jonashietala.se
July 23, 2014
Learning Apache Flink S01E03: Running my First Flink Cluster and Application
rmoff.net
October 05, 2023
On truth
www.robinwils.com
March 29, 2025
cd: string not in pwd
rmoff.net
October 04, 2023
Reading list 02/14/26
www.construction-physics.com
February 14, 2026
Hash Functions Code Tutorial
austinvernon.site
June 10, 2021
Generating a full-stack application from a database
notes.eatonphil.com
June 14, 2020
Book Review: The Demon in the Machine
benjamincongdon.me
December 15, 2025
Lego Batman – Crawler
simonschreibt.de
May 21, 2013
Passing the torch on Asahi Linux
asahilinux.org
February 13, 2025
Connecting Apache Flink SQL to Confluent Cloud Kafka broker
rmoff.net
July 22, 2025
The Toki Pona Baby Sign-Language Manifesto
taylor.town
November 29, 2022
Stylized VFX in RIME
simonschreibt.de
June 07, 2017
Setting up Neovim for Haskell, as of October 2019
mbuffett.com
October 29, 2019
Bioshock – Glossiness
simonschreibt.de
April 19, 2013
Domain-Agnostic and Domain-Specific Tools
borretti.me
April 03, 2025
Shelly 2.5: Flash ESPHome Over The Air!
simplyexplained.com
September 22, 2020
“CRDT Emulation, Simulation, and Representation Independence” will appear at ICFP 2025
decomposition.al
June 29, 2025
How to change the Duolingo app icon
jamesg.blog
March 03, 2026
MITM Risks in Signal? Mitigation + Monologue
nate.mecca1.net
November 19, 2023
The joy of building a ray tracer, for fun, in Rust.
blog.singleton.io
January 03, 2022
How I'm Working Remotely
healeycodes.com
April 26, 2020
The killer features of the Steam Deck
www.jonashietala.se
October 24, 2023
Predict Stock Prices Using RNN: Part 1
lilianweng.github.io
July 08, 2017
Factorio: Space Age is here!
www.factorio.com
October 21, 2024
The Curious Case of Flunking My Anthropic Interview (Again)
taylor.town
August 27, 2025
Lamb al asador
blog.singleton.io
June 19, 2023
Learning with not Enough Data Part 3: Data Generation
lilianweng.github.io
April 15, 2022
Pokémon – Rapidash
simonschreibt.de
May 07, 2023
How to monitor 12V battery charge with a Raspberry Pi Pico
stfn.pl
January 05, 2024
Stop answering your own questions
www.elidedbranches.com
January 13, 2018
Wixel
blog.singleton.io
June 23, 2013
The world of PostgreSQL wire compatibility
notes.eatonphil.com
February 08, 2022
By how much does your memory allocator overallocate?
lemire.me
December 30, 2025

About

I couldn't find a RSS reader that I liked so I decided to build my own.I thought it would be neat if it was public and formatted kind of like a magazine or a newspaper, so here we are.This is a feed of all the feeds that I want to keep up with. I try to keep it independant and keep out things likeenigneering blogs that are just advertisements, but its all up to my discretion.

This page updates daily at 8:11ish AM Mountain Time. The following blogs are featured on the page currently:

For the full list of feeds that are followed see the raw list here.