frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Zuckerberg spokesperson says his yacht did not hear call for maritime assist

https://apnews.com/article/alaska-zuckerberg-yacht-help-81b4a1337cf6959da39397df719adbc5
1•darod•32s ago•0 comments

Mount Toba eruption doesn't seem like it could nearly kill our species

https://arstechnica.com/science/2026/08/mount-toba-eruption-doesnt-seem-like-it-could-nearly-kill...
1•PaulHoule•1m ago•0 comments

Call for testing: Restricting trait implementability and field mutability

https://blog.rust-lang.org/inside-rust/2026/08/10/call-for-testing-impl-and-mut-restrictions/
1•tcfhgj•2m ago•0 comments

All the inputs for Iranian missiles are coming from China

https://twitter.com/BohuslavskaKate/status/2086494592107458666
1•ilamont•2m ago•1 comments

Sudoku and Metroidvania = Sudokuvania

https://sudokuvania.com/
1•babuskov•4m ago•0 comments

U.S. Citizens in Cuba for New Breakthrough Alzheimer's Treatment [video]

https://www.youtube.com/watch?v=mKHvyi1MyuA
1•thelastgallon•5m ago•0 comments

Show HN: GlyPho – Generate editable SVG families from prompts

https://www.glypho.app/
3•shenyi•5m ago•0 comments

Achieving Local AI Inference with Go 1.27's SIMD Package

https://blog.devgenius.io/achieving-local-ai-inference-with-go-1-27s-simd-package-e8875f567e35
2•darccio•6m ago•0 comments

Anger over Data Centers Is Fueling a New Political Movementtca

3•doener•7m ago•0 comments

Why can't Chinese AI companies raise more money?

https://www.the-substrate.net/p/why-cant-chinese-ai-companies-raise
1•surprisetalk•8m ago•0 comments

Exploring Claude/GPT Knowledge Cutoffs and Pre-Training Timelines

https://blog.sshh.io/p/exploring-claudegpt-knowledge-cutoffs
1•sshh12•8m ago•0 comments

Beyond Senior – Creating Hope

https://baweaver.com/writing/2026/08/09/beyond-senior-creating-hope/
1•birdculture•9m ago•0 comments

New AI-based program is a shrink ray for proteins

https://cen.acs.org/physical-chemistry/protein-folding/New-AI-based-program-shrink/104/web/2026/07
1•gmays•10m ago•0 comments

What Ethiopian Running Says About the Limits of Human Ability

https://aeon.co/essays/what-ethiopian-running-says-about-the-limits-of-human-ability
1•geneticdrifts•10m ago•0 comments

Idun Guardian 4: The evolution of human-computer interaction

https://iduntechnologies.com
1•debo_•10m ago•0 comments

Show HN: Neolabs.fyi – 100 new AI labs by research area, valuation, and more

https://neolabs.fyi/
1•polyphilz•11m ago•0 comments

FlyPath: QGIS plugin for planning drone mapping missions

https://github.com/dronnix-io/FlyPath
1•marklit•11m ago•0 comments

Show HN: Export any Twitter account to a spreadsheet

https://tweetexporter.com
2•not_wowinter13•11m ago•0 comments

Show HN: Open-Source Greptile Alternative

https://github.com/Juror-AI/juror
1•textcortex•11m ago•0 comments

Open-Weight Models Win Tokens, Closed Ones Keep Cash

https://www.galaxy.com/insights/research/chart-of-the-week-open-weight-ai-models-frontier-labs-op...
1•supportm•14m ago•0 comments

Steam refunded me BF6 after hours played due to so many game modes being removed

https://www.reddit.com/r/Battlefield/comments/1vi90wa/steam_just_fully_rfunded_me_for_battlefield_6/
1•HelloUsername•14m ago•0 comments

Peer review is overwhelmed-can it survive in the AI era?

https://arstechnica.com/science/2026/08/peer-review-is-overwhelmed-can-it-survive-in-the-ai-era/
1•Brajeshwar•14m ago•0 comments

A powerful technique for enjoying the present moment

https://mapwriting.substack.com/p/a-powerful-technique-for-enjoying
1•doitLP•18m ago•0 comments

Multiplayer Agents

https://twitter.com/nikunj/status/2086438339419496449
2•anr0•19m ago•1 comments

Letters and Liquor

https://lettersandliquor.com
1•kergonath•19m ago•0 comments

Judge rules Meta caused "public nuisance" and must fund mental health treatment

https://arstechnica.com/tech-policy/2026/08/meta-ordered-to-pay-567m-to-treat-youth-mental-health...
1•rbanffy•20m ago•0 comments

Mark Zuckerberg attacks 'closed' AI rivals as Meta returns to open models

https://www.ft.com/content/4e3957f8-ea7c-4c46-a3de-cdce8e526878
5•root-parent•22m ago•1 comments

Apps that help you break free from doomscrolling and get active

https://techcrunch.com/2026/08/01/apps-that-help-you-break-free-from-doomscrolling-and-get-active/
2•deepmem•23m ago•0 comments

Crown 0.64 – Native and cross-platform game engine

https://www.crownengine.org/news/crown-0-64/
1•dbartolini•23m ago•0 comments

Show HN: DocSift convert a PDF once, give the model only the passages it needs

https://github.com/anishmoncivarghese/docsift
1•anishvarghese•24m 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/