Permanently remove Mac’s “Downloaded from Internet” warning
Posted: January 29th, 2012 | Author: Vincent | Filed under: OS X | No Comments »defaults write com.apple.LaunchServices LSQuarantine -bool NO
Of course, you should know what you are doing.
defaults write com.apple.LaunchServices LSQuarantine -bool NO
Of course, you should know what you are doing.
smb.conf no longer work. The actual configuration is stored at /System/Library/LaunchDaemons/com.apple.smbd.plist
To make Lion’s samba share follow symbolic link, you need to modify “ProgramArguments”
from:
<key>ProgramArguments</key>
<array>
<string>/usr/sbin/smbd</string>
</array>
</code>
to:
<key>ProgramArguments</key>
<array>
<string>/usr/sbin/smbd</string>
<string>--no-symlinks</string>
<string>false</string>
</array>
http://blog.interlinked.org/tutorials/rsync_time_machine.html
CPU Usage.glet
Date.glet
Quote of the day.glet
Time.glet
Top Processes.glet
Weather.glet
This is a build based on fikovnik’s version.

By pressing hotkeys you can resize any window to one of the 10 position/size combinations. Of course this is mac only.
Type this in terminal:
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
# ~/Library/KeyBindings/DefaultKeyBinding.dict
{
/* Remap Home / End to be correct :-) */
"\UF729" = "moveToBeginningOfLine:"; /* Home */
"\UF72B" = "moveToEndOfLine:"; /* End */
"$\UF729" = "moveToBeginningOfLineAndModifySelection:"; /* Shift + Home */
"$\UF72B" = "moveToEndOfLineAndModifySelection:"; /* Shift + End */
}
This will make “Home”/”End” act like they are in Windows.