frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mitigating Aggressive Crawler Traffic in the Age of Generative AI

https://journal.code4lib.org/articles/18489
1•morusrubra•35s ago•0 comments

Blowing Smoke Up Your Bum and Other Ways to Bring the Dead to Life, 1787

https://flashbak.com/blowing-smoke-up-your-bum-and-other-ways-to-bring-the-dead-to-life-1787-479999/
1•speckx•1m ago•0 comments

The oldest PC games still getting updated today

https://www.pcgamer.com/longest-living-pc-games-80s-90s/
1•Anon84•1m ago•0 comments

Claude PHP SDK

https://github.com/claude-php/Claude-PHP-SDK
1•dalemhurley•2m ago•0 comments

NPR to get $36M in settlement to operate US public radio system

https://apnews.com/article/trump-npr-lawsuit-2cc4abfa8cf00fe6f89e387e63eb4a2a
1•geox•3m ago•0 comments

Show HN: Copus – Internet gem marketplace for bookmark collectors (x402-powered)

https://www.copus.network/
1•Handuo•3m ago•0 comments

Runme: DevOps Notebooks Built with Markdown

https://runme.dev
1•thunderbong•4m ago•0 comments

Socket Certified Patches: One-Click Fixes for Vulnerable Dependencies

https://socket.dev/blog/certified-patches
2•feross•5m ago•0 comments

Making Every 5x5 Nonogram: Part 2 – Scaling, Bots, and Bugs

https://www.patreon.com/posts/making-every-5x5-143088037
1•okayestjoel•7m ago•1 comments

Product discovery grounded in your actual catalog

https://www.getspecos.com/
1•ethanfox•8m ago•0 comments

What's all the buzz about this retro keychain camera?

https://www.rnz.co.nz/life/lifestyle/what-s-all-the-buzz-about-this-retro-keychain-camera
3•billybuckwheat•8m ago•0 comments

Google Scholar Labs

https://scholar.google.com/scholar_labs/search
1•xnx•9m ago•0 comments

My Next Chapter with Mastodon

https://blog.joinmastodon.org/2025/11/my-next-chapter-with-mastodon/
3•Tomte•9m ago•0 comments

Show HN: Explore 2222 games with zero reviews on Steam

https://www.gameswithnoreviews.com/?hn=11
1•AmbroseBierce•9m ago•0 comments

Tesla safety driver falls asleep during passenger's robotaxi ride

https://arstechnica.com/cars/2025/11/tesla-safety-driver-falls-asleep-during-passengers-robotaxi-...
4•barbazoo•10m ago•1 comments

Liqoria Liquid Glass Music for Mac

https://www.liqoria.com/
1•meravlidar•11m ago•1 comments

UX Considerations in Voice Based Forms (VUIs)

https://writingisthinkng.substack.com/p/designing-voice-based-forms
1•fatruchir•11m ago•1 comments

Ask HN: What language are you using for Advent of Code this year?

1•gnarlouse•12m ago•0 comments

Portmanteau

https://en.wikipedia.org/wiki/Portmanteau
1•tosh•12m ago•0 comments

Make Your Own Website

https://michaelenger.com/blog/make-your-own-website/
1•speckx•14m ago•0 comments

Why Ford Can't Find Mechanics

https://www.wsj.com/opinion/ford-motor-ceo-jim-farley-mechanic-shortage-autos-skilled-workers-334...
1•bookofjoe•16m ago•1 comments

The Crisis of the Portuguese Left

https://jacobin.com/2025/10/portugal-left-socialist-costa-chega/
1•PaulHoule•18m ago•0 comments

Anthropic models now available on Microsoft Foundry

https://azure.microsoft.com/en-us/blog/introducing-anthropics-claude-models-in-microsoft-foundry-...
1•kryogen1c•19m ago•0 comments

Pulp (Non)Fiction: A Conversation with Pulp Magazine Collector Dr. Richard Meli

https://intelligentcollector.com/pulp-nonfiction-a-conversation-with-pulp-magazine-collector-dr-r...
1•ohjeez•21m ago•0 comments

Empire of AI Overestimated Datacenter Water Usage by 1000x

https://twitter.com/AndyMasley/status/1990181855753347433
2•kumarharsh•21m ago•0 comments

Court rules Meta purchases of Instagram and WhatsApp did not stifle competition

https://www.reuters.com/sustainability/boards-policy-regulation/meta-defeats-us-antitrust-case-ov...
2•jmsflknr•21m ago•1 comments

Efficient Optimization with Ax, an Open Platform for Adaptive Experimentation

https://engineering.fb.com/2025/11/18/open-source/efficient-optimization-ax-open-platform-adaptiv...
2•mpolson64•24m ago•0 comments

There Be Whales Here

https://ironicsans.ghost.io/there-be-whales-here/
2•Amorymeltzer•26m ago•0 comments

Aptible and Opti9: secure, reliable, compliant cloud infrastructure

https://www.aptible.com/blog/announcing-aptible-opti9
1•vandot•26m ago•0 comments

Show HN: Guts – convert Golang types to TypeScript

https://github.com/coder/guts
7•emyrk•26m ago•0 comments
Open in hackernews

10biForthOS: A full 8086 OS in 46 bytes

https://git.sr.ht/~hocwp/10biForthOS
8•mdp2021•5mo ago

Comments

anthk•5mo ago
More than Forth it looks like an ASM made into a REPL.
romforth•5mo ago
By that metric, my implementation of romforth for x86 clocks in at just 12 bytes (see https://github.com/romforth/romforth/x86/forth.s)

The "bug" in the counting used here is that the overall Kolmogorov(?) complexity is not being accounted for because it is shunted elsewhere.

This is true for the other "tinyforth" implementations as well - such as sectorforth and milliforth, because the actual code ends up in the "input part of the Turing tape" if you want to think of it that way.

The right way to count it might be to measure the closure of all your dependencies (in this case, all of the input bytes that are needed plus the bytes in the BIOS that are needed).

anthk•5mo ago
That's what I tought. Even Miliforth lacks a proper complete integer based stack. From that and a few primitives, you can bootstrap a Forth.

On Lisp, Sectorlisp it's interesting; but the ones from https://t3x.org can do far more, even if they are not bootable per se. But T3XForth can, and it's highly usable.

EForth under SUBLEQ it's like that too.

Instead of "Boot sector languages", I'd pursuit a 386 compatbile language being able to fit in a floppy. T3XForth does, and tons more, because the T3X author made eiher standalone ones, or DOS and CP/M 2.2 ports.