frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mudita Kompakt

https://mudita.com/products/phones/mudita-kompakt/
1•pil0u•31s ago•0 comments

Civis Romanus Sum

https://minutes.substack.com/p/civis-romanus-sum
1•jger15•1m ago•0 comments

Show HN: CTORank – Recruit Engineering Leaders (CTOs, VPS, Directors)

http://CTORank.com
1•veritas9•2m ago•1 comments

Show HN: I spent a billion tokens bridging Elixir and WebAssembly

https://yev.bar/firebird
1•yevbar•2m ago•0 comments

Show HN: I spent a billion tokens and all I got was this repo

https://vers.sh/blog/elixir-webassembly-billion-tokens
1•yevbar•3m ago•0 comments

Show HN: Built lovable but for your existing products

https://github.com/NikitaDmitrieff/feedback-chat
1•Ndmtrieff•4m ago•1 comments

React for Design: A React Course for Designers

https://react.design/
1•eustoria•5m ago•0 comments

Show HN: FakeScan – AI-powered fake review detector for Amazon

https://fakescan.site
1•crawde•5m ago•0 comments

I let Claude improve my keyboard's firmware

https://daniellombrana.es/blog/2026/03/01/claude-improved-my-keyboard-firmware
1•teleyinex•6m ago•1 comments

Federal judge rules: AI queries not protected from subpoenas/warrants

https://www.paulweiss.com/insights/client-memos/sdny-court-considers-whether-ai-generated-documen...
2•dsubburam•6m ago•0 comments

Why Delta Air Lines Doesn't Want Blended Winglets on Most Aircraft Anymore

https://simpleflying.com/delta-air-lines-blended-winglets-no-more/
1•eustoria•6m ago•0 comments

Little red dot (astronomical object)

https://en.wikipedia.org/wiki/Little_red_dot_(astronomical_object)
1•thunderbong•7m ago•0 comments

Open consultation: Growing up in the online world

https://www.gov.uk/government/consultations/growing-up-in-the-online-world-a-national-consultation
1•azalemeth•8m ago•0 comments

Compiling English Security Policies into Deterministic Agent Guardrails

https://starlog.is/articles/ai-agents/provos-ironcurtain/
1•theoradical•9m ago•0 comments

I Fuzzed, and Vibe Fixed, the Vibed C Compiler

https://john.regehr.org/writing/claude_c_compiler.html
1•luu•9m ago•0 comments

Cryptographic receipts for CMMC compliance evidence

1•kevinkibeom•10m ago•0 comments

How Trump Decided to Go to War

https://www.nytimes.com/2026/03/02/us/politics/trump-war-iran-israel.html
2•jbegley•13m ago•0 comments

Show HN: PEP 827 – TS-like type manipulation in Python

https://peps.python.org/pep-0827/
2•1st1•13m ago•0 comments

How would a AI first company will manage costs after the AI Bubble bursts?

1•not_that_d•14m ago•0 comments

Hacktivists claim to have hacked Homeland Security to release ICE contract data

https://techcrunch.com/2026/03/02/hacktivists-claim-to-have-hacked-homeland-security-to-release-i...
1•WaitWaitWha•14m ago•0 comments

All claims of extraterrestrial life must pass these 7 hurdles

https://bigthink.com/starts-with-a-bang/claims-extraterrestrial-life-7-hurdles/
1•PaulHoule•14m ago•0 comments

Dr. StrangeClaw or: how I learned to stop worrying and love the AI

https://www.chrisfarris.com/post/dr_strangeclaw/
1•Corrado•15m ago•0 comments

Cartly: An iOS Receipt Tracking Demo Built on Mnexium

1•Mnexium•15m ago•0 comments

Show HN: Memgraph-agent – NER+PageRank memory for AI agents, $0 LLM cost

https://github.com/yangyihe0305-droid/memgraph-agent
1•yangyihe0305•15m ago•0 comments

Show HN: Know Your SMD Footprints

https://www.pikkoloassembly.com/footprints/
1•pikkoloassembly•16m ago•0 comments

Microgpt Lab

https://ko-microgpt.vercel.app/
2•tmsln•16m ago•0 comments

On-Policy Prediction with Approximation

https://chizkidd.github.io//2026/02/27/rl-sutton-barto-notes-ch009/
1•ibobev•16m ago•0 comments

What Crystals Older Than the Sun Reveal About the Start of the Solar System

https://www.quantamagazine.org/what-crystals-older-than-the-sun-reveal-about-the-start-of-the-sol...
2•ibobev•17m ago•0 comments

Show HN: 58% cost by replacing file reads with a dependency graph on AI Coding

3•nicola_alessi•17m ago•1 comments

What makes a game tick? Part 9 – Data Driven Multi-Threading Scheduler

https://mropert.github.io/2026/02/27/making_games_tick_part9/
1•ibobev•17m 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•10mo ago

Comments

Lio•10mo 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•10mo 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/