Skip to content

Instantly share code, notes, and snippets.

View ishankhare07's full-sized avatar
πŸ‘¨β€πŸ’»

Ishan Khare ishankhare07

πŸ‘¨β€πŸ’»
View GitHub Profile
@ishankhare07
ishankhare07 / browser.sh
Created September 8, 2014 06:38
shell script for launching the browser and taking to specified address
echo "Select a browser "
echo "1. Chrome"
echo "2. Firefox"
read browser
echo "Which site you want to goto? "
read name
echo "Taking you to site $name"
@ishankhare07
ishankhare07 / sjf.py
Created August 31, 2014 16:52
shortest job first algo
from __future__ import print_function, division
import os
job_list = []
id = 0
def calc_wt():
temp = []
for x in job_list:
sum = 0