frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Data Quality at Scale: Why Your Pipeline Needs More Than Green Checkmarks

https://medium.com/@kalluripradeep99/data-quality-at-scale-why-your-pipeline-needs-more-than-gree...
1•birdculture•1m ago•0 comments

OpenAI Blames Teen's Suicide on His 'Misuse' of ChatGPT

https://techoreon.com/openai-blames-teens-suicide-on-his-improper-use-of-chatgpt/
1•ashishgupta2209•4m ago•0 comments

Explaining how a touchscreen works with a sausage [video]

https://www.bbc.com/reel/video/p0lv0hqk/explaining-how-a-touchscreen-works-with-a-sausage
1•tzury•4m ago•0 comments

Grind: Java Builds, Without the Headache

https://github.com/AnharHussainMiah/grind
1•amatheus•4m ago•0 comments

Show HN: DB Pro – A Modern Desktop Client for Postgres, MySQL, SQLite and LibSQL

https://www.dbpro.app/
3•upmostly•6m ago•0 comments

Writing Builds Resilience in Everyday Challenges by Changing Your Brain

https://scienceclock.com/writing-builds-resilience-in-everyday-challenges-by-changing-your-brain/
1•PikelEmi•6m ago•0 comments

YouTube's Creepiest Dad? The Disturbing Rise of Jordan Matter [video]

https://www.youtube.com/watch?v=kMaDcoY-Y7s
1•xeonmc•7m ago•0 comments

How to quit Spotify

https://www.bloodinthemachine.com/p/a-complete-guide-to-quitting-spotify
1•AIBytes•7m ago•0 comments

When You Give a Manager a Chatbot

https://disgruntleddeveloper.substack.com/p/when-you-give-a-manager-a-chatbot
1•azhenley•8m ago•0 comments

SatQuant: Fix YOLOv8 quantization accuracy on satellite imagery (Edge TPU)

https://github.com/gulis-dev/SatQuant
1•gulis-dev•9m ago•0 comments

EPA Delays Requirements to Cut Methane

https://www.nytimes.com/2025/11/26/climate/epa-delays-methane-oil-gas.html
1•geox•9m ago•0 comments

Meta-Coding

https://dilemmaworks.substack.com/p/meta-coding
1•dworks•10m ago•0 comments

Dream Sports' AI-led pivot

https://www.stateofplay.club/dream11-pivot-padel-sports/
1•venkatananth•10m ago•0 comments

The Westminster Declaration

https://westminsterdeclaration.org
1•robtherobber•11m ago•0 comments

Goodbye, Price Tags. Hello, Dynamic Pricing

https://www.nytimes.com/2025/11/28/opinion/dynamic-pricing-algorithms.html
2•artur_makly•12m ago•0 comments

Major AI conference flooded with peer reviews written by AI

https://www.nature.com/articles/d41586-025-03506-6
1•giuliomagnifico•12m ago•0 comments

I want to give a lot of fucks

https://anandprashant.com/posts/i-want-to-give-a-lot-of-fucks
2•primaprashant•13m ago•0 comments

FX, commods and stock futures hit by longest CME outage in years

https://www.reuters.com/business/cme-trading-halted-due-cooling-issue-data-centers-2025-11-28/
2•hnthrowaway0315•14m ago•0 comments

ASF Project Spotlight: Apache Geode – The ASF Blog

https://news.apache.org/foundation/entry/asf-project-spotlight-apache-geode
1•rbanffy•18m ago•0 comments

GreatFront End Black Friday sale – 35% off everything

https://www.greatfrontend.com
1•yangshun•18m ago•0 comments

Show HN: Calcurious – Step-by-step math with dynamic visuals

https://beta.calcurious.ai
1•Tito-arch•18m ago•1 comments

Get paid using stripe without back end setup

https://sparkstripe.com/
1•Spark88•20m ago•0 comments

Securing File Imports: Fixing SSRF and XXE Vulnerabilities

https://hugo.writizzy.com/p/securing-file-imports-fixing-ssrf-and-xxe-vulnerabilities
1•hlassiege•27m ago•0 comments

UK digital ID plan gets a price tag at last – £1.8B

https://www.theregister.com/2025/11/28/digital_id_cost/
2•jjgreen•27m ago•0 comments

A trillion dollars (potentially) wasted on gen-AI

https://garymarcus.substack.com/p/a-trillion-dollars-is-a-terrible
4•flail•28m ago•0 comments

Michael Burry Foundations: My 1999 (and part of 2000)

https://michaeljburry.substack.com/p/foundations-my-1999-and-part-of-2000
1•kesor•30m ago•0 comments

Adaptive multirate DSP wrappers around GPT

https://github.com/eladwf/adaptive-multirate-transformers
1•eladwf•33m ago•1 comments

Retiring the Slack Bridge on Matrix.org

https://matrix.org/blog/2025/11/removing-slack-bridge/
2•OberstKrueger•35m ago•0 comments

Help Needed: Creating Nano Banana Pro Prompt Library

1•krishna-vakx•36m ago•0 comments

Show HN: I Curated Premium Black Friday Deals for SaaS and Apps

https://www.blackfridaydeals.directory
2•bfdd•40m 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/