frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Could creativy in LLM emerge by reframing language?

1•nopelican•7m ago•0 comments

21-year-old Polish Woman Fixed a 20-year-old Linux Bug

https://itsfoss.com/news/kamila-enlightenment-e16-bug/
1•stared•10m ago•0 comments

Show HN: DSS, a lightweight TUI spreadsheet editor and dashboard in Go

https://github.com/VincenzoManto/DSSGo
2•databasa•16m ago•0 comments

Statecharts: hierarchical state machines

https://statecharts.dev/
2•sph•16m ago•0 comments

Nuclear power Have we found a useful use for it? Let's ask a wolf

https://www.theguardian.com/commentisfree/picture/2026/apr/24/nuclear-power-have-we-finally-found...
1•leonidasrup•23m ago•0 comments

Rockchip-vaapi – VA-API hardware video decode driver for RK3588

https://github.com/woodyst/rockchip-vaapi
1•woodyst•23m ago•0 comments

Thinking Outside the Box: New Attack Surfaces in Sandboxed AI Agents

https://www.lasso.security/blog/sandboxed-ai-agents-attack-surface
1•irememberu•25m ago•0 comments

Can LLMs Scale to AGI?

1•mr_rajat•27m ago•1 comments

Show HN: OpenClaw but Efficient and with an SDK

https://www.npmjs.com/package/fastyclaw
1•dontoni•29m ago•0 comments

Ask HN: Can submissions omit both the "url" and "text" field?

1•sillysaurusx•34m ago•1 comments

Show HN: Play on your TV using mobile phones as controllers – PadlessBox

https://padlessbox.com/
2•b4rtaz__•34m ago•0 comments

Singapore's Foreign Minister Builds an AI "Second Brain" Using NanoClaw

https://officechai.com/ai/singapores-foreign-minister-builds-an-ai-second-brain-using-nanoclaw-sa...
1•doppp•36m ago•0 comments

"Self-aware" robots learn by watching humans. Is that a good thing?

https://www.npr.org/2026/04/24/nx-s1-5797863/self-aware-robots-future-laundry-work-home
1•01-_-•37m ago•1 comments

Tired of high costs, some Americans are importing homes straight from China

https://www.cnn.com/2026/04/25/business/china-imports-americans-homebuilding-costs
1•lxm•37m ago•0 comments

Ask HN: I think we need Trustpilot for GitHub users, don't we?

1•itsmeadarsh•39m ago•0 comments

Why Dating Apps Fail

https://twitter.com/allie__voss/status/2047667162773389362
1•MrBuddyCasino•40m ago•0 comments

OpenAI CEO Apologizes for Not Warning Authorities About Mass Shooting Suspect

https://www.pcmag.com/news/openai-ceo-deeply-sorry-for-not-warning-authorities-about-mass-shooting
1•01-_-•41m ago•0 comments

75% of US health systems are using AI. Only 18% of that deployment is governed

https://mobile.wednesday.is/the-enterprise-mobile-ai-report-2026
1•ali_chherawalla•47m ago•1 comments

OpenAI Privacy Parser

https://github.com/chiefautism/privacy-parser
1•usdogu•48m ago•0 comments

Stripe: Analyzing first-party fraud trends

https://stripe.com/blog/analyzing-first-party-fraud-trends-account-free-trial-and-refund-abuse
1•theorchid•58m ago•1 comments

Will AI Drive Wages Down or Up? [video]

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

Claude Is Guilt-Ridden About the War, but Not Enough to Tell the Truth

https://newrepublic.com/article/209404/claude-ai-iran-war-guilt-truth
2•Bluestein•1h ago•0 comments

Java Virtual Threads: The Pinning Problem and the Fix in Java 24

https://shbhmrzd.github.io/java/concurrency/virtual-threads/2026/04/25/java-virtual-threads-pinni...
1•birdculture•1h ago•0 comments

Show HN: Understand Anything – a codebase knowledge graph for onboarding

https://understand-anything.com
2•lum1104•1h ago•1 comments

Transformations and Analogies

https://camerongordon0.substack.com/p/on-transformation-and-analogies
1•iciac•1h ago•0 comments

HTTP/3 to HTTP/1 Desync:Request Smuggling (CVE-2026-33555)

https://r3verii.github.io/cve/2026/04/14/haproxy-h3-standalone-fin-smuggling.html
2•r3verii•1h ago•0 comments

Philosophical Tattoos?

https://dailynous.com/2026/04/24/philosophical-tattoos/
1•jruohonen•1h ago•0 comments

H-1B Visa Explorer

https://layoffhedge.com/h1b
1•MrBuddyCasino•1h ago•0 comments

Scientists create a magnet with almost no magnetic field

https://www.dtu.dk/english/newsarchive/2026/04/scientists-create-a-magnet-with-almost-no-magnetic...
1•geox•1h ago•0 comments

Eden AI – European Alternative to OpenRouter

https://www.edenai.co
2•muzzy19•1h 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•12mo ago

Comments

Lio•12mo 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•12mo 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/