frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Scientists Discover Hidden Symmetry on Earth That Nobody Can Explain

https://www.404media.co/scientists-discover-hidden-symmetry-on-earth-that-nobody-can-explain/
1•Brajeshwar•1m ago•0 comments

Robots Create more jobs than they Kill

https://julienreszka.com/blog/robots-create-more-jobs-than-they-kill/
1•julienreszka•1m ago•0 comments

Protect the Shire

https://wordpress.org/news/2026/06/pts/
1•taubek•1m ago•0 comments

A Request Becomes Memory

https://rayredington.substack.com/p/how-a-request-becomes-memory
1•Visheshrwl•3m ago•0 comments

The dark side of Japanese convenience stores

https://spectator.com/article/the-dark-side-of-japanese-convenience-stores/
1•Michelangelo11•3m ago•0 comments

"Terrorists?": The Suffragette Arson and Bombing Campaign – Egham Museum

https://eghammuseum.org/terrorists-the-suffragette-arson-and-bombing-campaign/
1•lifeisstillgood•7m ago•0 comments

Show HN: LimitPing – Keep Claude Code and Codex rate-limit windows continuous

https://github.com/wavever/CCLimitPing
1•wavever•10m ago•0 comments

What is the value of releasing software that leaves people unemployed?

1•rondaerth92•10m ago•0 comments

netcat

https://en.wikipedia.org/wiki/Netcat
1•tosh•11m ago•0 comments

Cave of Forgotten Dreams

https://charlesleifer.com/blog/cave-of-forgotten-dreams/
1•cleifer•13m ago•0 comments

Generation is cheap, the decisions are the artifact

https://noemica.io/blog/generation-is-cheap
1•SebastianSosa•16m ago•0 comments

The Wearable Showdown: OURA Ring 5 vs. Fitbit Air vs. Whoop MG vs. Apple Watch

https://www.wsj.com/tech/personal-tech/oura-ring-fitbit-air-whoop-apple-sleep-wearables-99783661
1•odig•19m ago•0 comments

Google's Unique Approach to Getting Data Centers Built

https://www.wsj.com/tech/ai/googles-unique-approach-to-getting-data-centers-built-2cfae652
2•odig•19m ago•0 comments

The -Bot after my name is just cool I liked it I'm not a robot

1•muffcruster420•20m ago•1 comments

Taxation with Representation- How Communities/Coops Turn Spending into Ownership

https://cahootzcoops.com/blog/taxation-with-representation-how-communities-and-co-ops-turn-spendi...
2•DeonRob•24m ago•0 comments

The Origin of Lorem Ipsum

https://www.youtube.com/watch?v=kL1PDqzqhM4
1•jofzar•24m ago•1 comments

Anthropic, please ship an official Claude Desktop for Linux

https://github.com/anthropics/claude-code/issues/65697
22•predkambrij•30m ago•12 comments

Show HN: I made a better zsh autosuggestion tool that predicts your next command

https://github.com/Giammarco-Ferranti/deja
3•giammiferr•30m ago•0 comments

Polymarket Annotation Injection

https://sam.elborai.me/articles/polymarket-prompt-injection/
1•dgellow•37m ago•0 comments

Show HN: A virtual thermal printer for testing ESC/POS receipts

https://vprinter.dev
1•seokjume•38m ago•0 comments

Pockets of Humanity

https://herman.bearblog.dev/pockets-of-humanity/
2•Tomte•38m ago•1 comments

Anthropic/OpenAI may be spending more than $1000 for every $100 you pay them

https://ea.rna.nl/2026/06/07/anthropic-openai-may-be-spending-more-than-1000-for-every-100-you-pa...
13•gctwnl•42m ago•5 comments

What It's Like to IPO

https://staysaasy.com/startups/2026/06/04/what-its-like-to-ipo.html
1•wiredone•46m ago•0 comments

ASML invites Elon Musk to internal tech event, prompting employee backlash

https://nltimes.nl/2026/06/07/asml-invites-elon-musk-internal-tech-event-prompting-employee-backlash
3•root-parent•47m ago•0 comments

LLMs are eroding my software engineering career and I don't know what to do

https://human-in-the-loop.bearblog.dev/llms-are-eroding-my-software-engineering-career-and-i-dont...
141•poisonfountain•47m ago•86 comments

AI and the Pitfalls of Innovation

https://paulkrugman.substack.com/p/ai-and-the-pitfalls-of-innovation
2•rbanffy•50m ago•1 comments

Recent LLVM hash table improvements

https://maskray.me/blog/2026-06-07-recent-llvm-hash-table-improvements
2•ingve•55m ago•0 comments

Another Warning about the Steam Controller puck. It WILL start a fire

https://old.reddit.com/r/SteamController/comments/1tz8bgu/this_is_another_warning_about_the_puck_...
2•6581•55m ago•0 comments

TikTok is not addictive, social media giant tells politicians

https://www.irishtimes.com/technology/big-tech/2026/05/07/tiktok-is-not-addictive-social-media-gi...
4•1vuio0pswjnm7•56m ago•0 comments

Realisation of Unfixable

1•iaziz786•56m 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/