Last tested using Mac OS X 10.8 Mountain Lion
Copy Dropbox folder from previous drive to user folder
| # | |
| # This is the main Apache HTTP server configuration file. It contains the | |
| # configuration directives that give the server its instructions. | |
| # See <URL:http://httpd.apache.org/docs/trunk/> for detailed information. | |
| # In particular, see | |
| # <URL:http://httpd.apache.org/docs/trunk/mod/directives.html> | |
| # for a discussion of each configuration directive. | |
| # | |
| # Do NOT simply read the instructions in here without understanding | |
| # what they do. They're here only as hints or reminders. If you are unsure |
| <?xml version="1.0" encoding="utf-8"?> | |
| <project name="tutorialProject" default="prod" basedir="/Users/addy/buildTut/"> | |
| <description>Client-side ANT build file example</description> | |
| <target name="-load.properties" | |
| description="Set properties for this build"> | |
| <!--YUI Compressor location--> | |
| <property name="yui.dir" value="${basedir}/yuicompressor/build/yuicompressor-2.4.2.jar"/> | |
| <!--Source JS dir--> |
| # [Notification Center](http://osxdaily.com/2012/08/06/disable-notification-center-remove-menu-bar-icon-os-x/) | |
| ## Disable | |
| launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist | |
| killall NotificationCenter # optional? | |
| ## Enable | |
| launchctl load -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist | |
| # Spotlight |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with useful tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl https://raw.github.com/gist/2266840/9a55fa74b72089ac8654a48e5988652cfc9f664c/hack.sh | sh | |
| # |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |