frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Software Values

https://useyourexperience.com/software-values
1•jrdieter•46s ago•0 comments

You Can Now Program Steam Deck GPU with Mojo and Max

https://forum.modular.com/t/programming-the-steam-decks-gpu-with-mojo-and-max/3282
1•melodyogonna•1m ago•0 comments

Two humpback whales set records swimming between Australia and Brazil

https://phys.org/news/2026-05-humpback-whales-australia-brazil.html
1•pseudolus•2m ago•0 comments

AI Ticket and Article Summarization Package for Otobo ITSM

https://github.com/imAbdelhadi/AISummaryPackage
1•djafer•2m ago•1 comments

Talking with your PDFs locally with Blablador and GPT4all

https://sdlaml.pages.jsc.fz-juelich.de/ai/guides/blablador_gpt4all/
1•the-mitr•3m ago•0 comments

The $1T problem diamonds can solve [video]

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

Commodore Callback flip phone will use recycled memory chips

https://www.tomshardware.com/phones/commodore-drops-callback-flip-ohine-to-399-by-defaulting-to-r...
2•LorenDB•7m ago•0 comments

Adobe Generative AI User Guidelines (2026)

https://www.adobe.com/legal/licenses-terms/adobe-gen-ai-user-guidelines.html
1•joebig•7m ago•0 comments

Slowjson – attack on HTTP servers accepting JSON with chunked transfer encoding

https://github.com/cr0hn/slowjson
1•jen20•8m ago•0 comments

Apple and Audi alumni have made a luxe EV based on the moon buggy

https://www.wired.com/story/amble-one-luxe-ev-buggy/
2•LorenDB•11m ago•0 comments

I went to uni to learn. What I discovered has made me angry and terrified

https://www.smh.com.au/national/i-went-to-uni-to-learn-what-i-discovered-about-my-generation-has-...
2•obscurette•11m ago•1 comments

I'm 16 and Running a Software Jam in a World of Slop

https://foxmoss.com/blog/radish/
1•foxmoss•15m ago•0 comments

50 out of 413 Companies that use my libraries

https://mccue.dev/pages/6-27-26-who-uses
1•theanonymousone•17m ago•0 comments

Suspicious Discontinuities

https://danluu.com/discontinuities/
2•tosh•20m ago•0 comments

Nextcloud Talk and the FOSS caveat of mobile push notifications

https://codeberg.org/danb/isitreallyfoss/issues/305
1•schafele•21m ago•0 comments

Position: Coding Benchmarks Are Misaligned with Agentic Software Engineering

https://arxiv.org/abs/2606.17799
1•wek•22m ago•0 comments

Qwen-AgentWorld-35B-A3B: a local 'world model' you can run at home Open Models

https://vettedconsumer.com/qwen-agentworld-35b-a3b-a-local-world-model-you-can-run-at-home/
1•ermantrout•22m ago•0 comments

Map2Model has been shut down [due to legal notices]

https://map2model.com/
1•randunel•23m ago•0 comments

Show HN: Hyoomn – We'll constructively roast your AI coded B2B SaaS

https://hyoomn.com/
1•krm01•24m ago•0 comments

Apple seeks approval to buy chips from blacklisted Chinese company, FT reports

https://finance.yahoo.com/technology/articles/apple-seeks-approval-buy-chips-032619203.html
3•roboror•24m ago•0 comments

GPT-5.6 Sol: ~20 US govt-approved orgs only. What about non-US businesses?

https://nexusfoundation.substack.com/p/digital-segregation-how-bigtech-and
2•kris_osiadacz•24m ago•0 comments

When you're stuck, just do something

https://www.autogram.id/alex/thoughts/when-you-re-stuck-just-do-something
1•alexakten•26m ago•0 comments

Music Tuned to 440 Hz versus 432 Hz and the Health Effects

https://www.sciencedirect.com/science/article/pii/S1550830718302763
1•looofooo0•27m ago•0 comments

Show HN: InfyniDock – a macOS Dock that switches actual windows

https://infyniclick.com
1•yeelone•29m ago•0 comments

Ask HN: Running local LLMs? What's your model and hardware

2•alfiedotwtf•32m ago•0 comments

Modular 26.4: SOTA Moe Serving, Model Bringup via Agent Skills, Mojo 1.0 Beta 2

https://www.modular.com/blog/modular-26-4-sota-moe-serving-model-bringup-via-agent-skills-mojo-be...
1•tosh•34m ago•0 comments

Russian citizens told "switch to Android" after Apple blocks key Russian apps

https://arstechnica.com/gadgets/2026/06/russian-citizens-told-switch-to-android-after-apple-block...
6•ndr42•35m ago•0 comments

Show HN: Link in Seconds – Upload a resume or PDF, get a clean shareable link

https://linkinseconds.com
1•SunnyRK•35m ago•0 comments

The Phantom Housing Crisis – Spencer Pratt

https://spencerpratt.substack.com/p/the-phantom-housing-crisis
1•bilsbie•36m ago•0 comments

Meta Patents a System That Spends More Computing Power on Ads for Active Users

https://patentlyze.com/patent/meta-ad-ranking-tied-user-activity-score/
3•patentlyze•37m 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/