See https://github.com/romainl/idiomatic-vimrc for an up-to-date version.
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
Password-store keeps your passwords (or any other sensitive information) saved in GnuPG encrypted files organized in ~/.password-store. For more information about GPG, consult the GNU Privacy Handbook.
To get started, install pass and generate a keypair.
$ brew install pass
$ gpg --gen-key
$ gpg --list-keys(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| drwxr-xr-x 14 evan users 4.0K Apr 22 13:13 .cache/ | |
| drwx------ 34 evan users 4.0K Apr 16 10:10 .config/ | |
| drwxr-xr-x 6 evan users 4.0K Dec 16 00:25 .local/ | |
| drwx------ 3 evan users 4.0K Mar 21 06:49 .pki/ | |
| drwx------ 2 evan users 4.0K Apr 14 05:43 .ssh/ | |
| drwxr-xr-x 8 evan users 4.0K Apr 8 04:17 documents/ | |
| drwxr-xr-x 8 evan users 4.0K Mar 16 05:17 programming/ | |
| drwxr-xr-x 3 evan users 160 Apr 22 13:59 scratch/ | |
| lrwxrwxrwx 1 evan users 19 Jul 7 2013 .bashrc -> .config/bash/bashrc | |
| lrwxrwxrwx 1 evan users 34 Jul 7 2013 .profile -> .config/bash/profiles/systemd-user |
Note: This was written in 2015, it may be out of date now.
There are a lot of commands here which I use
sudoif you don't know what you're doing withsudo, especially where Irmyou can severely screw up your system.
There are many reasons which you would want to remove a piece of software such as McAfee, such as not wanting it to hammer your CPU during work hours which seems like primetime for a virus scan.
I intend this to be a living document, I have included suggestions from peoples' replies.
| javascript:(function() { | |
| var bookmarklet = { | |
| init: function() { | |
| this.parse(); | |
| }, | |
| parse: function() { | |
| page = ""; | |
| $(".PlaylistPage:visible") | |
| .find(".Track") | |
| .children(".info") |
| var AnimationRegion = Backbone.Marionette.Region.extend({ | |
| innerRegionSelector: '.inner-page-region', | |
| setLayout: function(layout, animationClass) { | |
| this.regionAnimationClass = animationClass; | |
| if (this.currentLayout) { | |
| this.swap(layout); | |
| } else { |
This configuration is no longer updated