frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The complex corporate web behind a $3.2 billion AI data center

https://arstechnica.com/ai/2026/09/the-ai-data-center-boom-is-causing-new-accountability-problems/
1•Brajeshwar•1m ago•0 comments

Magic Move for Code Snippets from first principles

https://rahulrav.com/blog/magic_move.html
1•rahulrav•2m ago•0 comments

Show HN: Web Scraping and Crawling – FetchRelay

https://fetchrelay.com
1•surajkrajan•3m ago•0 comments

An RNA Sequence Is Not a Molecular State: RNA Foundation Models in 2026

https://rewire.it/blog/an-rna-sequence-is-not-a-molecular-state/
1•timini•4m ago•0 comments

Specialized GPU Kernel Generation

https://www.databricks.com/blog/achieving-extreme-efficiency-through-specialized-gpu-kernel-gener...
1•iamsyr•4m ago•0 comments

Joshua 8:1 NIV – AI destroyed

https://www.biblegateway.com/passage/?search=Joshua%25208%253A1&version=NIV
1•npilk•6m ago•0 comments

Tim Cook's CEO-Like Pay Package Shows He Isn't Going Anywhere

https://www.bloomberg.com/news/newsletters/2026-09-06/apple-s-new-ceo-like-cook-pay-package-shows...
1•elffjs•10m ago•2 comments

Getting phpBB 1.4.4 working in Docker

https://www.thran.uk/writ/devlog/2026/09/phpbb-144-in-docker.html
1•HeckFeck•12m ago•0 comments

Adsense approval tricks 100% working and verified – 2026/2027 unsaturable

https://www.ebay.com/itm/366652967197
1•ilaysyou•12m ago•0 comments

The Republican (Small "R") Model and the Crisis of National Liberalism [pdf]

https://cosmosandtaxis.org/wp-content/uploads/2022/09/studebaker_ct_vol10_iss11_12.pdf
1•brandonlc•13m ago•0 comments

ChatGPT Was Built on Concealed 'Mass Piracy', Authors Tell Court

https://torrentfreak.com/openais-chatgpt-was-built-on-concealed-mass-piracy-authors-tell-court/
2•franczesko•15m ago•0 comments

Flip-Disk Art

https://theartistbreakfast.com/flip-discs
2•sargstuff•18m ago•0 comments

Pginsights – self-hosted Postgres monitoring that never leaves your network

https://pginsights.dev
1•jerrypenna•19m ago•0 comments

GPT-6 is now #2 on updated Artificial Analysis intelligence index

https://artificialanalysis.ai/#intelligence
1•pranshuchittora•19m ago•0 comments

MiniCPM5-2B achives the highest AA score of any model with up to 4B paramaters

https://huggingface.co/openbmb/MiniCPM5-2B
1•theanonymousone•20m ago•0 comments

LLMs Are the New Wikipedia: Every old criticism is new again

https://data4sci.com/blog/llms-are-the-new-wikipedia
1•Anon84•21m ago•0 comments

Ask HN: Best sentence corpora with native audio for language learning?

1•treetalker•21m ago•1 comments

Strata – A design system that records decisions, not components

https://github.com/Prometheus-000/strata
1•prometheus-000•21m ago•1 comments

Tesla's Cybercab has been deployed, and it's already under investigation

https://www.wired.com/story/tesla-cybercab-officially-launches-today-its-already-under-investigat...
2•vintagedave•21m ago•0 comments

Build a digitally sovereign second brain

https://www.raspberrypi.com/news/build-a-digitally-sovereign-second-brain/
1•Brajeshwar•21m ago•0 comments

Capping bug bounty submissions is the wrong response in the AI era

https://9to5mac.com/2026/09/05/capping-bug-bounty-submissions-is-the-wrong-response-in-the-ai-era...
1•geox•23m ago•0 comments

The leap second is dead. Long live the leap hour?

https://www.nature.com/articles/d41586-026-02669-0
2•ksec•24m ago•0 comments

BBC Exile fitted a 64kb map into 32kb of RAM [video]

https://www.youtube.com/watch?v=MdPz9dLmOtI
1•andygeers•25m ago•0 comments

Optimizing a Spin-Lock

https://david.alvarezrosa.com/posts/optimizing-a-spin-lock/
6•dalvrosa•26m ago•1 comments

Five dead after Amazon cargo plane overruns runway at Miami Airport

https://abcnews.com/US/cargo-plane-overruns-runway-miami-international-airport-faa/story?id=13624...
2•dj_rock•27m ago•0 comments

Rust debugging survey 2026 results

https://blog.rust-lang.org/2026/09/07/rust-debugging-survey-2026-results/
2•HieronymusBosch•27m ago•0 comments

Show HN: A local visual tool cli/mcp for agents to propose architecture changes

https://github.com/luiscleto/WorkBraid
1•lfcc•27m ago•0 comments

Should you avoid blue light before bed?

https://www.economist.com/science-and-technology/2026/09/04/should-you-avoid-blue-light-before-bed
3•bookofjoe•28m ago•1 comments

Generals – Conquer the live world map

https://generals.lol
2•mshermamatov•28m ago•1 comments

Bridge – give your coding agent the reasoning, not just the PRD

https://bridge.strine.com.br
1•nathanpramos•32m 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/