frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mark I Perceptron (1958)

https://en.wikipedia.org/wiki/Mark_I_Perceptron
1•RyanShook•40s ago•0 comments

If You Can Make a Compute Engine, You Can Sell a Compute Engine

https://www.nextplatform.com/compute/2026/05/06/if-you-can-make-a-compute-engine-you-can-sell-a-c...
2•rbanffy•2m ago•0 comments

Show HN: I Built Paul Graham's Social Media Math/Logic CAPTCHA Idea

https://mentwire.com/sample
1•nowflux•3m ago•0 comments

Researchers pioneer method to rapidly design proteins

https://www6.slac.stanford.edu/news/2026-05-04-researchers-pioneer-method-rapidly-design-proteins
1•gmays•4m ago•0 comments

Toronto demands meeting with Google over Maps navigation glitch

https://www.ctvnews.ca/toronto/article/a-google-maps-glitch-sent-drivers-the-wrong-way-up-a-toron...
1•Krontab•5m ago•0 comments

File format for large sorted lists of integers

https://github.com/SebMtn/vde-format
1•WorldDev•6m ago•0 comments

Why hasn't longer-horizon training slowed AI progress?

https://www.seangoedecke.com/why-hasnt-longer-horizon-training-slowed-ai-progress/
1•Brajeshwar•6m ago•0 comments

China's Unwinding of the Manus Deal Highlights a Key US Advantage

https://thediplomat.com/2026/05/chinas-unwinding-of-the-manus-deal-highlights-a-key-us-advantage/
1•u1hcw9nx•6m ago•1 comments

Xbox and N64 Zelda Ocarina of Time Online Co-Op (Real Hardware) [video]

https://www.youtube.com/watch?v=3LVxkTMucGg
1•surprisetalk•6m ago•0 comments

Amp, Rebuilt

https://ampcode.com/news/neo
2•doppp•7m ago•0 comments

Resurfaced 2025 clip fuels false Musk-Ramaphosa snub claim amid Starlink row

https://factcheck.afp.com/doc.afp.com.A9WB89E
1•lschueller•7m ago•0 comments

Understanding Wi-Fi 4/5/6/6E/7/8 (802.11 n/AC/ax/be/bn)

https://www.wiisfi.com/
4•fanf2•9m ago•0 comments

Show HN: MySigner – Ship iOS and Android apps with one command

https://mysigner.dev/
2•lekacoding•10m ago•0 comments

Daily Sucker to Harrass

https://www.elysee.fr/en/contact/
2•machardmachard•11m ago•0 comments

Show HN: CtxVault – local receipts for AI context handoffs

https://github.com/ctxvault/ctxvault
3•LuxBennu•11m ago•0 comments

People don't linger like they used to

https://www.not-ship.com/we-dont-linger-like-we-used-to/
2•dangond•11m ago•0 comments

Apple MLX vs. llama.cpp: compared and benchmarked [video]

https://www.youtube.com/watch?v=ZwCbChJWXkQ
4•nvahalik•13m ago•0 comments

Madrid Built Its Metro Cheaply

https://worksinprogress.co/issue/how-madrid-built-its-metro-cheaply/
2•latentframe•14m ago•1 comments

Show HN: Self-improving skills for any coding agent

https://github.com/luml-ai/dreamer
2•iryna_kondr•14m ago•0 comments

C++ survey finds AI use rising, though trust is in short supply

https://www.theregister.com/devops/2026/05/07/c-survey-finds-ai-use-rising-though-trust-is-in-sho...
4•lschueller•17m ago•0 comments

Amazon Web Services in Plain English (2015)

https://expeditedsecurity.com/aws-in-plain-english/
4•downbad_•17m ago•1 comments

DayOne.fan – music promotion toolkit for indie artists (Meta ads and artist hub)

https://dayone.fan
2•jamescundle•17m ago•1 comments

MPEG-2 Transport Stream Packaging for Media over QUIC Transport

https://www.ietf.org/archive/id/draft-gregoire-moq-msfts-00.html
3•mondainx•19m ago•0 comments

Reclip – Download videos from almost any website

https://github.com/averygan/reclip
2•the-mitr•20m ago•0 comments

The Second Wave of the API-First Economy

https://brandur.org/second-wave-api-first
2•surprisetalk•21m ago•0 comments

A Silver Lining of Slop

https://brennan.io/2026/05/04/llmfree/
2•ibobev•21m ago•0 comments

Minimal Viable Zig Error Contexts

https://matklad.github.io/2026/05/03/zig-error-context.html
4•ibobev•21m ago•0 comments

A digital photo frame written in Lisp

http://forum.ulisp.com/t/a-digital-photo-frame-written-in-lisp/1870
3•chrisjj•22m ago•0 comments

Access your Docker Compose services via easy-to-remember names

https://chuniversiteit.nl/operations/reverse-proxy-for-docker-compose
2•ibobev•22m ago•0 comments

SpaceX is starting to move on from the most successful rocket

https://arstechnica.com/space/2026/05/spacex-is-starting-to-move-on-from-the-worlds-most-successf...
2•Brajeshwar•22m ago•0 comments
Open in hackernews

A proof of concept tool to verify estimates

https://terrytao.wordpress.com/2025/05/01/a-proof-of-concept-tool-to-verify-estimates/
2•jeremyscanvic•1y ago

Comments

turtleyacht•1y ago
A defensive programming nit is not to return the desired result [1] but to show all collected cases are true.

  def defensive_true():
      # assume False
      ...
      return arr.all(True)
There are tests, but some wild refactoring in the night and "tests still pass," leading to a blind ship, could be a tiny risk.

Not a big deal, just I don't trust myself to return the happy path if the middle could change.

[1] https://github.com/teorth/estimates/blob/main/src/estimates....