frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Musk settles long-running legal battle with X advertisers

https://www.ft.com/content/e1725176-ebe2-4d29-abe9-a27e11e8c1a8
1•thm•1m ago•0 comments

Self-hosting Kimi K3: 20% more hardware cost, 20% better task resolution

https://aistack.imec-int.com/blog/gpu-self-hosting
1•flifenstein•1m ago•0 comments

BMW to cut several thousand jobs in latest blow to German auto sector

https://www.cnbc.com/2026/07/29/bmw-to-cut-several-thousand-jobs-in-latest-blow-to-german-auto-se...
1•johnbarron•2m ago•0 comments

Show HN: FlipCloc for Mac out now. A gorgeous flip clock and screensaver

https://flipcloc.com
1•moonalien•3m ago•0 comments

Fruit Merge Puzzle Game

https://apps.apple.com/us/app/fruit-merge-melon-puzzle/id6745539199
1•harrymatics•3m ago•0 comments

Show HN: NightRun, bare metal LLM inference, no OS, boots from USB

https://github.com/hardrave/NIGHTRUN
1•hardrave•4m ago•0 comments

Show HN: P2Present – slides and talk video in sync, preserved on any storage

https://p2present.com/
1•shayanbahal•4m ago•0 comments

Show HN: Unducked – a rubber duck that roasts your code

https://unducked.com/
1•tmoreton•5m ago•0 comments

Strait of Hormuz closure may trigger a bioinvasion super-spreader event

https://link.springer.com/article/10.1007/s10530-026-03893-5?
1•littlexsparkee•5m ago•0 comments

Boeing still working with NASA to schedule next Starliner flight – SpaceNews

https://spacenews.com/boeing-still-working-with-nasa-to-schedule-next-starliner-flight/
2•rbanffy•7m ago•0 comments

My Personal Software Journey: Self-Hosting Agent-Built Apps on a Mac Mini

https://metedata.substack.com/p/016-my-personal-software-journey
1•young_mete•7m ago•0 comments

Graph Engineering Needs a Compiler

https://fluxtion-playground.dev/blog/2026-07-29-graph-engineering-needs-a-compiler
2•v12technology•8m ago•0 comments

China's commercial space boom poses strategic challenge for the US

https://www.ft.com/content/fedcff18-6ccb-4cbe-b4c2-b852d37943ae
1•JumpCrisscross•8m ago•0 comments

Show HN: A browser hide-and-seek game where you paint your own camouflage

https://somodus.com/g/cd3fa1526bc44a58b525848d92858558
1•eric2025•9m ago•0 comments

Show HN: Orbital – the project agent that maintains your wo

https://github.com/zqiren/Orbital
1•10keane•9m ago•0 comments

Self-Writing Autobiography

https://massimo.context-use.com/p/about/projects/2026_context-use/why
1•maxalbarello•9m ago•1 comments

Building an Affiliation Network for Blog Posts and Tags in Hugo

https://ohaodha.ie/blog/building-an-affiliation-network-for-blog-posts--tags-in-hugo/
2•ohaodha•9m ago•0 comments

Windows 11 is quietly installing OneDrive Photos

https://www.windowslatest.com/2026/07/29/windows-11-is-quietly-installing-onedrive-photos-another...
3•hn_acker•10m ago•1 comments

Apple's iMessage Scanning Flagged a Video of My Friend's Dog as Nudity

https://www.404media.co/apples-imessage-scanning-flagged-a-video-of-my-friends-dog-as-nudity/
2•Brajeshwar•11m ago•0 comments

ASRock Rack 4U16X-GNR2 Nvidia HGX B300 8-GPU Server Review – ServeTheHome

https://www.servethehome.com/asrock-rack-4u16x-gnr2-nvidia-hgx-b300-8-gpu-server-intel-zutacore-r...
1•rbanffy•11m ago•0 comments

Show HN: PDFUnlock - Unlock password-protected PDFs right from Finder

https://shubhamjain.co/pdf-unlock/
1•shubhamjain•11m ago•0 comments

Unmoderated by Design: How Hugging Face Enables NCII

https://aiforensics.org/work/hugging-face-ncii
1•Timshel•11m ago•0 comments

Teacher arrested for clapping in opposition at an AI data center meeting

https://www.tomshardware.com/tech-industry/data-centers/teacher-arrested-for-clapping-in-support-...
1•rbanffy•12m ago•0 comments

Shai-Hulud and the risks of external dependencies

https://scotto.me/blog/2026-07-29-shai-hulud-code-review/
1•silcoon•13m ago•0 comments

The Unreasonable Effectiveness of Constructive Data Modeling [video]

https://www.youtube.com/watch?v=0BXuYlNrUmE
2•gandreani•13m ago•1 comments

Developers are attached to tools because tools encode trust

https://stackoverflow.blog/2026/07/29/developers-are-attached-to-tools-because-tools-encode-trust/
2•HieronymusBosch•14m ago•0 comments

I compared 5 popular token saving methods in Codex and found that none delivered

https://www.stet.sh/blog/gpt-56-token-saving-modes
1•bisonbear•14m ago•0 comments

We built an MCP server for your SRE agent

https://clickhouse.com/blog/benchmarking-the-clickstack-mcp-server-with-hdx-evals
1•mikeshi42•15m ago•0 comments

Show HN: A beautiful reader for Hacker News

https://hn.shubhangsharma.com/
1•sss111•15m ago•0 comments

Show HN: Goldenboy – in-browser dithering and pixel art for photos and video

https://goldenboy.app/
2•goldenboychrome•17m 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/