frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The 'Toy Story' You Remember

https://animationobsessive.substack.com/p/the-toy-story-you-remember
790•ani_obsessive•12h ago•205 comments

Show HN: Gametje – A casual online gaming platform

https://gametje.com
30•jmpavlec•54m ago•6 comments

I Fell in Love with Erlang

https://boragonul.com/post/falling-in-love-with-erlang
214•asabil•1w ago•104 comments

Widespread distribution of bacteria containing PETases across global oceans

https://academic.oup.com/ismej/article/19/1/wraf121/8159680?login=false
40•PaulHoule•3h ago•9 comments

Advent of Code on the Z-Machine

https://entropicthoughts.com/advent-of-code-on-z-machine
43•todsacerdoti•3h ago•9 comments

iPhone Pocket

https://www.apple.com/newsroom/2025/11/introducing-iphone-pocket-a-beautiful-way-to-wear-and-carr...
77•soheilpro•5h ago•188 comments

High speed X-ray video: jumping beans, wind-up toys and more

https://www.youtube.com/watch?v=xdpDd7dyU00
11•surprisetalk•4d ago•3 comments

Show HN: Tusk Drift – Open-source tool for automating API tests

https://github.com/Use-Tusk/drift-node-sdk
10•Marceltan•1h ago•1 comments

Drawing Text Isn't Simple: Benchmarking Console vs. Graphical Rendering

https://cv.co.hu/csabi/drawing-text-performance-graphical-vs-console.html
5•PaulHoule•41m ago•0 comments

Zig / C++ Interop

https://tuple.app/blog/zig-cpp-interop
74•simonklee•7h ago•8 comments

The kind of company I want to be a part of

https://www.dvsj.in/my-company
85•ctxc•6d ago•82 comments

Welcome, the entire land - "Hello, world!" in hieroglyphics

https://optional.is/required/2009/12/03/welcome-the-entire-land/
34•andrelaszlo•4h ago•6 comments

Hazel (YC W24) Is Hiring Full Stack Engineers

https://www.ycombinator.com/companies/hazel-2/jobs/fCdGOZw-full-stack-engineer
1•augustschen•3h ago

Why effort scales superlinearly with the perceived quality of creative work

https://markusstrasser.org/creative-work-landscapes.html
65•eatitraw•7h ago•58 comments

US Army to buy 1 million drones, in major acquisition ramp-up

https://www.reuters.com/business/aerospace-defense/us-army-buy-1-million-drones-major-acquisition...
18•breve•53m ago•8 comments

The Perplexing Appeal of the Telepathy Tapes

https://asteriskmag.com/issues/12-books/paradigm-shifted-the-perplexing-appeal-of-the-telepathy-t...
7•surprisetalk•1h ago•0 comments

OpenAI may not use lyrics without license, German court rules

https://www.reuters.com/world/german-court-sides-with-plaintiff-copyright-case-against-openai-202...
111•aiz0Houp•4h ago•118 comments

SanDisk launches dongle-like Extreme Fit USB-C flash drive with up to 1 TB

https://www.notebookcheck.net/Sandisk-launches-dongle-like-Extreme-Fit-USB-C-flash-drive-with-up-...
75•teleforce•4d ago•85 comments

Baby shoggoth is listening

https://theamericanscholar.org/baby-shoggoth-is-listening/
34•toomuchtodo•1w ago•26 comments

DARPA and Texas Bet $1.4B on Unique Foundry -3D heterogeneous integration

https://spectrum.ieee.org/3d-heterogeneous-integration
14•pseudolus•3h ago•0 comments

Show HN: Venturu – Zillow for the market of local businesses

https://www.venturu.com
8•lifenautjoe•2h ago•4 comments

Trying two dozen different psychedelics

https://psychotechnology.substack.com/p/on-trying-two-dozen-different-psychedelics
31•eatitraw•4h ago•19 comments

The R47: A new physical RPN calculator released today in 2025

https://www.swissmicros.com/product/model-r47
3•dm319•4d ago•3 comments

Upbeat Technology's RISC-V MCU Takes Flight with Near-Threshold Computing

https://www.allaboutcircuits.com/news/upbeat-technologys-risc-v-mcu-takes-flight-with-near-thresh...
22•warrenm•5d ago•3 comments

High-performance 2D graphics rendering on the CPU using sparse strips [pdf]

https://github.com/LaurenzV/master-thesis/blob/main/main.pdf
264•PaulHoule•17h ago•34 comments

The write last, read first rule

https://tigerbeetle.com/blog/2025-11-06-the-write-last-read-first-rule/
74•vismit2000•9h ago•18 comments

Hiring a developer as a small indie studio in 2025

https://www.ballardgames.com/tales/hiring-dev-2025/
85•jordigh•11h ago•70 comments

Writing your own BEAM

https://martin.janiczek.cz/2025/11/09/writing-your-own-beam.html
244•cbzbc•1d ago•79 comments

When Soviet-made cars roamed Singapore roads

https://remembersingapore.org/2025/10/30/soviet-made-cars-singapore-70s-to-90s/
103•sohkamyung•1w ago•67 comments

Ask HN: What Are You Working On? (Nov 2025)

414•david927•1d ago•1214 comments
Open in hackernews

Show HN: Linnix – eBPF observability that predicts failures before they happen

https://github.com/linnix-os/linnix
17•parth21shah•2h ago
I kept missing incidents until it was too late. By the time my monitoring alerted me, servers/nodes were already unrecoverable.

So I built Linnix. It watches your Linux systems at the kernel level using eBPF and tries to catch problems before they cascade into outages.

The idea is simple: instead of alerting you after your server runs out of memory, it notices when memory allocation patterns look weird and tells you "hey, this looks bad."

It uses a local LLM to spot patterns. Not trying to build AGI here - just pattern matching on process behavior. Turns out LLMs are actually pretty good at this.

Example: it flagged higher memory consumption over a short period and alerted me before it was too late. Turned out to be a memory leak that would've killed the process.

Quick start if you want to try it:

  docker pull ghcr.io/linnix-os/cognitod:latest
  docker-compose up -d
Setup takes about 5 minutes. Everything runs locally - your data doesn't leave your machine.

The main difference from tools like Prometheus: most monitoring parses /proc files. This uses eBPF to get data directly from the kernel. More accurate, way less overhead.

Built it in Rust using the Aya framework. No libbpf, no C - pure Rust all the way down. Makes the kernel interactions less scary.

Current state: - Works on any Linux 5.8+ with BTF - Monitors Docker/Kubernetes containers - Exports to Prometheus - Apache 2.0 license

Still rough around the edges. Actively working on it.

Would love to know: - What kinds of failures do you wish you could catch earlier? - Does this seem useful for your setup?

GitHub: https://github.com/linnix-os/linnix

Happy to answer questions about how it works.

Comments

jmalicki•2h ago
Neat but obvious AI slop (coming from someone who vibe codes a lot). The diagrams that don't align in the README, and a readme making ai typical bold claims that haven't been edited, make me doubt how much a human has even reviewed this software or tested it.

If the author hasn't reviewed or tested it why should anyone else bother?

parth21shah•1h ago
I started this as a personal project to help with monitoring my personal projects. The eBPF monitoring works well - that part is solid.

The AI part is experimental, especially the idea of running inference on CPU (can't afford GPUs and didn't want to rely on OpenAI APIs, though that's where it started). It's hit-or-miss depending on the model.

Not production-tested at scale - just sharing in case it's useful to others who want to tinker with eBPF + Rust.

Full transparency: I did use AI to help write the documentation because honestly, writing docs feels boring and will review thoroughly now based on your feedback

Open sourcing something for the first times so trying and learning

jmalicki•1h ago
It does seem super cool! But if you aren't even editing the basic README.md - it's not that you used AI to help, but that you that you didn't even do the most basic editing, I don't know what to trust. If I can't trust the docs why spend my time?
ohyoutravel•50m ago
eBPF is so low level it feels like a mistake to let vibe coded slop exist there. I’ll have to pass until someone reputable reviews it, which I assume will be never.