Skip to content

Instantly share code, notes, and snippets.

View vivekv96's full-sized avatar
🔥

Vivek V vivekv96

🔥
View GitHub Profile
@vivekv96
vivekv96 / apple.py
Created October 6, 2020 13:45
A simple Python script to scrape the order status information from your Apple Online Store order.
import json
import time
import requests
from bs4 import BeautifulSoup
def main():
URL = 'https://store.apple.com/xc/in/vieworder/<order-id>/<your-apple-id@gmail.com>/'
@vivekv96
vivekv96 / .zshrc
Last active December 16, 2020 11:48
Backup of my .zshrc config
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/Users/vivekv96/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="agnoster"