frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Can you stop beans from making you gassy?

https://www.seriouseats.com/how-to-reduce-bean-gas-tested-11883862
52•jstrieb•1h ago•23 comments

The Free Universal Construction Kit

https://fffff.at/free-universal-construction-kit/
194•robinhouston•3d ago•39 comments

1-Bit Hokusai's "The Great Wave" (2023)

https://www.hypertalking.com/2023/05/08/1-bit-pixel-art-of-hokusais-the-great-wave-off-kanagawa/
476•stephen-hill•3d ago•83 comments

Using coding assistance tools to revive projects you never were going to finish

https://blog.matthewbrunelle.com/its-ok-to-use-coding-assistance-tools-to-revive-the-projects-you...
98•speckx•5h ago•52 comments

New 10 GbE USB adapters are cooler, smaller, cheaper

https://www.jeffgeerling.com/blog/2026/new-10-gbe-usb-adapters-cooler-smaller-cheaper/
507•calcifer•16h ago•300 comments

Simulacrum of Knowledge Work

https://blog.happyfellow.dev/simulacrum-of-knowledge-work/
48•thehappyfellow•4h ago•20 comments

Mine, an IDE for Coalton and Common Lisp

https://coalton-lang.github.io/mine/
34•varjag•4h ago•2 comments

Desmond Morris has died

https://www.bbc.com/news/articles/c51y797v200o
74•martey•5d ago•13 comments

Martin Galway's music source files from 1980's Commodore 64 games

https://github.com/MartinGalway/C64_music
149•ingve•11h ago•18 comments

The AI Industry Is Discovering That the Public Hates It

https://newrepublic.com/article/209163/ai-industry-discovering-public-backlash
113•chirau•50m ago•105 comments

GPT‑5.5 Bio Bug Bounty

https://openai.com/index/gpt-5-5-bio-bug-bounty/
110•Murfalo•7h ago•87 comments

Discret 11, the French TV encryption of the 80s

https://fabiensanglard.net/discret11/
130•adunk•10h ago•20 comments

Lute: A Standalone Runtime for Luau

https://lute.luau.org/
36•vrn-sn•2d ago•7 comments

How Hard Is It to Open a File?

https://blog.sebastianwick.net/posts/how-hard-is-it-to-open-a-file/
19•ffin•1d ago•2 comments

Which one is more important: more parameters or more computation? (2021)

https://parl.ai/projects/params_vs_compute/
39•jxmorris12•1d ago•5 comments

What async promised and what it delivered

https://causality.blog/essays/what-async-promised/
108•zdw•3d ago•103 comments

Hokusai and Tesselations

https://dl.ndl.go.jp/pid/1899550/1/11/
78•srean•4h ago•13 comments

Show HN: Kloak, A secret manager that keeps K8s workload away from secrets

https://getkloak.io/
22•neo2006•2h ago•15 comments

The Joy of Folding Bikes

https://blog.korny.info/2026/04/19/the-joy-of-folding-bikes
6•pavel_lishin•3d ago•0 comments

America's Geothermal Breakthrough Could Unlock a 150-Gigawatt Energy Revolution

https://oilprice.com/Alternative-Energy/Geothermal-Energy/Americas-Geothermal-Breakthrough-Could-...
30•sleepyguy•2h ago•13 comments

Insights into firewood use by early Middle Pleistocene hominins

https://www.sciencedirect.com/science/article/pii/S0277379126001824
43•wslh•3d ago•17 comments

A web-based RDP client built with Go WebAssembly and grdp

https://github.com/nakagami/grdpwasm
97•mariuz•11h ago•39 comments

Only one side will be the true successor to MS-DOS – Windows 2.x

https://blisscast.wordpress.com/2026/04/21/windows-2-gui-wonderland-12a/
65•keepamovin•10h ago•47 comments

North American Millets Alliance(2023)

https://milletsalliance.org/
8•num42•4h ago•2 comments

Plain text has been around for decades and it’s here to stay

https://unsung.aresluna.org/plain-text-has-been-around-for-decades-and-its-here-to-stay/
254•rbanffy•20h ago•127 comments

Replace IBM Quantum back end with /dev/urandom

https://github.com/yuvadm/quantumslop/blob/25ad2e76ae58baa96f6219742459407db9dd17f5/URANDOM_DEMO.md
315•pigeons•21h ago•44 comments

HEALPix

https://en.wikipedia.org/wiki/HEALPix
46•hyperific•8h ago•6 comments

Lambda Calculus Benchmark for AI

https://victortaelin.github.io/lambench/
119•marvinborner•10h ago•36 comments

Commenting and approving pull requests

https://www.jakeworth.com/posts/on-commenting-and-approving-pull-requests/
72•jwworth•2d ago•61 comments

Sabotaging projects by overthinking, scope creep, and structural diffing

https://kevinlynagh.com/newsletter/2026_04_overthinking/
506•alcazar•1d ago•129 comments
Open in hackernews

Show HN: Kloak, A secret manager that keeps K8s workload away from secrets

https://getkloak.io/
21•neo2006•2h ago

Comments

neo2006•2h ago
Hey, we're the spinning-factory team, the folks behind Kloak. Kloak runs as a Kubernetes controller. It swaps the secrets in your workloads for harmless placeholders we call kloaked secrets, then uses eBPF to substitute the real secrets back in at the last moment — right when your app makes a request to an allowed host. Today, Kloak works with any app using OpenSSL 3.0–3.5 (statically or dynamically linked) or go-tls (Go 1.25 and 1.26). Support for more TLS libraries (GnuTLS, BoringSSL, and others) and additional Go versions is on the roadmap. Kloak is open source under the AGPL, contributions are welcome! We are also happy to hear any feedback and answer any question for the HN community.
koolba•1h ago
So it reads the packets and replaces the byte sequences at the kernel level? How does that work across packet boundaries?
neo2006•1h ago
Secrets are detected before encryption in the user buffer but rewrites happen post encryption in the kernel buffer to be sent on the wire.

packets boundaries are not an issue because detection happen at the SSL write where we have the full secret in the buffer and its position so we can know at rewrite time that the secret is cross 2 packets and rewrite it in 2 separate operations. We also have to update the TLS session hash at the end to not corrupt the TLS frame.

subhobroto•1h ago
This is fantastic! I need this. however, for my self-hosted home projects that are containerized but where I don't use Kubernetes, is there a way for me to use a version of Kloak that does the same eBPF magic on docker-compose or LXC/QEMU (Incus) stacks?

It's perfectly fine for you to say non-Kubernetes isn't either your focus or on your 90 day roadmap :)

neo2006•1h ago
Thank you! We appreciate your enthusiasm! :-) From technology perspective nothing prevent kloak to do rewrite on any workload scheduler or even without a scheduler (native Linux). The main challenge is to find a flow to signal to kloak what to rewrite and how to inject kloaked secrets to the workload. TBH supporting other technologies is not something we thought about but we can definitely consider if there is an ask for it from the community.
NewJazz•1h ago
Yeah you might have to go talk to incus folks on how to integrate this together.. They are fairly capable, might have some good direction.

https://discuss.linuxcontainers.org/t/how-to-best-ask-questi...

mrweasel•1h ago
Yeah, so Kloak is Danish for sewer.
WJW•1h ago
More or less straight from Latin?

https://en.wikipedia.org/wiki/Cloaca_Maxima

neo2006•1h ago
I guess we are the secrets sewers then! :D We would love to hear what you think about it beyond the name though.
anthonyskipper•15m ago
I think it is funny that it's sewer, because a sewer is also a underground way around things, which is a good description of the out of band solution here. So the name checks out.
captn3m0•1h ago
You should split your controller - it is running in both the control and data planes. Idea is good though, wish you luck.
NewJazz•55m ago
Aiui the controller is only running in the control plane, and the ebpf programs are in the data plane?
neo2006•48m ago
Thank you! Not really, the controller is not doing dataplane per-say, it only pushes eBPF programs to the kernel for the relevant apps/cgroups so that could be considered control-plane. The full data-plane run in eBPF.
anthonyskipper•56m ago
This is pretty awesome. Super relevant for the time because AI controlled workflows are desperate for a out of band solution like this.

The main thing I wonder is how well supported is it in cloud environements? AKS/EKS/etc?

spinningfactory•51m ago
It should work in cloud environments, We tested it on EKS and digital ocean cloud so far, and it works. The kloak controller is deployed as privileged daemonset that have access to the underlying host and can perform eBPF attachment operations on all the pods on that host.