Verify Permissions
diskutil verifyPermissions /
Repair Permissions
diskutil repairPermissions /
ּ_בּ | |
בּ_בּ | |
טּ_טּ | |
כּ‗כּ | |
לּ_לּ | |
מּ_מּ | |
סּ_סּ | |
תּ_תּ | |
٩(×̯×)۶ | |
٩(̾●̮̮̃̾•̃̾)۶ |
#!/usr/bin/python | |
"""Download a whole page of wallpapers from simpledesktops.com. | |
Requires: | |
- BeautifulSoup: http://www.crummy.com/software/BeautifulSoup/#Download | |
Usage: | |
$ ./simpledesktops_download.py "http://simpledesktops.com/browse/6/" | |
Downloading http://parsed.url.com/directory/subdir/wallpaper.png to wallpaper.png |
# You can find the volume UUID in Disk Utility. Select the volume on the left | |
# and then File->Get Info. See "Universal Unique Identifier". | |
# | |
# Options used below: | |
# ro for readonly (can be omitted) | |
# noauto to prevent auto-mount | |
# noatime to skip writing last access times (performance thing, optional) | |
# | |
# Remember to set the filesystem type (hfs, ntfs, etc) too | |
########## |
#!/usr/bin/python | |
__doc__ = """ | |
simpledesktops_download.py | |
A quick script that fetches desktop images from the http://simpledesktops.com/ site. | |
It will start at the most current list of images and keep moving backwards, downloading | |
desktop images in to a directory on your local machine, until it finds an image that | |
already exists on disk. At that point it will stop. |
ಠ_ಠ | |
( ͡° ͜ʖ ͡°) | |
¯\_(ツ)_/¯ | |
(╯°□°)╯︵ ┻━┻ | |
http://www.fileformat.info/convert/text/upside-down.htm | |
WRTTN http://wrttn.me/30dbfd/ | |
Unicode Emoticons |
require 'rubygems' | |
require 'mechanize' | |
FIRST_NAME = 'FIRST_NAME' | |
LAST_NAME = 'LAST_NAME' | |
PHONE = 'PHONE' | |
EMAIL = '[email protected]' | |
PARTY_SIZE = 2 | |
SCHEDULE_RANGE = { :start_time => '19:00', :end_time => '20:30' } |
# Get Sublime Text to use your rvm ruby without hardcoding a `$USER`. | |
# | |
# Include the configurations below the commend in the appropriate file listed below: | |
# | |
# - OS X ST2: ~/Library/Application Support/Sublime Text 2/Packages/Ruby/Ruby.sublime-build | |
# - OS X ST3: ~/Library/Application Support/Sublime Text 3/Packages/User/Ruby.sublime-build | |
# - Linux ST2: ~/.config/sublime-text-2/Packages/Ruby/Ruby.sublime-build | |
# - Linux ST3: ~/.config/sublime-text-3/Packages/User/Ruby.sublime-build | |
{ |
# download and unpack distribution | |
wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.6-linux-x86_64.tar.bz2 | |
tar xf phantomjs-1.9.6-linux-x86_64.tar.bz2 | |
# copy binary | |
cd phantomjs-1.9.6-linux-x86_64 | |
cp bin/phantomjs /usr/local/bin |
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/ | |
// See also: http://www.paulund.co.uk/change-url-of-git-repository | |
$ cd $HOME/Code/repo-directory | |
$ git remote rename origin bitbucket | |
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git | |
$ git push origin master | |
$ git remote rm bitbucket |