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 | |
| function _downloadImage ($url, $fullpath = 'local/path/') | |
| { | |
| $pathinfo = pathinfo($url); | |
| $fullpath = $fullpath . $pathinfo['basename']; | |
| $out = $fullpath; | |
| $ch = curl_init($url); | |
| $fp = fopen($fullpath, 'wb'); |
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
| $ iptables -t nat -A OUTPUT -p tcp --dport 80 -d test.dev -j DNAT --to-destination 33.33.33.60:7001 |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant::Config.run do |config| | |
| config.vm.box = "phpdevbox" | |
| config.vm.network :hostonly, "192.168.33.10" | |
| config.vm.forward_port 80, 8080 | |
| config.vm.provision "shell", inline: <<-SHELL | |
| sudo apt-get update | |
| sudo apt-get install -y vim |
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' -type f -delete |
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
| zip -r name_of_your_directory.zip name_of_your_directory |
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
| config.vm.provider :virtualbox do |vb| | |
| vb.customize ["modifyvm", :id, "--ioapic", "on"] | |
| vb.customize ["modifyvm", :id, "--cpus", "2"] | |
| vb.customize ["modifyvm", :id, "--memory", "1024"] | |
| end |
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
| for user in $(cut -f1 -d: /etc/passwd); do echo $user; crontab -u $user -l; done |
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
| 00 00-23 * * * wget -O - http://your-domain.com >/dev/null 2>&1 |
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
| bash -c 'source /etc/profile.d/rvm.sh && cd /folder && ruby script.rb' |
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
| :%s/foo/bar/g |