frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

We beat Google's zero-knowledge proof of quantum cryptanalysis

https://blog.trailofbits.com/2026/04/17/we-beat-googles-zero-knowledge-proof-of-quantum-cryptanal...
1•da-bacon•52s ago•0 comments

Homeland Security's New Task Force Website Sanitizes Trump's Deportation Agenda

https://www.motherjones.com/politics/2026/04/homeland-security-task-force-new-website-sanitizes-t...
1•cdrnsf•1m ago•0 comments

Inferena: Local benchmark of PyTorch vs. Llama.cpp vs. Rust frameworks

http://inferena.tech/
1•kvark•2m ago•0 comments

HIPPO Turns One Master Password into Many Without Storing Any

https://spectrum.ieee.org/storeless-password-manager
1•u1hcw9nx•3m ago•0 comments

Our Longing for Inconvenience

https://www.newyorker.com/culture/essay/our-longing-for-inconvenience
1•cdrnsf•4m ago•0 comments

David Sklansky, the 'First Nerd to Enter Poker,' Dies at 78

https://www.nytimes.com/2026/04/11/us/david-sklansky-dead.html
1•indigodaddy•4m ago•0 comments

Launching Ising, open models to accelerate the path to useful quantum computers

https://nvidianews.nvidia.com/news/nvidia-launches-ising-the-worlds-first-open-ai-models-to-accel...
3•hhs•5m ago•0 comments

What Is Llms.txt and Does Your Business Need One?

https://semarkglobal.com/blog/what-is-llms-txt-does-your-business-need-one
2•alihassaan•7m ago•1 comments

Dad brains: How fatherhood rewires the male mind

https://www.bbc.com/future/article/20260417-fatherhood-how-the-male-brain-and-body-prepare-for-ch...
1•tchalla•11m ago•0 comments

Show HN: AWS's Kiro just got an Open source Codex

https://github.com/thabti/kirodex
2•sovietism•15m ago•0 comments

Pupil dilation suggests people start solving before all numbers are in

https://phys.org/news/2026-04-mental-math-shortcut-pupil-dilation.html
2•y1n0•17m ago•0 comments

Classic Papers: Articles That Have Stood the Test of Time

https://scholar.googleblog.com/2017/06/classic-papers-articles-that-have-stood.html
2•gregsadetsky•18m ago•0 comments

Why Zip drives dominated the 90s, then vanished almost overnight

https://www.xda-developers.com/zip-drives-dominated-90s-vanished-almost-overnight/
2•y1n0•21m ago•1 comments

The man who saw the future: the legacy of cultural theorist Mark Fisher

https://www.theguardian.com/film/2026/apr/17/we-are-making-a-film-about-mark-fisher-capitalist-re...
2•mellosouls•24m ago•0 comments

Robots learn: A brief, contemporary history

https://www.technologyreview.com/2026/04/17/1135416/how-robots-learn-brief-contemporary-history/
3•billybuckwheat•25m ago•0 comments

20000 Gates and 20 MIPS [pdf]

https://bitsavers.org/pdf/amdahl/history/20000_Gates_and_20_MIPS_199011.pdf
2•ingve•27m ago•1 comments

Tiny Go and Rust programs appear to start equally fast (on some machines)

https://utcc.utoronto.ca/~cks/space/blog/programming/GoVsRustStartupDelays
2•ingve•36m ago•1 comments

AI writes code 100x faster – why hasn't productivity?

https://deeptils.github.io/blog/ai-writes-code-100x-faster-productivity-hasnt/
2•deeplstm•38m ago•1 comments

British Empire: How a Small Island Took over the World

https://sheets.works/data-viz/british-empire
2•akashwadhwani35•41m ago•0 comments

Meshcore: Architecture for a Decentralized P2P LLM Inference Network

1•elyawhoo•42m ago•1 comments

My first impressions on ROCm and Strix Halo

https://blog.marcoinacio.com/posts/my-first-impressions-rocm-strix-halo/
3•random_•45m ago•0 comments

Let Sleeping CPUs Lie – S0ix

https://freebsdfoundation.org/our-work/journal/browser-based-edition/laptop-desktop/let-sleeping-...
1•birdculture•45m ago•0 comments

Singapore Tourism Board Launches AI-Powered Robodog Guides at Sentosa

https://www.stb.gov.sg/about-stb/media-publications/media-centre/singapore-tourism-board-launches...
1•mmarian•47m ago•0 comments

Code → Eval → HLD → LLD → Code

https://p10q.com/presentations/code_hld_lld/
1•tmsh•49m ago•0 comments

Mistral API is degrading [04/2026]

https://status.mistral.ai/incidents/page/1
1•rawland•54m ago•0 comments

Ask HN: Can you show me some useful AI-written programs?

3•nananana9•55m ago•2 comments

Air Is Full of DNA

https://www.nature.com/articles/d41586-026-01099-2
3•howrude•57m ago•0 comments

Mapping India's homegrown AI ecosystem – 110 apps, 22 languages, 28 sectors

https://github.com/suyash333/india-ai-ecosystem
1•golearnsap•1h ago•1 comments

I found out the hard way that Linux is not a dad-friendly gaming OS

https://www.pcgamer.com/hardware/i-found-out-the-hard-way-that-linux-is-not-a-dad-friendly-gaming...
3•evo_9•1h ago•2 comments

Israel kills two UNICEF water truck drivers in Gaza

https://www.unicef.org/press-releases/statement-unicef-killing-two-water-truck-drivers-gaza-strip-0
9•lr0•1h ago•0 comments
Open in hackernews

Past, Present, and Future of (Ruby) Sorbet Type Syntax

https://blog.jez.io/history-of-sorbet-syntax/
5•ksec•11mo ago

Comments

Lio•11mo ago
This is a great write up and I think the proposal to make rbs-inline type comments avaible at runtime is an execellent solution.

I can definitely see the value runtime type checking in addition to static analysis. For my own work I've done this either using pattern matching:

  class User
    def initialize(name:, age:)
      String => name
      Integer => age
      @name = name
      @age = age
    end
  end
but the error messages aren't great IMHO. It's pretty easy though knock up a little type checker in a very small module and prepend it. I have support for union types and typed arrays in mine.

I actually wasn't aware of the improvements they've made over the years to Sorbet. It think that's probably what I'll migrate to now.

Lio•11mo ago
I'd add, I'm surprised this this post isn't added to the "official" Sorbet blog. It really is a great post and very positive for the future of the project.

https://sorbet.org/blog/