Skip to content

Instantly share code, notes, and snippets.

@AnandSingh
AnandSingh / setup.sh
Last active May 9, 2021 20:04
setup.sh
#!/usr/bin/env bash
BLACK_COLOR=$(tput setaf 0)
RED_COLOR=$(tput setaf 1)
GREEN_COLOR=$(tput setaf 2)
YELLOW_COLOR=$(tput setaf 3)
BLUE_COLOR=$(tput setaf 4)
MAGENTA_COLOR=$(tput setaf 5)
CYAN_COLOR=$(tput setaf 6)
WHITE_COLOR=$(tput setaf 7)
#!/bin/bash
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m' # No Color
BOLD=$(tput bold)
CLEAR=${NC}$(tput sgr0)
@AnandSingh
AnandSingh / PY0101EN-2-1-Tuples.ipynb
Created October 21, 2019 19:50
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/usr/bin/env python
from __future__ import print_function
import time, random
import math
from collections import deque
from matplotlib.offsetbox import AnchoredText