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 ./www -name "*.php" ! -path "./www/cache/*" | tar -cf wwwBackup.tar.gz -T - |
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/sh | |
| cd /temp | |
| //Download libtiff4 - http://packages.ubuntu.com/saucy/libtiff4 | |
| wget http://mirrors.kernel.org/ubuntu/pool/universe/t/tiff3/libtiff4_3.9.7-2ubuntu1_amd64.deb | |
| sudo dpkg -i libtiff4_3.9.7-2ubuntu1_amd64.deb | |
| //Download canon's sotfwares - http://www.canon.fr/Support/Consumer_Products/products/Fax__Multifunctionals/InkJet/PIXMA_MP_series/PIXMA_MP230.aspx?type=download&language=EN&os=Linux |
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
| set-option -g status-utf8 on | |
| # Change key binding | |
| set prefix C-a | |
| unbind-key C-b | |
| bind-key C-a send-prefix | |
| #Powerline integration | |
| #run-shell "powerline-daemon -q" |
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
| <?php | |
| // we suppose that sellsyconnect, sellsytools and boot files are created.. | |
| /*******Code to create client*******/ | |
| //We configure parameters for new client | |
| $create_client_request = array ( | |
| 'method' => 'Client.create', |
OlderNewer