Live data from Hacker News

Ask HN: Programs that saved you 100 hours?

news.ycombinator.com

241–250 of 531 posts

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

#241

Earlier quoted context omitted.

Eclipse isn't a particularly good user of Cocoa, is it?

It does something completely its own (and horrible/slow) on Windows (possibly one of the 6534 equally awful Java UI packages), so I can't imagine it does anything better with iOS.

I think you mean macOS.

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

#242

Earlier quoted context omitted.

Couldn't agree more.. People who say Electron (on which VSCode is running) is bloated and is slow probably haven't worked on full fledged IDEs using Java.. they consume memory in Gigabytes, are slower, at least appear to be slower, despite using native UI and takes a lot longer to open.

How often do you open your IDE though? I switched form VSCode to PHPStorm half a year ago, and while it feels a bit slower, the improvements are so unbelievable worth it for me. It does have a taste for memory, but then again, it easily saves me a lot of time each month, so just throwing RAM at it was a no-brainer for me.

I use PyCharm and tried several times to such to vscode. I forced myself to only use vscode for 10 days.

I was relieved when I switched back to PyCharm.

Vscode is nice but still quite far away from some good IDEs.

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

#244
post #130

Earlier quoted context omitted.

Is that equivalent to `pbcopy` and `pbpaste` on OSX?

Those commands aren't exactly the same. These copy what you have selected. You can use xclip just like pbcopy/pbpaste though. Xclip has a few more features and you can get it on mac via brew and nix iirc.

The usefulness of xclip is the thing that's currently preventing me from accepting fedora's urging to switch my default session to wayland.

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

#246

- keeping all your configuration files (“dotfiles”: shell, git, etc) in one, version controlled place. Makes setting up new machines so much less stressful. Here are mine in case you’re interested, for macOS and Ubuntu: https://github.com/Bogidon/dotfiles - setting up a personal vpn with a reserved IP if you connect to services that require your IP to be whitelisted and you move often - for git cli: dashes take you b…

> - keeping all your configuration files (“dotfiles”: shell, git, etc) in one, version controlled place.

The thing that finally made this worthwhile for me is GNU stow.

https://alexpearce.me/2016/02/managing-dotfiles-with-stow/

Stow is available from homebrew if you prefer to get your Mac stuff that way.

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

#247
post #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.

Pretty much dead and replaced by what? (I am curoous as I thought it was a well established standard)

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

#248
post #229

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/

Does anyone know of a good Mac version of this?

Spotlight is built in, but Alfred’s also a good one.

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

#249

The Z command line utility has saved me a ton of time. It remembers the directories you’ve visited and lets you jump to them with just a few characters. Almost like Chrome’s autocomplete for recently-visited directories (if you’re used to being able to type “g” to go to gmail or “n” for “news.ycombinator.com”...). For instance I can run “z B” and it’ll jump to my ~/Business directory (and “z ss” would do the same). h…

For this particular case, I use a ncurses based file manager: ranger

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

#250

1) Any terminal that you can summon/dismiss with a global hotkey. Examples are Guake for Linux and iTerm2 for OSX. I consider this a must-have for all developers. 2) 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/resiz…

> 3) Fuzzy file search in your editor I’ve been using “fzf” [1] for file and directory search and I can’t recommend it enough. It integrates nicely with vim [2] as well. 1. https://github.com/junegunn/fzf 2. https://youtu.be/qgG5Jhi_Els

What blows my mind is that fzf is insanely lightweight, I don't even know if it relies on external dependencies.
Post reply on HN