frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I run a company with 30 engineers. Built this app with AI and none of them

https://footbeen.com/blog/i-built-a-production-app-with-ai-no-developers
1•dmgmyza•2m ago•0 comments

Frankfurt expands commercial EV fleet with 10 new vocational trucks

https://electrek.co/2026/05/10/frankfurt-expands-commercial-ev-fleet-with-10-new-vocational-trucks/
1•breve•5m ago•0 comments

Large-Scale Photogrammetric Documentation of St. John's Co-Cathedral [pdf]

https://mkenely.com/publications/preprints/large-scale-photogrammetric-st-johns.pdf
1•andsoitis•11m ago•0 comments

Checkmate in Iran

https://www.theatlantic.com/international/2026/05/iran-war-trump-losing/687094/
1•xqcgrek2•14m ago•0 comments

Design Framework for Conversational AI, Curatorial Insights in Cultural Heritage [pdf]

https://mkenely.com/publications/preprints/from-broadcast-to-dialogue.pdf
1•andsoitis•14m ago•0 comments

Anthropic says 'evil' portrayals were responsible for Claudes blackmail attempts

https://techcrunch.com/2026/05/10/anthropic-says-evil-portrayals-of-ai-were-responsible-for-claud...
1•evo_9•17m ago•0 comments

Vibe-Coded Apps Expose Corporate and Personal Data on the Open Web

https://www.wired.com/story/thousands-of-vibe-coded-apps-expose-corporate-and-personal-data-on-th...
1•abdelhousni•20m ago•1 comments

Obsidian plugin was abused to deploy a remote access trojan

https://cyber.netsecops.io/articles/obsidian-plugin-abused-in-campaign-to-deploy-phantom-pulse-rat/
2•cmbailey•24m ago•0 comments

Chris Hohn's fund slashes $8B Microsoft stake in warning over AI disruption

https://www.ft.com/content/639703f3-064c-4065-96dc-11a9dfd6d83c
2•fallinditch•25m ago•1 comments

Amazon uses its logistics empire to take on UPS and FedEx in freight, shipping

https://www.geekwire.com/2026/amazon-turns-its-logistics-empire-into-a-new-business-taking-on-ups...
1•TMWNN•28m ago•0 comments

Mycelium: A protocol spec to replace the Web – feedback welcome

https://mycelium-network.netlify.app
2•Nexi_CSN•35m ago•0 comments

Plex's price hikes prove I was right to switch to Jellyfin

https://www.androidauthority.com/plex-price-hikes-get-jellyfin-3663600/
2•Brajeshwar•36m ago•0 comments

Show HN: UAP Archive – a Rust CLI to archive war.gov/UFO Release 01

https://github.com/Pym/UAP-Archive
1•Pym•40m ago•0 comments

After USDA request, Indiana plant biologist locked out of lab by school

https://www.science.org/content/article/after-usda-request-indiana-plant-biologist-locked-out-lab...
3•doener•40m ago•0 comments

Republic of Kiribati

https://en.wikipedia.org/wiki/Kiribati
2•doener•43m ago•0 comments

Apple Store education purchase verification process expands to US

https://appleinsider.com/articles/26/05/08/apple-store-education-purchase-verification-process-ex...
3•apparent•43m ago•0 comments

Why modern parents feel more sleep deprived than our ancestors did

https://www.bbc.com/future/article/20260508-parents-in-ancient-times-felt-less-sleep-deprived-wha...
22•1659447091•49m ago•6 comments

The Flickr Commons

https://flickr.com/commons
3•gone35•50m ago•0 comments

Claude Code auto daily /weekly recap notes

https://github.com/vibe-log/vibe-log-cli
2•noashavit•52m ago•1 comments

Frona v2026.5.0 – self-hosted personal AI assistant

https://github.com/fronalabs/frona/releases/tag/v2026.5.0
2•syncerx•52m ago•0 comments

Argus – RAG based vulnerability scanner

https://github.com/abhishekamralkar/argus
2•amralkara•53m ago•0 comments

New technique radically boosts biogas yields from sewage sludge

https://newatlas.com/energy/biogas-boost-sewage-sludge/
2•breve•56m ago•0 comments

Childhood Computing

https://lilysthings.org/blog/childhood-computing/
2•i_lost_my_bagel•59m ago•0 comments

Is it still all about the people?

https://lisacrispin.com/2026/04/29/is-it-still-all-about-the-people/
2•adrianhoward•59m ago•0 comments

Misplaced Panic over AI Progress

https://garymarcus.substack.com/p/misplaced-panic-over-ai-progress
4•agluszak•1h ago•0 comments

Maryland citizens hit with $2B power grid upgrade for out-of-state AI

https://www.tomshardware.com/tech-industry/artificial-intelligence/maryland-citizens-slapped-with...
36•lemonberry•1h ago•12 comments

Ask HN: Which LLM are you using to evaluate your ideas?

2•Marius77•1h ago•1 comments

The impossible song we'll remember in 500 years [video]

https://www.youtube.com/watch?v=XLqhOEzpWyo
3•layer8•1h ago•0 comments

Freediving, Embodiment and Humanity

https://tracesofhumanity.org/freediving-embodiment-and-humanity/
2•nathanh•1h ago•0 comments

The Psychology of Choice in an Age of Abundance

https://medium.com/@sachin255701/the-psychology-of-choice-in-an-age-of-abundance-8843d4e49ce7
3•_day_dr3am3r_•1h ago•1 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/