frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Graphify: An AI skill for turning any folder into a queryable knowledge graph

https://github.com/safishamsi/graphify
1•tanelpoder•1m ago•0 comments

Analyzing Reverse Address Translation Overheads in Multi-GPU Scale-Up Pods

https://arxiv.org/abs/2604.02473
1•matt_d•2m ago•0 comments

Surprising hidden pattern connecting over 1,500 languages found

https://www.independent.co.uk/news/science/languages-universal-grammar-rules-pattern-b2952396.html
1•antfarm•6m ago•0 comments

Bitwarden Is Down

https://status.bitwarden.com/issues/69d430c5763f44a7efca7b8a
1•zhan_eg•6m ago•0 comments

Show HN: ACP – Governance for AI Coding Agents (Claude Code, OpenClaw)

https://agenticcontrolplane.com/
1•davidcrowe•7m ago•0 comments

How to Perform a Bulk Permissions Check in FusionAuth FGA by Permify

https://fusionauth.io/blog/permify-bulk-permissions-check
1•mooreds•11m ago•0 comments

Launchyard – vibe code a business

https://launchyard.dev
1•hackmaxim•12m ago•1 comments

HubLite – A native macOS CRM for people who find HubSpot/Salesforce overkill

https://www.innobera.com/hublite/
1•Evian-SP•14m ago•0 comments

Show HN: MemberLane – Paid Communities on Telegram, Discord, and WhatsApp

https://www.memberlane.app
1•grene98•16m ago•0 comments

Reddit is the #1 most cited source across every major AI search platform

https://virtualuncle.com/answer-engine-optimization-aeo-guide-2026/
3•svrbvr•19m ago•0 comments

Kalshi wins appeal against New Jersey in Third Circuit

https://www.dopaminemarkets.com/p/prediction-markets-vs-states-the
1•astorplace•19m ago•0 comments

Show HN: A bespoke magazine for the kid in your life

https://www.juiceboxjournal.com/
1•easymode•22m ago•0 comments

Show HN: Clickly – tool for designers and engineers to build mobile apps

https://clickly.app
1•roskoalexey•27m ago•0 comments

Show HN: Next Moca – control plane for AI agents (pre-seed @ $10M)

https://www.nextmoca.com
1•swanandrao•28m ago•0 comments

Matrix-Kernel-Root

https://github.com/M2KR4R/matrix-kernel-root
1•M2KR4R•29m ago•0 comments

Um método informático para crianças feito com amor

https://www.amazon.com.br/dp/B0DN62YNJF
3•Hanoverdoes•30m ago•1 comments

Anthropic, OpenAI and Google sharing Intel to block Chinese distillation

https://www.bloomberg.com/news/articles/2026-04-06/openai-anthropic-google-unite-to-combat-model-...
2•nikcub•31m ago•0 comments

Building a DIY OpenClaw

https://ben.page/claude-mac
2•j03b•32m ago•0 comments

Bernie Sanders: "AI Is a Threat to Everything the American People Hold Dear"

https://www.wsj.com/opinion/ai-is-a-threat-to-everything-the-american-people-hold-dear-a3286459
5•fortran77•32m ago•3 comments

Real-time tracker for NASA's Artemis II Moon mission

https://artemis.fyi/
1•jsk2600•33m ago•0 comments

GitHub Copilot CLI combines model families for a second opinion

https://github.blog/ai-and-ml/github-copilot/github-copilot-cli-combines-model-families-for-a-sec...
1•salkahfi•34m ago•0 comments

Show HN: CacheZero – Karpathy's LLM wiki idea as one NPM install

2•swarajbachu•38m ago•0 comments

Anthropic expands partnership w Google and Broadcom for multiple GW of compute

https://www.anthropic.com/news/google-broadcom-partnership-compute
3•l1n•38m ago•0 comments

Optimizing Time, Cost, and Generalization in Distributed Large-Batch Training

https://arxiv.org/abs/2603.18112
1•PaulHoule•40m ago•0 comments

PrismML – Announcing 1-bit Bonsai: The First Commercially Viable 1-bit LLMs

https://prismml.com/news/bonsai-8b
1•janandonly•40m ago•0 comments

Zed: A sans for the needs of the 21st century

https://www.typotheque.com/blog/zed-a-sans-for-the-needs-of-21century
1•kaitak•40m ago•0 comments

Show HN: Hippo, biologically inspired memory for AI agents

https://github.com/kitfunso/hippo-memory
6•kitfunso•41m ago•2 comments

An In-Depth Study of Filter-Agnostic Vector Search on PostgreSQL

https://arxiv.org/abs/2603.23710
1•tanelpoder•41m ago•0 comments

Ormah: A living memory layer for your agents. Local. Private. Portable

https://www.ormah.me/
1•r_spade•44m ago•0 comments

Why Are People Injecting Themselves with Peptides?

https://www.newyorker.com/magazine/2026/04/13/why-are-people-injecting-themselves-with-peptides
1•bookofjoe•44m 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/