Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. F-Droid 2.0 (f-droid.org)
    208comments
  2. Show HN: Make cursed fonts like Times New Bastard (mitpit.com)
    44comments
  3. Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design (github.com/devdotfast)
    59comments
  4. Opus 5.5 is good at explainer videos (launchvideo.io)
    18comments
  5. Rails World 2026 Opening Keynote [video] (youtube.com)
    164comments
  6. Fearless SIMD v1.0 (linebender.org)
    18comments
  7. Sourcehut account takeover via build logs (XSS in ansi2html) (blog.arusekk.pl)
    3comments
  8. Why is the liver so weirdly regenerative? (dynomight.substack.com)
    104comments
  9. My weird new hobby: Wandering around Tokyo on Google Maps (ahmedhossamdev.com)
    61comments
  10. Using LLMs to trace alchemical knowledge and decode 17th century letters (resobscura.substack.com)
    7comments
  11. Security headers on 4,688 small-business websites: 49.7% met none of 7 criteria (rackcrunch.com)
    1comments
  12. Stable (YC W20) Is Hiring Product Engineers (usestable.com)
    —discuss
  13. The Board Game of the Alpha Nerds (2014) (grantland.com)
    9comments
  14. Book review: Is parallel programming hard, and, if so, what can you do about it? (ahelwer.ca)
    17comments
  15. 2DWillNeverDie (2dwillneverdie.com)
    —discuss
  16. Google’s Project Suncatcher to put ML infrastructure in space (blog.google)
    117comments
  17. The forgotten battle of East Lansing (eastlansinginfo.news)
    10comments
  18. Toyota is taking the Corolla electric (electrek.co)
    176comments
  19. Forging 1024-bit RSA signatures in nearly SNFS time [pdf] (iacr.org)
    5comments
  20. Two-tier encryption in the UK (macanorak.com)
    350comments
  21. Geothermal heat map of US hot springs (soakingsprings.com)
    23comments
  22. Show HN: AgentRun: DSL to turn agents into workflows (github.com/parcha-ai)
    4comments
  23. Tutoring company tells parents to save their money and 'use AI instead' (afr.com)
    66comments
  24. WaveDigger: Dig into wireless signals to discover their physical locations (github.com/christianrowlands)
    12comments
  25. Early rogue AI agent activity and attempts to hack found on urlquery.net (transluce.org)
    198comments
  26. Web-based IBM 1620 emulator and IPL-V from 1963 (github.com/pkimpel)
    12comments
  27. August 27 TCRF DDoS Attack Postmortem (xkeeper.net)
    3comments
  28. Show HN: Treepeat – Code similarity detection using Tree-sitter (github.com/dsummersl)
    2comments
  29. Creatine uptake enhances antitumor immunity (cell.com)
    159comments
  30. Security auditing in the age of (good enough) AI (trailofbits.com)
    1comments

Ask HN: If you could have your tech team know one new thing

9 pointsby 4y ago
11 comments
I'm a FE at a growing e-commerce startup. We have a small but experienced team of engineers. I was asked to present something at our tech meeting (can be anything). If you could make all your colleagues aware of ONE new or less known concept/tool/lesson, what would it be? Could range from one terminal command to a new team methodology...
4y agoHN ↗

Next.js. In 20 years of web dev, this is the single technology that's made me the happiest. It's the reason I chose to specialize in the FE and gave up the backend.

Coupled with a headless CMS (GraphQL is nice but not mandatory), this makes React a dream to work with, the pages super fast, the routing super simple, and the dev ex super fun.

One push to Vercel and you have a fully functional website, no AWS, Docker, Kubernetes, DNS, HTTPS, etc. to configure. It really is magic.

4y agoHN ↗

It depends on your needs, like whether it has to be self hosted, vendor supported, open source, file vs DB backend, enterprise support, easy to use, etc.

We evaluated about 10 or 15 of them and ended up choosing DatoCMS, a small startup with wonderful features and a terrific editing UI and rich plug in system. Their devs were also very responsive. A bunch of small QoL features like built in imgix support and graphql and such sealed the deal for us.

GraphCMS was a close second, with a very strong data model and solid API, but our editors (marketers, not coders) preferred Dato.

There are a lot of good choices out there. The only one we had a bad experience with was the industry leader, Contentful. They were both outrageously expensive (which wasn't the case when they first started) and also didn't really want us as a customer. They wouldn't even seriously meet with us without a NDA.

4y agoHN ↗

Yes, it’s a central part of our stack so I guess this one I can’t talk about, thanks anyway!

4y agoHN ↗

Hah, when a technology is so good you can't evangelize it because everyone already uses it...

4y agoHN ↗

I learned about git "worktrees" the other day, which lets you have different branches of the same repo checked out at the same time. So, for example, you could have different node_modules/ folders (one per branch) and not need to reinstall them every time you switched. https://git-scm.com/docs/git-worktree

Sadly, the IntelliJ support for them was very weak (they worked, sort of, but project configurations etc. weren't copied over... it was essentially treated as a different project altogether).

I'm still not 100% sure how it's better than just checking out the same repo in different folders to begin with. But then again most of Git is totally confusing, lol.