https://github.com/r4vi/block-the-eu-cookie-shit-list/blob/master/filterlist.txt
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
/* | |
Original link: | |
https://github.com/dunovank/jupyter-themes/ | |
https://raw.githubusercontent.com/dunovank/jupyter-themes/master/jupyterthemes/styles/compiled/onedork.css | |
*/ | |
div#notebook { | |
font-family: sans-serif; | |
font-size: 13pt; | |
line-height: 170%; |
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
print("This is a test") |
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
export HTTPS_PROXY=http://localhost:8888 | |
git -c http.sslVerify=false clone https://domain.com/path/to/git |
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 os | |
from os import listdir | |
from os.path import isdir, isfile | |
files = listdir("/proc") | |
scores = [] | |
for file in files: | |
path = f"/proc/{file}/oom_score" |