frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Baby Is Healed with First Personalized Gene-Editing Treatment

https://www.nytimes.com/2025/05/15/health/gene-editing-personalized-rare-disorders.html
131•jbredeche•2h ago•64 comments

I Don't Like NumPy

https://dynomight.net/numpy/
208•MinimalAction•4h ago•91 comments

The current state of TLA⁺ development

https://ahelwer.ca/post/2025-05-15-tla-dev-status/
40•todsacerdoti•1h ago•1 comments

The Unreasonable Effectiveness of an LLM Agent Loop with Tool Use

https://sketch.dev/blog/agent-loop
18•crawshaw•50m ago•2 comments

Dr. Dobb's Journal Interviews Jef Raskin (1986)

https://computeradsfromthepast.substack.com/p/dr-dobbs-journal-interviews-jef-raskin
24•rbanffy•1h ago•7 comments

Launch HN: Tinfoil (YC X25): Verifiable Privacy for Cloud AI

77•FrasiertheLion•4h ago•49 comments

Improving Naval Ship Acquisition

https://www.construction-physics.com/p/fixing-naval-ship-acquisition
23•Luc•2h ago•20 comments

Tek – a music making program for 24-bit Unicode terminals

https://codeberg.org/unspeaker/tek
5•smartmic•27m ago•0 comments

A Tiny Boltzmann Machine

https://eoinmurray.info/boltzmann-machine
192•anomancer•6h ago•32 comments

Show HN: Min.js style compression of tech docs for LLM context

https://github.com/marv1nnnnn/llm-min.txt
128•marv1nnnnn•6h ago•37 comments

New paradigm for psychology just dropped

https://www.experimental-history.com/p/new-paradigm-for-psychology-just
26•CharlesW•1h ago•25 comments

Malicious compliance by booking an available meeting room

https://www.clientserver.dev/p/malicious-compliance-by-booking-an
236•jakevoytko•7h ago•225 comments

Fetii (YC S22) Is Hiring

https://www.ycombinator.com/companies/fetii/jobs/QDjleWs-senior-operations-manager-fetii
1•Mattiommi•3h ago

Harvard Law paid $27 for a copy of Magna Carta. It's an original

https://www.nytimes.com/2025/05/15/world/europe/harvard-law-magna-carta-original.html
74•jgwil2•1h ago•27 comments

Refactoring Clojure

https://www.orsolabs.com/post/refactoring-clojure-1/
6•luu•56m ago•0 comments

Onfim's world: Child artists in history

https://resobscura.substack.com/p/onfims-world-medieval-child-artists
26•benbreen•3h ago•5 comments

Show HN: Real-Time Gaussian Splatting

https://github.com/axbycc/LiveSplat
109•markisus•6h ago•43 comments

Coinbase says hackers bribed staff to steal customer data, demanding $20M ransom

https://www.cnbc.com/2025/05/15/coinbase-says-hackers-bribed-staff-to-steal-customer-data-and-are-demanding-20-million-ransom.html
189•gpi•4h ago•199 comments

The Scalar Select Anti-Pattern

https://matklad.github.io/2025/05/14/scalar-select-aniti-pattern.html
14•goranmoomin•1d ago•0 comments

Lua for Elixir

https://davelucia.com/blog/lua-elixir
159•davydog187•2d ago•63 comments

Wavelet Trees: An Introduction (2011)

https://www.alexbowe.com/wavelet-trees/
37•Tomte•4h ago•9 comments

The Fastest Way yet to Color Graphs

https://www.quantamagazine.org/the-fastest-way-yet-to-color-graphs-20250512/
29•GavCo•2d ago•8 comments

Pathfinding

https://juhrjuhr.itch.io/deep-space-exploitation/devlog/945428/9-pathfinding
88•sebg•7h ago•29 comments

How we made billing backendless

https://useautumn.com/blog/backendless
25•ayushrodrigues•6h ago•37 comments

Model Organisms Are Not Static

https://www.asimov.press/p/model-organisms-are-not-static
24•mailyk•4h ago•6 comments

A Rust API Inspired by Python, Powered by Serde

https://ohadravid.github.io/posts/2025-05-serde-reflect/
46•lukastyrychtr•4d ago•20 comments

Show HN: Undetectag, track stolen items with AirTag

https://undetectag.com/
38•pompidoo•4h ago•50 comments

Demystifying Ruby (1/3): It's all about threads

https://blog.papey.fr/post/07-demystifying-ruby-01/
36•kadrek•6h ago•0 comments

Radiance Contrasts at Possible Lunar Water Ice Exposures Seen by ShadowCam

https://iopscience.iop.org/article/10.3847/PSJ/adb8d1
7•PaulHoule•2d ago•0 comments

Working on complex systems: What I learned working at Google

https://www.thecoder.cafe/p/complex-systems
220•0xKelsey•2d ago•113 comments
Open in hackernews

Moving Forth: a series on writing Forth kernels

https://www.bradrodriguez.com/papers/index.html
51•todsacerdoti•14h ago

Comments

benji-york•8h ago
Some trivia for those who might not be aware: the tile of the series is a reference to the beloved 1981 book "Starting FORTH" which you can now read online at https://www.forth.com/wp-content/uploads/2018/01/Starting-FO...

Do yourself a favor and read a few chapters.

sitkack•5h ago
I would also recommend "R. G. Loeliger Threaded Interpretive Languages Their Design And Implementation" between these two books the whole beauty of Forth and their implementation should just click.

Forth isn't one of those languages that you _use_. You extend the language from the inside, so you need to know how your Forth is implemented. I'd say it is the only language where users of the language could all recreate the language.

Verdex•5h ago
Also recommending Thinking Forth by Leo Brodie. The book feels like it was written in the 2010s but the original publish date was mid 80s.
zck•2h ago
Writing a Forth myself, I find it somewhat frustrating that I have relatively different design restrictions than these guides. I don't need to be incredibly low-power, so I'm using C, not assembly. I'm not a great C coder, and I've never done assembly, so I find it hard (but not impossible) to learn from assembly. Also, because it's not assembly, I can't just JUMP to code the same way assembly can.

It's also frustrating trying to understand some of the lowest-level information. For example, a few systems have a very fundamental `w` variable -- but what is is used for? You can't search for it. Or just using registers and having to remember that %esi is the program counter (aka instruction pointer).

I keep wanting to make a series of diagrams to really understand Forth's program flow. It makes sense in concept, but when I go to program it, there are a lot of nuances I keep missing.

crq-yml•59m ago
It took me a few tries(over a few years) to properly approach the task of writing a Forth, and when I approached it, I made my Forth in Lua, and all I really did was implement the wordlist in FORTH-83 as the spec indicated, and rewrite every time my model assumptions were off. No diving into assembly listings. Eventually I hit the metaprogramming words and those were where I grasped the ways in which the parser and evaluator overlap in a modal way - that aspect is the beating heart of a bootstrappable Forth system and once you have it, the rest is relatively trivial to build when starting from a high level environment.

The thing is, pretty much every modern high level language tends to feel a bit clumsy as a Forth because the emphasis of the execution model is different - under everything with an Algol-like runtime, there's a structured hierarchy of function calls with named parameters describing subprograms. Those are provisions of the compiler that automate a ton of bookkeeping and shape the direction of the code.

It's easier to see what's going on when starting from the metaphor of a line-number BASIC (as on most 8-bit micros) where program execution is still spatial in nature and there usually aren't function calls and sometimes not even structured loops, so GOTO and global temporaries are used heavily instead. That style of coding maps well to assembly, and the Forth interpreter adds just a bit of glue logic over it.

When I try to understand new systems, now, I will look for the SEE word and use that to tear things down word by word. But I still usually don't need to go down to the assembly(although some systems like GForth do print out an assembly listing if asked about their core wordset).

zck•25m ago
I understand implementing words as you think they should be. However, you need the core first, and that's where I'm working right now. I'm trying to get the central loop, dictionary, and threading model functional.

Which brings up another complication -- the threading model. There are multiple, of course. But sometimes I want to figure out, for example, what the `w` variable does. Is it different between indirect threading and subroutine threading? Maybe!

anthk•1h ago
This is fun too

      https://github.com/howerj/subleq/
but you might need to edit subleq.fth and create a new image with some of the constants named opt.* settings set to 1 (enabled) in order to enable do...loop support and such. After you enabled them, try ./sublec ./sublrec.dec < ./sublec.fth > new.dec, wait a lot, and then run ./subleq sublec.dec .

In order to save lots of time, clone the muxleq repo https://github.com/howerj/muxleq , edit muxleq.fth as always, and then run ./muxleq ./muxlec.dec < muxlec.fth > new.dec, and ./muxlec ./new.dec to run the new DEC EForth image.

Is not especially fast but it's a ready to run Forth and the Subleq machine can be compiled even under Windows XP and up with Min-C or any bundled C compiled on GNU/Linux BSD, from cproc to tcc, gcc or clang. If some of your code runs fast under Muxleq+EForth, it will fly under PForth and GForth.

https://minc.commandlinerevolution.nl/english/home.html

The speeds I get under an n270 atom with Muxleq are almost like a Forth machine under a boosted up 8 bit machine, kinda like an 8MHZ z80 with a native Forth, or a very low end M68k machine.