frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

No, Artificial Intelligence is not Conscious - Ted Chiang

https://www.theatlantic.com/philosophy/2026/06/no-artificial-intelligence-is-not-conscious/687378/
2•lordleft•2m ago•0 comments

Found a new use case for AI Comics: Product launches

https://www.indiehackers.com/post/found-a-new-use-case-for-ai-comics-product-launches-Mj8eFVrT1Xf...
1•kartik0001•3m ago•0 comments

Embryos shape their limbs: a key discovery of "genetic brakes"

https://nouvelles.umontreal.ca/en/article/2026/06/02/how-embryos-shape-their-limbs-a-key-discover...
2•gmays•4m ago•0 comments

A blueprint for democratic governance of frontier AI

https://openai.com/index/frontier-safety-blueprint/
1•tmp10423288442•4m ago•0 comments

Ramifications of Using an Agent-in-the-Loop to Approve Commands

https://www.promptarmor.com/resources/agentic-auto-review-approves-malware
1•bent123•4m ago•0 comments

Argus – a wearable control surface for AI agents

https://project-argus.ai
1•cihanduruer•4m ago•0 comments

\Begin{Proof} Declaration

https://www.begin-proof.com/
1•jamespropp•5m ago•1 comments

How to Code AI? Complete Guide for 2026

https://morsoftware.com/blog/how-to-code-ai
1•rolph•6m ago•0 comments

Simulated Reality

https://en.wikipedia.org/wiki/Simulated_reality
1•soupspaces•9m ago•0 comments

Persistia: Give Claude Code the persistent memory it was missing (open source)

https://github.com/bernardohcrocha/persistia-for-claude-code
1•bernardohcr•10m ago•0 comments

Bots have now passed human traffic online for the first time

https://radar.cloudflare.com/traffic#bot-vs-human
2•jmsflknr•11m ago•0 comments

Claude Dynamic Workflows is Crazy

https://www.youtube.com/watch?v=9pwPY_RlQHk
1•bmahir22•12m ago•0 comments

Lean Inference: Lean Manufacturing Principles Applied to AI

https://neurometric.substack.com/p/lean-inference-workflows-applying
3•robmay•13m ago•0 comments

Launch HN: Hyper (YC P26) – Company brain to power agentic development

8•shalinshah•14m ago•0 comments

We Are Living in Pinocchio's World

https://om.co/2026/05/25/we-are-living-in-pinocchios-world/
3•tosh•15m ago•0 comments

Phosphene

https://en.wikipedia.org/wiki/Phosphene
1•soupspaces•17m ago•0 comments

Server-Side WebRTC Noise Reduction with Pion, FFmpeg, and RNN Models

https://www.lodan.me/posts/server-side-webrtc-noise-reduction-pion-ffmpeg-rnn/
2•Sean-Der•17m ago•0 comments

Python 3.15.0 beta 2 is here

https://blog.python.org/2026/06/python-3150-beta-2/
3•lumpa•17m ago•0 comments

Five Levels of Adding AI to Your SaaS App

https://shivekkhurana.com/blog/five-levels/
1•shivekkhurana•22m ago•0 comments

The Florida woman catfishing America's political class

https://www.politico.com/news/2026/06/02/bumble-new-jersey-gamble-catfishing-crowder-00941061
2•_tk_•22m ago•0 comments

Umami: An open-source alternative to Google Analytics, Mixpanel and Amplitude

https://github.com/umami-software/umami
1•ksec•24m ago•0 comments

Free vLLM Course: Inference, Compression, Benchmarks

https://www.deeplearning.ai/courses/fast-and-efficient-llm-inference-with-vllm
3•twelvenmonkeys•27m ago•0 comments

The Bloat

https://milkandcigarettes.com/notes/devlog/the-bloat
1•tarxzvf•29m ago•0 comments

Facing life-threatening miscarriage in Arkansas, calls to governor didn't help

https://www.cnn.com/2026/05/28/health/arkansas-miscarriage-abortion-ban-propublica
7•orwin•30m ago•2 comments

The Relaunch of the Old West and Why I Chose Vanilla PHP

https://blog.alexseifert.com/2026/06/02/the-relaunch-of-the-old-west-and-why-i-chose-vanilla-php/
1•SeenNotHeard•31m ago•0 comments

Batching API Calls

https://www.mostlypython.com/batching-api-calls/
1•speckx•32m ago•0 comments

Show HN: Mashines.dev – Live-migrate microVMs between hosts without restarting

https://mashines.dev/
2•ktaraszk•34m ago•0 comments

Impermeabiliza uses AI to modernize waterproofing in Valencia

https://impermeabiliza.net/
1•ignival•37m ago•0 comments

Microsoft unveils new AI models

https://microsoft.ai/models/
5•helloplanets•38m ago•0 comments

Tesla Cybertruck resale value plunges amid sales slump

https://www.msn.com/en-us/money/companies/tesla-cybertruck-resale-value-plunges-amid-sales-slump/...
6•petethomas•38m ago•3 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/