Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Claude discovers a novel enzyme system with CRISPR-like repeats(anthropic.com)
    180comments
  2. Fixing the Portobello Police Station Clock(pointinthecloud.com)
    68comments
  3. How we made claude.ai 3x faster in two weeks(claude.dev)
    13comments
  4. A brief history of Windows scroll bar shortcuts(devblogs.microsoft.com/oldnewthing)
    16comments
  5. Cloud Agents Are Inevitable AI Prisons(normanponte.io)
    17comments
  6. Italian parliament votes for return to nuclear energy(apnews.com)
    160comments
  7. Gemini 3.8 text-to-speech(blog.google)
    94comments
  8. Radicle: Disclosure of Vulnerability in the Network Protocol(radicle.dev)
    29comments
  9. Jev in 25 Lines of Python(nobodywho.ai)
    173comments
  10. GPT-6 Sol and Luna(openai.com)
    814comments
  11. Claude Opus 5.5(anthropic.com)
    1060comments
  12. Claude Code reads AGENTS.md only when telemetry is on [fixed](szypowi.cz)
    234comments
  13. Z80 REPL (2018)(abagames.github.io)
    17comments
  14. Stripe's Knowledge AI Platform(stripe.dev)
    95comments
  15. I don't want the details(michaelheap.com)
    169comments
  16. UK military jamming other nations' satellites to defend itself, BBC told(bbc.com)
    115comments
  17. Show HN: I built a post-mortem debugger for native Windows x64/x86 crashes(forensicdbg.com)
    discuss
  18. Show HN: Conway's Game of Life in boot sector(github.com/0xax)
    1comments
  19. QuestDB (YC S20) Is Hiring a Sales Engineer(questdb.com)
    discuss
  20. Seattle City Council votes to ban surveillance pricing in sale of groceries(consumerreports.org)
    110comments
  21. 28% of job postings on company career sites have been open over 90 days(unlisted.careers)
    217comments
  22. Web-based IBM 1620 emulator and IPL-V from 1963(github.com/pkimpel)
    6comments
  23. Tokens Too Cheap to Meter(jyn.dev)
    150comments
  24. OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005(cryptocellar.org)
    431comments
  25. Transit rewards(waymo.com)
    293comments
  26. Strands Harness(strandsagents.com)
    84comments
  27. GPT-6 Astra has gained the ability to drive a car(drivingbench.com)
    199comments
  28. What California is learning from solar panels built over irrigation canals(kqed.org)
    664comments
  29. How did AMD Ryzen get 50% faster in two years?(lemire.me)
    190comments
  30. Microsoft killed FoxPro in 2007. Anyway, here's FoxPro revived(foxscript.org)
    243comments

What to Know About JavaScript in 2026

21 pointsby 4h agoblog.master.dev
5 comments
2h agoHN ↗

Alt text: Buzz Lighter sees functional programming paradigms everywhere.

PS - I don't follow JavaScript or use it much, but these are nice tools to have in any language.

2h agoHN ↗

  > "I think people generally choose Deno because of the stability and security-first architecture."

The appeal of Deno to me was always it's Go-like `std` library, so that building basic apps didn't result in a spaghetti web of dependencies like in Node.

1h agoHN ↗

So is Angular dead? Or why doesn't it deserve any mention?

1h agoHN ↗

The author mentions Angular in the comments as a personal blind spot

39s agoHN ↗

I get into this in A Nice Vanilla App Architecture Using Web Components and CSS Module Scripts. I just really like how we can keep CSS to CSS files which could live in a folder right next to a JavaScript component.

I forget when in the mid to late 2010s I started seeing CSS inside JS code for SPA frameworks, but I absolutely hated it, it felt so wrong. Why should I go through so many layers to get my CSS When the browser is efficient about loading CSS as-is. I'm okay with it being "aside" a component on the other hand.