frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Scientists may have solved why this ancient, advanced civilization vanished

https://www.msn.com/en-us/news/world/scientists-may-have-solved-why-this-ancient-advanced-civiliz...
1•jnord•52s ago•0 comments

Nexperia crisis: Dutch chipmaker issues urgent plea to its China unit

https://www.cnbc.com/2025/11/28/nexperia-crisis-dutch-chipmaker-issues-urgent-plea-to-its-china-u...
1•jnord•1m ago•0 comments

ChatGPT refuses to "hand-type" spreadsheet

https://bsky.app/profile/stvmln.bsky.social/post/3m6qzladfpc2v
1•swidi•2m ago•0 comments

The Preformamce Inequality Gap in 2026

https://infrequently.org/2025/11/performance-inequality-gap-2026/
1•gherkinnn•4m ago•0 comments

Show HN: TimeTracker – Self-hosted time tracking with invoicing (120 features)

https://timetracker.drytrix.com/
1•DRYTRIX•5m ago•0 comments

Alternative Internet Protocols

https://n0thanky0u.neocities.org/alternativeprotocols/
1•Mr_Minderbinder•9m ago•0 comments

GitArsenal: Automates Repository Setup

https://www.gitarsenal.dev/cli
1•rs545837•12m ago•1 comments

There are no moral laws out there

https://www.optimallyirrational.com/p/there-are-no-moral-laws-out-there
1•hn_rationality•15m ago•1 comments

1980s BASIC's Paint

https://youtu.be/f9YkL9_GfwQ
1•user____name•16m ago•1 comments

Show HN: Hh.ht – a lightweight JSON-extended scripting language

https://github.com/chunpulee/hh.ht
1•chunpulee•20m ago•0 comments

Good Engineers Write Bad Code – A Hacker News Discussion

https://medium.com/@adrianbooth/how-good-engineers-write-bad-code-a-hacker-news-discussion-e27fa9...
2•adrianbooth17•20m ago•0 comments

Solidtime: Modern open-source time-tracking app

https://github.com/solidtime-io/solidtime
1•tricked•23m ago•0 comments

I won my first game jam

https://irtaza.xyz/blog/how-i-won-my-first-game-jam/
2•Irtaza1•25m ago•0 comments

Preserving Snow Crystals

https://www.its.caltech.edu/~atomic/snowcrystals/preserve/preserve.htm
1•jameslk•26m ago•0 comments

AWS inks strategic collaboration agreement with Posit, maker of RStudio/Positron

https://posit.co/blog/posit-signs-strategic-collaboration-agreement-with-aws
3•ionychal•27m ago•0 comments

Two truths of software development still valid in the age of AI

https://espen.wtf/articles/2025/11/two-truths-of-software-development-still-valid-in-the-age-of-ai/
2•ingve•27m ago•0 comments

We Brexiteers must acknowledge the costs of leaving Europe

https://www.thetimes.com/business/economics/article/we-brexiteers-must-acknowledge-the-costs-of-l...
2•mpweiher•28m ago•2 comments

Mononoke Hime FAQ's

http://www.nausicaa.net/miyazaki/mh/faq.html
1•Eridanus2•35m ago•0 comments

WebGPU Snippets – Vercel Inspired

https://webgpusnippets.vercel.app/
1•hsnice16•35m ago•0 comments

I underestimated SEO, & now got surprised, my website is going up

https://www.lync.me
1•Mohamm6d•39m ago•1 comments

Show HN: Truesize.net – Now with 140k regions and iOS and Android apps

https://truesize.net/
1•FreeGuessr•41m ago•0 comments

A free, no-signup address label maker that works in the browser

https://blondfrogs.github.io/label-maker/
1•thunderbong•42m ago•0 comments

The undeserved status of the pigeon-hole principle (EWD 1094)

https://www.cs.utexas.edu/~EWD/transcriptions/EWD10xx/EWD1094.html
2•tosh•44m ago•0 comments

What Happens When You Move the Mouse Pointer

https://youtu.be/sZC0Biv_Iyk
1•artisandip7•45m ago•0 comments

PEP 638 – Syntactic Macros

https://peps.python.org/pep-0638/
3•skeledrew•51m ago•1 comments

Having Fun with K&R C

https://sbaziotis.com/compilers/having-fun-with-k-and-r-c.html
2•saurabh•54m ago•0 comments

With Love to KDE: Take a Moment

https://korcenji.neocities.org/Writings/KDE-Take-A-Moment
1•birdculture•1h ago•0 comments

Ballerina.io

https://ballerina.io/learn/by-example/
2•gigatexal•1h ago•0 comments

Unconferences: A Better Way to Run Meetups

https://psychotechnology.substack.com/p/unconferences-a-better-way-to-run
2•eatitraw•1h ago•0 comments

Bank Street Writer on the Apple II

https://stonetools.ghost.io/bankstreetwriter-apple2/
3•TMWNN•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•7mo ago

Comments

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