Live data from Hacker News

Ask HN: Programs that saved you 100 hours?

news.ycombinator.com

491–500 of 531 posts

Re: Ask HN: Programs that saved you 100 hours?

#491

Earlier quoted context omitted.

Or they have worked on full-fledged IDE's like VS 6, which starts up quickly and is super responsive even on period hardware .

Oh how the tables are turned... Coming from VS2008-2010, it's weird to see someone said Visual Studio is fast

VS2019 is pretty damn good.

I use it daily for .net coding, while i use VS code for everything else.

Re: Ask HN: Programs that saved you 100 hours?

#492

Everything[0] by Voidtools as a Windows search replacement. It makes search practically instant. Now that Windows search often fails to turn up even my most used files (what happened to Windows search? Was it intentionally nerfed?), Everything has become a necessity for me. [0]: https://www.voidtools.com/

Windows search in win10 now uses bing.

I am not joking. I found out about it when it stopped working due to bing outrage and had to do registry fix to make it work again.

Re: Ask HN: Programs that saved you 100 hours?

#493

Hasura [ https://hasura.io ] Graphql API and Subscription for any Postgres DB Keycloak [ https://www.keycloak.org ] OpenID Auth Server nREPL + Cider [ https://github.com/clojure-emacs/cider ] Clojure's Network Repl and Emacs integration for live coding Clojure Company Mode [ https://company-mode.github.io ] Emacs autocomplete mode

For what / How do you use Keycloak?

We use it as the Auth layer for our web apps. Generally inside a docker container exposed at id.someappname.com

Re: Ask HN: Programs that saved you 100 hours?

#494

Goland - an IDE that specializes in Golang projects. The following features have saved me 100s of hours: - Being able to run tests/benchmarks directly in a test file via either clicking the play button or using a keyboard shortcut - It’s refactor support - automatically getting imports ordered and code formatted on save - multicursor support - and even more! One of the few IDEs I would actually pay for if my company…

vscode supports all of these and is free. The go language server has been buggy in the past but it's been improving quickly.

Yeah I keep hearing great things about vscode. Need to give it a shot one of these days.

Re: Ask HN: Programs that saved you 100 hours?

#495
post #450

Earlier quoted context omitted.

As an emacs user, I view multi-cursor as suitable for only a subset of macro usage. Macros are inspectable, editable, savable, able to be applied across files, easily used a variable N times. My typical pattern is something like: define it, try it, adjust it, then apply variable times (including “infinite until error”), maybe save 1% of them. That often takes less time to do than it just took me to describe. I use ma…

> Macros are inspectable, editable, savable, able to be applied across files, easily used a variable N times. In my experience with multicursor, I don't need to be able to "inspect" the operation as the act of typing it is inspection in and of itself. Sure they aren't saveable and thus aren't editable (but you admit this is a very rare use case - I can't recall needing that, ofc you often don't know when to want what…

The question might boil down to use case. If the use case is “in this file, change all spans with class foo to divs with class bar once ever”, probably both tools will work.

If the use case is “every day, download this file from a server and process it using pre-defined text editing commands”, multi-cursor doesn’t help you in any way that I can see.

I admit there’s a huge overlap in use, but when someone asks for macros and a product person says “how about multi-cursor instead?” I think it’s fair to raise the cases where someone asking for macros might actually want macros.

Re: Ask HN: Programs that saved you 100 hours?

#497
Windows:

Vivaldi browser - Amazing for productivity, custom search engines, configurable, can be controlled by keyboard. I can search in company ishare/OneDrive via URL bar etc.

Total commander - I use quite minimal interface, it actually looks more like fman. I use the folder jumplist a lot which saves a lot of time. I have some custom buttons (open in gVim for instance) and lynx like movement.

Linux:

Terminator - Terminator with splits, nice font rendering, easy GUI configuration

Arch - I can also put it to the cost me 100 hours list :] but AUR definitely saves time compared to Ubuntu dependency hell.

Re: Ask HN: Programs that saved you 100 hours?

#499

NimbleText https://nimbletext.com/ has saved me so much time. I use it to generate sql from spreadsheets and other one-off code generation from data.

OMG, i have seen it ages ago and forgot to save the url and i couldn't find it ever again. Thanks so much!!!

Re: Ask HN: Programs that saved you 100 hours?

#500
post #271

https://fishshell.com/ for sure Just having sensible defaults on a shell works wonders on my day-to-day productivity. Add a couple of aliases for productivity and off you go. abbr --add s "git status" abbr --add gap "git add --patch" abbr --add gco "git checkout" abbr --add gd "git diff" alias recent="git for-each-ref --sort=-committerdate refs/heads/ --format='%(color:yellow)%(refname:short)|%(color:bold green)%(com…

This one's tricky. I've driven fish daily for years, and it's definitely snappier than my old omzsh setup (I much prefer this style of history), but you can get bitten by certain tools not using shebangs properly.
Post reply on HN