frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ESP32-CYD-Based-Image-Fetcher Mini Project

https://github.com/turtushig22-blip/ESP32-2432S028-based-Image-fetcher
1•turtushig22•1m ago•1 comments

What's missing to have reproducible builds on PyPI

https://snarky.ca/whats-missing-to-have-reproducible-builds-on-pypi/
1•Ravencentric•4m ago•0 comments

Why Windows Is Losing Gamers

https://www.youtube.com/watch?v=2grg4R4fmGs
1•cable2600•6m ago•0 comments

RISC-V: What Matters

https://thechipletter.substack.com/p/risc-v-what-really-matters-and-what
1•signa11•6m ago•0 comments

The Iran War Is a Whole New Level of Quagmire for the US

https://www.politico.com/news/magazine/2026/08/12/the-us-forgot-the-lessons-of-iraq-now-its-despe...
2•hebelehubele•7m ago•0 comments

TreasuryDirect moves authn 100% to ID.me

https://www.treasurydirect.gov/savings-bonds/help-center/faqs/idme-faq/
1•AdamN•8m ago•1 comments

Keyboard Phones Are Back

https://markow.dev/?action=view&url=keyboard-phones-are-back---unihertz-titan-2-elite
1•robowo•13m ago•0 comments

Japanese publishers fight imposter news sites with a cryptographic signature

https://www.niemanlab.org/2026/08/japanese-publishers-are-fighting-imposter-news-sites-with-a-cry...
1•rdmuser•17m ago•0 comments

Practical Introduction to Vim-Fugitive

https://jeancharles.quillet.org/posts/2022-03-02-Practical-introduction-to-fugitive.html
1•auraham•22m ago•0 comments

Vim Fugitive in Action

https://dzx.fr/blog/introduction-to-vim-fugitive/
1•auraham•22m ago•0 comments

Nested Functions with GCC and Clang

https://uecker.codeberg.page/2026-08-06.html
1•matt_d•30m ago•0 comments

We built agents that match people who need help with people offering it

https://ayudagente.help/
1•jsgomezs1•30m ago•1 comments

Principles and Techniques for Designing Precision Machines(1999)

https://www.osti.gov/servlets/purl/8431
1•nill0•41m ago•0 comments

Show HN: I have tried using Honestify instead of sending direct CV/Resume

1•ricky300300•44m ago•0 comments

China's $13K Tiny EV Hit 1k Orders in Japan in Just Two Weeks

https://www.autoblog.com/news/chinas-13k-tiny-ev-hit-1000-orders-in-japan-in-just-two-weeks
2•teleforce•44m ago•0 comments

The Safety Reckoning Inside OpenAI

https://www.wired.com/story/openai-safety-security-ai-agents-culture/
1•sbulaev•45m ago•0 comments

I built AIM Maps but you play AI

https://www.1vs1.xyz/
1•mattmerrick•52m ago•0 comments

Age Verification Is a Bad Way to Solve the Problem. What's the Alternative?

https://techblog.bozho.net/age-verification-is-a-bad-way-to-solve-the-problem-of-children-on-soci...
1•bozho•1h ago•0 comments

We hired a security engineer and got back 123 findings

https://dev.profullstack.com/~anthony/blog/004-post.html
2•buffer_overlord•1h ago•0 comments

Asda rolls out loss prevention tool across full estate following £100k savings

https://www.retailgazette.co.uk/blog/2026/08/asda-rolls-out-loss-prevention-tool-across-full-esta...
2•mmarian•1h ago•0 comments

CARA – a readiness assessment for Microsoft 365 Copilot adoption

https://jellebelletje.github.io/CARA/
1•jelonearth•1h ago•1 comments

Ownership in the Age of AI

https://sahilkolwankar.com/blog/ai-input-not-output/
2•sahilkolwankar•1h ago•0 comments

The quirky personal homepages of programming language creators

https://breck.lol/plMakers.html
40•cjlm•1h ago•11 comments

Decentralized Roller Coaster Tracker

https://aquacoast.net
2•ens0•1h ago•1 comments

Falstad Math and Physics Simulations

https://www.falstad.com/mathphysics.html
2•pykello•1h ago•0 comments

Show HN: DSH Plugin Directory – Every DeepSeek Harness Plugin

https://dshplugin.online/
2•niliu123•1h ago•1 comments

21,000 MCP servers exposed: the protocol reaches a security inflection point

https://forkast.news/the-model-context-protocol-reaches-a-security-inflection-point/
11•Wpnx330•1h ago•1 comments

I checked 30 frontier model cards. Here are the benchmarks labs report

https://koutian.is-a.dev/benchmark-radar/?view=leaderboard
7•ktwu01•1h ago•7 comments

Pizza π, A fun fractions game for kids 6-12

https://pizzapi.vinceroyer.ca/
3•vinistois•1h ago•3 comments

Taliban government supporters dance, take selfies in Kabul celebrations

https://www.channelnewsasia.com/world/taliban-government-supporters-dance-take-selfies-in-kabul-c...
4•Markoff•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/