frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Using Discord on Plan 9

https://pmikkelsen.com/plan9/discord
1•birdculture•1m ago•0 comments

25th Amendment – A Viral Politics Game

https://games-by-will.com/25th-amendment/
2•wjuseck•5m ago•0 comments

True Queue – Task queue extension for Pi coding agent

https://github.com/Krystofee/true-queue
1•krystofee•7m ago•1 comments

Show HN: Compare Codex and Claude Code reviews side by side

https://twitter.com/plannotator/status/2041264274228781520
1•ramoz•8m ago•0 comments

Derek Lowe on "Peptides"

https://www.science.org/content/blog-post/ah-peptides-where-begin
1•A_D_E_P_T•8m ago•1 comments

View Transitions Toolkit

https://chrome.dev/view-transitions-toolkit/
1•aragonite•12m ago•0 comments

Gemma 4 clocking 12 tokens / SEC on Pixel 7A

https://twitter.com/1littlecoder/status/2040830792306425981
1•amrrs•12m ago•0 comments

Rust CLI Toy

https://github.com/smbcloudXYZ/smbcloud-cli
1•kampak212•13m ago•0 comments

AI Is Not Draining the Colorado River

https://www.outsideonline.com/outdoor-adventure/environment/ai-water-use-colorado-river-footprint/
2•greenie_beans•14m ago•0 comments

Artist Alexis Rockman Traces the Unsettling Evolution of a Climate in Crisis

https://www.thisiscolossal.com/2025/12/alexis-rockman-feedback-loop-climate-paintings/
2•akkartik•14m ago•0 comments

Klore – I compiled 3 Alex Hormozi books into an interconnected wiki using LLMs

https://github.com/vbarsoum1/llm-wiki-compiler
1•vbarsoum•15m ago•0 comments

LLM on a 1998 iMac G3 (32 MB RAM)

https://github.com/maddiedreese/imac-llm
1•Philpax•15m ago•0 comments

The App Store Is Flooded with AI Slop, Legitimate Developers Are Paying for It

https://www.forbes.com/sites/josipamajic/2026/03/24/the-apple-app-store-is-flooded-with-ai-slop-a...
4•halcdev•16m ago•0 comments

Relation between Layoffs and AI tools subscriptions

https://www.reddit.com/r/Layoffs/s/QlUYUyjWuP
2•the_arun•19m ago•0 comments

Can AI answer tax questions reliably?

https://accountsdraft.com/resources/can-chatgpt-answer-uk-tax-questions-reliably
1•Rob_Benson-May•19m ago•0 comments

DRAM Prices Rise Again as Samsung Adds 30% Increase

https://www.eteknix.com/dram-prices-rise-again-as-samsung-adds-30-increase/
1•elorant•23m ago•1 comments

Talat's AI meeting notes stay on your machine, not in the cloud

https://techcrunch.com/2026/03/24/talats-ai-meeting-notes-stay-on-your-machine-not-in-the-cloud/
1•PaulHoule•24m ago•1 comments

Reasons Dumbphones Work

https://josebriones.substack.com/p/3-reasons-dumbphones-work
1•toomuchtodo•26m ago•1 comments

Block secrets before they enter LLM's Context with Agentmask

https://github.com/adithyan-ak/agentmask
1•akoffsec•27m ago•0 comments

Show HN: We unionized Maxwell's Demon– A paper on labor rights in thermodynamics

https://zenodo.org/records/19442828
1•Serena_Zayn•29m ago•0 comments

Thick Steps and Thin Steps in the AI Era

https://aparnacd.substack.com/p/thick-steps-and-thin-steps-in-the
1•nowflux•30m ago•0 comments

OpenClaw CVE Tracker

https://days-since-openclaw-cve.com
1•cdrnsf•30m ago•0 comments

Show HN: I built a site that turns your Steam gaming hours into a RL skill tree

https://alternatelife.xyz/
3•naorz•31m ago•0 comments

Show HN: Jbofs – explicit file placement across independent disks

https://github.com/aozgaa/jbofs
2•aozgaa•31m ago•3 comments

Legal Is Next

https://www.harvey.ai/blog/autonomous-agents-legal-is-next
1•nowflux•34m ago•0 comments

AI vs. Human Intelligence: Comparing Strengths and Limits

https://www.intuit.com/blog/innovative-thinking/ai-vs-human-intelligence/
1•salkahfi•34m ago•0 comments

Nutella product placement on Artemis II [video]

https://www.youtube.com/watch?v=lr0T1QCTl-M
1•reconnecting•35m ago•0 comments

Tim Cook Is an Embarrassing Coward

https://karlbode.com/tim-cook-is-an-embarrassing-coward/
5•cdrnsf•36m ago•1 comments

Subagent Invocation: Why Your Chatbot Needs a Team

https://wpp.opero.so
1•juancruzguillen•37m ago•0 comments

$2000 Bug Bounty to Whoever Fixes the Lenovo Legion Pro 7's Speakers on Linux

https://github.com/nadimkobeissi/16iax10h-linux-sound-saga/blob/main/PLEDGE.md
2•nickswalker•40m ago•0 comments
Open in hackernews

Show HN: TTF-DOOM – A raycaster running inside TrueType font hinting

https://github.com/4RH1T3CT0R7/ttf-doom
2•4RH1T3CT0R•2h ago
TrueType fonts have a hinting VM that grid-fits glyphs. It has a stack, storage area, conditionals, function calls, and it turns out it's Turing-complete. So I built a raycasting engine in the hinting bytecode.

The glyph "A" in the font has 16 vertical bar contours. The hinting program reads player coordinates from font variation axes via GETVARIATION, does DDA ray marching against a tile map in the storage area, and repositions bar heights with SCFS. It ends up looking like a crude Wolfenstein-style view.

Small visuzlization: https://github.com/4RH1T3CT0R7/ttf-doom/blob/main/docs/media...

About 6.5 KB of bytecode total - 13 functions, 795 storage slots, sin/cos lookup tables.

JS handles movement, enemies, and shooting, then passes the coordinates to the font through CSS font-variation-settings. The font is basically a weird GPU.

The weirdest parts: - TrueType MUL does (ab)/64, not ab. So 1*4=0. The DIV instruction is equally cursed. - No WHILE loops. Everything compiles to recursive FDEFs. FreeType limits call depth to ~64 frames. - SVTCA[0] is Y, SVTCA[1] is X. Of course.

There's a small compiler behind this - lexer, parser, codegen - that turns a C-like DSL into TT assembly.

Demo GIF: https://github.com/4RH1T3CT0R7/ttf-doom/blob/main/docs/media...

Live demo: https://4rh1t3ct0r7.github.io/ttf-doom/ (Chrome/Edge, WASD+arrows, Space to shoot, Tab for debug overlay)

This is a DOOM-style raycaster, not a port of the original engine - similar to DOOMQL and the Excel DOOM. The wall rendering does happen in the font's hinting VM though. Press Tab in the demo to watch the font variation axes change as you move.

Comments

emanuele-em•17m ago
Ok the MUL workaround got me. MUL does (ab)/64 so you have to DIV first to get a64, then MUL finally gives you a*b. And recursive FDEFs because there's no WHILE? All in 6.5KB? What kind of frame rate do you actually get out of this?
4RH1T3CT0R•4m ago
Frame rate depends on the browser - Chrome gives around 30-60fps on my machine, but the bottleneck is actually Chrome deciding whether to re-run hinting at all (had to add axis jitter to force it). The TT bytecode itself executes fast, it's maybe a few thousand instructions per frame

  The recursive FDEF thing is the worst part honestly. Every while loop is a function that calls itself, and FreeType kills you at ~64 deep. So you're constantly juggling how many columns vs how many ray steps you can afford