Technical Museum
All Hardware Maps ML & AI Music Social Tools Writing Apps & Games
Deciduous
Decision graph CLI for tracing how software decisions evolve
Rust SQLite HTML/JS
Deciduous Archaeology Demo
Demonstrations of decision archaeology on React and stacked git workflows
Rust React Git
Phish Explorer
Jam analytics dashboard for Phish 3.0 era
Elixir Phoenix LiveView D3.js
Local LLM on MacBook
4-bit quantization, safetensors, and Bumblebee + EMLX for Apple Silicon
Elixir Rust Python
A Bot that posts like me
Porting the posting bot to Elixir using local LLM work
Elixir Bumblebee EMLX
Receipt Printer Software Suite
A complete software suite for thermal receipt printers
Elixir Python
Role Call
TV writer overlap explorer
Elixir Phoenix LiveView
Fill Your Sky
Interactive map of 418+ Bluesky communities with 545K+ people
Elixir Phoenix LiveView D3.js
Code Mirror
A live code mirror experiment
Elixir Phoenix LiveView
Pocket Pnin
A local LLM running on my iPhone, coming to the App Store for free
Swift MLX
NYC Census Maps
Interactive census and PLUTO data visualization for New York City
Elixir Phoenix LiveView Leaflet.js
MTA Bus Tracker
Real-time MTA bus and train tracking on an interactive map
Elixir Phoenix LiveView Leaflet.js
Concert GIF Maker
Extract GIFs from concert videos with a retro Mac interface
Elixir Phoenix LiveView FFmpeg
Send a VERY direct message, to my receipt printer
A social project where friends send photos that print on my receipt printer
Elixir Phoenix LiveView
Archive TV
A real over-the-air TV channel from magnetic media archives
Elixir FFmpeg
Losselot
Neural network loss function explorer
Python
Todoinksies
A personal todo app
Elixir Phoenix LiveView
Ormery
An ORM written in Temper
Temper
Collage Maker
Upload photos and arrange them into grid collages
Elixir Phoenix LiveView
GenStage Tutorial 2025
A modern GenStage tutorial for the Elixir ecosystem
Elixir GenStage
Temper Rust Bug
Found a bug in the Temper compiler and built a demo repo
Temper Rust
300+ Years of Tree Law
A blog post that became its own LiveView application
Elixir Phoenix LiveView
HEEx in Other Languages
Experiments porting Phoenix HEEx templates to Rust, Lua, C#, Java, Python, and JS
Temper Rust Lua
Live Draft LSP
Live-stream blog drafts from Zed to Phoenix via a custom LSP
Rust Elixir Zed
Bluesky Hoover Apps
Various apps that vacuum up and process the Bluesky firehose
Elixir Phoenix LiveView
Bobby Posts Bot
A bot that posts like me, in Python
Python
Photo Booth Receipt Printer
A portable photo booth that prints on receipt paper
Python Elixir
Nathan For Us
A Nathan For You social network with video search and GIF creation
Elixir Phoenix LiveView FFmpeg
Browser History Roast MCP
An MCP server that roasts you based on your browser history
Python MCP
GenStage Tutorial (Original)
The original GenStage tutorial
Elixir GenStage
Bluesky Firehose Toys
Real-time firehose visualizations: emoji streams, jetstream comparisons, and more
Elixir Phoenix LiveView WebSocket
31 exhibits Apps & Games
MY FAV
LEICA SHOTS
Work Log — Recent Commits
+135-0 notactuallytreyanastasio/ormery-py-app/main Feb 26 06:01
e8236ca Add README with ORMery usage documentation and code samples
+198-0 notactuallytreyanastasio/ormery-lua-app/main Feb 26 05:56
db4c17e Add README with ORMery usage documentation and code samples
+175-0 notactuallytreyanastasio/ormery-java-app/main Feb 26 05:55
6ca9cdf Add README with ORMery usage documentation and code samples
+10246-3 notactuallytreyanastasio/ormery/main Feb 25 22:52
04edde5 Embed secure-composition library in src/ for Temper compatibility Temper doesn't support cross-library imports yet, so secure-composition must be embedded as a subdirectory within src/ (same-library submodule). Changes: - Move secure-composition/ to src/secure-composition/ - Update imports to ./secure-composition/sql and ./secure-composition/html - Remove dependencies config (not needed for embedded modules) Build output now includes both ormery/ and secure-composition/ directories, ensuring all target language repos (JS, Python, C#, Rust, Java, Lua) get the full secure-composition library when the CI pipeline publishes. All 87 tests passing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7550780 Fix secure-composition imports to target specific files Temper requires imports to target specific .temper.md files within subdirectories rather than directory-level imports. Updated: - ormery.temper.md: Import sql/SqlBuilder from sql/builder.temper.md and SqlFragment from sql/model.temper.md - syntax-highlighter.temper.md: Import html/SafeHtml from html/safe-html.temper.md Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+3-4844 notactuallytreyanastasio/ormery/main Feb 25 20:21
5087716 Replace duplicate implementations with secure-composition library - Remove local src/sql/, src/html/, src/core/, src/url/ directories - Update imports in src/ormery.temper.md and src/syntax-highlighter.temper.md - Point to ../secure-composition/src/sql and ../secure-composition/src/html - Fixes CI build failures ("No member appendSafe in SqlBuilder") - All 87 tests passing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+171-20 notactuallytreyanastasio/ormery/main Feb 25 18:44
931d04d Remove appendSafe from public API to eliminate SQL injection vector SECURITY FIX: Removed public appendSafe() method from all builder classes (SqlBuilder, Collector, ContextualAutoescapingAccumulator) to prevent SQL injection and XSS attacks. Changes: - SqlBuilder.appendSafe() removed - forces use of typed methods - Refactored safeSql() to create SqlFragments directly - Updated internal appendList to use buffer.add() directly - Made collector appendSafe private (appendFixed/appendKnownSafe) - Updated README and added SECURITY-IMPROVEMENTS.md documentation Before: External code could bypass escaping via appendSafe(userInput) After: All external code must use typed, escaped methods (appendString, appendInt32, etc.) This eliminates the primary SQL injection attack vector identified in semgrep rules CWE-89. All generated target languages (JS, Python, Java, C#, Rust, Lua) will be updated when published to child repos. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+34-20 notactuallytreyanastasio/read_my_receipts/main Feb 25 13:20
d695f7d continuous error log: no paper cut, no header for text prints Text endpoint now prints as one long continuous log — no header/dividers, no paper cut. Just the content followed by 3 blank lines of spacing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+153-9 notactuallytreyanastasio/read_my_receipts/main Feb 25 13:10
c4b28ef add text printing endpoint with Elixir error filtering New POST /print/text?source= endpoint accepts plain text for receipt printing. Elixir/Phoenix sources are filtered to only print [error] blocks. Text is wrapped in receipt-style formatting with headers and dividers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+807-1094 notactuallytreyanastasio/blog/main Feb 25 06:56
0d5f530 improve: refactor MarkdownEditorLive with tests, extract pure functions, remove inline CSS - Extract BlogWeb.MarkdownEditor.Formatter with pure functions for all markdown formatting operations (split_text, apply_format, to_html) - Remove ~420 lines of duplicated handle_format/7 from both LiveView and Component, replaced with shared Formatter module - Fix bug: LiveView used EarmarkParser (not a dependency) instead of MDEx - Replace rescue blocks with proper {:ok, _}/{:error, _} pattern matching - Remove inline CSS styles, add .markdown-editor-window/.markdown-editor-content classes - Add @moduledoc to both LiveView and Component (Credo strict compliance) - Extract toolbar/cheatsheet into function components in the Component - Initialize all assigns in mount/3 to avoid potential KeyError - Add 35 unit tests for Formatter (split, format with/without selection, composition) - Add 8 integration tests for MarkdownEditorLive (mount, events, handle_info) - Zero Credo issues in strict mode across all 3 files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+14-4 notactuallytreyanastasio/blog/feature/work-log Feb 25 06:51
71dc1a3 Separate commit messages clearly with dividers Each commit now shows SHA and message on separate indented lines with blank line spacing between commits. Dashed divider line between push event entries for clear visual separation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+53-152 notactuallytreyanastasio/blog/feature/work-log Feb 25 06:51
62be7c1 Condensed layout: one line per push, full commit messages below Push header on single line: SHA +N/-N repo/branch date. Commit messages rendered with pre-wrap for full multi-line display. Added debug logging to diagnose missing commit messages. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+33-32 notactuallytreyanastasio/blog/feature/work-log Feb 25 06:51
0cbdbe1 Fix missing commit messages, filter empty diffs The GitHub Events API returns commits: null, so commit messages were always empty. Now fetches commits from the Compare API instead, which has full commit data including messages. Also filters out push events with +0/-0 diffs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+29-17 notactuallytreyanastasio/blog/feature/work-log Feb 25 06:51
a869954 Make poller and mount crash-resistant Poller rescues errors during poll to avoid GenServer crash. LiveView mount catches :exit if poller isn't running yet. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+25-28 notactuallytreyanastasio/blog/feature/work-log Feb 25 06:51
ae12abd Use {:ok, _}/{:error, _} patterns instead of rescue Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+253-94 notactuallytreyanastasio/blog/feature/work-log Feb 25 06:51
ae794fb Store work log commits in Postgres, add window to terminal desktop - Migration creates work_log_commits table with unique SHA index - WorkLogCommit schema + WorkLog context for DB reads/writes - Poller writes to DB via compare API, reads from DB - Work Log window on terminal_live desktop (centered, draggable) - Desktop icon for Work Log, Leica icon moved to bottom - Standalone /work-log page reads from same DB Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
+488-42 notactuallytreyanastasio/blog/main Feb 25 06:51
f5826d0 remove links I want gone, remove experiment code
3f4ea06 add work log stuff
4dc1591 Merge branch 'main' of github.com:notactuallytreyanastasio/blog # Conflicts: # .deciduous/deciduous.db
ebead4b update deciduous db
a868617 Merge branch 'main' of github.com:notactuallytreyanastasio/blog
4c3fef6 add improve elixir command
16 pushes github.com/notactuallytreyanastasio
phangraphs — Phish 3.0 Jam Analytics
phangraphs
Mr. Completely
.533
BATTING AVG
8 JC · 15× played
Avg 14.4m · Peak 22:29 · 🎧 14/15
Longest: 22:29
2024-07-31 · Chaifetz Arena, Saint Louis University
Most Loved: 38 likes
2017-07-26 · Madison Square Garden
📊 93% Set 2 · 8/8 JCs from Set 2
Last: 2024-07-31 (576d ago) · avg every 184d
Best year: 2017 — 2/2 JC
🔥 JC Streak: 4 in a row
"Busted out after a 380 show absence, Phish goes 2 for 2 on delivering the goods ..."
TAP TO SEE AND PLAY JAMS
Mr. Completely .533
TAP TO FLIP BACK
8 jams
2017-07-19 21:18
Petersen Events Center · Pittsburgh, PA
Busted out after a 380 show absence, Phish goes 2 for 2 on delivering the goods with this TAB standby. The jam quickly goes "Type II" and features bliss jamming aplenty as well as some new synth sounds from Page.
2017-07-26 13:52
Madison Square Garden · New York, NY
Surprising -> out of a great "Carini". A fiery minor key jam develops out of the verses, and Page takes control on the keys as Trey fires off echo-laden notes. They pivot nicely into a new key, where Mike really impresses and Fish pushes the tempo up a gear as Trey plays around with the "Mr. Completely" theme and leads the band into an anthemic finale. A high-spirited, energetic good time, with a > into an even more surprising "1999".
2021-08-04 18:55
Ascend Amphitheater · Nashville, TN
The opening to one of the year's strongest second frames, this "Mr. Completely" indulges in its usual jam before Fish switches up his flow and Trey moves into a new key. Page's electric piano cuts through the mire, and a warm groove emerges as a result. Fish starts throwing in the "Mr. Completely" drum fill almost as a challenge to himself, and Trey moves to stabbing echo-laden chords as the jam picks up speed "Bathtub Gin" style. Something funkier and stranger emerges, and Mike flips on his envelope filter as the jam builds to a ferocious climax, then dies away with some more "Mr. Completely" drum fills by Fish for fun. > into "BOAF".
2021-08-29 18:47
Gorge Amphitheatre · George, WA
Quickly maneuvers into major-key bliss, distinguished by some frenetic playing from Fishman, then moves into a brisker and snappier zone thanks to Trey switching to chords. The band briefly dips into contemplative minor key playing, before moving to something more upbeat, with Page's electric piano at the forefront. Trey's effects-smothered guitar playing and Page's synths combine wonderfully, with Mike going to the envelope filter and Fish as steady as ever. Very good -> into "Meat" to close. A fine companion piece to the 8/4/21 version.
2022-08-13 14:26
Alpine Valley Music Theatre · East Troy, WI
First locks into a super-cool and menacing, textural jam with a perfectly integrated "Crazy Train" tease from Trey, then slides into major for a heavenly spell before more familiar bliss brings it all home.
2023-04-23 18:03
Hollywood Bowl · Hollywood, CA
Another huge version of the once rare song in the catalog. Plucky playing from Trey around 9:30 changes the jam's trajectory. The searching, grimy jam sounds like the background to a noir detective show at times. The tempo gets kicked up towards the end, before eventually > "A Song I Heard the Ocean Sing".
2023-04-23 0:56
Hollywood Bowl · Hollywood, CA
-> from "A Song I Heard the Ocean Sing" to close out the "Mr C" > "ASIHTOS" -> "Mr C" sandwich.
2024-07-31 22:29
Chaifetz Arena, Saint Louis University · St. Louis, MO
After transitioning away from the song, Page’s grand piano gives the improvisation shape and direction as Trey responds leading the band through uplifting and thematic play that modulates across both delicate and thornier spaces. Listen for Mike's "Meowdulator" pedal and Trey's "Hanon exercises" to make appearances before returning to the song proper to close.
phangraphs Phish 3.0 Jam Analytics
AIM Chat - Terminal
Online (0)
jeff 02:52 AM
What is up y'all
jeff 03:44 AM
Thanks for visiting my website
jeff 03:51 AM
Trying from mobile let’s see what’s up
Uechi Nerd 03:54 AM
Hi, greetings from Planet Crackpot!
jeff 03:55 AM
oh man what's up
jeff 03:56 AM
Hey everyone
Uechi Nerd 03:56 AM
winding down with a beer or three
Uechi Nerd 03:57 AM
desktop version
Uechi Nerd 04:01 AM
Disappointed that War does not lead to actual combined-arms conflict.
jeff 04:01 AM
that would be hard to conjure
jeff 04:02 AM
I am so excited that this works and is a successful combination of windows and old apple lol
Uechi Nerd 04:02 AM
Probably for the best, actually. That shit is very very messy.
Uechi Nerd 04:02 AM
I am intrigued and happy it works!
Uechi Nerd 04:03 AM
I respect the wizardry.
Visitor7804 04:05 AM
this is delightful.
jeff 04:06 AM
hell yeah visitor 7804, this is livin' brother
guy4get 04:07 AM
i've never felt so alive
EarlofVincent 04:09 AM
Commencing experiment in 3....2....
jeff 04:14 AM
1
leah 04:16 AM
hi!
leah 04:16 AM
this is lovely
jeff 04:21 AM
hi! lol I was just like what if I combined Mac and windows and added a flower tree of life and called it my homepage and then smoked some weed and made it happen in an empty mall in Connecticut
B. Droptables 10:51 AM
Always cool to play with your toys.
Visitor1128 08:47 AM
yo!
Visitor1128 08:48 AM
i can barely work my phone. what am i doing here?
jeff 09:04 AM
the phone is not optimized yet but it "kind of works" I am sorry lol
jeff 09:04 AM
you have to pick a username, then it goes to the chat, then if you hit the bottom tabs it'll let you go to the app sections.
Bobdawg 04:43 AM
Hi everybody this is my blog I hope you enjoy it I did some more changes and anyone can write a post here now for me.
dinkleberg 01:45 AM
ALL HAIL TREE OF LIFE
jeff 08:55 PM
hi Hacker News
jeff 04:28 PM
hey there I am not really Jeff
Mal Function 05:34 PM
Hey! Please reveal... how exactly do I actually use losselot on my Mac? I've run the git clone commend in Terminal.app and seem successfully to have installed into a new <losselot> sub-folder in my home folder but now???