Ask HN: Programs that saved you 100 hours?
121–130 of 531 posts
Re: Ask HN: Programs that saved you 100 hours?
#122# ci = clipboard in, co = clipboard out # xclip so this works in gui apps too alias ci="xclip -selection clipboard" alias co="xclip -selection clipboard -o" Also: tig, Text-mode interface for git https://github.com/jonas/tig
Re: Ask HN: Programs that saved you 100 hours?
#123- 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?
#124VSCode, and/or Sublime Text have probably saved me a hundred hours I would have spent waiting for Eclipse to start.
+1 for VSCode for its configuration portability plugin, settings sync. It’s never been so easy to sync editor changes across my machines, and I’ve only had 1 dependency issue using it in 4 years. No longer having to maintain my vim config and dependencies has been great.
The amount of work Microsoft is putting in this editor is amazing. Last month we got file history, that was the last thing I needed to ditch the Git GUI I had installed.
Re: Ask HN: Programs that saved you 100 hours?
#1252) Anything that lets you resize/place windows with hotkeys. For example, Divvy for OSX. Divvy is also nice because if you press the hotkey multiple times, it cycles the application through each of your monitors. No need to ever use your mouse to move/resize a window ever again.
3) Fuzzy file search in your editor. You know you want to open src/components/user.js so you type "cu" and it appears.
Any tools like this that become so ingrained in your muscle memory that you just kind of think things ("move this window and then summon my terminal") and the computer responds.
Re: Ask HN: Programs that saved you 100 hours?
#126Quill[1] editor has saved me (and many others) 100+ hours. Imagine building a rich text editor from scratch in your product. Also - git, Django REST framework, VueJS [1] https://quilljs.com/
tui.editor is another excellent choice, for me was the best one since the handles Markdown as a source for writing out the content. Take a lot a it!
Re: Ask HN: Programs that saved you 100 hours?
#127https://chocolatey.org/ - The Package Manager for Windows, similar to yum / apt It has tons of software packages.
The difference is that it (largely) stays confined within a directory without even needing elevated privileges and such for installs (which brings peace of mind for community installs). Repository is more centralized and automated too it seems.
Not perfect in a few edge cases, like other programs expecting a certain install location. Overall enormous time saver.
Re: Ask HN: Programs that saved you 100 hours?
#128Spectacle: Easily organize windows without using a mouse on macOS.
Re: Ask HN: Programs that saved you 100 hours?
#129Re: Ask HN: Programs that saved you 100 hours?
#130# ci = clipboard in, co = clipboard out # xclip so this works in gui apps too alias ci="xclip -selection clipboard" alias co="xclip -selection clipboard -o" Also: tig, Text-mode interface for git https://github.com/jonas/tig
Is that equivalent to `pbcopy` and `pbpaste` on OSX?