frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Onboarding with LLMs

https://newsletter.eng-leadership.com/p/how-to-use-ai-to-onboard-into-a-codebase
1•wordsaboutcode•26s ago•0 comments

A Wild Ghost Blog Appears

https://allenc.com/a-wild-ghost-blog-appears/
1•allenc•9m ago•1 comments

Thinking Machines: AI that can respond during the interaction

https://medium.com/seeds-for-the-future/a-new-way-to-interact-with-ai-interaction-models-2941f173...
1•hungryclaw•16m ago•0 comments

Can we code our way out of gentrification?

https://www.freerange.city/p/can-we-code-our-way-out-of-gentrification
2•burlesona•19m ago•0 comments

Mistral AI's NPM package was compromised

https://github.com/mistralai/client-ts/issues/217
1•logickkk1•28m ago•0 comments

Senior Product Engineer

https://revieve.factorialhr.com/job_posting/product-engineer-299899
1•seharetimad•32m ago•0 comments

Brain scans reveal how people with autistic traits connect differently

https://www.psypost.org/brain-scans-reveal-how-people-with-autistic-traits-connect-differently/
1•1317•34m ago•0 comments

Linux bitten by second vulnerability in as many weeks

https://arstechnica.com/security/2026/05/linux-bitten-by-second-severe-vulnerability-in-as-many-w...
1•jnord•35m ago•0 comments

Show HN: ProvisioningIQ – Continuous Benchmarks of AWS/Azure/GCP Latency

https://provisioningiq.appswireless.com/
1•syed786•38m ago•0 comments

Postmortem: TanStack NPM supply-chain compromise

https://tanstack.com/blog/npm-supply-chain-compromise-postmortem
5•carlos-menezes•38m ago•0 comments

Anxiety vs Depression

https://silence.bearblog.dev/anxiety-vs-depression/
2•thejamesbox•39m ago•1 comments

Legacy preference bans may not increase college diversity, researchers say

https://phys.org/news/2026-04-legacy-college-diversity.html
2•PaulHoule•39m ago•0 comments

Designing GPUs for Developers: A Conversation with Godot

https://blog.imaginationtech.com/designing-gpus-for-developers-a-conversation-with-godot
1•danbolt•40m ago•0 comments

GM just laid off IT workers to hire those with stronger AI skills

https://techcrunch.com/2026/05/11/gm-just-laid-off-hundreds-of-it-workers-to-hire-those-with-stro...
23•jnord•41m ago•20 comments

Intel Reenters DRAM Race? A Closer Look at the Z-Angle Memory

https://www.trendforce.com/news/2026/02/03/news-intel-reenters-dram-race-a-closer-look-at-the-z-a...
2•jeffufl•42m ago•1 comments

Hermes Agent Background Computer Use on macOS via SkyLight Private SPIs

https://hermes-agent.nousresearch.com/docs/user-guide/features/computer-use
1•simonpure•44m ago•0 comments

When My Father's Canary Flew Away

https://www.nytimes.com/2026/05/07/science/dementia-memory-brain-injury.html
1•gmays•46m ago•0 comments

Star Wars: Fall of the Empire by Stern Pinball

https://sternpinball.com/game/star-wars-fall-of-the-empire/
2•pentagrama•48m ago•0 comments

Why LLMs Make Learning to Code More Important, Not Less

https://senthil.learntosolveit.com/posts/2026/05/10/why-llms-make-learning-to-code-more-important...
1•orsenthil•49m ago•2 comments

What do you NOT like about Cursor / VSCode / Claude Code desktop / Codex / etc.?

1•nokturn•52m ago•7 comments

Show HN: NodeDB – High Perfomance Multi-Model Database

https://github.com/nodedb-lab/nodedb
1•fs90•52m ago•0 comments

Show HN: Inrepo – Pull upstream repos into your app without forks or submodules

https://github.com/inthhq/inrepo
1•burnedchris•52m ago•0 comments

'Not normal': one April day, planet's 50 hottest cities were in a single country

https://www.cnn.com/2026/05/11/climate/50-hottest-cities-aqi-india-heatwave
1•littlexsparkee•56m ago•0 comments

Oxide private cloud rack 3D explorer

https://explorer.oxide.computer/
2•wmf•1h ago•0 comments

Apple Releases iOS 26.5 and iPadOS 26.5 with End-to-End Encrypted RCS

https://www.macrumors.com/2026/05/11/apple-releases-ios-26-5/
1•JumpCrisscross•1h ago•0 comments

GM cutting up to 600 white-collar jobs, even as it seeks tech talent

https://www.detroitnews.com/story/business/autos/general-motors/2026/05/11/gm-to-cut-some-tech-jo...
3•littlexsparkee•1h ago•0 comments

Launching on Product Hunt Tonight

https://www.stackgraveyard.dev/
1•tlseternal•1h ago•1 comments

Show HN: Scholr – search 200M+ academic papers with citation-grounded synthesis

https://www.tryscholr.com/
1•JosephB07•1h ago•0 comments

We are not going to agree on AI

https://idiallo.com/blog/we-are-not-going-to-agree-on-ai
1•foxfired•1h ago•1 comments

Ask HN: What happens when eventually all E2E mess. apps removed from app stores?

1•kingleopold•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/