- Sample Portrait of Tracy - Live by: Weather Report
- Starting around 3:30
- Add dramatic fast crashing drums (like drum&bass type thing, but more jazzy)
- https://open.spotify.com/track/3sQKRCB0psj3786dD5MmrI?si=4ce0427e179046a5
- https://www.youtube.com/watch?v=W6iH3JYvJWg
- Live video:
- https://www.youtube.com/watch?v=25DXcFg1TFo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with open('homeworks.txt') as file: | |
content = file.read().strip() | |
homeworks = [int(x) for x in content.split('\n')] | |
with open('tests.txt') as file: | |
content = file.read().strip() | |
tests = [int(x) for x in content.split('\n')] | |
# Fill 100s for remaining grades |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set tabstop=4 shiftwidth=4 expandtab | |
syntax on | |
nnoremap ; : | |
" Use tab key for indenting visual blocks | |
vnoremap <Tab> >gv | |
vnoremap <S-Tab> <gv | |
" duplicate highlighted selection under itself |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################################################################ | |
#### MY ALIASES #### | |
alias youtube-dl-mp3='youtube-dl -x --audio-format mp3 ' | |
alias l='ls -1' | |
alias md5='md5 -r' | |
alias usg='du -chd 1 |sort -h' | |
alias count='ls . | wc -l' | |
alias counttypes='python3 ~/pythonTools/type_counts/counttypes' | |
alias typecounts='counttypes ' | |
alias typecount='counttypes ' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="yellow"; fi | |
username() { | |
echo "%F{cyan}%n%{$reset_color%}" | |
} | |
directory() { | |
echo "%~" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os | |
remote = os.popen('git remote show').read() | |
if not remote: | |
quit() | |
response = os.popen(f'git remote show {remote}').read() | |
for line in response.split('\n'): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set tabstop=4 shiftwidth=4 expandtab | |
syntax on | |
set clipboard=unnamed | |
set hlsearch incsearch | |
set number relativenumber | |
set ruler | |
set splitright | |
set splitbelow | |
set showcmd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hashlib | |
import json | |
import threading | |
import math | |
import time | |
class SafeInterface(): | |
def __init__(self, collection, batchSize=200, threaded=True): | |
self.col = collection | |
self.batchSize = batchSize |
import chromadb
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.metrics.pairwise import euclidean_distances
from sklearn.metrics import silhouette_score as sil_score
from sklearn.decomposition import PCA
from sklearn.cluster import DBSCAN
OlderNewer