frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AryStinger botnet infected D-Link routers worldwide

https://www.bleepingcomputer.com/news/security/arystinger-botnet-infected-thousands-of-d-link-rou...
1•momentmaker•1m ago•0 comments

Show HN: I rebuilt the only parts of my IDE I use, in Rust, over a weekend

https://github.com/kyle-ssg/kyde
1•kyle-ssg•2m ago•0 comments

Tranthor – describe a retention play in English, agents build and run it

https://app.tranthor.com/dashboard/auth/signin
1•Wolf811•3m ago•0 comments

window.showDirectoryPicker opens up a whole new world

https://steveharrison.dev/showdirectorypicker-opens-up-a-whole-new-world/
2•steveharrison•4m ago•1 comments

Show HN: Engrym – a Markdown knowledge base your coding agent reads and writes

https://github.com/laleshii/engrym
1•laleshii•5m ago•1 comments

Interactive Marketing with Playistry: Live Demo

https://www.eventbrite.com/e/interactive-marketing-with-playistry-live-demo-tickets-1991400498498
1•playistry•6m ago•0 comments

Becoming a dad changes men's brains

https://www.scientificamerican.com/article/how-becoming-a-dad-changes-mens-brains/
1•momentmaker•6m ago•0 comments

Prediction: A Frontier open-source LLM Will Be Released On 3rd December 2026

https://blog.doubleword.ai/frontier-os-llm
1•hasheddan•7m ago•0 comments

Cory Doctorow review – the real price of artificial intelligence

https://www.theguardian.com/books/2026/jun/22/the-reverse-centaurs-guide-to-life-after-ai-by-cory...
1•fallinditch•9m ago•0 comments

Optimizing TanStack Start for Cloud Run

https://ben3d.ca/blog/optimizing-tanstack-start-for-cloud-run
2•bhouston•9m ago•0 comments

NimConf 2026: Extending Enu, and building 3D worlds with Claude

https://www.youtube.com/watch?v=kjOUEDfuzQI
1•dsrw•12m ago•1 comments

Microsoft researcher built goat-powered LLM in Age of Empires II

https://www.xda-developers.com/a-microsoft-researcher-built-an-llm-in-age-of-empires-using-goats-...
1•thunderbong•12m ago•0 comments

About the writing process (or lack thereof)

https://www.thefoxfirepub.com/blog/blog-post-title-four-lr658-tcthp-wf5mw-mx4m8-tgp6b
1•FantasticPulp•12m ago•0 comments

Do US insurers arbitrage capital regulations with private ratings?

https://www.ft.com/content/35a5475d-0c90-4b2c-b7d4-a7ceeeea5afd
2•petethomas•13m ago•0 comments

The Classic Movie That Was Nearly Destroyed by a Single Line of Code

https://www.wsj.com/business/media/toy-story-5-saved-pixar-78e29161
1•tzury•14m ago•1 comments

An experiment in co-authoring my writings with Opus

https://obaid.wtf/jotbook/2026/06/20/built-a-rival-to-the-worlds-largest-fanfiction-platforms.html
2•wtfobaid•18m ago•0 comments

An Agent Capability Library

https://samihonkonen.com/posts/an-agent-capability-library/
2•shonkone•19m ago•0 comments

Verge on Vibecoding

https://www.theverge.com/ai-artificial-intelligence/950844/vibe-coding-security-risks-apps
2•iugtmkbdfil834•20m ago•0 comments

Show HN: Argus – Self-hosted observability that replaces dashboards with a chat

https://github.com/precious112/Argus
3•PreciousH•20m ago•0 comments

Show HN: Eventra – TypeScript static analysis for unused feature detection

https://eventra.dev
1•and-1991•20m ago•0 comments

Why I had to stop using vertical tabs

https://gopeek-lovat.vercel.app/blog-stopped-vertical-tabs.html
3•GeorgeWoff25•22m ago•0 comments

The Twilight of AI Vampires

https://essays.cborodescu.com/p/the-twilight-of-ai-vampires
2•cborodescu•22m ago•0 comments

Show HN: Socket to Me, a static file server that runs in the browser

https://socket2.me/
2•markjivko•22m ago•0 comments

Show HN: I rebuilt Jobs To Be Done on scientific foundations and open-sourced it

https://github.com/zamesin/Next-Move-Theory-Canon-and-Skills
2•zamesin•22m ago•0 comments

Show HN: Got sick of ads, so I made my own logic puzzle site

https://puzzlelair.com/
3•HaxleRose•22m ago•0 comments

Show HN: Lossless GIF recompression via exhaustive search

https://blog.arusekk.pl/posts/lossless-gif-recompression/
2•arusekk•23m ago•0 comments

Astronomers Discover Third Galaxy Without Dark Matter

https://keckobservatory.org/df9/
2•mr_mitm•24m ago•1 comments

Peek First. Open Later. A TUI file browser built with bubble tea

https://github.com/lovestaco/peektea
2•lovestaco•25m ago•0 comments

InfiniBand, RoCE, and All That

https://fergusfinn.com/blog/infiniband-roce-rdma/
2•hasheddan•26m ago•0 comments

Shaders in plugins, GTK4 Shell Clients, New Protocols| miracle-wm 0.10.0

https://www.youtube.com/watch?v=tbA-NaHyLNg
2•matthewkosarek•27m 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/