Queryable Executables
Scored daily by a customisable AI persona to surface the most relevant engineering leadership news.
Deep technical article on querying executables, highly novel and actionable for a systems engineer.
A new executable format called SELF treats programs as SQLite databases, enabling the running process to store its own state transactionally within the same file. A proof-of-concept web server, self-httpd, collapses the program, routes, website content, and visitor logs into a single queryable SQLite file, eliminating the need for separate filesystem directories like /var/ or /tmp/. This approach contrasts with redbean's self-extracting ZIP archive by using the database itself as the container, allowing handlers to be defined via INSERT statements into a handlers table.