←back to thread

745 points rcchen | 1 comments | | HN request time: 0s | source
Show context
submeta ◴[] No.44537605[source]
I went from Emacs to VS Code, then to Cursor, next to Claude Code, which is so good that I feel like I am having half a dozen junior devs at my fingertips, 24/7.

Since Claude Code is cli based, I reviewed my cli toolset: Migrated from iTerm2 to Ghostty and Tmux, from Cursor to NeoVim (my God is it good!).

Just had a 14h workday with this tooling. It’s so good that I complete the work of weeks and months within days! Absolutely beast.

At this point I am thinking IDEs do not reflect the changing reality of software development. They are designed for navigating project folders, writing / changing files. But I don’t review files that much anymore. I rather write prompts, watch Claude Code create a plan, implement it, even write meaningful commit messages.

Yes I can navigate the project with neovim, yes I can make commits in git and in lazygit, but my task is best spent in designing, planning, prompting, reviewing and testing.

replies(9): >>44537772 #>>44537863 #>>44537970 #>>44538082 #>>44538227 #>>44538278 #>>44538704 #>>44538731 #>>44539595 #
didibus ◴[] No.44537863[source]
> I don’t review files that much anymore

You don't review the code? Just test it works?

replies(1): >>44538097 #
1. yoz-y ◴[] No.44538097[source]
At work we’re encouraged to use AI, so I do. For me the one thing that works well is using it to write one off scripts that do stuff and would be a chore to write.

Usually in 2-3 prompts I can get a python or shell script that reads some file list somewhere, reads some json/csv elsewhere. Combines it in various ways and spits out some output to be ingested by some other pipeline.

I just test this code if it works it’s good.

Never in my life would I put this in a critical system though. When I review these files they are full of tiny errors that would blow up in spectacular manner if the input was slightly off somewhere.

It’s good for what it is. But I’m honestly afraid of production code being vibe coded by these tools.