Earlier quoted context omitted.
Spotlight is built in, but Alfred’s also a good one.
I was looking for Everything for Mac and tbh I can't say Spotlight is even close. Sure Spotlight works great for apps and files in ~/Documents/, but I find it failing when I'm trying to find some obscure file in /Library/ or with-in Xcode SDK's. Is Alfred good in this sense?
Ask HN: Programs that saved you 100 hours?
311–320 of 531 posts
Re: Ask HN: Programs that saved you 100 hours?
#312- Windows. By not having to configure drivers and other compatibility problems which I have on Linux it definitely saved me 100 hours. - Listary (windows) Not sure if its 100 hours, but I love its search in any context of explorer. Default explorer search is terrible IMO. For example when you open file - you can use search there instead of navigating by hand.
Odd. Completely the opposite experience here. Windows requires searching and installation of drivers and configuration via GUI. Linux has drivers built in so just works. I haven't had to install a driver manually since ditching nvidia a year ago. And all my config lives in text files on Github. I'm guessing you haven't tried Linux in 10 years or so, but even then I don't understand how Windows does any better on the…
Re: Ask HN: Programs that saved you 100 hours?
#313Re: Ask HN: Programs that saved you 100 hours?
#314Re: Ask HN: Programs that saved you 100 hours?
#315Earlier quoted context omitted.
I wonder what OS and stack you are programming that an OS update can break your dev env?
I use Ubuntu as my daily driver and apt packages are updated when upgrading versions. For example moving from 14.04 to 16.04 with `do-release-upgrade` made the default PHP version move from php5 to php7.
Skipping from one LTS to another should probably include some breakage.
Re: Ask HN: Programs that saved you 100 hours?
#316Earlier quoted context omitted.
Would you be open to sharing more about your workflow? 1000% increase in productivity is a bold statement!
Heh...maybe less bold if you could have seen how terrible my productivity was before! But sure, I'm happy to share. It's now next up on the article hopper. To be shared here and on my blog / gopher site soon.
Re: Ask HN: Programs that saved you 100 hours?
#317Re: Ask HN: Programs that saved you 100 hours?
#318Re: Ask HN: Programs that saved you 100 hours?
#319The 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…
I prefer my own kd, which is 40 dead simple LOCs of shell and is predictable since it operates only on dirs you added (which sounds like a chore but is just fine in practice) kd foo $PWD # stores as foo kd f # jumps to foo kd # in a Ruby project subdir, jumps up to where the Gemfile is https://github.com/lloeki/dotfiles/blob/master/shell/kd
kd f # => jumps to foo
echo $(kd f) # => outputs foo's path
# some creative, if nonsensical, examples:
cp some/file $(kd foo)/app/controllers/whatevs
cp $(kd bar)/Gemfile $(kd foo)/Gemfile
kd foo && cd app/controllers && cp $(kd)/config/whatever .
This is useful and possible because kd's output is stable and predictable: it always returns the last prefix match of the kdrc file (or, without argument, the project's top-level dir), and it returns non-zero rc on failure. Plus zsh will even gladly expand the result on for double checking.Re: Ask HN: Programs that saved you 100 hours?
#320Earlier quoted context omitted.
I guess depends on your use-case but I find Ubuntu vastly superior for development. Perhaps it’s just habitual. :)
Well so do I (also mainly an Ubuntu user these days), but that can be orthogonal to time spent. I prefer it to Windows, which I used f/t for nearly a year after ditching macOS. I prefer the single file system (as opposed to the wsl/native Windows mishmash). I enjoy its speed (mostly filesystem related I think). I find the desktop (Gnome in my case) simpler yet more flexible at the same time (PaperWM ftw). But there's…
The only upside of Windows, and definitely a major one, is power management. On Ubuntu, my battery lasts around 2.5h with moderate use whereas on Windows, it's around 3-4 hours. Yes, I am already using powertop and TLP. =)