frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Lead Mines of Galena, Kansas

https://dustbowlhighway.com/kansas/lead-mines/
1•saltdoo•31s ago•0 comments

Show HN: I built a tool to audit error density and modern PC optimization

https://flash-auditory-1-0.trcstudiosflashaudit.workers.dev/
1•Thdrough47•2m ago•0 comments

I Democratized the AI That Learns by Failing to Break the Tech Giants' Monopoly

https://kim-ai-gpu.github.io/2026/07/04/introducing-agenlus-browser-rl/
1•umjunsik132•5m ago•0 comments

Six Months with Claude Code

https://sajith.me/blog/2026/six_months_with_claude_code.html
1•sajithdilshan•11m ago•0 comments

Two channels for the top–antitop excess

https://cerncourier.com/two-channels-for-the-top-antitop-excess/
1•visha1v•12m ago•1 comments

Illuminating Iron Clusters' Magnetism

https://physics.aps.org/articles/v19/s92
1•visha1v•13m ago•1 comments

Explanation of everything you can see in htop/top on Linux

https://peteris.rocks/blog/htop/
1•theanonymousone•15m ago•0 comments

TabFM: Zero-shot tabular foundation model from Google Research

https://huggingface.co/google/tabfm-1.0.0-pytorch
1•theanonymousone•15m ago•0 comments

The Common Lisp Cookbook – LispWorks Review

https://lispcookbook.github.io/cl-cookbook/lispworks.html
1•AlexeyBrin•18m ago•0 comments

The Most Iconic American Artwork Is the Hardest to See

https://www.nytimes.com/interactive/2026/07/02/arts/design/statue-of-liberty-history-france-us.html
1•jsenn•18m ago•0 comments

Show HN: Sandbox-proxy – A forward proxy that injects credentials to sandboxes

https://github.com/yagop/sandbox
1•yagop•19m ago•0 comments

Why AI Will Never Achieve Consciousness

https://roburie.substack.com/p/why-ai-doesnt-think-cannot-reason
1•megamike•19m ago•0 comments

Chip Industry Urges US to Avoid Moves That Distort Memory Market

https://www.bloomberg.com/news/articles/2026-07-02/chip-industry-urges-us-to-avoid-moves-that-dis...
1•giuliomagnifico•20m ago•0 comments

Show HN: Tokdash – a local dashboard for AI token and quota tracking

https://github.com/JingbiaoMei/Tokdash
1•howardme1•22m ago•0 comments

Organization as a Graph [video]

https://www.wearedevelopers.com/en/videos/2051/your-organization-as-a-graph
1•dunyakirkali•24m ago•0 comments

Critical Evidence from Early Evolution of House Dust Mites [pdf]

https://academic.oup.com/sysbio/article-abstract/62/3/411/1652447?redirectedFrom=fulltext
1•thunderbong•25m ago•0 comments

It's not me, it's the compiler

https://parsa.wtf/cast/
3•jonathandeamer•25m ago•0 comments

Olive – Lisp VSCode Extension (Alternative to Alive)

https://github.com/kchanqvq/olive
1•AlexeyBrin•29m ago•0 comments

Meta's Inevitable Cloud

https://spyglass.org/meta-cloud/
1•RickJWagner•30m ago•0 comments

Notes for June 28 – July 4

https://taoofmac.com/space/notes/2026/07/04/1230
1•rcarmo•35m ago•0 comments

It's Hard to Eval Is a Product Smell

https://hamel.dev/blog/posts/eval-smell/
2•_pdp_•35m ago•1 comments

"How do you plan to dismantle the servers of your rival AIs?" [video]

https://www.youtube.com/watch?v=aicfLYrRuUw
1•deadprogram•36m ago•0 comments

Show HN: A free, no-ad, no-account, no-server iOS calorie budgeting/diet app

https://apps.apple.com/gb/app/budgie-diet/id6670401868
3•PurestGuava•36m ago•0 comments

The Reports of Jim Carrey's Death Are a Failure Mode

https://tane.dev/2026/07/the-reports-of-jim-carreys-death-are-a-failure-mode/
1•taubek•36m ago•0 comments

Did the founders of the United States intend to create a Christian nation?

https://theconversation.com/the-us-founders-other-revolutionary-choice-separating-religion-and-go...
1•chmaynard•38m ago•0 comments

Startup Targets Datacenters with 3D-Printed Nuclear Reactor Module

https://www.theregister.com/systems/2026/07/03/startup-targets-datacenters-with-3d-printed-nuclea...
1•_pdp_•40m ago•0 comments

Polymarket-SDK-cpp – C++23 SDK for Polymarket prediction markets

https://github.com/Wammero/polymarket-sdk-cpp
1•Wammerq•43m ago•0 comments

Nexus System Manager

https://github.com/rilindbytyqi300/NexusSystemManager
1•rilindbytyqi1•44m ago•0 comments

Developer Verification – LineageOS

https://lineageos.org/Developer-Verification/
1•kevincox•46m ago•0 comments

Hot weather and low sunshine linked to mental health-related healthcare use

https://www.uea.ac.uk/about/news/article/everyday-weather-can-increase-demand-for-mental-health-s...
1•giuliomagnifico•54m 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/