Ask HN: Programs that saved you 100 hours?
51–60 of 531 posts
Re: Ask HN: Programs that saved you 100 hours?
#52Devon Think. Having a local search engine with annotations is incredibly useful.
Re: Ask HN: Programs that saved you 100 hours?
#53Hasura [ 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
Re: Ask HN: Programs that saved you 100 hours?
#54Devon Think. Having a local search engine with annotations is incredibly useful.
Re: Ask HN: Programs that saved you 100 hours?
#55Re: Ask HN: Programs that saved you 100 hours?
#56The saving layouts feature is an absolute gem.
2) dmenu (https://tools.suckless.org/dmenu/) is a lifesaver. I use it even on Ubuntu to launch custom scripts. The autocomplete is good because unlike when I use alt-F2 I can actually tell if a command is type correctly or not. Also it's a little known fact but you can type full commands into it, complete with pipes, and it will execute it. For ages I had a bind against notify send so I could examine data by doing `Meta-P foo | show` which would dump it to a notification. Just really useful for getting data without needing to wait for a terminal to start, just to show you one thing or value you need for 2 seconds.
3) Also I'll go ahead and plug my filesystem tagger - koios (https://gitlab.com/finnoleary/koios). It has a feature where it will autodetect (using libmagic) the type of a file.
So you can do something like: "tag all the files that have the mime type 'png' files in the directory with the tag 'png'":
koios auto image/png +png .
and then "give me all the files tagged with png that do not have the .png extension": koios show +png | grep -v '.png$'
It binds tags to files so there's no background processes or databases needed (aside from the actual 'tag name' database, which was done to save space), and you can move them, copy them, whatever, without worrying and the tags stay bound to the file.Re: Ask HN: Programs that saved you 100 hours?
#57- Spotlight - for quick calculations
- Contexts [https://contexts.co/] and chunkwm for window management [https://github.com/koekeishiya/chunkwm]
- Maccy [https://maccy.app/] for a decent and beautiful clipboard manager
Re: Ask HN: Programs that saved you 100 hours?
#58Mosh https://mosh.org/ I'm a fairly recent user so it hasn't been 100 hours yet, but it will be.
Not a program per se, but a few years ago I set up a cron job to back up my shell history every night to a file named based on the date, and then aliased 'h' to grep them all and pipe to tail. This allows me to see the last dozen times I used any string in a shell command. It comes in handy many times per day.