frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Narrate – Generate multi-voice long-form audio with one command

https://github.com/zackham/narrate
1•zackham•3m ago•0 comments

Writing should have a soul and its own Claude Skill

https://getlago.substack.com/p/open-sourcing-my-writing-claude-skill
2•AnhTho_FR•4m ago•0 comments

Show HN: Yet another AI image ediotr and generator

https://imageditor.net/
1•shawnta•7m ago•0 comments

Ask HN: What was the limiting factor in growth of demand for fiber during 2000s?

1•AbstractH24•11m ago•1 comments

All elementary functions from a single binary operator

https://arxiv.org/abs/2603.21852
3•pizza•19m ago•0 comments

Moat: Run AI agents in isolated containers

https://majorcontext.com/moat/
2•cjbarber•23m ago•1 comments

State of Homelab 2026

https://mrlokans.work/posts/state-of-homelab-2026/
3•swq115•26m ago•0 comments

Level 3 Thinking: A Unified Theory of Self-Improvement

https://www.nateliason.com/blog/level-3-thinking
1•theorchid•28m ago•0 comments

OpenMAIC – Open Multi-Agent Interactive Classroom

https://open.maic.chat/
2•9woc•44m ago•0 comments

The Social Battery Paper: Gradient, Constraint, and the Extraction of Work In

https://www.academia.edu/165644285/The_Social_Battery_Paper_Gradient_Constraint_and_the_Extractio...
2•WilliamGriffin•46m ago•0 comments

Sabiondo: Compilador semántico universal – compilamos intención no sintaxis

https://github.com/K3iSoft/Sabiondo
1•K3iSoft•47m ago•0 comments

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
2•JSR_FDED•48m ago•0 comments

Internet down for you? X, GitHub, etc.

1•nvk•49m ago•1 comments

Trump will begin blockade of Strait of Hormuz within hours

https://www.dailymail.co.uk/news/article-15727239/Donald-Trump-Strait-Hormuz-Blockade.html
1•Bender•50m ago•4 comments

GraphAI – dual-graph $0 knowledge system with AI-native binary format

https://github.com/nehloo/graphAI
1•nehloo•51m ago•0 comments

Human Language Is the Best Programming Language

https://vanja.io/human-language-best-programming-language/
1•vpetreski•53m ago•0 comments

Externalization in LLM Agents

https://arxiv.org/abs/2604.08224
2•Anon84•54m ago•0 comments

Private Post-Training and Inference with TEEs for Frontier Models

https://www.workshoplabs.ai/blog/private-post-training
1•transpute•54m ago•0 comments

Unitree's H1 robot hits 10m/s sprint speed, getting close to 100M world record

https://www.globaltimes.cn/page/202604/1358712.shtml
2•teleforce•56m ago•0 comments

Show HN: A virtual office where you watch your AI agents code

https://github.com/ashxco/piedpiper
1•ashxsf•57m ago•0 comments

In search for a more precise cursor

https://unsung.aresluna.org/in-search-for-a-more-precise-cursor/
2•Doubleguitars•59m ago•0 comments

Cloudflare Agents week preview: What to expect

https://www.youtube.com/watch?v=nCrG-ixRoGg
1•emot•59m ago•0 comments

Unusual Behavior in Geosynchronous Orbit by Chinese Satellites, 2016–2025

https://www.csis.org/analysis/new-rhythms-geo-quantitative-analysis-unusual-behavior-geosynchrono...
2•mooreds•1h ago•0 comments

Tokyo: The Hard Life (1989)

https://www.theatlantic.com/magazine/archive/1989/03/tokyo-the-hard-life/668051/
1•mooreds•1h ago•1 comments

Should you be scared of bears when hiking in Japan?

https://www.emgoto.com/hiking-bears-japan/
3•mooreds•1h ago•0 comments

An Interview with Asana Founder Dustin Moskovitz about AI, SaaS, and Safety

https://stratechery.com/2025/an-interview-with-asana-founder-dustin-moskovitz-about-ai-saas-and-s...
1•theorchid•1h ago•0 comments

Google Stitch

https://stitch.withgoogle.com/
1•thatxliner•1h ago•0 comments

Scaling a Monolith to 1M LOC: 113 Pragmatic Lessons from Tech Lead to CTO

https://www.semicolonandsons.com/articles/scaling-a-monolith-to-1m-loc-113-pragmatic-lessons-from...
1•PaulHoule•1h ago•0 comments

Amazon vs. Perplexity AI: ACLU's Amicus Brief

https://www.aclu.org/cases/amazon-v-perplexity?document=Amicus-Brief-of-ACLU-ACLU-of-Northern-Cal...
1•StatsAreFun•1h ago•0 comments

Beside Myself at BSides OK

https://mpdc.dev/beside-myself-at-bsides-ok/
1•ParanoidRV•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•11mo ago

Comments

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