frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Zig Zen Update

https://codeberg.org/ziglang/zig/commit/621844bde551ee1a9b8142d7d146d1fa804247a2
1•tosh•2m ago•0 comments

Important security update for UpdraftPlus and UpdraftCentral users

https://teamupdraft.com/blog/important-security-update-for-updraftplus-and-updraftcentral-users/
1•chmars•8m ago•0 comments

NASA readies mission to reverse the Swift observatory's skyfall

https://aerospaceamerica.aiaa.org/nasa-readies-mission-to-reverse-the-swift-observatorys-skyfall/
1•rbanffy•12m ago•0 comments

Let us replace community with AI

https://marketplace.visualstudio.com/items?itemName=christianalfoni.stackoverflow-ai
2•christianalfoni•16m ago•1 comments

Jury finds for Star Trek legend's family in wrongful death lawsuit

https://redshirtsalwaysdie.com/star-trek-nichelle-nichols-wrongful-death-lawsuit-13-million-award
2•pseudolus•18m ago•0 comments

AI is a Meteor. Don't be a Dinosaur

https://windowsontheory.org/2026/05/30/ai-is-a-meteor-dont-be-a-dinosaur/
1•vinhnx•19m ago•0 comments

Trump's suddenly softened new green card policy

https://www.washingtonpost.com/business/2026/06/05/how-big-business-tech-ai-softened-trump-new-gr...
2•andsoitis•27m ago•1 comments

Staffing and procurement strategies for fast flow

https://www.youtube.com/watch?v=ECA0E7hdmYM
1•RebootStr•29m ago•0 comments

Update on Meteorra AI – Just Shipped YouTube Video Analyser

https://www.indiehackers.com/post/i-built-an-ai-that-tells-creators-who-will-watch-their-content-...
1•MeteorraAI•29m ago•1 comments

Built GoPeek for Firefox

https://addons.mozilla.org/en-US/firefox/addon/gopeek/
1•guptalog•30m ago•0 comments

Granite Libraries and Project Granite Switch – IBM Research

https://research.ibm.com/blog/granite-libraries-project-switch
2•shallow-mind•43m ago•0 comments

A new YC tool promises "your code never leaves your machine." It does

https://twitter.com/intcyberdigest/status/2063026347522539754
1•porridgeraisin•46m ago•0 comments

YC's launches Paxel a tool that analyzes your coding sessions

https://paxel.ycombinator.com/
3•qwe----3•48m ago•1 comments

How should we teach digital research workflows to undergrad philosophy students?

1•lebronocta•54m ago•1 comments

Wabi Tek Sabi

https://www.wabiteksabi.com/index.html
1•klez•54m ago•0 comments

Educational Sticker

https://apparatverk.studio/notes/educational-sticker/
2•px00•55m ago•0 comments

"Bricks & minifigs can stuff it" – Patreon CEO [video]

https://www.youtube.com/watch?v=36jxNeV5L1Q
2•ShinyLeftPad•57m ago•0 comments

Azure Linux Desktop

https://www.boxofcables.dev/azure-linux-desktop-a-build-2026-mashup-of-wslc-winui-reactor-and-azu...
1•haydenbarnes•58m ago•0 comments

Let the agents democratize open source

https://world.hey.com/dhh/let-the-agents-democratize-open-source-9fd630a9
1•teekert•1h ago•0 comments

Magecart skimmer turns Stripe into a malware command server

https://sansec.io/research/stripe-api-skimmer-infrastructure
1•berlianta•1h ago•0 comments

Verilator Binary for Windows Without WSL or VM or OSS-CAD Suite or Perl Wrapper

https://github.com/withlimon/verilator-windows
1•limondas•1h ago•1 comments

Fixing "unfixable" 41TB BTRFS by Claude's one-shot

https://mloduchowski.com/-mounted-bitter-fs-better-with-claude/
3•qdotme•1h ago•0 comments

Download cash counter and help me

https://play.google.com/store/apps/details?id=com.logicforge.bdcash&hl=en_US
1•bdcashcounter•1h ago•1 comments

Turn HAR Files, Claude Code, Copilot CLI, and Codex CLI Logs into ATIF

https://github.com/waldekmastykarz/atifact
1•waldekm•1h ago•0 comments

Show HN: Sidekick – The zot coding agent, one click away on macOS

https://github.com/patriceckhart/zot-sidekick
10•patriceckhart•1h ago•0 comments

How much did OpenAI pay for Tomoro?

https://www.aienablementinsider.com/p/how-much-did-openai-pay-for-tomoro
1•dylancollins•1h ago•0 comments

I Found the US Nuclear Detection System in Space (GPS)

https://www.youtube.com/watch?v=DjLnIb41DuQ
2•valeg•1h ago•0 comments

You can now use your Gmail account in Proton Mail

https://proton.me/blog/proton-mail-connect-gmail
3•Topfi•1h ago•0 comments

Integer Overflow in Postgres

https://www.crunchydata.com/blog/the-integer-at-the-end-of-the-universe-integer-overflow-in-postgres
2•tosh•1h ago•0 comments

AI coding agents use your technology

https://developer.microsoft.com/blog/how-ai-coding-agents-actually-use-your-technology
1•waldekm•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/