How to Disable iCloud Photo Syncing in OS X Photos


Go into System Preferences, iCloud, and un-check Photos.  Also go into Photos options and uncheck all that too.

http://www.howtogeek.com/214782/how-to-disable-icloud-photo-syncing-in-os-x-photos/

Make Emacs use bash shell path on Mac OS X

By default Emacs ignores your .bash_profile on Mac OS X.

Here's how to tell Emacs to go do a login so that your PATH customization is available to you when you M-x shell (and other shell-y things like M-x compile and M-x grep).

https://raw.githubusercontent.com/purcell/exec-path-from-shell/master/exec-path-from-shell.el

Found at :

http://stackoverflow.com/questions/6411121/how-to-make-emacs-use-my-bashrc-file


wc - pure Python implementation of classic Unix word count utility.

As part of my ongoing Python Power Tools project (a pale imitation of Perl Power Tools), I have implemented a pure Python wc.


This supports a -files0 option, so you can pipe wc.py the output of any program that produces filenames separated by null characters.  For example, find and ack, when using the -print0 output option.