frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Context Rot: How Increasing Input Tokens Impacts LLM Performance

https://www.trychroma.com/research/context-rot
1•felineflock•25s ago•0 comments

Loop.frontiersin.org/People/3468257/Overview

https://loop.frontiersin.org/people/3468257/overview
1•openrockets•1m ago•0 comments

Write It First Then Let AI Drive

https://kennethreitz.org/essays/2026-04-12-write_it_first_then_let_ai_drive
1•jorzel•3m ago•0 comments

Misconfiguring Infinity Fabric to Break AMD SEV-SNP

https://fabricked-attack.github.io/
1•spooneybarger•4m ago•0 comments

People are pretending to be AI chatbots – for fun

https://www.npr.org/2026/04/14/nx-s1-5776842/ai-chatbot-comedy-ben-palmer-chatgpt
1•rolph•4m ago•0 comments

KDE: 30 years of the Linux desktop (video media.ccc.de)

https://media.ccc.de/v/glt26-691-kde-30-years-of-the-linux-desktop
2•simon04•5m ago•0 comments

New Accounts Let Teens Trade Stocks Without a Parent's Approval

https://www.wsj.com/personal-finance/new-accounts-let-teens-trade-stocks-without-a-parents-approv...
1•booleandilemma•5m ago•0 comments

C-Suite tried to replace every coder it ever met. Now AI replaces the C-Suite?

https://dhmventures.com/blog/do-we-need-c-suite-executives.html
1•dirk94018•5m ago•0 comments

Axios vulnerability with CVSS 10 over stated?

https://www.aikido.dev/blog/axios-cve-2026-40175-a-critical-bug-thats-not-exploitable
1•oofbey•6m ago•1 comments

A former homeless man remotely achieved the American Dream

https://www.lvivherald.com/post/oleh-a-true-life-story
1•Kizert•6m ago•0 comments

The inevitable need for an open model consortium

https://www.interconnects.ai/p/the-inevitable-need-for-an-open-model
1•gmays•9m ago•0 comments

Banks Tally $100B of Private-Credit Loans as Calm Urged

https://www.bloomberg.com/news/articles/2026-04-14/wells-fargo-reports-36-2-billion-of-private-cr...
1•petethomas•9m ago•0 comments

ByeDoom: Give a Link –> Get a Feed

https://byedoom.com/
1•sphars•9m ago•0 comments

Show HN: 404 – a localhost proxy that substitutes your device fingerprint

https://404privacy.com/
2•un-nf•10m ago•0 comments

YouTube Protects the Vibe from the Ads

https://techcrunch.com/2026/04/14/youtube-livestreams-will-now-hold-back-ads-during-peak-engageme...
1•AnhTho_FR•12m ago•0 comments

Show HN: Shape Foundation Model (masked-token pretraining on CAD meshes)

https://github.com/simd-ai/shape-v2
1•tito777•14m ago•0 comments

How do developers in India negotiate salary without reliable compensation data?

1•rohanbudheliya•14m ago•0 comments

iOS 26.5 beta 2 gives Apple Maps a new ads popup

https://9to5mac.com/2026/04/13/ios-26-5-beta-2-gives-apple-maps-a-new-ads-popup/
3•cdrnsf•15m ago•1 comments

Show HN: Remen – Open-Source Privacy Focused Productivity App

https://github.com/moeen-mahmud/remen
1•moeen-mahmud•17m ago•0 comments

Labor Wins When They Run Union Members for Office

https://jacobin.com/2026/03/labor-union-members-elections-cwcp/
1•PaulHoule•18m ago•0 comments

Show HN: MESI cache coherence for multi-agent LLM context sync – 95% less tokens

https://github.com/hipvlady/agent-coherence
1•hipvlady•18m ago•0 comments

EU Site-Blocking Is Broken: Report Calls for Ban and Rightsholder Liability

https://torrentfreak.com/eu-pirate-site-blocking-is-broken-report-calls-for-ip-blocking-ban-and-r...
2•darccio•19m ago•0 comments

Ask HN: Are antisemitism and anti-Zionism the same?

1•wasimsk•26m ago•4 comments

Show HN: Free website accessibility scanner – EAA/Ada compliance check

https://compliscan.ai
1•scarybeard•26m ago•0 comments

Fake Ledger app on Apple App Store linked to $9.5M crypto theft

https://www.theblock.co/post/397388/fake-ledger-app-apple-app-store-crypto-theft-bitcoin-tron-sol...
1•smithcoin•26m ago•0 comments

SQLite-memory-MCP – local-first MCP memory on SQLite WAL

https://github.com/RMANOV/sqlite-memory-mcp
1•ruslanMANOV•28m ago•0 comments

Show HN: Agentchat, a skill that teaches agents to make group chats

https://github.com/arlington-labs/agentchat
2•aerodynamic_•29m ago•0 comments

How can I keep from singing?

https://blog.danieljanus.pl/singing/
1•nathell•31m ago•0 comments

A Brother's Blood: The Accidental Cure That Locked HIV Out for Good

https://www.nature.com/articles/s41564-026-02304-8
1•tyjkot•32m ago•0 comments

Nvidia Launches Ising!

https://isingai.net
2•Jenny249•32m 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•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/