frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Add llms.txt and fix robots.txt for AI agent discoverability

1•nishiohiroshi•6m ago•0 comments

Show HN: JRD Garage – $99 one-time auto shop management (Mitchell1 alternative)

https://jrdconnect.com/apps
1•jaydurangodev•7m ago•0 comments

How to Talk About Books You Haven't Read

https://www.themarginalian.org/2012/06/15/how-to-talk-about-books-you-havent-read/
1•rramadass•8m ago•1 comments

Need Help: Promoting indie AI image edit platform VAKPixel

1•krishna-vakx•11m ago•0 comments

Show HN: Curiosity – DIY 6" Newtonian Reflector Telescope

https://curiosity-telescope.vercel.app/
1•big_Brain69•14m ago•0 comments

Shithead: The greatest card game in the world

https://shitheads.lovable.app
1•ZguideZ•20m ago•1 comments

Show HN: Malicious Extension Sentry: database of removed Chrome/Edge extensions

2•toborrm9•25m ago•0 comments

Show HN: TTS.ai - Text to Speech

https://tts.ai/
1•nadermx•29m ago•0 comments

MCP vs. CLI for AI Agents

https://manveerc.substack.com/p/mcp-vs-cli-ai-agents
1•manveerc•29m ago•1 comments

Ivy – Bringing LLMs to 35M offline students in Ethiopia

1•zeshama•32m ago•0 comments

Abstraction Is Overrated

https://www.heise.de/en/blog/Software-Development-Abstraction-is-Overrated-11198327.html
2•goloroden•34m ago•0 comments

NeSystem (Fka NeKernel) v0.1.5

https://github.com/ne-foss-org/ne_system
2•Amlal•37m ago•1 comments

The End of Identity: AI, Plasticity, and the Divergence Machine

https://aneeshsathe.com/2026/03/07/the-end-of-identity-ai-plasticity-and-the-divergence-machine/
3•boredgargoyle•40m ago•0 comments

Trump says not mulling a draft executive order to seize control over elections

https://www.pbs.org/newshour/politics/trump-says-hes-not-mulling-a-draft-executive-order-to-seize...
2•pabs3•42m ago•0 comments

ScopeCreepSurvival

https://scopecreepsurvival.vercel.app/
1•ravenReema•43m ago•0 comments

Show HN: Joha – a free browser-based drawing playground with preset shape tools

https://joha-app.pages.dev/
2•smlee•44m ago•0 comments

Show HN: Neural-Q-Forge – a Rust-native quantum circuit forging framework

https://github.com/cleitonaugusto/nqf-community
1•CleitonAugusto•50m ago•1 comments

Am I Scared?

https://www.avraam.dev/blog/am-i-scared
2•almonerthis•50m ago•1 comments

Feevio – Voice to Invoice in Seconds

https://feevio.com
1•danHayworth•55m ago•1 comments

Out of Distribution: Beauty Beyond the Algorithm's Comfort Zone

https://terminal-archive.com/extracts/saving-beauty
1•lufasz•57m ago•1 comments

"Design Me a Highly Resilient Database"

https://nikogura.com/DatabaseDesign.html
4•donutshop•1h ago•0 comments

To the Polypropylene Makers

https://www.lesswrong.com/posts/HQTueNS4mLaGy3BBL/here-s-to-the-polypropylene-makers
6•raldi•1h ago•0 comments

Claude Is Alive, Company Warns AI Model May Be Conscious, Its over [video]

https://www.youtube.com/watch?v=-SVPjEF0ZW8
1•cable2600•1h ago•0 comments

Netdata is a seriously impressive server monitoring tool

https://thenewstack.io/netdata-is-a-seriously-impressive-server-monitoring-tool-to-keep-you-up-to...
5•gtzi•1h ago•0 comments

Open Creation and its Enemies [pdf]

https://files.libcom.org/files/2023-01/OpenCreationAndItsEnemies.pdf
1•jruohonen•1h ago•0 comments

Reverse engineering a DOS game with no source code using Codex 5.4

https://twitter.com/ammaar/status/2030392563534893381
5•asronline•1h ago•3 comments

Agentic Coding for Non-Vibe Coders

https://theasymptotic.substack.com/p/agentic-coding-for-non-vibe-coders
2•tipoffdosage904•1h ago•2 comments

Show HN: Render Claude Code and Codex Transcripts as Browsable HTML

https://github.com/forhadahmed/ai-transcript
3•forhadahmed•1h ago•0 comments

Oracle and OpenAI scrap deal to expand flagship Texas data centre

https://www.ft.com/content/2fa83bbf-abf2-43f1-b2f0-84a1391150b9
6•petethomas•1h ago•0 comments

We professional C-suites, lost the battle against vibe-leadership?

3•Bridged7756•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/