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
# http://docs.vagrantup.com/v2/plugins/index.html | |
vagrant box add precise32 http://files.vagrantup.com/precise32.box | |
vagrant box add squeeze64 http://dl.dropbox.com/u/937870/VMs/squeeze64.box | |
Vagrant.configure("2") do |config| | |
config.vm.box = "squeeze64" | |
end | |
set VBOX_INSTALL_PATH="C:\Program Files\Oracle\VirtualBox\" |
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
http://docs.fabfile.org/en/1.8/installation.html | |
# Fabric for Windows | |
http://progressors.org.ua/articles/18/ | |
fab dev www server_normalize # step 1 (normalize providers + basic) | |
fab dev www server_setup # step 2 (server role specific) | |
fab dev www project_setup # step 3 (project specific) |
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
GRANT ALL ON test.* TO root@'192.168.1.66' IDENTIFIED BY 'letmein'; | |
GRANT ALL ON test.* TO root@'192.168.1.66' IDENTIFIED BY '-7stesle'; | |
SELECT host, user FROM user; | |
GRANT ALL ON *.* to root@'%' IDENTIFIED BY '-7stesle'; | |
telnet 64.131.110.162 3306 |
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
# Install Python pip | |
$ cd /tmp | |
$ wget http://mirror-fpt-telecom.fpt.net/fedora/epel/6/i386/epel-release-6-8.noarch.rpm | |
# rpm -ivh epel-release-6-8.noarch.rpm | |
yum -y install python-pip | |
scp -r /root/.ssh/* [email protected]:/root/shafi | |
killall memcached |
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
yum install java-1.7.0-openjdk-devel | |
gunzip pycharm-community-3.1.1.tar.gz | |
tar -xvf pycharm-community-3.1.1.tar | |
mv pycharm-community-3.1.1 pycharm-3.1 | |
export JAVA_HOME=/usr | |
# Pycharm looks with bin/java | |
vi ~/.bashrc | |
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
#!/usr/bin/env python2.7 | |
import time | |
_URL = 'http://localhost/tmp/derp.html' | |
_NUMBER = 1000 | |
def test_urllib2(): | |
import urllib2 |
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
cinstm fiddler4 | |
cinstm poshgit |
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
cinst git | |
cinst notepadplusplus | |
cinst GoogleChrome | |
cinst 7zip | |
cinst javaruntime | |
cinst flashplayeractivex | |
cinstm skydrive | |
cinst XmlNotepad | |
cinst python | |
cinst ccleaner |
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
sudo apt-get install build-essential libfuse-dev fuse-utils libcurl4-openssl-dev libxml2-dev mime-support -y | |
wget | |
export GLU_HOME="" | |
sudo apt-get install openjdk-7-jdk -y | |
export JAVA_HOME="/usr/lib/jvm/java-7-openjdk-amd64" |
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
"""Usage: | |
app.py --user=username --pwd=password --json | |
app.py --user=username --pwd=password | |
Arguments: | |
--user=username Application User Name | |
--pwd=password Application password | |
Options: | |
--json enable json output |
OlderNewer