Skip to content

Instantly share code, notes, and snippets.

View pjain's full-sized avatar

Pankaj Jain pjain

View GitHub Profile
@pjain
pjain / setup.sh
Created August 9, 2022 20:32 — forked from bradp/setup.sh
New Mac Setup Script
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Installing xcode-stuff"
xcode-select --install
@pjain
pjain / hello_crypto_world.py
Last active September 29, 2019 05:04
Hello World for [Crypto] Quant Traders
#!/usr/local/bin/python
# based on the script by MR Jain at https://gist.github.com/mrjain/891cc88809697fb6a9c8872942fa8873#file-hello_world-py
import sys, getopt
# Add the pandas library
import pandas as pd
import pandas_datareader.data as web
import psycopg2 as pg
import pandas.io.sql as psql