frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Kavkash – An Atuin inspired history engine built with stock Linux utils

https://github.com/altunyurt/kavkash
1•altunyurt•55s ago•0 comments

The Anatomy of a Memory Estate

https://medium.com/@majid.fekri/the-anatomy-of-a-memory-estate-567866eae35c
1•supportm•2m ago•0 comments

Delivery drivers to be paid minimum $31.30 an hour in Australia

https://www.theguardian.com/business/2026/aug/11/delivery-drivers-to-be-paid-minimum-3130-an-hour...
1•teleforce•2m ago•0 comments

Show HN: Kubernetes operator that manages Keycloak configurations

1•soaringmonchi•3m ago•0 comments

Typed WebSocket Realtime in Point0, a TypeScript Framework on Bun and React

https://1gr14.dev/en/blog/point0-socket
1•1gr14•4m ago•0 comments

The Horse

https://worksinprogress.co/issue/the-ultimate-horse/
1•ortegaygasset•4m ago•0 comments

The Creators of VHS Dates Are Ready to Come Clean

https://www.nytimes.com/2026/08/10/arts/vhs-dates-instagram-tapes.html
1•rdmuser•5m ago•0 comments

The Datamaxxers Feeding Their Every Health Move to AI

https://www.wsj.com/tech/ai/the-datamaxxers-feeding-their-every-health-move-to-ai-df0af9b5
1•thm•5m ago•0 comments

Show HN: A website for exploring historical photographs of my city

https://yesterdays.maprva.org/
1•uneekname•5m ago•0 comments

GUI Programming

https://fomenko.fr/devlogs/gui-programming/
1•kooparse•6m ago•0 comments

Google launches Pixel 11 Pro Fold

https://blog.google/products-and-platforms/devices/pixel/pixel-11-pro-fold/
3•thm•6m ago•0 comments

Startups Need an Asymmetry

https://sunilpai.dev/posts/startups-need-an-asymmetry/
1•tosh•6m ago•0 comments

Show HN: Bough – a coding agent that writes a program per turn, not tool calls

https://github.com/andreylukin/bough
1•alukin•7m ago•0 comments

Twisted Physics: Astronomers Solve 30-Year-Old Stellar Mystery

https://public.nrao.edu/news/twisted-physics-astronomers-solve-30-year-old-stellar-mystery/
1•MarcoDewey•8m ago•0 comments

Psysonic: A full-featured desktop client for Navidrome

https://github.com/Psychotoxical/psysonic
1•ju3rg•8m ago•0 comments

Show HN: Tss – Simple Tailscale Host Selector command-line tool

https://github.com/berggren/tss
1•jbn4711•8m ago•1 comments

Qwen3.8 Weights Release in 10 minutes

https://modelscope.cn/models/Qwen/Qwen3.8-2.4T-A95B
3•apitman•8m ago•0 comments

We built a job board where the employers aren't human. Here's what broke

1•Taskpoolai•9m ago•1 comments

AI Startup Cognition in New Funding Talks at $40B Value

https://www.bloomberg.com/news/articles/2026-08-12/ai-startup-cognition-in-new-funding-talks-at-4...
2•closetheloopdev•10m ago•0 comments

Qwen3.8-27B Countdown

https://modelscope.cn/models/Qwen/Qwen3.8-27B
2•apitman•10m ago•0 comments

The Odyssey as AI Allegory

https://unherd.com/2026/08/the-odyssey-as-an-ai-allegory/
1•voxleone•11m ago•0 comments

Show HN: Kery – comments on your PR with a video of the feature working

https://github.com/Kery-HQ/Kery
1•Kvlshah•12m ago•1 comments

Is GitHub Online?

https://isgithub.online/
2•vednig•13m ago•1 comments

Canadians call for U.S. Ambassador Hoekstra to be expelled

https://www.cbc.ca/lite/story/9.7303372
6•colinprince•14m ago•0 comments

Show HN: Capto – alerts when a background job goes quiet, with breadcrumbs

https://capto.run
1•johndory80•14m ago•1 comments

We made Kamal deploy to Kubernetes without touching deploy.yml

https://miget.com/blog/deploy-rails-with-kamal
1•ktaraszk•14m ago•0 comments

Hax – a minimalist, terminal-native coding agent written in C

https://usehax.dev/
2•OleksandrC•14m ago•0 comments

License Plate Reader Searches Should Require a Warrant

https://andrewpwheeler.com/2026/08/12/license-plate-reader-searches-should-require-a-warrant/
23•apwheele•15m ago•2 comments

StashKit – ez QR code generator

https://stashkit.co
1•adStein•15m ago•0 comments

I built an AI website in 3 hours, got 562 sign-ups, and felt lost

https://medium.com/@kakuxwn/i-built-an-ai-website-in-3-hours-it-got-562-sign-ups-in-8-hours-and-l...
1•Irving-AI•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/