Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Toys 'R' Us is opening 120 new stores as grownup collectors fuel toy sales(nbcnews.com)
    1comments
  2. Stop Wasting Time. Learn Agentic RAG Patterns(medium.com/nikozero11)
    discuss
  3. MiMo-V3 is getting a new architecture. The core of it, HySparse2, is out today(twitter.com/_luofuli)
    discuss
  4. Beyond Images: Bringing Rust Brotli to Edge Network Stack(microsoftedge.github.io)
    discuss
  5. Navigation with only addition, subtraction, and tables(johndcook.com)
    discuss
  6. Show HN: I built a post-mortem debugger for native Windows x64/x86 crashes(forensicdbg.com)
    discuss
  7. GPT-6 Astra Breaks an Old Enigma Message(schneier.com)
    discuss
  8. Bloat Hurts Development Speed(orib.dev)
    discuss
  9. iFixit Steam Frame Teardown [video](youtube.com)
    discuss
  10. Redenormalisation: Building a search index, the other way(slatecave.net)
    discuss
  11. How to Write a Git Commit Message(cbea.ms)
    discuss
  12. Chicago Police Made Nearly 200k Secret Traffic Stops Last Year(boltsmag.org)
    discuss
  13. Yardbird files for Chapter 11 bankruptcy(nrn.com)
    discuss
  14. Sailboxes(sailresearch.com)
    discuss
  15. Show HN: Meeting Recording and Transcription for Agents(github.com/nfishel48)
    discuss
  16. Show HN: TypeBook.lol: Gamified reading by typing novels(typebook.lol)
    discuss
  17. Empirical results fine-tuning π0.5 on a real manufacturing task(dream-machines.eu)
    discuss
  18. CropIntel – crop disease detection from a leaf photo(cropintel.org)
    discuss
  19. 8 in 10 people aged 16-34 say smartphone use harms their everyday life(nltimes.nl)
    discuss
  20. Screen Lane(nickalexander.org)
    discuss
  21. Jensen Huang on AI Alarmists – NYT Ezra Klein Show(nytimes.com)
    1comments
  22. Data centers are black boxes, but California wants to change that(theverge.com)
    discuss
  23. A lightweight terminal UI for Colima on macOS(github.com/leodeim)
    discuss
  24. Show HN: SDF Studio – Create 2D SDF scenes, compile to GLSL(linkdd.github.io)
    discuss
  25. How to serve trillions of tokens for trillion-parameter coding agents(modal.com)
    discuss
  26. Google Beam expands to new countries(blog.google)
    discuss
  27. Brazil's Lula Campaign Dataset(huggingface.co)
    discuss
  28. Starbucks Korea CEO dismissed, what about startups?(2nd-look.vercel.app)
    discuss
  29. GitCaliber, swap github.com for gitcaliber.com to get a Git repo explained(gitcaliber.com)
    discuss
  30. Show HN: I made an app that transform your daily habits into a medieval(reddit.com)
    discuss

Ask HN: Do you offload your coding to AI, or keep your skills sharp?

4 pointsby 47m ago
3 comments
I used to be a software engineer, but these days I find myself being more of an agents manager: constantly switching between 3-4 tasks that my agents are working on, and making sure that the features get shipped, the bugs fixed, with correct and clean code. There's no doubt that I'm producing more value for the company, but I wonder if that's the best I can do for myself if the goal is staying relevant in the coming years.

I wonder: if the AI is writing all the code, what value am I bringing?

In an attempt to keep my critical thinking and coding skills sharp, I sometimes foolishly try to debug errors or implement a feature myself. But it feels like wasting time when an agent can do it in a fraction of time.

What is gonna be sought after in the coming years: someone that persevered with manual coding and debugging but is slow and uncomfortable around agents, or someone that has little coding and debugging skills left but knows how to orchestrate dozens of agents effectively?

I'm curious to hear what other software engineers on HN's approach is.

37m agoHN ↗

imo the valuable thing we bring as software engineers is and has always been solutions to problems with the contextually correct quality/speed/cost tradeoffs. with agentic coding, these factors all shift and we're all in the process of recalibrating. namely the speed dial can now be shifted way down.

to answer directly, i live in claude code now. and while it's a different shape of daily work, i'm still engineering, still evaluating those 3 factors and figuring out how to triage and solve user-problems much faster than i could 5 years ago.

31m agoHN ↗

I heavily use browser based LLM for bugs I care about. Code that is close to business logic like SQL is all 'by hand'.

Frontend stuff for me, which I'm bad at, I let agents do all of and I test the end result.

Other things are in-between, but time wise it's probably mostly me writing code. Lines of code is the LLM for sure.

24m agoHN ↗

I have the agent grill me/ask me questions about what has been implemented, often on a fairly technical/granular level of the feature is important enough.This is obviously way slower than just vibing the whole thing and ticking off a passing test suite (that the agent also wrote). But I find that doing this has allowed me to retain most of my problem solving and reasoning skills (which have definitely atrophied).

People are kidding themselves thinking they fully understand what is going on at a deep level for 3-4 (or more) parallel tasks constantly context switching. It's also an anxiety-inducing way to work and has led to a proliferation of agent management tools enabling max efficiency.

Focusing on systems thinking/observability/knowing when NOT to build something/using agents to fix/learn new things quickly seem to be where I see devs still bringing the most value compared to any other cowboy.