Live data from Hacker News

Ask HN: Programs that saved you 100 hours? (2022 edition)

news.ycombinator.com

531–540 of 574 posts

Re: Ask HN: Programs that saved you 100 hours? (2022 edition)

#533

Gotta say IntelliJ, which isn't just for Java. It's a great coding platform and I used it for Scala, Go, Python, Bash, Java, PHP, Perl, you name it. I know many people like to hate on IDEs, but IntelliJ (and/or its language-specific variants like PyCharm or GoLand) has great support for all the debuggers in the above languages. It has awesome search/replace. Being able to "drill down" in to code, including 3rd party…

To add to the point above, it's worth understanding that IntelliJ is not an editor. It's a refactoring engine with a very nice structured editor, and the key to using it effectively is to use the higher-level features that it provides. If you're not using the refactoring tooling then you won't understand why many people love it so much. [It's worth looking under the hood at the plugin APIs. The editor doesn't work on…

Agreed. The refactoring tools are something seemingly as simple as rename as variable or method or parameter name to the more exotic "extract constant" or "extract method" or the super helpful redefine method signature (add/remove params). One reason I prefer strongly typed languages like Go/Scala is that refactoring is less guess-work than in something like Javascript or Ruby.

Re: Ask HN: Programs that saved you 100 hours? (2022 edition)

#535

Ultrafast, super lite file search on Windows, Voidtools "Everything": https://www.voidtools.com/support/everything/ I haven't touched the Windows Search utility since I found it.

Everything combined with Wox

Loved Wox. Try Fluentsearch.

Re: Ask HN: Programs that saved you 100 hours? (2022 edition)

#536

Autohotkey There is simply no better automation program on any OS. I even run a fully fledged tiling wm written in autohotkey. ( For reference, here's when I tricked r/unixporn into thinking it was bspwm https://www.reddit.com/r/unixporn/comments/nhzz3b/confession... ) Fluent search Spotlight on steroids, for windows. Apart from being a search/launcher, it has a bunch of atrociously good features. It lets you use a c…

I just discovered Fluentsearch and love it.

You use Everthing as it's back-end search and not Fluent Search?

Re: Ask HN: Programs that saved you 100 hours? (2022 edition)

#538

Earlier quoted context omitted.

I feel similarly. My journey has been: VS Code, to Codium, to Atom, to Sublime, to now Vim where I feel the most productive.

I get moving to more minimal lightweight software but why go from VSC to Atom?

Wanted to avoid Microsoft's telemetry and felt like I was being spied on.

Re: Ask HN: Programs that saved you 100 hours? (2022 edition)

#539
post #280

Earlier quoted context omitted.

I would say that’s a fairly trivial example. How about renaming a method? Or, moving a class to a different file?

Or reordering parameters.

All this fiddling ends when you get a team and a vcs.

Re: Ask HN: Programs that saved you 100 hours? (2022 edition)

#540
post #259
post #52

If you use Ansible at any larger amount, then you're doing a disservice to yourself if you're not using Mitogen[1][2]. The amount of waiting it has spared me is innumerable at this point. --- [1]: https://scribe.rip/@einarum/speed-up-ansible-with-mitogen-b3... [2]: https://mitogen.networkgenomics.com/ansible_detailed.html

Just tried this, shaved a playbook from from 8 minutes 30 seconds to 3 minutes 10 seconds! Thanks :)

You are very welcome! Please spread the word about this magical bit of software to anyone else using Ansible. Together we can make iterating on Ansible configurations great again!
Post reply on HN