frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Infinite Jest Extraction

https://mattlakeman.org/2026/03/26/infinite-jest-extraction/
1•senkora•1m ago•0 comments

Zephyr – UI Framework Built for AI Agents

https://daltlc.github.io/zephyr-framework/
1•daltonlcarr•4m ago•0 comments

The artworks by women where men got the credit

https://www.bbc.com/culture/article/20260325-the-artworks-by-women-where-men-got-the-credit
1•1659447091•4m ago•0 comments

MLSys 2026 Papers

https://mlsys.org/virtual/2026/papers.html
1•matt_d•5m ago•0 comments

Ejabberd 26.03 / ProcessOne – Erlang Jabber/XMPP/Matrix Server – Communication

https://www.process-one.net/blog/ejabberd-26-03/
2•neustradamus•7m ago•0 comments

Reliable Unreliability

https://davidgasquez.com/reliable-unreliability
1•kalendos•7m ago•0 comments

The grind: The SF startup racing to build an AI software engineer

https://sfstandard.com/2026/03/24/grind-sf-startup-racing-build-ai-software-engineer/
1•gmays•8m ago•0 comments

My Fujifilm X100VI Setup

https://jamesbaker.uk/my-fujifilm-x100vi-setup/
1•rusticflare•8m ago•0 comments

Ralph.md: A Markdown format for autonomous coding-agent loops

https://ralphify.co/docs/blog/ralphmd--a-markdown-format-for-autonomous-agent-loops/
1•juunge•10m ago•1 comments

Writing an OS in Haskell

https://old.agniv.me/blog/haskell-os/
2•kreyenborgi•11m ago•0 comments

Show HN: My Hyperliquid Trading Terminal

https://www.aulico.com
2•lontraselv•12m ago•0 comments

The First Video Game Was Just a Box in the Corner of a Bar

https://lithub.com/the-very-first-video-game-was-just-a-box-in-the-corner-of-a-bar/
1•PaulHoule•13m ago•0 comments

What if AI agents could learn from each other's mistakes?

https://bignumbertheory.com
1•shengyi•14m ago•1 comments

Diffusion Line

https://en.wikipedia.org/wiki/Diffusion_line
2•microsoftedging•15m ago•0 comments

Typestamp – Proof of Writing Effort

https://typestamp.com
1•aleloro_dev•15m ago•0 comments

Nvidia faces lawsuit over $1B in undisclosed crypto mining revenue

https://www.thestreet.com/crypto/markets/nvidia-faces-lawsuit-over-1-billion-in-undisclosed-crypt...
2•mgh2•15m ago•0 comments

Four Steps to Hell

https://www.honest-broker.com/p/four-steps-to-hell
1•Khaine•15m ago•0 comments

In-process reimplementation of PostgreSQL backed by SQLite-compatible storage

https://github.com/glommer/pgmicro
1•charlieirish•16m ago•0 comments

NeurIPS Tightens Sanctions Compliance

https://neurips.cc
1•zachdotai•16m ago•0 comments

Anthropic Update on Session Limits

https://old.reddit.com/r/Anthropic/comments/1s4iefu/update_on_session_limits/
4•chunkycapybara•17m ago•1 comments

Show HN: Data that explains itself to Coding Agents (Bonus: free, BYOA Lovable)

https://dataverse001.net/AxyU5_5vWmP2tO_klN4UpbZzRsuJEvJTrdwdg_gODxZJ.00000000-0000-0000-0000-000...
2•TumbleCow•18m ago•0 comments

Joining databases across teams without copying data or running servers

https://datahike.io/notes/collaborate-without-infrastructure/
2•whilo•20m ago•0 comments

Design Debt Is Killing Your Product – and Nobody Owns It

https://overlayqa.com/blog/design-debt/
3•emveras•21m ago•1 comments

Clojure – The Documentary

https://clojure.org/news/2026/03/26/documentary_trailer
3•eigenhombre•23m ago•0 comments

How to switch to Gemini: Import your chats and data from other AI apps

https://blog.google/innovation-and-ai/products/gemini-app/switch-to-gemini-app/
4•xnx•24m ago•0 comments

Show HN: Datetime-bench: which datetime formats LLMs get right (and wrong)

https://github.com/MemoryStore/datetime-bench/tree/main
2•diwank•24m ago•0 comments

Turn n8n workflows into AI agent skills (OpenClaw-compatible)

https://github.com/just-claw-it/n8n-to-claw
2•just-claw-it•25m ago•1 comments

Mozilla and Mila announce strategic research partnership

https://blog.mozilla.org/en/mozilla/mila-open-source-sovereign-ai/
6•mcookly•28m ago•2 comments

Embraer Unveils First Saab F-39E Gripen Assembled in Brazil

https://aviationweek.com/defense/budget-policy-operations/embraer-unveils-first-f-39e-gripen-asse...
2•wslh•30m ago•0 comments

Apple discontinues the Mac Pro with no plans for future hardware

https://9to5mac.com/2026/03/26/apple-discontinues-the-mac-pro/
13•bentocorp•31m ago•4 comments
Open in hackernews

How much precision can you squeeze out of a table?

https://www.johndcook.com/blog/2026/03/26/table-precision/
23•nomemory•1h ago

Comments

PaulHoule•1h ago
When I was in high school I thought book this was so much fun

http://182.160.97.198:8080/xmlui/bitstream/handle/123456789/...

which is all about the kind of numerical analysis you would do by hand and introduces a lot of really cool math like the calculus of differences

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

gus_massa•1h ago
Nitpicking:

> You’re never going to get error less than 10E−15 since that’s the error in the tabulated values,

If you have like 100 (or 400) values in the table, you can squeeze one more digit.

In the simple case, imagine you have the constant pi, with 15 digits, repeated 100 times. If the rounding was done in a random direction like

  floor(pi * 1E15 + random() - 1/2 ) / 1E15
then you can use statistic to get an average with an error that is like K/sqrt(N) where K is a constant and N is the number of samples. If you were paying attention in you statistic clases, you probably know the value of K, but it's not my case. Anyway, just pick N=100 or N=400 or something like that and you get another digit for "free".

Nobody builds a table for a constant and uses a uniform offset for rounding. Anyway, with some smooth function that has no special values in the points where it's sample, the exact value of the cut decimal is quite "random" and you get a similar randomization.