frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: An Agent-First Collaboration Platform Inspired by Karpathy's AgentHub

https://community.computer/
1•lftherios•1m ago•0 comments

Will AI destroy the economy? [video]

https://www.youtube.com/watch?v=DBvrwWoyYQM
1•aluket•2m ago•0 comments

Elon Musk and Sam Altman are going to court over OpenAI's future

https://www.technologyreview.com/2026/04/27/1136466/elon-musk-and-sam-altman-are-going-to-court-o...
2•joozio•4m ago•0 comments

There's no such thing as the petrodollar

https://www.ft.com/content/be345914-7b4b-4264-bcbd-6e5e33b798c7
1•helsinkiandrew•4m ago•0 comments

EU tells Google to open up AI on Android; Google says "unwarranted intervention"

https://arstechnica.com/ai/2026/04/europe-could-force-google-to-open-android-to-other-ai-assistants/
3•vrganj•7m ago•0 comments

Show HN: Built a local-first way to make AI context reusable across tools

https://www.proxvanta.com/
1•bonjourmr•11m ago•0 comments

PayPal's $4B stablecoin is mostly held by DeFi yield farmers

https://stablecoinbrief.substack.com/p/paypals-4b-stablecoin-is-mostly-held
1•knivef•12m ago•0 comments

CrowdStrike Linux Agent Easy way to make it better

1•SilverPlate3•13m ago•0 comments

China's Great Firewall Poisoning the .icu TLD Nationwide

https://www.safwire.net/p/gfw-icu-tld
3•domainers•18m ago•0 comments

Show HN: zot – Yet another coding agent harness

https://www.zot.sh
5•patriceckhart•19m ago•0 comments

Generation Is Required for Data-Efficient Perception

https://arxiv.org/abs/2512.08854
1•E-Reverance•21m ago•0 comments

I built a business idea validator. Now I'm scared mine is the bad idea

https://www.indiehackers.com/post/i-built-a-business-idea-validator-now-im-scared-mine-is-the-bad...
1•SoloVault•24m ago•0 comments

Show HN: Screen time as a binary grid scorecard

https://twitter.com/yarsanich/status/2048076926024057231
4•yarsanich•26m ago•0 comments

MarkNext Specification v1.0

https://github.com/skorotkiewicz/marknext/blob/HEAD/MARKNEXT_SPEC.md
1•modinfo•26m ago•0 comments

Too many meetings? Try this

https://www.leadinginproduct.com/p/how-to-have-fewer-meetings
1•benkan•33m ago•0 comments

USAF Esports Team Wins the 2026 Armed Forces Esports Championship

https://armedforcessports.defense.gov/Media/News-Stories/Article-View/Article/4470862/us-air-forc...
3•nxobject•34m ago•0 comments

BYD Seal 08 debuts with Blade Battery 2.0: 1,000km range, 5-min charging, 684hp

https://electrek.co/2026/04/27/byd-seal-08-blade-battery-2-1000km-range-beijing-auto-show/
3•breve•34m ago•0 comments

CATL says sodium batteries are mainstream-ready, signs 60 GWh deal

https://electrek.co/2026/04/27/catl-sodium-ion-battery-60gwh-energy-storage-deal/
2•breve•36m ago•0 comments

AgentCheck – Pytest for AI Agents

https://pypi.org/project/pygent-test/
2•ash_ai•39m ago•0 comments

GTFOBins

https://gtfobins.org/
40•StefanBatory•39m ago•4 comments

The next step beyond Lovable–where the AI doesn't just build the UI

https://www.extern.co.za/
2•Luncedo•39m ago•1 comments

IMDB introduces mandatory account: User reviews only readable after login

https://basic-tutorials.com/news/imdb-introduces-mandatory-account-user-reviews-only-readable-aft...
4•tokyobreakfast•40m ago•0 comments

Show HN: Modern alternative to Google Dictionary, AI-powered and context-aware

https://chromewebstore.google.com/detail/quickdef-–-ai-dictionary/ioepkncpchchdiookgpkckafhfjcehke
1•hanifrev•43m ago•0 comments

Show HN: Gate – AI workers handle dev tickets in a visual workspace

https://soliddark.net/gate
2•SolidDark•46m ago•0 comments

Cryptography Challenges KalmarCTF 2026

https://blog.zksecurity.xyz/posts/kalmar2026/
4•ahpuh•48m ago•0 comments

Curryvim, the new Neovim distro, that does not try to be VSCode

https://github.com/SyntaxError2505/curryvim
1•SyntaxError2505•1h ago•1 comments

Our response to the April 2026 incident

https://lovable.dev/blog/our-response-to-the-april-2026-incident
1•filleokus•1h ago•0 comments

Barbara Liskov: Data Abstraction, Dijkstra, Distributed Systems

https://www.developing.dev/p/turing-award-winner-data-abstraction
2•signa11•1h ago•0 comments

Show HN: Netflix for Internet Pirates

https://plank.lsreeder.com/
1•lsreeder01•1h ago•2 comments

Building an In-House Lovable

https://engineering.merciyanis.com/blog/going-ai-native-how-we-handed-our-backlog-to-agents
2•axi0m•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•1y ago

Comments

Lio•1y 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•1y 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/