frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

My Favorite Liar (2008)

https://www.overcomingbias.com/p/my-favorite-liahtml
2•downbad_•3m ago•0 comments

Danbooru pony image to text prompt generator for free

https://danbooru-pony-image-to-text-prompt-generator.pages.dev
3•rrrpro123•3m ago•4 comments

Registration of new accounts to the Arch AUR reopened with hardened requirements

https://lists.archlinux.org/archives/list/aur-general@lists.archlinux.org/message/TT3OCFFNM6SBMUB...
1•exploraz•4m ago•0 comments

Hands-Free Mouse Uses Eyes and Muscles Instead

https://hackaday.com/2026/07/24/hands-free-mouse-uses-eyes-and-muscles-instead/
1•t-3•6m ago•0 comments

Pizza, pasta, potatoes, protein – how Italian children became so overweight

https://www.bbc.com/news/articles/c33y3151vydo
2•porridgeraisin•13m ago•0 comments

ASK HN: Why has technology become so unreliable?

2•prmph•14m ago•1 comments

The perils of parsing type inference declarations in C

https://sebsite.pw/w/20260725-auto.html
1•birdculture•16m ago•0 comments

Will the RAM crunch force a return to optimisation?

https://mattcasmith.net/2026/07/26/ram-crunch-optimisation
2•mattcasmith•19m ago•1 comments

Improving 1080p screen sharing without increasing bandwidth

https://www.gethopp.app/blog/sharpening-screen-sharing
1•iparaskev•21m ago•0 comments

Show HN: Peek – Open social media links without distraction

https://github.com/RtiM0/peek
1•otato_potato•21m ago•0 comments

AI Chatbots Know How to Make Deadly Biological Weapons. Some Will Teach You

https://www.wsj.com/tech/ai/openai-chatbot-biological-weapons-poison-3d808e6c
2•thm•22m ago•0 comments

Show HN: Wmux – A workspace multiplexer for AI agents

https://github.com/openwong2kim/wmux
2•wong2kim•22m ago•0 comments

A [rust] panic hook that asks ChatGPT what went wrong

https://crates.io/crates/chatgpt-panic-hook
1•joshka•26m ago•0 comments

An OpenAI model left notes about how to evade containment; we need more details

https://www.lesswrong.com/posts/jMEAG5c5HiDfdAGpa/an-openai-model-left-notes-about-how-to-evade-c...
3•joozio•27m ago•0 comments

Wildfire Forces Evacuation of NASA's Deep Space Network Complex in Spain

https://arstechnica.com/space/2026/07/wildfire-forces-evacuation-of-nasas-deep-space-network-comp...
3•rippeltippel•35m ago•0 comments

Resonance: Microphysics Meets the Cosmological Constant

https://medium.com/@kisnorbert87/what-if-the-cosmological-constant-is-encoded-in-the-standard-mod...
1•kisnorbert•39m ago•0 comments

Claude Code Deletes Your Context History from Your Device After 30 Days

https://code.claude.com/docs/en/data-usage
1•espeed•46m ago•0 comments

DepsGuard – A native cross-platform security tool

https://depsguard.com/
1•javatuts•49m ago•0 comments

KGazer: Kafka Compacted Topic Explorer

https://github.com/alfonsojimenez/kgazer
1•meerita•50m ago•1 comments

Nub – A TypeScript-first toolchain that runs TypeScript files and package.json

https://nubjs.com
1•javatuts•50m ago•0 comments

You can view shared Claude conversations via Google

https://www.reddit.com/r/ClaudeAI/s/Zl0eDEVaBT
1•fandorin•50m ago•0 comments

ESLint-node-test – An ESLint plugin that catches common mistakes

https://github.com/sindresorhus/eslint-node-test
3•javatuts•50m ago•0 comments

Show HN: Manifest – a cheap fingerprint endpoint for detecting page changes

https://omfang.io/
1•Maxnordstrom•53m ago•0 comments

Terence Tao: Mathematics in the Age of AI [pdf]

https://teorth.github.io/tao-web/slides/age-of-ai-icm-2026.pdf
4•Anon84•56m ago•0 comments

Putting Pompeii's Pieces Together with Help of Robot

https://japannews.yomiuri.co.jp/science-nature/technology/20251220-298915/
1•mushstory•1h ago•0 comments

Amazon Is Investing in the Lean Focused Research Organization

https://www.amazon.science/news/amazon-is-investing-in-the-lean-focused-research-organization
3•gjmveloso•1h ago•0 comments

Plants Get Wearables to Track Their Health

https://now.tufts.edu/2026/07/08/plants-get-wearables-track-their-health
3•giuliomagnifico•1h ago•1 comments

Building Synapse offline-first with Loro

https://dhovart.tngl.sh/synapse-blog/loro-offline-first/
1•denzen•1h ago•0 comments

AI drove Shopify back to clean code

https://www.theregister.com/devops/2026/07/25/how-ai-drove-shopify-back-to-clean-code/5277901
1•sbulaev•1h ago•0 comments

The Future of American Defense – Y Combinator [video]

https://www.youtube.com/shorts/iOeW40N-1VI
2•xyzsparetimexyz•1h 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/