frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I built a tiny LLM to demystify how language models work

https://github.com/arman-bd/guppylm
208•armanified•5h ago•16 comments

Show HN: YouTube search barely works, I made a search form with advanced filters

https://playlists.at/youtube/search/
147•nevernothing•5h ago•94 comments

Gemma 4 on iPhone

https://apps.apple.com/nl/app/google-ai-edge-gallery/id6749645337
518•janandonly•10h ago•133 comments

Copilot is 'for entertainment purposes only', per Microsoft's terms of use

https://techcrunch.com/2026/04/05/copilot-is-for-entertainment-purposes-only-according-to-microso...
106•airstrike•5h ago•17 comments

An open-source 240-antenna array to bounce signals off the Moon

https://moonrf.com/
25•hillcrestenigma•2h ago•5 comments

Microsoft hasn't had a coherent GUI strategy since Petzold

https://www.jsnover.com/blog/2026/03/13/microsoft-hasnt-had-a-coherent-gui-strategy-since-petzold/
310•naves•11h ago•177 comments

The 1987 game "The Last Ninja" was 40 kilobytes

https://twitter.com/exQUIZitely/status/2040777977521398151
27•keepamovin•2h ago•9 comments

LÖVE: 2D Game Framework for Lua

https://github.com/love2d/love
244•cl3misch•1d ago•98 comments

Eight years of wanting, three months of building with AI

https://lalitm.com/post/building-syntaqlite-ai/
713•brilee•16h ago•218 comments

Artemis II crew see first glimpse of far side of Moon [video]

https://www.bbc.com/news/videos/ce3d5gkd2geo
454•mooreds•15h ago•352 comments

Show HN: Gemma Gem – AI model embedded in a browser – no API keys, no cloud

https://github.com/kessler/gemma-gem
38•ikessler•5h ago•4 comments

Endian wars and anti-portability: this again?

https://dalmatian.life/2026/04/03/endian-wars-and-anti-portability-this-again/
37•awilfox•1d ago•38 comments

Case study: recovery of a corrupted 12 TB multi-device pool

https://github.com/kdave/btrfs-progs/issues/1107
19•salt4034•2h ago•0 comments

Media scraper Gallery-dl is moving to Codeberg after receiving a DMCA notice

https://github.com/mikf/gallery-dl/discussions/9304
88•MoltenMonster•1h ago•28 comments

Running Gemma 4 locally with LM Studio's new headless CLI and Claude Code

https://ai.georgeliu.com/p/running-google-gemma-4-locally-with
226•vbtechguy•12h ago•56 comments

We replaced Node.js with Bun for 5x throughput

https://trigger.dev/blog/firebun
25•pier25•3h ago•7 comments

Winners of the 2026 Kokuyo Design Awards

https://spoon-tamago.com/winners-of-the-2026-kokuyo-design-awards/
10•zdw•1h ago•0 comments

Employers use your personal data to figure out the lowest salary you'll accept

https://www.marketwatch.com/story/employers-are-using-your-personal-data-to-figure-out-the-lowest...
142•thisislife2•4h ago•61 comments

Show HN: Modo – I built an open-source alternative to Kiro, Cursor, and Windsurf

https://github.com/mohshomis/modo
30•mohshomis•5h ago•3 comments

Signals, the push-pull based algorithm

https://willybrauner.com/journal/signal-the-push-pull-based-algorithm
3•mpweiher•1d ago•0 comments

Why Switzerland has 25 Gbit internet and America doesn't

https://sschueller.github.io/posts/the-free-market-lie/
338•sschueller•10h ago•263 comments

Rendering arbitrary-scale emojis using the Slug algorithm

https://leduyquang753.name.vn/blog/2026/4/4/rendering-arbitrary-scale-emojis-using-the-slug-algor...
5•leduyquang753•1d ago•0 comments

Sheets Spreadsheets in Your Terminal

https://github.com/maaslalani/sheets
27•_____k•1d ago•6 comments

Usenet Archives

https://usenetarchives.com
13•myth_drannon•3h ago•1 comments

In Japan, the robot isn't coming for your job; it's filling the one nobody wants

https://techcrunch.com/2026/04/05/japan-is-proving-experimental-physical-ai-is-ready-for-the-real...
146•rbanffy•6h ago•166 comments

Music for Programming

https://musicforprogramming.net
132•merusame•11h ago•61 comments

The Mechanics of Steins Gate (2023) [pdf]

https://github.com/Votuko/steins-gate-mechanics/blob/main/The%20Mechanics%20of%20Steins%20Gate%20...
61•Ariarule•7h ago•12 comments

Computational Physics (2nd Edition) (2025)

https://websites.umich.edu/~mejn/cp2/
122•teleforce•13h ago•16 comments

A tail-call interpreter in (nightly) Rust

https://www.mattkeeter.com/blog/2026-04-05-tailcall/
140•g0xA52A2A•14h ago•25 comments

Caveman: Why use many token when few token do trick

https://github.com/JuliusBrussee/caveman
735•tosh•20h ago•320 comments
Open in hackernews

We replaced Node.js with Bun for 5x throughput

https://trigger.dev/blog/firebun
25•pier25•3h ago

Comments

ksec•1h ago
>Next: the runtime itself. Bun has a bun build --compile flag that produces a single self-contained executable. No runtime, no node_modules, no source files needed in the container.

I didn't know that. So Bun is basically a whole runtime + framework all in one with little to no deployment headaches?

jamsinclair•49m ago
The bun build creates a large self-contained executable with no optimisations. Almost like a large electron build.

Deno also provides the same functionality, but with a smaller optimized binary.

Appreciate Bun helping creating healthy competition. I feel like Deno falls under most people's radar often. More security options, faster than Node, built on web standards.

thewarman•42m ago
This (single executable) is available in node.js now too as SEA mode.
claytongulick•10m ago
But I think it still doesn't work with ESM, only CommonJS, so while not insurmountable, not as good as bun.
denys_potapov•55m ago
tl;dr replace SQLite with Map ~ 2x speed up, replace zod validation with ifs ~ 2x speed up. Bun had a memory leak on unresolved promises - now fixed
dcre•51m ago
I was curious why bun build --compile would be faster. The docs say:

“Compiled executables reduce memory usage and improve Bun’s start time.

Normally, Bun reads and transpiles JavaScript and TypeScript files on import and require. This is part of what makes so much of Bun “just work”, but it’s not free. It costs time and memory to read files from disk, resolve file paths, parse, transpile, and print source code.

With compiled executables, you can move that cost from runtime to build-time.”

https://bun.com/docs/bundler/executables#deploying-to-produc...

abustamam•40m ago
I use bun for everything except for monorepos with isolated deployment targets and shared packages. I use yarn or pnpm for monorepos. Maybe it's changed in the last six months but I could never get docker to properly resolve my dependencies when I only want to build the web app, for example, since the bun lock is deterministic based off of all the packages in the repo so isolating a single leaf makes it error.

Maybe I'm doing something wrong but I scoured docs and online and asked multiple AI agents to no avail.