Skip to content

Instantly share code, notes, and snippets.

View oneamitj's full-sized avatar
💭
he-ya!!!

Amit Joshi oneamitj

💭
he-ya!!!
View GitHub Profile
@oneamitj
oneamitj / hellocomics.py
Last active March 29, 2016 07:59
download all chapters of the given comics, url of hellocomic.com
#!/usr/bin/python3
import urllib.request, urllib.error, urllib.parse
from pdb import set_trace
from bs4 import BeautifulSoup
import os
url = input('Enter url from hellocomic.com: ')
# url = 'http://www.hellocomic.com/miles-morales-ultimate-spider-man/c1/p1'
@oneamitj
oneamitj / RoR_Installer.sh
Last active August 29, 2015 14:18
Ruby on Rails installer for linux.
#!/bin/bash
# Some Color coding
red='\e[31m'
grn='\e[32m'
yel='\e[33m'
blu='\e[34m'
pnk='\e[35;40m'
org='\e[33;40m'
wht='\e[0m'