frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Coding Agents Could Make Free Software Matter Again

https://www.gjlondon.com/blog/ai-agents-could-make-free-software-matter-again/
37•rogueleaderr•39m ago•17 comments

ChatGPT Won't Let You Type Until Cloudflare Reads Your React State

https://www.buchodi.com/chatgpt-wont-let-you-type-until-cloudflare-reads-your-react-state-i-decry...
228•alberto-m•2h ago•168 comments

The Cognitive Dark Forest

https://ryelang.org/blog/posts/cognitive-dark-forest/
159•kaycebasques•3h ago•77 comments

Voyager 1 runs on 69 KB of memory and an 8-track tape recorder

https://techfixated.com/a-1977-time-capsule-voyager-1-runs-on-69-kb-of-memory-and-an-8-track-tape...
342•speckx•6h ago•143 comments

Midnight train from GA: A view of America from the tracks as airports struggle

https://isp.netscape.com/news/story/0001/20260329/e4d8ea591b3b036142c2bf2dee7dff5a
52•walterbell•3h ago•40 comments

I'll buy your electronics to feed our robot

https://www.dayworkx.com/
12•skholinn•3d ago•3 comments

C++26 is done ISO C++ standards meeting, Trip Report

https://herbsutter.com/2026/03/29/c26-is-done-trip-report-march-2026-iso-c-standards-meeting-lond...
141•pjmlp•5h ago•108 comments

Pretext: TypeScript library for multiline text measurement and layout

https://github.com/chenglou/pretext
164•emersonmacro•1d ago•21 comments

The road signs that teach travellers about France

https://www.bbc.com/travel/article/20260327-the-road-signs-that-teach-travellers-about-france
27•1659447091•2h ago•2 comments

Ohm's Peg-to-WASM Compiler

https://ohmjs.org/blog/2026/03/12/peg-to-wasm
21•azhenley•2d ago•3 comments

The RISE RISC-V Runners: free, native RISC-V CI on GitHub

https://riseproject.dev/2026/03/24/announcing-the-rise-risc-v-runners-free-native-risc-v-ci-on-gi...
100•thebeardisred•3d ago•23 comments

Show HN: Crazierl – An Erlang Operating System

https://crazierl.org/demo/
25•toast0•2h ago•7 comments

There is No Spoon. A software engineers primer for demystified ML

https://github.com/dreddnafious/thereisnospoon
4•jmatthews•33m ago•1 comments

Neovim 0.12.0

https://github.com/neovim/neovim/releases/tag/v0.12.0
251•pawelgrzybek•5h ago•111 comments

More on Version Control

https://bramcohen.com/p/more-on-version-control
39•velmu•3h ago•4 comments

AyaFlow: A high-performance, eBPF-based network traffic analyzer written in Rust

https://github.com/DavidHavoc/ayaFlow
73•tanelpoder•7h ago•4 comments

Kyushu Railway Company Train Varieties

https://www.jrkyushu.co.jp/english/train/index.html
36•NaOH•3h ago•1 comments

Creating West Coast Buddhism (2024)

https://letter.palladiummag.com/p/creating-west-coast-buddhism
38•surprisetalk•3d ago•14 comments

The rise and fall of IBM's 4 Pi aerospace computers: an illustrated history

https://www.righto.com/2026/03/ibm-4-pi-computer-history.html
60•zdw•6h ago•19 comments

Show HN: QuickBEAM – run JavaScript as supervised Erlang/OTP processes

https://github.com/elixir-volt/quickbeam
61•dannote•1d ago•10 comments

Show HN: I made a "programming language" looking for feedback

https://github.com/alonsovm44/glupe
21•alonsovm•4h ago•20 comments

LinkedIn uses 2.4 GB RAM across two tabs

558•hrncode•14h ago•334 comments

Observations from carbon dioxide monitoring

https://grieve-smith.com/ftn/2026/03/nine-observations-from-carbon-dioxide-monitoring/
37•coloneltcb•2d ago•15 comments

Nitrile and latex gloves may cause overestimation of microplastics

https://news.umich.edu/nitrile-and-latex-gloves-may-cause-overestimation-of-microplastics-u-m-stu...
483•giuliomagnifico•13h ago•214 comments

Police used AI facial recognition to wrongly arrest TN woman for crimes in ND

https://www.cnn.com/2026/03/29/us/angela-lipps-ai-facial-recognition
315•ourmandave•8h ago•121 comments

A nearly perfect USB cable tester

https://blog.literarily-starved.com/2026/02/technology-the-nearly-perfect-usb-cable-tester-does-e...
261•birdculture•3d ago•141 comments

Miasma: A tool to trap AI web scrapers in an endless poison pit

https://github.com/austin-weeks/miasma
268•LucidLynx•12h ago•200 comments

Sky Wins Irish Court Order to Unmask 300 Pirate IPTV Users via Revolut Bank

https://torrentfreak.com/sky-wins-irish-court-order-to-unmask-300-pirate-iptv-users-via-revolut-b...
42•nixass•2h ago•9 comments

Full network of clitoral nerves mapped out for first time

https://www.theguardian.com/society/2026/mar/29/full-network-clitoral-nerves-mapped-out-first-tim...
203•onei•7h ago•67 comments

The Epistemology of Microphysics

https://www.edwardfeser.com/unpublishedpapers/microphysics.html
36•danielam•4d ago•22 comments
Open in hackernews

What category theory teaches us about dataframes

https://mchav.github.io/what-category-theory-teaches-us-about-dataframes/
13•fanf2•2h ago

Comments

xstas1•1h ago
Partway through, I recognized the function calling syntax as similar to Nix which I just started learning.

Turns out the implementation of the article is in Haskell, another declarative language.

At work. we use Power Query with it's M language - a declarative language with lazy evaluation.

Is there something about declarative languages that makes them especially suitable for data work?

tekne•1h ago
I mean — the ideal of an SQL query is you say what you want, and it’s up to the engine to determine how to give it to you — that is, being declarative.

Part of it is there’s so many different ways to represent data, and even more ways to compute a given quantity — but the quantity itself often has a clear definition (sum this column from all rows where this holds, say)