This file contains hidden or 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/bash | |
| oldrev="$1" | |
| newrev="$2" | |
| if [[ $3 == "1" ]]; then | |
| diffresult=$(git diff "$oldrev" "$newrev" -- .rvmrc) | |
| if [[ $diffresult != "" ]]; then | |
| msg=" \n Don't forget to reload your .rvmrc! \n " | |
| echo -e "\033[41;37m$msg\033[0m" | |
| fi |
This file contains hidden or 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
| för att skapa en tunnel från port 2222 till port 22 på en annan maskin: | |
| Kod: | |
| ssh -fNT -L 2222:localhost:22 user@192.0.2.1 | |
| För att förtydliga, om du då ansluter till localhost port 2222 så kommer du hamna på 192.0.2.1 port 22 och få en inloggningspromt från ssh daemonen på den maskinen.. |
This file contains hidden or 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
| #To stop, enter the following command: | |
| sudo launchctl unload /Library/LaunchDaemons/com.crashplan.engine.plist | |
| #To start (load): | |
| sudo launchctl load /Library/LaunchDaemons/com.crashplan.engine.plist |
This file contains hidden or 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
| find.-name*.DS_Store-typef-execrm{} \; |
This file contains hidden or 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
| Another tip here is editing the ssh config file. | |
| On your machine (not the iphone), create ~/.ssh/config | |
| In there, add the following lines | |
| Host iphone | |
| HostName 10.0.1.1 | |
| User root |
This file contains hidden or 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
| # Block Adobe Activation | |
| 127.0.0.1 activate.adobe.com | |
| 127.0.0.1 practivate.adobe.com | |
| 127.0.0.1 ereg.adobe.com | |
| 127.0.0.1 activate.wip3.adobe.com | |
| 127.0.0.1 wip3.adobe.com | |
| 127.0.0.1 3dns-3.adobe.com | |
| 127.0.0.1 3dns-2.adobe.com | |
| 127.0.0.1 adobe-dns.adobe.com | |
| 127.0.0.1 adobe-dns-2.adobe.com |
NewerOlder