Skip to content

Instantly share code, notes, and snippets.

View arulrajnet's full-sized avatar

Arul arulrajnet

View GitHub Profile
@arulrajnet
arulrajnet / tor_ip_renew.py
Created May 3, 2015 10:32
TOR ip renew script using pytorctl https://github.com/aaronsw/pytorctl which is a python based module to interact with the Tor Controller.
from TorCtl import TorCtl
import urllib2
user_agent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7'
headers={'User-Agent':user_agent}
def request(url):
def _set_urlproxy():
proxy_support = urllib2.ProxyHandler({"http" : "127.0.0.1:8118"})
opener = urllib2.build_opener(proxy_support)
@arulrajnet
arulrajnet / README.md
Last active May 12, 2021 22:32
Script for point all youtube hostnames to single IP to minimize the youtube ads. Works with pihole
@arulrajnet
arulrajnet / GetStockInfo.py
Created August 20, 2015 14:59
Python script to get the stock current and history information from command line. Google Finance Data used. It will accept stock code and interval range as list.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from collections import namedtuple
from datetime import timedelta
import json
import datetime
import re
import sys
import getopt
@arulrajnet
arulrajnet / README.md
Created June 22, 2020 07:52
Script for point all youtube hostnames to single IP to minimize the youtube ads.
@arulrajnet
arulrajnet / livecricketscore.sh
Last active January 29, 2020 04:32
Shell script to get a Live cricket score from www.espncricinfo.com. Just run this shellscript then select your match. when ever you want to know score open that terminal and see. Just simple as Dhoni's helicopter shot :D
#/bin/bash
# Shell script to get a Live cricket score from www.espncricinfo.com
# To help Cricket fan DevOPS see the score on his Terminal.
# Thanks to ESPN SPORTS MEDIA LTD for their RSS feed.
#
# Author : Arul <mailto:me@arulraj.net>
function get_html() {
local html=$(curl -k -L -s $1)
echo "$html"
@arulrajnet
arulrajnet / SimpleHTTPServerWithUpload.py
Last active August 2, 2019 05:27 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload
#!/usr/bin/env python
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
"""
@arulrajnet
arulrajnet / download_java.py
Last active June 18, 2019 19:23 — forked from LordH3lmchen/download_latest_java.py
Download Oracle Java JDK / JRE from the terminal in an interactive manner. Useful when you want to download java in non-gui environment.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from urllib.request import Request, urlopen
except ImportError: # python 2
from urllib2 import Request, urlopen
import re
import os
@arulrajnet
arulrajnet / .env
Created February 20, 2019 09:15
httpbin using docker-compose with requestlog
GUNICORN_CMD_ARGS=--capture-output --error-logfile - --access-logfile - --access-logformat '%(h)s %(t)s %(r)s %(s)s Host: %({Host}i)s}'
@arulrajnet
arulrajnet / tweets_dumper.py
Created January 4, 2015 18:08
Dump all tweets as CSV of given twitter handle using #Tweepy https://github.com/tweepy/tweepy
# -*- coding: utf-8 -*-
import tweepy # https://github.com/tweepy/tweepy
import json
import csv
import sys
# Twitter API credentials
consumer_key = "your_consumer_key"
consumer_secret = "your_consumer_secret"
@arulrajnet
arulrajnet / EmailVerifier.py
Last active October 2, 2018 02:28
Its to verify email address whether is real or not. Getting the information from http://verify-email.org/. They allow you 5 search per hour based on your IP. So Use proxy network or rotating your IP using TOR.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'arul'
"""
program to verify email address from http://verify-email.org/
"""
import requests