View webdav_setup_mac_osx.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
webdav set up on mac osx for use with iPad pages keynote goodreader | |
/*************************************************************************************************/ | |
Edit the file /etc/apache2/httpd.conf, (remember to use sudo to edit it) and locate this line: | |
LoadModule dav_module libexec/apache2/mod_dav.so |
View remote_start_screen_sharing.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=============================== | |
= remote start screen sharing = | |
=============================== | |
10.5 Leopard | |
cd /Library/Preferences | |
echo -n enabled > com.apple.ScreenSharing.launchd |
View leopard_vnc.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'You cannot share your own computer.' when trying to connect to 'vnc://localhost:[lport]' afterwards. I understand that Apple probably did this to prevent naive users from confusing themselves by connecting to their own systems. However, it's a pain for those who need to connect to localhost for ssh-tunneling. Here's a temporary way to eliminate this restriction: | |
1 - From the terminal: | |
defaults write com.apple.ScreenSharing skipLocalAddressCheck -boolean YES | |
2 - create the ssh tunnel | |
ssh -L 5900:localhost:5900 ip address |
View vlc_mediastreamsegmenter_ipad.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vlc stream to ipad with apache mediastreamsegmenter html5 | |
/*=======================================================================================*/ | |
Append following lines to /etc/apache2/mime.types MIME types of video and playlist. | |
sudo nano /etc/apache2/mime.types |
View vlc airfoil audio delay streaming.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vlc airfoil audio delay streaming | |
set the audio delay in vlc to -2100 so the video stays in sync with airplay audio | |
Use VLC instead (i.e. choose VLC as the app whose sound AirFoil should capture). Within VLC, use F and G keys to adjust the delay/advance of sound. Usually, an advance (F-key) of -2100 ms is enough. Works great! | |
open the advanced preferences in VLC and enter the value in Audio desynchronization compensation. |
View virtualbox_command_line.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# VirtualBox command line | |
#|------------------------------------------------------------------------------ | |
#| start virtual machine from the command line | |
#|------------------------------------------------------------------------------ | |
VBoxManage startvm virtualMachineName |
View VirtualBox usb set up.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VirtualBox usb set up | |
# IMPORTANT | |
# make sure to set the virtual machine to use only one procesor | |
# if you select more it wont see the external usb wireless adaptor | |
download and install the VirtualBox Oracle VM VirtualBox Extension Pack | |
download here: |
View VirtualBox guest additions install.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# VirtualBox guest additions install | |
sudo apt-get install linux-headers-$(uname -r) | |
25 - install guest additions | |
sudo apt-get install dkms |
View unistall_xcode.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# =================== | |
# = uninstall xcode = | |
# =================== | |
sudo /Developer/Library/uninstall-devtools --mode=all |