Skip to content

Instantly share code, notes, and snippets.

View raviprakashgiri's full-sized avatar

ravi prakash giri raviprakashgiri

  • San Francisco, US
View GitHub Profile
@raviprakashgiri
raviprakashgiri / value_extractor.py
Last active January 25, 2016 05:59
Script to extract value corresponding to one column in file 1 from two other files.
# Input files from which first 5 columns have to be retained: input0.csv
# Input files from which column's content have to be copied: input1,input2, input3.csv
# It searches value in other three columns from csv files, corresponding to column value in input0.csv
# Author Ravi Prakash Giri
import os
file0=open('input0.csv','r')
file1=open('input1.csv','r')
file2=open('input2.csv','r')
@raviprakashgiri
raviprakashgiri / csv_extract.py
Created January 15, 2015 05:57
Python script for extracting any particular column value from a csv or txt files.
# data.csv entries
# r,first,c,f,last,h,k
# 1,1957154100,T,37809,8721867,P,200
# 2,15393876652,T,289998,35330317,P,199
# 3,13971080937,T,270583,113047,P,3
# 4,345103649,T,5752,45936,P,1
# 5,151604200,T,2939,94215,P,2
# 6,251593100,T,4980,66352,P,2
# 7,151784831,T,2975,80168,P,2
@raviprakashgiri
raviprakashgiri / bar_graph.py
Created January 15, 2015 06:05
Script to create a simple Bar Graph of very large data using python plotly library.
import plotly.plotly as py
from plotly.graph_objs import *
# auto sign-in with credentials or use py.sign_in()
a=10
b=22
c=33
trace1 = Bar(
x=[1,2,3],y=[a,b,c]
)
#!/bin/bash
# Author : Akshay Pratap Singh
# Email-id : pratapakshay0@gmail.com
# These variable are sets by user
SERVER_IP="127.0.0.1"
HOST_NAME="example.com"
DIR_PATH=$(pwd)
APACHE_DIR_PATH="/etc/apache2/sites-available"