frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Markly – Watermark images from Claude via MCP (free, no API key needed)

https://github.com/Whitemarmot/markly-mcp-server
1•whitemarmot•2m ago•1 comments

Show HN: CastLocal – Stream any local video to Chromecast from your terminal

https://github.com/YuriKovalov22/cast-control
1•YuriiKovalov•4m ago•1 comments

Multi-agent Claude Code setup – 3 roles, Markdown coordination, Docker

https://github.com/yury-egorenkov/claude-code-docker
1•yego•8m ago•3 comments

InstantPhoto – browser photo editor, no account, no ads, no watermarks

https://www.instantphoto.studio/
2•popik•8m ago•0 comments

Climbing Mechanics in Games [video]

https://www.youtube.com/watch?v=-d4YHTpfi0g
1•GanteRooibos•10m ago•0 comments

Hiroo Onoda, the Soldier Who Kept Fighting World War II Until 1974

https://allthatsinteresting.com/hiroo-onoda
2•thunderbong•13m ago•0 comments

Smalltalk's Browser: Unbeatable, yet Not Enough

https://blog.lorenzano.eu/smalltalks-browser-unbeatable-yet-not-enough/
3•xkriva11•15m ago•0 comments

Show HN: An AI-native workspace for founders with zero-knowledge encryption

https://twitter.com/thealsufii/status/2029133477904306339
2•alsufinow•16m ago•1 comments

Robot LCD display face with a 3D printed Lego helmet

https://blog.adafruit.com/2026/03/03/robot-lcd-display-face-with-a-3d-printed-lego-helmet/
1•tzury•17m ago•0 comments

The Best Liar

https://medium.com/luminasticity/the-best-liar-4f036f78b601
1•bryanrasmussen•18m ago•1 comments

A survey of write protect notches on floppy disks and other media

https://devblogs.microsoft.com/oldnewthing/20260303-00/?p=112104
2•ingve•22m ago•0 comments

OpenWrt 25.12.0 – Stable Release

https://openwrt.org/releases/25.12/notes-25.12.0
1•giuliomagnifico•23m ago•0 comments

Attorneys get majority of payouts from handicap-accessible website lawsuits

https://www.wsbtv.com/news/local/attorneys-getting-most-money-thousands-lawsuits-handicap-accessi...
3•gosub100•26m ago•2 comments

Show HN: Fly anywhere on Earth – just type and take off

https://worldflightsim.com/beta/
2•fmfamaral•26m ago•0 comments

Bet on German Train Delays

https://bahn.bet
1•indiantinker•32m ago•0 comments

Agentmap – Like SKILL spec but for code. A frontmatter for source code files

https://github.com/remorses/agentmap
1•xmorse•32m ago•1 comments

Iran Strikes U.S. Military Communication Infrastructure in Mideast

https://www.nytimes.com/2026/03/03/world/middleeast/iran-strikes-us-military-communication-infras...
4•TheAlchemist•32m ago•0 comments

What 127.5M forms can tell you about the state of front-end regex input v

https://amandastjerna.se/blog/127-million-forms/
2•fanf2•32m ago•0 comments

The next era of social media: built and run in Europe, ruled by our laws

https://www.eurosky.tech
3•doener•35m ago•1 comments

American Snacking Habits Are Transforming the Restaurant Industry

https://www.theatlantic.com/health/2026/03/restaurant-snack-meal-menu/686220/
1•fortran77•38m ago•2 comments

Solidjs releases 2.0 beta – The <Suspense> is Over

https://github.com/solidjs/solid/releases/tag/v2.0.0-beta.0
1•evertheylen•39m ago•1 comments

The Corporate Bullshit Receptivity Scale

https://www.sciencedirect.com/science/article/abs/pii/S0191886926000620
1•robtherobber•40m ago•0 comments

Bugsight – CLI tool that analyzes errors and suggests fixes

https://github.com/Arnel-rah/bugsight
1•nel123•41m ago•0 comments

The Context Optimization Layer for LLM Applications

https://github.com/chopratejas/headroom
1•selvan•42m ago•0 comments

Show HN: Ungrind – the solopreneur CRM that updates itself

https://ungrind.ai
1•magnumpowerz•43m ago•0 comments

I built Formguard – form back end without DB or APIs

https://formguard.strivio.world
1•sh20raj•44m ago•1 comments

Show HN: CUP – MCP but for desktop UI (open spec for computer use agents)

https://github.com/computeruseprotocol/computeruseprotocol
2•k4cper-g•44m ago•2 comments

Google Analytics Made Beautiful

https://analyticsma.de/
2•daniloao•45m ago•0 comments

Ask HN: How do you catch OpenAPI drift before the UI breaks?

1•losalah•45m ago•2 comments

ClawOS:Linux Panel for OpenClaw,nanobot,picoclaw,nullclaw

https://github.com/mrytsr/clawos
1•mrytsr•46m 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•10mo ago

Comments

Lio•10mo 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•10mo 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/