frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Adipoli: a hand-wired keyboard for opposable thumbs

https://codeberg.org/sudobangbang/adipoli
1•sudo_bangbang•5m ago•0 comments

Jimmy is a tool to convert your notes from different formats to Markdown

https://marph91.github.io/jimmy/
2•CTOSian•10m ago•0 comments

Microsoft Bought a Nuclear Plant

https://moai.studio/blog/posts/microsoft-bought-a-nuke-plant.html
1•ionwake•12m ago•0 comments

France Is Too Hot for Shutters and Ceiling Fans

https://www.theatlantic.com/ideas/2026/06/france-air-conditioning-failure/687723/
2•paulpauper•13m ago•0 comments

Higher Ed Is Sorry

https://www.theatlantic.com/ideas/2026/06/higher-education-universities-public-trust/687714/
1•paulpauper•13m ago•0 comments

Show HN: Drift, write LLM agents in English and transpile to async Python

https://github.com/rileyq7/drift
1•rileyq12•15m ago•0 comments

The Memory Tax

https://bycig.substack.com/p/the-memory-tax
1•paulpauper•15m ago•0 comments

Token Capital Efficiency

https://kmad.ai/Token-Capital-Efficiency
1•kmad•18m ago•0 comments

Utility boss warns US faces blackouts due to power supply shortfall

https://www.ft.com/content/14d2e591-7cd5-4456-904f-1b7fdc5cbc1a
2•Geekette•18m ago•2 comments

Mel Brooks is 100 today

https://www.theatlantic.com/culture/2026/06/long-live-mel-brooks/687730/
7•shellback3•19m ago•0 comments

I made a tool to check out open source websites

https://github.com/Frenxys/portfolio-finder
1•Frenea•20m ago•0 comments

Visual Basic on the PC with Windows 3.1

https://stonetools.ghost.io/visualbasic-win31/
1•TMWNN•23m ago•0 comments

Rats and mice are mutating and becoming resistant to poison, researchers warn

https://www.independent.co.uk/news/world/americas/rats-mice-mutating-poison-resistance-warning-b3...
2•Vaslo•27m ago•0 comments

Show HN: NameSnag – Get alerted when a watched domain appears available

https://namesnag.io
1•pro_methe5•30m ago•0 comments

Strong Relationships, Loosely Held

https://www.jerry.wtf/posts/strong-relationships-loosely-held/
3•personjerry•31m ago•1 comments

There are 5.7M more childless women of prime child-bearing age than expected

https://carsey.unh.edu/publication/factors-contributing-demographic-cliff-more-us-women-childbear...
2•loughnane•35m ago•1 comments

My First Encounter with a Political Spambot

https://tombedor.dev/political-spam/
2•jjfoooo4•35m ago•0 comments

Question: Is matching fixed regexes with back-references in P?

https://branchfree.org/2019/04/04/question-is-matching-fixed-regexes-with-back-references-in-p/
1•fanf2•38m ago•0 comments

Ask HN: Books about Genetic Algorithms

6•andyjohnson0•40m ago•1 comments

POSIX Is Not a Shell

https://alganet.github.io/blog/2026-06-28-12-POSIX-Is-Not-A-Shell.html
2•gaigalas•40m ago•0 comments

Show HN: I reverse-engineered the RLF log format used by REMUS underwater drones

https://github.com/isaacgerg/remus-rlf-reader
1•ipunchghosts•41m ago•0 comments

Technology and Power

https://www.chrbutler.com/technology-and-power
3•delaugust•41m ago•0 comments

Attention is all we have: A conjectural theory of cognitive inequality

https://davidbessis.substack.com/p/attention-is-all-we-have
3•Luc•45m ago•0 comments

Startup Wants to Sell a U.S.-Built Tiny Truck for $21,500

https://www.roadandtrack.com/news/a71667299/reo-industries-runabout-aims-to-simplify-the-truck-ma...
3•rmason•48m ago•1 comments

Claude Code now uses dark UI patterns to gain Google account access via MCP

https://claude.com/docs/connectors/google/gmail
2•janpeuker•49m ago•1 comments

Duolicious – Open-source dating app

https://github.com/duolicious/duolicious
5•nietzscheese•51m ago•0 comments

The Last Museum: a search site for museum art

https://lastmuseum.com/
2•ohjeez•51m ago•0 comments

Why the Metaverse Failed

https://josh.earth/posts/metaverse-failed
4•joshmarinacci•52m ago•1 comments

Ask HN: What do SRE do at your company?

2•petemc_•54m ago•1 comments

Evolving Thoughts on AI in 2026

https://chriskiehl.com/article/evolving-thoughts-on-ai-2026
2•goostavos•1h ago•1 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/