frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Readeck 0.22 Released

https://readeck.org/en/blog/202602-readeck-22/
1•Curiositry•8m ago•0 comments

Evolving Languages Faster with Type Tailoring (2024)

https://lambdaland.org/posts/2024-07-15_type_tailoring/
1•PaulHoule•9m ago•0 comments

Grammarly is using our identities without permission

https://www.theverge.com/ai-artificial-intelligence/890921/grammarly-ai-expert-reviews
3•LordAtlas•9m ago•1 comments

I compiled a list of why you should be excited about std:SIMD and C++26

https://old.reddit.com/r/cpp/comments/1rjld1s/i_compiled_a_list_of_6_reasons_why_you_should_be/
1•ibobev•10m ago•0 comments

Mars MIPS Simulator in the Browser

https://mars.nfiles.top/
1•nenepbl•12m ago•0 comments

Ask HN: Is SWE mostly just calling APIs?

1•humbleharbinger•14m ago•3 comments

Practical Guide to Bare Metal C++

https://arobenko.github.io/bare_metal_cpp/#_abstract_classes
1•ibobev•14m ago•0 comments

NPM audit passes malicious packages with no CVE

https://westbayberry.com/
1•ComCat•14m ago•1 comments

Claude.ai "We are experiencing delivery issues with some email providers"

1•freely0085•15m ago•0 comments

Sarvamai/Sarvam-105B

https://huggingface.co/sarvamai/sarvam-105b
1•ryanhn•17m ago•0 comments

T3 Code [video]

https://www.youtube.com/watch?v=hDn8-fK3XaU
1•jv22222•17m ago•0 comments

Show HN: I built an AI agent that wrote a full novel in 10 minutes

https://github.com/fugue-labs/gollem
1•helsinki•26m ago•2 comments

Man Randomly Stabbed in Back in SF's Chinatown While Waiting to Cross

https://www.ktvu.com/news/man-stabbed-back-sfs-chinatown-suspect-arrested
1•robertwt7•30m ago•0 comments

The Little Book of Algorithms

https://github.com/little-book-of/algorithms
1•ibobev•32m ago•0 comments

Every Tool Progress Update

https://everytool.solutions/
1•Mihir1426•35m ago•0 comments

Show HN: Open source drone that can hold cargo

https://github.com/L42ARO/Mercury-Transforming-Drone
2•devmandan•37m ago•1 comments

Support for Aquantia AQC113 and AQC113C Ethernet Controllers on FreeBSD

https://github.com/Aquantia/aqtion-freebsd/issues/32
1•justinclift•41m ago•1 comments

AI Dev News Digest: March 6th, 2026

https://www.everydev.ai/p/news-ai-dev-news-digest-march-6th-2026
1•devhouse•45m ago•0 comments

LLMs will supplant most human-driven vulnerability research

https://twitter.com/tqbf/status/2030102845089804473
1•lambdaba•47m ago•0 comments

The Filthy Human Hands (FHH) License v1.0

https://git.disroot.org/bsdclown/filthy_human_hands
1•MBCook•53m ago•1 comments

Anthropic Unveils Amazon Inspired Marketplace

https://www.bloomberg.com/news/articles/2026-03-06/anthropic-unveils-amazon-inspired-marketplace-...
1•dthread3•1h ago•0 comments

Show HN: Glad-IA-Tor – Tired of Vibecoded Products? Come and Roast Them for Free

https://glad-ia-tor.com/
1•GiornoJojo•1h ago•1 comments

Ontology (Information Science)

https://en.wikipedia.org/wiki/Ontology_(information_science)
1•downboots•1h ago•0 comments

Show HN: Wireframable – Generate wireframes from any website URL

https://wireframable.com/
1•rosiepuppy•1h ago•0 comments

Google Always-On Memory Agent

https://github.com/GoogleCloudPlatform/generative-ai/tree/main/gemini/agents/always-on-memory-agent
1•sowbug•1h ago•1 comments

Tractography

https://en.wikipedia.org/wiki/Tractography
2•downboots•1h ago•1 comments

Show HN: SurvivalIndex – which developer tools do AI agents choose?

https://survivalindex.org/
1•scalefirst•1h ago•1 comments

FounderScope – Integrated business model validation platform

https://workspace.founderscope.app/
1•zekiunal•1h ago•1 comments

The 2026 Global Intelligence Crisis - postings for devs are rising, up 11% YoY

https://www.citadelsecurities.com/news-and-insights/2026-global-intelligence-crisis/
1•alhazrod•1h ago•1 comments

Show HN: DiggaByte Labs – pick your stack, download production-ready SaaS code

https://diggabyte.com/
1•GraysoftDev•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•10mo ago

Comments

Lio•10mo 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•10mo 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/