frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

If technology got better, why did everything get worse?

https://www.sammystraus.com/#if-technology-got-better-why-did-everything-get-worse
1•sammy0910•57s ago•0 comments

Nix has a source-bootstrapped OpenJDK

https://fzakaria.com/2026/07/30/nix-finally-has-a-source-bootstrapped-openjdk
1•ingve•1m ago•0 comments

How to plant a nuclear plant in Iran

https://www.digitaldigging.org/p/how-to-plant-a-nuclear-plant-in-iranh7&fnop=story-toofast
1•rhcom2•1m ago•0 comments

ChatGPT Optimizes Its Agent Loop: Harness, API, and Inference

https://blog.bytebytego.com/p/how-chatgpt-optimizes-its-agent-loop
2•big_toast•2m ago•0 comments

Context Is the New Process

https://www.insideainative.com/p/context-is-the-new-process
1•mmayernick•2m ago•0 comments

Show HN: Sticker Base

https://chuanqisun.github.io/stickerbase/
1•osmoscraft•2m ago•1 comments

Around the wwworld

https://bellkiosk.website/around-the-wwworld/
1•cookingoils•4m ago•0 comments

Wrapper Company vs. Recursion Company

1•sgadhavi•7m ago•0 comments

Investigating three real-world incidents in our cybersecurity evaluations

https://www.anthropic.com/news/investigating-incidents-cybersecurity-evals
2•surprisetalk•7m ago•0 comments

Holocloth

https://holocloth.vercel.app
1•ingve•8m ago•0 comments

Ask HN: How are you leveraging AI/LLMs as software dev TEAM

1•locusofself•13m ago•1 comments

The Model Factory

https://www.latent.space/p/poolside
1•gmays•17m ago•0 comments

SSH Monitor for Linux: A script that notifies you for SSH activity

https://codeberg.org/r2innovation/ssh_notify
1•mou7664•18m ago•0 comments

Show HN: Anti-Slop UI – A deterministic state-machine to stop AI hallucinations

https://local-over.github.io/Anti-Slop-UI/
1•hassan-elkady•18m ago•0 comments

Show HN: Pomi – standalone voice agent running on the Rabbit R1

https://github.com/sidmohan0/pomi
1•smohan88•19m ago•0 comments

What's Working for Adoption and Distribution of AI/SaaS Products in 2026?

1•Expedition•22m ago•0 comments

Working from home? That will be extra. Renters rage over new fee

https://www.usatoday.com/story/money/2026/07/30/remote-work-rental-fee-sparks-outrage/91101669007/
2•healsdata•23m ago•0 comments

Abundant Intelligence, Scarce Autonomy

https://twitter.com/elitepax/status/2082948701958422783
1•majestic5762•24m ago•1 comments

Can you survive the Kobayashi Maru?

https://moai.studio/blog/posts/kobayashi-maru.html
1•ionwake•25m ago•1 comments

Pusu AdBlocker – 35K DNR rules, Manifest V3, zero tracking, anti-popup nuclear

https://github.com/pusucip25/pusu-adblocker
1•pucucip•26m ago•1 comments

Where Does the Foundation Come From? (Training New SWEs)

https://queue.acm.org/detail.cfm?id=3831359
1•molsongolden•27m ago•0 comments

Ask HN: What do you think of this prompt as a benchmark for LLMs?

1•plombe•30m ago•0 comments

Xenia, Greek hospitality in case you're a god in disguise

https://en.wikipedia.org/wiki/Xenia_(Greek)
2•shay_ker•31m ago•0 comments

Montana's plan to become an experimental medical hub just pushed forward

https://www.technologyreview.com/2026/07/30/1140942/montana-experimental-medical-hub-pushed-forwa...
1•bilsbie•31m ago•0 comments

Power 2026 – Electricity Pricing in the Age of AI

https://power2026.ai/
1•nsomani•32m ago•0 comments

Gov't Subreddit for US Secret Service Applicants Bans Discussion of Polygraphs

https://antipolygraph.org/blog/2026/07/30/government-controlled-reddit-community-for-u-s-secret-s...
2•Teever•32m ago•0 comments

Dell VEP4600 Review the System I Have Lusted After for Years – ServeTheHome

https://www.servethehome.com/dell-vep4600-review-the-system-i-have-lusted-after-for-years/
1•rbanffy•33m ago•0 comments

I flagged two research papers for fake authors and both were accepted as orals

https://geospatialml.com/posts/reviewing-ai-slop/
14•volumes94•35m ago•0 comments

Convenient and hassle-free. A better YouTube experience

https://chromewebstore.google.com/detail/on-the-sofa-for-youtube/lmngfodipgjkioibfidngohekngkikdf
1•ogidevelopment•37m ago•1 comments

The Fan Zone

https://www.nplusonemag.com/online-only/gooooaaal/the-fan-zone/
1•herbertl•40m 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/