frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hi

https://veritect.vercel.app
1•mantle_labs•3m ago•0 comments

C Strings: A 50-Year Mistake

https://longtran2904.substack.com/p/c-strings-a-50-year-mistake
1•theanonymousone•8m ago•0 comments

Show HN: Like Claude Code for Images

https://visuali.io
1•visuali•9m ago•0 comments

More than 100 homes destroyed in Norway fire

https://www.reuters.com/business/environment/more-than-50-homes-destroyed-norway-fire-2026-07-17/
1•littlexsparkee•9m ago•0 comments

Show HN: Sentinel – open-source QA agent that reads your code before it clicks

1•asenna•10m ago•0 comments

AMD Ryzen 7 7700X3D Review: 3D V-Cache Gaming Performance for Less – HotHardware

https://hothardware.com/reviews/amd-ryzen-7-7700x3d-gaming-cpu-review
1•rbanffy•13m ago•0 comments

I Made My Blog Solar-Powered – An Update

https://louwrentius.com/i-made-my-blog-solar-powered-a-huge-update.html
1•louwrentius•14m ago•0 comments

GPT-5.6 Sol Ultra built a full Chrome V8 exploit chain from patch commits

https://www.hacktron.ai/blog/watching-gpt-55-sol-ultra-write-a-chrome-exploit-exploit-development...
1•nyku•14m ago•0 comments

When Rust Gets Ugly

https://corrode.dev/blog/ugly/
2•ethanplant•16m ago•0 comments

What Makes Humans Stupid

https://nautil.us/what-makes-humans-stupid-1282459
2•rbanffy•17m ago•0 comments

LANA Project Interim Report 2026: Computer-Assisted Verification of IUT Theory [video]

https://www.youtube.com/watch?v=KADN5NHmIfw
1•amichail•20m ago•0 comments

Open Book Touch: open-source e-reader

https://www.crowdsupply.com/oddly-specific-objects/open-book-touch
3•surprisetalk•22m ago•0 comments

128Gb Eight Channel Workstation Madness: Threadripper 3995WX in Windows 8.1

https://trackerninja.codeberg.page/post/128gb-eight-channel-workstation-madness-paired-with-threa...
1•spacedrone808•23m ago•0 comments

Building an Advanced Agentic Harness

https://data4sci.substack.com/p/building-an-advanced-agentic-harness
1•Anon84•25m ago•0 comments

Trump blames Canada for wildfire smoke, says he'll add cost to tariffs

https://www.reuters.com/world/ontario-buy-new-11-new-aircraft-very-difficult-wildfire-fight-2026-...
4•sleepyguy•25m ago•0 comments

Surprise and Delight [video]

https://www.youtube.com/watch?v=4J1dQIjneJY
2•Anon84•25m ago•0 comments

Webpack Is Now on Bluesky

https://bsky.app/profile/webpack.js.org
2•avivkeller•25m ago•0 comments

Topcoat: The full full-stack framework for Rust

https://github.com/tokio-rs/topcoat
3•wertyk•28m ago•0 comments

Caution: Children Might Impoverish Their Parents

https://retirementincomejournal.com/article/warning-children-might-impoverish-their-parents/
1•petethomas•29m ago•0 comments

Right to Repair Fundraiser Goal Reached

https://sfconservancy.org/news/2026/jul/16/software-right-to-repair-baltobu-fundraiser-succes/
1•nfriedly•30m ago•0 comments

Faulty Towers, vibe sickness, and the vibe bobsled

https://dustycloud.org/blog/faulty-towers-vibe-sickness-and-the-vibe-bobsled/
1•sanqui•34m ago•1 comments

Google Weather Lab 2

https://deepmind.google.com/science/weatherlab
2•xnx•38m ago•0 comments

Show HN: Tests.ws – WebSocket testing tools, language guides, Chrome extension

https://tests.ws/
1•gingermanymph•38m ago•0 comments

Aurora DSQL: Scalable, Multi-Region OLTP

https://arxiv.org/abs/2607.13276
2•shenli3514•38m ago•0 comments

Sliding into Silence? We Are Speaking 300 Daily Words Fewer Every Year

https://journals.sagepub.com/doi/10.1177/17456916261425131
1•Pamar•40m ago•1 comments

China's Latest A.I. Breakthrough Threatens America's Lead

https://www.nytimes.com/2026/07/17/business/china-ai-moonshot-kimi.html
2•petilon•41m ago•0 comments

Grumpy Website

https://grumpy.website/
3•Gecko4072•42m ago•0 comments

The first patch is a price check, not the product

https://github.blog/engineering/the-cost-of-saying-yes-has-changed/
1•logickkk1•42m ago•0 comments

Static search trees: 40x faster than binary search (2024)

https://curiouscoding.nl/posts/static-search-tree/
2•lalitmaganti•45m ago•0 comments

China's Xi Jinping launches new AI alliance, WAICO

https://www.aljazeera.com/news/2026/7/17/chinas-xi-jinping-launches-new-ai-alliance-what-is-it
3•culi•45m ago•2 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/