Skip to content

Instantly share code, notes, and snippets.

View vaibkumr's full-sized avatar
🌊
Gradient wave off kanagawa

Vaibhav Kumar vaibkumr

🌊
Gradient wave off kanagawa
View GitHub Profile
@sloria
sloria / bobp-python.md
Last active July 21, 2024 04:44
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
@tpandit
tpandit / snoopy.py
Last active September 14, 2023 17:36
Crypto currency live monitor that auto updates
import curses
import time
import sys
import requests
# Constants
CURRENCY='USD'
REQUESTS_PER_MINUTE=10
REQUEST_URI='https://api.coinmarketcap.com/v1/ticker/'