frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Non-Terrifying Spirituality for Children

https://mrmarket.lol/non-terrifying-spirituality-for-children/
1•mrmarket•18s ago•0 comments

My Mathematical Regression

https://blog.dahl.dev/posts/my-mathematical-regression/
1•aleda145•2m ago•0 comments

Whatever Recall – Local AI-knowledge embedded directly within your code

https://whatever-recall.com
1•ChristianMcCain•3m ago•0 comments

The FreeBSD-Update(8) Screensaver

https://vermaden.wordpress.com/2026/06/19/freebsd-update-screensaver/
1•vermaden•4m ago•0 comments

Show HN: Speechmark – On-device meeting notes for Mac (no bot, no cloud)

https://www.speechmark.co/
1•theone•5m ago•0 comments

A startup claims it broke through a bottleneck that's holding back LLMs

https://www.technologyreview.com/2026/06/19/1139313/a-startup-claims-it-broke-through-a-bottlenec...
1•joozio•5m ago•0 comments

Samsung Demonstrates 3D Stacked FETs with Triple Nanosheet Channels at 42nm

https://semiconductor.samsung.com/news-events/tech-blog/from-gaa-to-3d-stacked-fet-expanding-the-...
1•its_ajseven•5m ago•0 comments

Simple, declarative RUM and E2E tests for web apps

https://faultsense.com
1•mitchm•5m ago•0 comments

The LLM industry must keep the RAM prices at absurd levels

https://infosec.exchange/@masek/116775772309957886
2•ndr42•6m ago•0 comments

Docker-compatible REST API on top of Apple's containerization libraries v1.0.0

https://github.com/socktainer/socktainer
1•geordee•8m ago•0 comments

Daveigh Chase, star of Lilo and Stitch and The Ring, dies aged 35

https://news.sky.com/story/daveigh-chase-star-of-lilo-and-stitch-and-the-ring-dies-aged-35-13555579
1•austinallegro•10m ago•0 comments

Self-adapting and mutating LLM based viruses/worms

1•rozumbrada•10m ago•0 comments

How to get product feedback from agents

https://www.sanity.io/blog/how-to-get-product-feedback-from-agents
1•ingve•14m ago•0 comments

Teams using AI for outbound email are finding it harder, Folderly research finds

https://apnews.com/press-release/ein-presswire-newsmatics/press-release-722e599d4420e5d71c812e09b...
1•adamhh•16m ago•0 comments

Node.js Security Fix Silently Broke node-fetch, which broke other tools

https://jdstaerk.substack.com/p/nodejs-security-fix-silently-broke
3•DDerTyp•19m ago•1 comments

HorseWood Reviews 2026: Why Men Are Talking About This Formula

https://finance.yahoo.com/sectors/healthcare/articles/horsewood-urgent-report-2026-horse-19110038...
2•ratypals•24m ago•0 comments

Beast – governed output gateway for AI coding agents

https://github.com/Byron2306/EdgeK-BEAST
1•Byron230686•25m ago•0 comments

Truthforge: A deterministic, closed-form valuation model for token ecosystems

https://github.com/TruthForge-Foundation/truthforge
1•TruthForge•25m ago•0 comments

Site lets you blend your music taste with artists, not sure its useful

https://www.eccomuse.com/
2•Nigh-Knight•25m ago•0 comments

Pentagon used Elon Musk's Grok AI to fire 2k missiles at Iran, official says

https://www.independent.co.uk/news/world/americas/us-politics/elon-musk-grok-ai-iran-missiles-pen...
4•pseudolus•30m ago•0 comments

Narcissism of Small Differences

https://en.wikipedia.org/wiki/Narcissism_of_small_differences
3•gurjeet•33m ago•0 comments

Squidbleed (CVE-2026-47729) Heartbleeds ancient cousin, hiding in Squid since 97

https://blog.calif.io/p/squidbleed-cve-2026-47729
2•chillax•34m ago•0 comments

Intel Announces Leadership Appointment at Intel Foundry

https://newsroom.intel.com/corporate/intel-announces-leadership-appointment-at-intel-foundry-to-a...
1•zvr•36m ago•0 comments

2k retired Google Pixel phones get a second life as a private cloud

https://www.theregister.com/on-prem/2026/06/18/2000-retired-google-pixel-phones-get-a-second-life...
2•pseudolus•36m ago•0 comments

What I've Learned From Selling 500k Books

https://fortelabs.com/blog/what-ive-learned-from-selling-500000-books/
2•jger15•39m ago•0 comments

The Hidden Harms of CPR (2023)

https://www.newyorker.com/news/the-weekend-essay/the-hidden-harms-of-cpr
1•pseudolus•40m ago•0 comments

Estonia to give digital identities to AI agents

https://www.euractiv.com/news/estonia-to-give-digital-identities-to-ai-agents/
2•giuliomagnifico•44m ago•0 comments

PWA for nervous system regulation (no subscriptions, offline)

https://quietudeapp.com/
1•saphidev•46m ago•0 comments

Show HN: I Built a SaaS Explainer Template Editor in Clickcast.tech

https://www.clickcast.tech/template-editor
1•clickcasttech•46m ago•0 comments

Linux 7.2 Gets Rid of the Last Optimized MD5 Implementation

https://www.phoronix.com/news/Linux-7.2-MD5-Generic-Only
2•t-3•47m 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/