All binary can be downloaded http://pan.baidu.com/s/1hqH2Pko
| VERSION | PLATFORM | OFFSET | ORIGINAL | CRACKED |
|---|---|---|---|---|
| 3083 | Linux x64 | 0xcbe3 | 85 | 39 |
| 3083 | Linux x86 | 0xc6f2 | 85 | 39 |
| 3083 | Win x64 | 0xe21b3 | 85 | 3B |
| 3083 | Win x86 | 0x9eb1a | 1a | 2a |
| 3083 | OSX | 0x69cf | 85 | 39 |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>App Redirection</title> | |
| </head> | |
| <body> | |
| <!-- iframe used for attempting to load a custom protocol --> | |
| <iframe style="display:none" height="0" width="0" id="loader"></iframe> |
All binary can be downloaded http://pan.baidu.com/s/1hqH2Pko
| VERSION | PLATFORM | OFFSET | ORIGINAL | CRACKED |
|---|---|---|---|---|
| 3083 | Linux x64 | 0xcbe3 | 85 | 39 |
| 3083 | Linux x86 | 0xc6f2 | 85 | 39 |
| 3083 | Win x64 | 0xe21b3 | 85 | 3B |
| 3083 | Win x86 | 0x9eb1a | 1a | 2a |
| 3083 | OSX | 0x69cf | 85 | 39 |
All binary can be downloaded http://pan.baidu.com/s/1hqH2Pko
| VERSION | PLATFORM | OFFSET | ORIGINAL | CRACKED |
|---|---|---|---|---|
| 3083 | Linux x64 | 0xcbe3 | 85 | 39 |
| 3083 | Linux x86 | 0xc6f2 | 85 | 39 |
| 3083 | Win x64 | 0xe21b3 | 85 | 3B |
| 3083 | Win x86 | 0x9eb1a | 1a | 2a |
| 3083 | OSX | 0x69cf | 85 | 39 |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| I recently had to do this and had to sift through all these answers and their comments to eventually piece the information together, so I'll put it all here, in one post, for your convenience: | |
| Step 1: ssh keys | |
| Create any keypairs you'll need. In this example I've named me default/original 'id_rsa' (which is the default) and my new one 'id_rsa-work': | |
| ssh-keygen -t rsa -C "stefano@work.com" | |
| Step 2: ssh config | |
| Set up multiple ssh profiles by creating/modifying ~/.ssh/config. Note the slightly differing 'Host' values: |
| <?php | |
| /** | |
| * Replace the default "_" (underscore) with "-" (hyphen) in protected custom fields for debugging purposes | |
| * | |
| * @param bool $protected The default value | |
| * @param string $meta_key The meta key | |
| * @return bool True for meta keys starting with "-" (hyphen), false otherwise | |
| */ | |
| function unprotected_meta( $protected, $meta_key ) { |
(updated version of http://www.joyceleong.com/log/installing-phantomjs-on-ubuntu/)
export P=phantomjs-1.9.8-linux-x86_64cd /usr/local/sharesudo wget https://bitbucket.org/ariya/phantomjs/downloads/$P.tar.bz2sudo tar xvf $P.tar.bz2sudo ln -s /usr/local/share/$P /usr/local/share/phantomjssudo ln -s /usr/local/share/phantomjs/bin/phantomjs /usr/local/bin/phantomjsphantomjs --version