frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Designing a factory-safety agent (model reasons, code routes)

https://github.com/HumphreySun98/safety-commander-agent
1•humphreysun98•3m ago•0 comments

Section 194J of Income Tax Act: Meaning, Rules and Examples – SMFG India Credit

https://www.smfgindiacredit.com/knowledge-center/section-194j-of-income-tax-act.aspx
1•saumyaraut11•4m ago•0 comments

Black Pepper Won Europe from a Tastier Pepper (2016)

https://www.atlasobscura.com/articles/long-pepper-better-than-black-pepper
1•downbad_•5m ago•0 comments

Google's exponential path to climate-wrecking digital bloat

https://ketanjoshi.co/2026/07/01/googles-exponential-path-to-climate-wrecking-digital-bloat/
1•jalev•6m ago•0 comments

LongCat 2.0: The first trillion-parameter model trained on Chinese-made GPUs

https://www.reuters.com/world/china/chinas-meituan-says-new-ai-model-trained-domestic-chips-2026-...
1•linzhangrun•7m ago•0 comments

Limine: Modern, secure, portable, multiprotocol bootloader and boot manager

https://github.com/Limine-Bootloader/Limine
1•noteness•12m ago•0 comments

Cotal: Agentic Coordination Layer

https://cotal.ai
1•handfuloflight•14m ago•0 comments

CSS Logical Properties Converter

https://cssawwwards.com/frontend-toolkit/css-logical-properties
1•cssawwwards•15m ago•0 comments

Show HN: I wrote a Rust book ending with a Redis clone

https://shankhan3.gumroad.com/l/dnwmtp
1•zeeshanali0094•16m ago•0 comments

The Three Projections of Doctor Futamura

http://blog.sigfpe.com/2009/05/three-projections-of-doctor-futamura.html
1•tristenharr•16m ago•0 comments

Torlink

https://github.com/baairon/torlink
2•handfuloflight•16m ago•1 comments

AI Tutor on Your Screen

https://heybraza.com
1•orakulus•21m ago•1 comments

What Happened to the Fight for the Internet?

https://dustycloud.org/blog/what-happened-to-the-fight-for-the-internet/
1•signa11•24m ago•0 comments

Power House – a Rust/Python toolkit for verifiable computation artifacts

https://mfenx.com
1•psl-fox•26m ago•0 comments

Nomenclator (Nomenclature)

https://en.wikipedia.org/wiki/Nomenclator_(nomenclature)
1•thunderbong•32m ago•0 comments

Age Checks That Do NOT Leak Identity: Privacy-Preserving Attribute Verification [pdf]

https://magarshak.com/papers/Personal.pdf
1•EGreg•34m ago•0 comments

City on the Edge: Can San Francisco's soul survive techno-capitalism?

https://www.ft.com/content/e9a5639c-eaad-4c24-997b-1cdf9348851d
1•1vuio0pswjnm7•42m ago•0 comments

Show HN: Searchable directory of HN Job postings

https://gethnjobs.com/
2•hboon•43m ago•0 comments

On AI Text Detection

https://ethansmith2000.substack.com/p/ai-text-detection-arms-dealers-in
1•dvrp•43m ago•0 comments

Ditching Vagrant

https://benjamintoll.com/2026/06/29/on-ditching-vagrant/
1•jandeboevrie•49m ago•0 comments

Show HN: PDFWix – Browser-Based PDF Tools for Everyday Workflows

https://www.pdfwix.com/
1•PDFWix•50m ago•0 comments

He sent a harsh email to ICE's top official. Federal agents tracked him down

https://www.npr.org/2026/07/01/nx-s1-5874124/dhs-tracks-ice-critic
4•OutOfHere•50m ago•0 comments

CursorBench 3.1

https://cursor.com/evals
5•handfuloflight•51m ago•0 comments

Paste any job, find who in your network can refer you

https://happenstance.ai/sidedoor
2•welshpony•52m ago•1 comments

Transcending Temptation Through Abstraction

https://journals.sagepub.com/doi/10.1177/0963721412449169
1•highfrequency•55m ago•0 comments

The Control Plane Was the Point: Revisiting Autofz in the LLM Era

https://yfu.tw/blog/en/autofz-revisited/
1•twleo•55m ago•0 comments

Alleged member of international cyber hacking group Scattered Spider arrested

https://news.sky.com/story/alleged-member-of-international-cyber-hacking-group-scattered-spider-a...
1•austinallegro•55m ago•0 comments

Generative Dynamic Gaussian Reconstruction from Monocular Video

https://research.nvidia.com/labs/amri/projects/world-from-motion/
1•ilreb•56m ago•0 comments

What Did Hubble See on Your Birthday?

https://science.nasa.gov/mission/hubble/multimedia/what-did-hubble-see-on-your-birthday/
1•sohkamyung•1h ago•0 comments

Shader Benchmark for LLMs

https://nbardy.github.io/shader_benchmark/
1•nbardy•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/