frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple Intelligence uses up to 30GB+ on macOS 27

https://www.macrumors.com/2026/09/23/apple-intelligence-30gb-some-macs-macos-27/
1•tosh•1m ago•0 comments

Show HN: A game where a bell goes techno

https://www.technobell.run/?r=hn
1•dejv_cz1•2m ago•1 comments

Manycore Processor

https://en.wikipedia.org/wiki/Manycore_processor
2•peter_d_sherman•5m ago•1 comments

2015 Office of Personnel Management data breach

https://en.wikipedia.org/wiki/2015_Office_of_Personnel_Management_data_breach
1•chistev•5m ago•0 comments

Ask HN: How do you handle sensitive data in distributed systems?

1•Securelytixdev•9m ago•0 comments

The Booker Prize 2026

https://thebookerprizes.com/the-booker-library/prize-years/2026
1•downbad_•9m ago•0 comments

GPT-6 Astra has made a major breakthrough in the Goldbach Conjecture

https://twitter.com/captain_sude/status/2100277626120163664
3•nsoonhui•10m ago•0 comments

Better prompt caching for GPT-6

https://openai.com/index/better-prompt-caching-for-gpt-6/
1•theanonymousone•11m ago•0 comments

A thread of early explorations with Claude Opus 5.5

https://twitter.com/claudeai/status/2102471866635919731
1•tzury•13m ago•0 comments

Next.js 16.3.6 fixes critical ImageResponse RCE (CVE-2026-94545)

https://nextjs.org/blog/nextjs-security-update-september-22-2026
2•joshcsimmons•13m ago•1 comments

Show HN: Magic Jev Ball

https://jevball.rorz.io/
1•sarreph•13m ago•0 comments

Show HN: Sniffslop – browser extension to classify text using Jev

https://github.com/kmcheung12/sniffslop/
1•a_c•14m ago•0 comments

Googlebook is here and ready for pre-order

https://blog.google/products-and-platforms/devices/googlebook/pre-order-googlebook/
3•mikece•14m ago•0 comments

Bonsai 2 27B

https://huggingface.co/prism-ml/Ternary-Bonsai-2-27B-gguf
2•tosh•18m ago•0 comments

LogiCola 3: Fallacies. Learn how to spot hidden flaws in everyday reasoning

https://logicola.org/blog/informal-fallacies
2•kotk•19m ago•0 comments

Bonsai 2 27B: 5.9 GB of weights for a 27B model

https://twitter.com/barronnotbaron/status/2102540009299677571
2•tosh•20m ago•0 comments

The (AI) Nature of the Firm

https://camerongordon0.substack.com/p/the-ai-nature-of-the-firm
3•iciac•22m ago•0 comments

Self-hosting DeepSeek V4 for a software engineering org

https://www.parity.io/blog/self-hosted-ai-software-engineering
4•ilovefood•25m ago•0 comments

Breaking Postgres Superuser Guardrails: Attacking Security-Hardening Extensions

https://mehmetince.net/part-2-6-breaking-the-superuser-guardrails-attacking-security-hardening-ex...
1•jesdo•26m ago•0 comments

Plain-text files are at risk

https://paste.sr.ht/~awal/b76caf6f213a96a634454fa7292c035a10035b49
2•birdculture•27m ago•0 comments

Show HN: GoNix – A Unix with a Go Userspace

https://gonix.dev/
2•prologic•27m ago•1 comments

Nigel Richards (Scrabble Champion) [video]

https://www.youtube.com/watch?v=zfH2Jwuf3sM
1•pyrex•28m ago•0 comments

Show HN: Life Forge – Open-source flight simulator for autonomous AI agents

https://github.com/zariffromlatif/life-forge
2•mdzariflatif•29m ago•0 comments

Technology does not automatically mean progress

https://www.kulman.sk/en/technology-does-not-automatically-mean-progress/
3•ig0r0•29m ago•0 comments

Is PyPI Down?

https://status.python.org
3•jpopesculian•30m ago•0 comments

Back to Coupling and Cohesion

https://bastrich.tech/coupling-and-cohesion/
1•kciter•31m ago•0 comments

Blocklist Whitelist Anything on YouTube or YT Kids

2•devanshvarshney•32m ago•1 comments

A lesbian bar required KN-95 masks. When this changed, all hell broke loose

https://www.bostonglobe.com/2026/09/22/magazine/greenfield-last-ditch-bar-backlash/
2•Michelangelo11•33m ago•0 comments

How Zambia Approved an HIV Drug Quickly

https://asteriskmag.com/issues/15/how-zambia-approved-an-hiv-drug-in-12-days
1•yorwba•35m ago•0 comments

Silicon solar cells could cut satellite power costs by up to 90%

https://www.surrey.ac.uk/news/silicon-solar-cells-could-cut-satellite-power-costs-90-cent
3•giuliomagnifico•42m 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•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/