Skip to content

Instantly share code, notes, and snippets.

View amriteya's full-sized avatar

Amrit Pandey amriteya

  • Austin, TX, USA
View GitHub Profile
@amriteya
amriteya / format.py
Created January 17, 2024 02:45
Formatted In-line documentation of Classes & methods
any_obj = "Hello World"
from rich import inspect
inspect(any_obj, help = True)
@amriteya
amriteya / cvs.sh
Last active March 3, 2021 12:44
Find the status of Covid-19 vaccine availability at CVS in a given state and city.
################################################
## USAGE ##
## ------------------------------------------ ##
## ##
## >bash +x cvs.sh TX Austin ##
## ##
################################################
curl -s 'https://www.cvs.com/immunizations/covid-19-vaccine.vaccine-status.'"$1"'.json?vaccineinfo' \
-H 'referer: https://www.cvs.com/immunizations/covid-19-vaccine?icid=cvs-home-hero1-banner-1-link2-coronavirus-vaccine' |\
@amriteya
amriteya / GIF-Screencast-OSX.md
Created August 15, 2018 04:55 — forked from dergachev/GIF-Screencast-OSX.md
OS X Screencast to animated GIF

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

@amriteya
amriteya / gist:57310414adcdc464d2e2d00113494dcb
Created February 7, 2018 03:46 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@amriteya
amriteya / gist:311b44a6edfa94d22cbd620b9965f379
Created December 19, 2017 07:13 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream