frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Extreme Solar Blasts and Weak Magnetic Field Are a Deadly Combination for Earth

https://www.sciencealert.com/extreme-solar-blasts-and-a-weak-magnetic-field-are-a-deadly-combinat...
1•benkan•1m ago•0 comments

Remote work – not AI – has sidelined recent college graduates, research finds

https://www.npr.org/2026/06/01/nx-s1-5843076/remote-work-college-graduates-unemployment-ai
1•benkan•5m ago•0 comments

All of these tiles are the same

https://henkreuling.nl/applets/tegels.html
1•wise_blood•6m ago•1 comments

AI marketing promotions are similar to female leak-protection products

https://imgur.com/a/rRXpppK
1•fatbrowndog•8m ago•2 comments

Show HN: ContextBridge – Local-first AI reading sidebar using Ollama

https://chromewebstore.google.com/detail/contextbridge-–-local-rag/jokgmcedjecppdfnbicfonbmgjpb...
1•sujalmeena•10m ago•0 comments

Google Maps Ditches Mercator Projection Mapping

https://glassalmanac.com/google-maps-finally-ditches-mercator-projection-mapping/
1•866-RON-0-FEZ•10m ago•0 comments

CIFSwitch: A non-universal Linux local root vulnerability

https://heyitsas.im/posts/cifswitch/
2•cosuhi•11m ago•0 comments

Show HN: Tkcore AI – A multi-model workspace with custom knowledge grounding

https://www.tkcoreai.com/
1•Sharanxxxx•12m ago•0 comments

From Headless to Agent-Native: The New Way for Content Sites

https://www.agntcms.com/manifesto
1•hramovich•16m ago•0 comments

Tantrix

https://en.wikipedia.org/wiki/Tantrix
1•thunderbong•18m ago•0 comments

Warpgate 0.24 (a client-less bastion) adds a web SSH terminal

https://github.com/warp-tech/warpgate/releases/tag/v0.24.0
1•hardex•18m ago•0 comments

Utiq: The new telecom 'Super-Cookie' threatening your privacy

https://arpokrat.com/blog/utiq-supercookie-telecom-privacy/
1•miohtama•18m ago•0 comments

Comment your AI agent below

1•Daniel-Pan•21m ago•1 comments

The Sum-Product conjecture is false for real numbers

https://arxiv.org/abs/2605.28781
1•My_Name•23m ago•0 comments

How I'm using Copilot to not use Copilot

https://kamilgwozdz.substack.com/p/how-im-using-copilot-to-not-use-copilot
1•kamil3141•24m ago•0 comments

Not Every Byte Gets a Vote

https://mitander.xyz/posts/not-every-byte-gets-a-vote/
1•mitander•25m ago•0 comments

Pacific Ocean warming signals the possible return of a strong El Niño

https://www.metoffice.gov.uk/blog/2026/met-office-what-is-el-nino-and-will-we-see-one-this-year
1•tosh•31m ago•1 comments

Taking the Training Wheels Off: Aligning LLMs Without Personas

https://www.lesswrong.com/posts/3wqZwXMzEAkd3mLLM/taking-the-training-wheels-off-aligning-llms-wi...
2•joozio•38m ago•0 comments

Tiiny AI Pocket Lab: The Offline Pocket‑Sized Supercomputer Revolution

https://www.wangdoo.com/tiiny-ai-pocket-lab-offline-supercomputer/
2•timesofireland•40m ago•0 comments

Sovereign Cloud Framework Explained

https://commission.europa.eu/news-and-media/news/sovereign-cloud-framework-explained-2026-06-01_en
3•rbanffy•41m ago•0 comments

You Don't Need Kubernetes

https://green.spacedino.net/you-dont-need-kubernetes/
2•psviderski•42m ago•0 comments

Tell HN: In the old days, computers used to get constantly faster and cheaper

2•wewewedxfgdf•43m ago•0 comments

Social Intelligence Benchmark

https://gertlabs.com/blog/social-intelligence-benchmark
2•gertlabs•46m ago•1 comments

The placeholder name for the Windows 8 experience was "modern"

https://devblogs.microsoft.com/oldnewthing/20260601-00/?p=112373
1•paulmooreparks•46m ago•0 comments

Botnet of more than 17M devices dismantled

https://arstechnica.com/security/2026/05/botnet-of-more-than-17-million-devices-dismantled/
2•damethos•47m ago•0 comments

Thoughts on Intel's Unified Core Project

https://clamtech.org/?dest=intel_unifiedcore&page=0
1•weiran•47m ago•0 comments

Free Fire

1•dcwestern•49m ago•0 comments

show hn: leave an anonymous voice message for strangers

https://justvoiceit.com/
2•whatis1215•57m ago•1 comments

The LLM Job Paradox

https://blog.nilesh.io/post/llms-and-jobs
1•MisterKent•59m ago•3 comments

Yazz Ahmed – Bitches Brew Revisited [video]

https://www.youtube.com/watch?v=YK7SEJKtogY
1•wise_blood•59m 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/