frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Prefill and Decode Want Different Computers

https://hiraditya.github.io/posts/prefill-and-decode-want-different-computers/
1•speckx•1m ago•0 comments

Show HN: TurnLeft – a one-button stock car racing game in the browser

https://turnleft.app
1•dberube•2m ago•0 comments

Growing pains: An update on the ListenBrainz service status

https://blog.metabrainz.org/2026/08/19/growing-pains-an-update-on-the-listenbrainz-service-status/
1•rhabarba•4m ago•0 comments

Show HN: Invoicing and Tax for UK Tradespeople

https://tradetally.co.uk
1•wowinter15•4m ago•0 comments

X's algorithm feeds off ragebait and impacts Democrats more, study finds

https://www.404media.co/xs-algorithm-feeds-off-ragebait-and-impacts-democrats-more-study-finds/
3•madihaa•5m ago•1 comments

Would you eat fish raised in wastewater ponds?

https://reasonstobecheerful.world/east-kolkata-wetlands/
1•heavybiscotti•5m ago•0 comments

Internal memo: Eight execs out at Expedia Group in AI-driven shakeup

https://www.geekwire.com/2026/internal-memo-eight-execs-out-at-expedia-group-in-ai-driven-shakeup/
2•NewGoblin•7m ago•0 comments

You Underestimate How Much People Want to Hear from You

https://julienreszka.com/blog/you-underestimate-how-much-people-want-to-hear-from-you/
1•julienreszka•10m ago•0 comments

Australia secures court-enforceable child safety undertaking from Roblox

https://www.reuters.com/legal/government/australia-secures-court-enforceable-child-safety-underta...
1•tartoran•12m ago•0 comments

Unlocking a locked/deactivated e-waste Cricut Maker

https://sprocketfox.io/xssfox/2026/07/01/cricut-unlock/
1•1e1a•12m ago•0 comments

Debugging Postgres Performance Under Row-Level Security

https://engineering.myhoai.com/posts/debugging-postgres-performance-under-row-level-security/
1•zhixuan•12m ago•0 comments

Mark Zuckerberg's AI Manifesto Shows How Little the AI Future Offers

https://illegal.solutions/posts/meta_future
1•totallygeeky•13m ago•1 comments

Help port Thorium Reader to mobile to fight freemium accessibility

https://github.com/edrlab/thorium-reader
1•mous_tik•15m ago•0 comments

Home batteries are suddenly cheap and everywhere. Here's why

https://techcrunch.com/2026/08/19/home-batteries-are-suddenly-cheap-and-everywhere-heres-why/
3•toomuchtodo•16m ago•0 comments

Google Phishing Quiz

https://phishingquiz.withgoogle.com/
2•saikatsg•18m ago•0 comments

Democrats Lost Men

https://www.thefp.com/p/how-democrats-lost-men
1•makerdiety•19m ago•0 comments

One line of JavaScript disabled server rendering on 190 pages

https://watchnext.leyu.studio/blog/one-line-that-disabled-server-rendering
1•oujan•19m ago•0 comments

Show HN: Bewertix – Get More Google Reviews and Win More Customers

https://bewertix.eu
1•not_wowinter13•19m ago•0 comments

Police officer used Flock cameras to track estranged wife 717 times

https://www.wsbtv.com/news/trending/affidavit-police-officer-used-flock-cameras-track-estranged-w...
4•speckx•20m ago•0 comments

Show HN: CopyLasso, a free local screen OCR app for macOS

https://copylasso.com/
3•bennetthilberg•22m ago•0 comments

Smartphone imaging technology and its applications (2021)

https://www.degruyterbrill.com/document/doi/10.1515/aot-2021-0023/html
1•kawera•23m ago•0 comments

From Legacy Bedrock Agents to Strands Agents on Bedrock AgentCore Runtime

https://hypertrail.ai/blog/migrating-from-legacy-bedrock-agents-to-strands-agents-powered-by-amaz...
1•grollat•23m ago•1 comments

Climate Change Tracker

https://climatechangetracker.org
2•a2x•25m ago•0 comments

New term in AI search: On-site live agents

https://embassia.com
1•ramazanaliakdas•25m ago•0 comments

US treasury doubles debt buyback to steady bond market amid inflation fears

https://www.theguardian.com/business/2026/aug/19/us-treasury-doubles-debt-buyback-bond-market
2•almog•26m ago•0 comments

CFTC Requests Comment on the Listing of Compute Derivatives Contracts

https://www.cftc.gov/PressRoom/PressReleases/9286-26
1•petethomas•27m ago•0 comments

Show HN: APISign – E-signature API, templates are Markdown files in your repo

https://apisign.io/
2•wunl•27m ago•0 comments

Book Review: Kakistocracy

https://benthams.substack.com/p/review-kakistocracy
1•paulpauper•27m ago•0 comments

UC Berkeley professor admits to using AI in op-ed

https://www.dailycal.org/news/campus/uc-berkeley-professor-admits-to-using-ai-in-op-ed-calling-ou...
2•paulpauper•28m ago•0 comments

French Constitutional Council Blocks Under-15 Social Media Ban

https://www.techdirt.com/2026/08/19/french-constitutional-council-blocks-under-15-social-media-ba...
1•cdrnsf•28m 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•1y ago

Comments

Lio•1y 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•1y 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/