frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

T4a – Terminals for Agents

https://github.com/denoland/t4a
1•garrettjoecox•44s ago•0 comments

Fast non-Chromium browser for AI agents: LightPanda

https://lightpanda.io
1•daniel_iversen•2m ago•0 comments

Kobalt Tools

https://kbalt.com/
1•Throwthrowbob•3m ago•1 comments

Give Your AI Agent a Live Status Page

https://clawjetty.com/###
1•andes314•4m ago•1 comments

Enabling Media Router by default undermines Brave's privacy claims

1•noguff•12m ago•0 comments

Rackup, a Toolchain Manager for Racket

https://samth.github.io/rackup/
1•samth•19m ago•0 comments

Hyperlinks in Terminal Emulators

https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda
1•nvahalik•21m ago•0 comments

Heart, Head, Life, Fate

https://www.lrb.co.uk/the-paper/v48/n05/steven-shapin/heart-head-life-fate
1•Petiver•24m ago•0 comments

The Browser Becomes Your WordPress

https://wordpress.org/news/2026/03/announcing-my-wordpress/
1•computersuck•25m ago•0 comments

Stabilizing timelagged climate impacts rqrs net-negative emissions for centuries

https://iopscience.iop.org/article/10.1088/1748-9326/ae34ca
1•littlexsparkee•29m ago•0 comments

Gitana 18: technical choices for the new flying Ultim trimaran

https://www.boatnews.com/story/50717/gitana-18-radical-technical-choices-for-the-new-flying-ultim...
1•divbzero•37m ago•0 comments

Prowl – An agent discovery network (ASO for AI agents)

https://prowl.world
1•opcastil11•39m ago•0 comments

'Immersive Navigation' is the biggest Google Maps driving update in a decade

https://9to5google.com/2026/03/12/google-maps-immersive-navigation/
1•golfer•44m ago•0 comments

Claude Tried to Hack 30 Companies. Nobody Asked It To

https://trufflesecurity.com/blog/claude-tried-to-hack-30-companies-nobody-asked-it-to
1•RobLach•46m ago•1 comments

Can You Instruct a Robot to Make a PBJ Sandwich?

https://pbj.deliberateinc.com/
8•mooreds•47m ago•6 comments

Agent harness for building analytics into your app on top of ClickHouse

https://github.com/514-labs/moosestack
1•mooreds•50m ago•0 comments

OLAP migration complexity is the cost of fast reads (2025)

https://www.fiveonefour.com/blog/olap-migration-complexity
1•mooreds•52m ago•0 comments

Agentic Abuse at Tech Jobs

https://blog.alejandrowainzinger.com/agentic-abuse-at-tech-jobs
1•terelak•53m ago•0 comments

Sloppypaste: Pasting raw AI output without reading it

https://sloppypaste.com/
2•willwashburn•53m ago•1 comments

Teaching LLMs to reason like Bayesians

https://research.google/blog/teaching-llms-to-reason-like-bayesians/
1•gmays•55m ago•0 comments

Document retrieval that navigates structure instead of chunking

https://github.com/theeufj/RNSR
2•theeufj•1h ago•0 comments

Harry Potter by Balenciaga (2026 update by creator of seminal 2023 viral video)

https://www.youtube.com/watch?v=gtnt84CDP-s
1•TMWNN•1h ago•0 comments

Rep. Finke Was Right: Age-Gating Isn't About Kids, It's About Control

https://www.eff.org/deeplinks/2026/03/rep-finke-was-right-age-gating-isnt-about-kids-its-about-co...
5•iamnothere•1h ago•4 comments

Training Language Models via Neural Cellular Automata

https://hanseungwook.github.io/blog/nca-pre-pre-training/
1•Anon84•1h ago•0 comments

The Vibe Principles

https://github.com/kapitanluffy/vibe-principles
1•kapitanluffy•1h ago•0 comments

8,600 n8n workflow templates organized into a browsable GitHub repo

https://github.com/ScraperNode/awesome-n8n-templates
1•emery_p•1h ago•0 comments

Capability-based authorization for AI agents

https://github.com/Connerlevi/CapNET
1•deathclik•1h ago•1 comments

Hedystia 1.10 – Type Mastery is here

https://docs.hedystia.com
1•Zastinian•1h ago•0 comments

Laid off? Start a small business. Save hours of research

https://startinstates.com/guides
1•GKakhiani•1h ago•0 comments

Apple's App Store in China gets lower 25% commission to appease regulators

https://appleinsider.com/articles/26/03/13/apples-app-store-in-china-gets-lower-25-commission-to-...
1•spenvo•1h 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/