This is an awesome deck. I'll be bookmarking this as a great resource to pass along. Tangent: although the portability and consistency of PDFs is nice, I'd love a browser extension that gave me a nicer view of slides that were exported as a PDF. I find there's something more satisfying about discrete pagination vs continuous scroll for these types of things.
Linux Productivity Tools (2019) [pdf]
11–20 of 276 posts
Re: Linux Productivity Tools (2019) [pdf]
#12Why not give open source stuff a go?
Re: Linux Productivity Tools (2019) [pdf]
#13Wow. Well, I wish I would have known abut GNU parallel before I wrote that massive bash script a few years ago. Thanks for posting this.
Re: Linux Productivity Tools (2019) [pdf]
#14Its table of contents doesn't do it justice. this is a great deck! super dense and straightforward. my tiny tip to contribute: for those who could never be bothered to remember the ctrl-commands for traversing words, but are familiar with `vi`-style movements: you can go one step above the suggestion in this deck with `set -o vi`.
Re: Linux Productivity Tools (2019) [pdf]
#15Its table of contents doesn't do it justice. this is a great deck! super dense and straightforward. my tiny tip to contribute: for those who could never be bothered to remember the ctrl-commands for traversing words, but are familiar with `vi`-style movements: you can go one step above the suggestion in this deck with `set -o vi`.
Re: Linux Productivity Tools (2019) [pdf]
#16Thanks for the deck, OP.
Re: Linux Productivity Tools (2019) [pdf]
#17Its table of contents doesn't do it justice. this is a great deck! super dense and straightforward. my tiny tip to contribute: for those who could never be bothered to remember the ctrl-commands for traversing words, but are familiar with `vi`-style movements: you can go one step above the suggestion in this deck with `set -o vi`.
Highly recommended if you use Vim regularly (and you can define the same escape key(s) for your terminal and vim instance). For me that was one of the biggest productivity boosts when doing editing and command line work.
Re: Linux Productivity Tools (2019) [pdf]
#18Re: Linux Productivity Tools (2019) [pdf]
#19Wow. Well, I wish I would have known abut GNU parallel before I wrote that massive bash script a few years ago. Thanks for posting this.
Re: Linux Productivity Tools (2019) [pdf]
#20http://www.ivarch.com/programs/pv.shtml
It's basically "cat", but with a progress bar. Also useful for measuring IO speed and volume (e.g. decompression: `pv -c largefile | gzip | pv -c > /dev/null` )