I hereby claim:
- I am ruehowl on github.
- I am ruehowl (https://keybase.io/ruehowl) on keybase.
- I have a public key ASDpsvweKQ-NXZM-yaZkJ_zpFcbWiYKt_zOKEnHxf_ToAgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
mkdir ~/idealem | |
cd ~/idealem | |
mv ~/Downloads/idealem-0.2.2.tar . | |
tar zxf idealem-0.2.2.tar | |
INSTALL_DIR="$PWD" | |
echo $INSTALL_DIR | |
cd idealem-0.2.2 | |
./configure --prefix=$INSTALL_DIR | |
make | |
make install |
from bs4 import BeautifulSoup | |
import lxml | |
import requests | |
import pandas as pd | |
from tabulate import tabulate | |
soup = BeautifulSoup(open('test.html'), 'lxml') | |
table = soup.find_all('table')[1] |
from fabric import Connection | |
from invoke import task | |
import dns.resolver | |
import ipaddress | |
import sys | |
@task | |
def Mpw(cnt,domain): | |
print "MX records for {}".format(domain) |
# fabfile Beta V0.7 | |
# Maintained by rahul.va@endurance.com | |
from fabric import Connection | |
from invoke import task | |
import dns.resolver | |
import ipaddress | |
import sys | |
#Tsak Wbox will whether the domain is a webhostbox.net server and retrave the user name. |
#!/bin/bash | |
#provide an option. | |
# -a add a server <server name> <user> <ip> <port> <'user pass'> <'root pass'> | |
# -l list cached servers. | |
# -r remove an entry. | |
# -s ssh to a server <server name or server ip> | |
option=$1 | |
function new_server { |
// For all the confusing Prometheus configuration and | |
// regular expressions, | |
// explained in examples. | |
// Remember, there are default values for each item if it's missing. | |
// regex is (.*), | |
// replacement is $1, | |
// separator is ; | |
// ,and action is replace |
#install PPTPD server on centos7 | |
#Auther: Rahul Varghese | |
# install the latest epel repo | |
# http://download.fedoraproject.org/pub/epel/beta/7/x86_64/ | |
echo "Installing ppp and pptpd" | |
yum -y install ppp pptpd |
#!/bin/bash | |
option=$1 | |
function new_server { | |
server_name=$1 | |
user=$2 | |
ip=$3 | |
port=$4 | |
user_pass=$5 | |
root_pass=$6 |