Live data from Hacker News

Ask HN: Programs that saved you 100 hours?

news.ycombinator.com

51–60 of 531 posts

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

#53

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

Fascinating to see OpenID here. Where do you use it? I thought it was pretty much dead, so implemented IndieAuth recently which does what I want, replacing OpenID’s functionality.

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

#56
1) Probably not 100 hours but, terminator is very, very good: https://blog.al4.co.nz/2011/05/getting-the-most-out-of-termi...

The 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
- IntelliJ IDEA [https://www.jetbrains.com/idea/] (surprised no one mentioned it yet)

- 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?

#58
Forest https://www.forestapp.cc/ I've tried a bunch of distraction blockers, but this is the one I've found most pleasant to use.

Mosh 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.

Post reply on HN