frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cmdgraph – Document any structural CLI for humans and agents

https://github.com/haoliangyu/cmdgraph
1•haoliangyu•1m ago•0 comments

Great at gaming? US air traffic control wants you to apply

https://www.bbc.com/news/articles/ce84rvx0e6do
1•1659447091•2m ago•0 comments

Austin's drop in rents explains housing in America

https://www.vox.com/future-perfect/485295/austin-national-rents-declining-yimby
1•rawgabbit•14m ago•0 comments

Optimization of 32-bit Unsigned Division by Constants on 64-bit Targets

https://arxiv.org/abs/2604.07902
2•matt_d•19m ago•0 comments

Unionized ProPublica staff are on strike over AI, layoffs, and wages

https://www.theverge.com/news/908401/propublica-union-strike-negotiations-ai-layoffs
2•pabs3•24m ago•0 comments

A 1KB zero-dependency relative time formatter for UI systems

https://github.com/taman-islam/human-time
1•hedayet•28m ago•0 comments

Your next 10 hires won't be human

https://github.com/multica-ai/multica
2•mercat•34m ago•0 comments

Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline

https://socket.dev/blog/axios-supply-chain-attack-reaches-openai-macos-signing-pipeline-forces-ce...
2•salkahfi•40m ago•0 comments

Gauss's Easter Algorithm

https://en.wikipedia.org/wiki/Date_of_Easter
1•ughitsaaron•40m ago•0 comments

The Seasons Are Wrong

https://kentwalters.com/posts/seasons/
2•NikxDa•41m ago•2 comments

Slately AI - All The Top Tier Models In One Place

https://slately.art
1•JonBoyd•44m ago•0 comments

What's the most painful sting in the world?

https://www.bbc.com/future/article/20260406-whats-the-most-painful-sting-in-the-world
1•rolph•46m ago•0 comments

Unleashing the Advantage of Quantum AI

https://quantumfrontiers.com/2026/04/09/unleashing-the-advantage-of-quantum-ai/
1•gmays•49m ago•0 comments

We're heading for an AI-fueled 'dementia crisis,' brain scientist warns

https://nypost.com/2026/04/10/health/brain-scientist-warns-were-heading-for-ai-fueled-dementia-cr...
3•1vuio0pswjnm7•50m ago•0 comments

Is it possible to live without killing?(2024)

https://worldbuilding.stackexchange.com/questions/254210/is-it-possible-to-live-without-killing
1•num42•52m ago•0 comments

A plan for Europe's tech fightback

https://www.economist.com/by-invitation/2026/04/09/a-plan-for-europes-tech-fightback
2•andsoitis•53m ago•0 comments

Book Summary: Learn Python the Hard Way

https://fagnerbrack.com/book-summary-learn-python-the-hard-way-c2da8a30bbe9
1•fagnerbrack•57m ago•0 comments

Meta boots law firm ads seeking clients to sue over alleged FB, IG addiction

https://nypost.com/2026/04/09/business/meta-boots-law-firm-ads-looking-for-clients-to-sue-over-al...
3•1vuio0pswjnm7•58m ago•1 comments

We Only Learn from Error

https://nathanclonts.com/we-only-learn-from-error/
1•kokopelli•1h ago•1 comments

Musk faces fresh opposition after landing permit for Mississippi power plant

https://www.cnbc.com/2026/04/10/musks-xai-draws-more-opposition-over-mississippi-power-plant-perm...
2•1vuio0pswjnm7•1h ago•0 comments

Show HN: HyperFlow – A self-improving agent framework built on LangGraph

2•lablnet•1h ago•0 comments

ESP32-P4 SIMD Explained

https://bitbanksoftware.blogspot.com/2026/04/esp32-p4-simd-explained.html
2•bitbank•1h ago•1 comments

Quien – A better WHOIS lookup tool

https://github.com/retlehs/quien/
10•bretthopper•1h ago•1 comments

The AI-Assisted Breach of Mexico's Government Infrastructure [pdf]

https://cdn.prod.website-files.com/69944dd945f20ca4a27a7c47/69d8bb5aea59e31efb3b8a7f_Tech_Report_...
3•kerng•1h ago•0 comments

How to Land the Space Shuttle from Space (2016) [video]

https://www.youtube.com/watch?v=Jb4prVsXkZU
1•iquatemb•1h ago•0 comments

Show HN: Vibescore – Grade your vibe-coded project A+ to F (one command)

https://github.com/stef41/vibescore
3•zach22•1h ago•0 comments

Show HN: Lmscan – Detect AI text and fingerprint which LLM wrote it (zero deps)

https://github.com/stef41/lmscan
1•zach22•1h ago•0 comments

IBM to pay $17M in anti-DEI settlement

https://www.cnn.com/2026/04/10/business/ibm-settlement-dei-lawsuit
4•empressplay•1h ago•2 comments

The Agents at USV: Arthur, Ellie, Sally, and Friends

https://blog.usv.com/meet-the-agents
2•wslh•1h ago•0 comments

Madadh – deterministic fail-closed control system for protected runtimes

https://madadh.systems
1•MADADAHSYSTEMS•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/