TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What's your go to DevTool these days?

4 pointsby ankit847 months ago
We all use ChatGPT, Copilot, Cluade. These are generic. What's your story of using a dev-tool that's integrated at its best and you love to use more and more?

3 comments

simplecto7 months ago
The AI stuff is cool, but the unlock for consistently improved developer experience and productivity has been the consistent use of linters, formatters, type checking, strict commit messages, and automated releases, and change logs.<p>Having all that in place really changes my attitude from &quot;playground on my machine&quot; to &quot;put my name on it and ship it.&quot; -- it makes me proud.<p>I&#x27;m heavy on python, so there are a few &quot;aftermarket&quot; bolt-ons:<p>- ruff for linting and formatting - flit for package management (will experiment with uv in the coming days) - commitizen for commit formatting - pyright for type checking (but not for Django projects) - pycharm is where all the magic happens - pre-commit for commit hooks and final checks before it get shared to the repo<p>I don&#x27;t mention all the CI&#x2F;CD stuff here because that is a separate thing.<p>Building up this stack took a while to onboard into. Taking it on all at once would be overwhelming and leave me bewildered.<p>It is nice to have claude or chatGPT around to have around for going into the weeds. However, &quot;trust but verify&quot; -- these LLMs will hallucinate, so you should check the original documentation.<p>The overall impact has been that I now use template repos where I can spin up a production-ready codebase with all the fixins. Not only that -- it is also ready for others to consume in a predicable fashion.<p>I still need to write docs, use cases, and things like that. But having this in place give me the opportunity to run faster, ship faster, and revisit old work with a confidence that was not there before.
solardev7 months ago
Jetbrains IDEs (Webstorm, PHPStorm, RubyMine, etc., or IntelliJ is the superset of all of them). Been using them for a decade and they are simply amazing. VSCode with a dozen plugins can kinda sorta replicate some of the functionality, but the Jetbrains stuff is just so much better integrated.<p>The UI is pretty cluttered and archaic though, and some simple things (like running the current file, or seeing the current npm scripts) are harder than they should be, and takes more steps than in VScode. But once you get the hang of it, there is soooo much power and time-saving features that VScode doesn&#x27;t natively have.<p>The Jetbrains plug-in ecosystem also isn&#x27;t quite as rich as VScode&#x27;s, but it&#x27;s there.<p>Their pricing is also very fair (it&#x27;s a subscription, but the subscription gets cheaper if you keep it more than 1 year, up to like a 40% discount I think, and you can keep the last version you paid for even after you unsub just without further updates).<p>I love love love their stuff and it&#x27;s the only software I&#x27;m truly happy to pay for.
skydhash7 months ago
After years of VIM, I&#x27;ve decided to learn Emacs and have been doing all my coding and other stuff in it. There&#x27;s not as much people and newer stuff like VSCode, but the whole ecosystem is pretty great and it&#x27;s very extensible and customizable. Major and minor modes made is a good model to group functionalities together. Stuff like Compilation Mode, Tramps, Eglot, and how easy it is to add new features to the editor make it a joy to use.