frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Bun is being ported to Rust using Claude. Here's a code review using GPT

https://github.com/Swival/security-audits/blob/main/bun-rust/README.md
1•jedisct1•46s ago•0 comments

Alien

https://typesetinthefuture.com/2014/12/01/alien/
1•tosh•1m ago•0 comments

AllSkyKamera: A Citizen-Science Network for Global Night Sky Monitoring

https://allskykamera.space/index.php?lang=en
1•ptrsrtp•2m ago•0 comments

Show HN: Recursant, a mesh-based control plane for AI agents

https://github.com/ajensenwaud/recursant
1•hestefisk•4m ago•0 comments

OpenCL 3.1

https://www.khronos.org/blog/opencl-3.1-is-here
1•tosh•7m ago•0 comments

Valve snuck a Wilhelm scream Easter egg into the new Steam Controller [video]

https://www.youtube.com/watch?v=tw5Luf_7F8c
1•HelloUsername•9m ago•0 comments

Terence Tao: New mathematical workflows [video]

https://www.youtube.com/watch?v=Uc2zt198U_U
1•energy123•12m ago•0 comments

Codex Computer Use

https://developers.openai.com/codex/app/computer-use
1•tr33house•13m ago•1 comments

AluminiumOS, by Google: Android Reimagined for the Desktop

https://aluminium-os.com/
9•brysonreece•17m ago•13 comments

Urlsify.com Made This Free to Use URL Shortener with Indepth Analytics

https://old.reddit.com/r/sideprojects/comments/1tabelm/finished_making_this_url_shortener_complet...
1•godlymod•17m ago•0 comments

Hantavirus Map

https://hantavirusmap.net/
1•leonvonblut•21m ago•0 comments

Wrote this for humans, now I use it as a prompt

https://x-x.codes/posts/supplementary-guide-to-code-reviews
1•alex_x•22m ago•1 comments

Sick of Ads on Free QR Generator

https://miqr.mx/
1•rubiocanino•24m ago•1 comments

Genera OS

https://wiki.c2.com/?GeneraOs
1•tosh•25m ago•0 comments

Leak reveals Google's Aluminium OS with a 16-minute video

https://www.androidauthority.com/google-aluminium-os-leak-3665979/
2•thunderbong•26m ago•0 comments

The Role of HubSpot in Driving Successful CRM Adoption in Africa

https://amdan.pro/the-role-of-hubspot-in-driving-successful-crm-adoption-in-africa/
1•amdanmerit•27m ago•0 comments

Tep: A Sinatra-flavoured framework that compiles to a native binary via Spinel

https://github.com/oripekelman/tep
1•futurecat•31m ago•0 comments

Show HN: Design posters showcasing your country's electrical grid

https://github.com/open-energy-transition/grid2poster
1•lyoncy•36m ago•0 comments

European governments: 3.000 tracking sites, 1.000 phpMyAdmins, and 99% poorly

https://internetcleanup.foundation/2026/05/european-governments-3000-tracking-sites-1000-phpmyadm...
8•aequitas•39m ago•3 comments

A Brazilian Space Launch System for the Small Satellite Market

https://www.mdpi.com/2226-4310/6/11/123
1•rbanffy•41m ago•0 comments

Freelang, a small AOT language where the compiler is just JavaScript

https://github.com/DO-SAY-GO/freelang
2•keepamovin•41m ago•0 comments

The Download: a Nobel winner on AI, and the case for fixing everything

https://www.technologyreview.com/2026/05/12/1137103/the-download-nobel-winner-ai-maintenance-of-e...
1•joozio•41m ago•0 comments

The Emacsification of Software

https://sockpuppet.org/blog/2026/05/12/emacsification/
3•rdslw•44m ago•0 comments

Google announces Googlebooks with Gemini Intelligence focus

https://9to5google.com/2026/05/12/googlebooks-announcement/
1•pjmlp•46m ago•0 comments

Weird A.I

https://www.computer.org/csdl/magazine/an/2026/01/11442847/2eXeigMA4eI
3•tosh•49m ago•0 comments

A Critique of Cybernetics, by Hans Jonas (1953) [pdf]

https://s3.amazonaws.com/arena-attachments/892605/f0747c7943bec99f4891969d4a808ecd.pdf
2•lukebuehler•50m ago•1 comments

Axavive vs. Collagen: Which Is Best for Skin in 2026?

https://finance.yahoo.com/sectors/healthcare/articles/axavive-skin-exploding-2026-golden-22590060...
2•natujaiq•51m ago•0 comments

Hella Jongerius: I am a design pastor (holistic d-ethics)

https://www.youtube.com/watch?v=pME7hgUqpmE
2•vi_sextus_vi•51m ago•0 comments

Why AI Projects Fail

https://krellixlabs.com/en/blog/why-ai-projects-fail
3•radu_me•52m ago•0 comments

Digger engines drive JCB's attempt on hydrogen-powered land speed record

https://www.thetimes.com/uk/transport/article/jcb-hydromax-world-land-speed-record-lqvqgx0cp
2•sorentwo•52m 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/