This file contains 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 math | |
import base64 | |
def int_to_b32str(x): | |
base = int(math.log2(1 + x) / 8) + 1 # How many bytes ? | |
bytestring = x.to_bytes(base, 'big') | |
b32str = base64.b32encode(bytestring).decode() | |
return b32str.rstrip('=') # remove trailing "=" | |
def b32str_to_int(b): |
This file contains 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
# !pip install clipboard | |
# !pip install Pillow | |
import clipboard | |
from PIL import ImageGrab, Image | |
import base64 | |
def clipboard_to_image(): | |
"""Reads image in the clipboard and outputs a PIL.Image""" | |
image = ImageGrab.grabclipboard() |
This file contains 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 sys | |
import logging | |
# 1 - Choose a logger (where logs should come from) | |
# logger = logging.getLogger() # Root logger ; if you're in a notebook of end-user script | |
logger = logging.getLogger(__name__) # Lib-named logger ; if you're in a module | |
# logger = logging.getLogger(None if __name__=='__main__' else __name__) | |
# 2 - Choose the (minimal) log level | |
logger.setLevel(logging.DEBUG) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
from tornado import ioloop, gen, concurrent | |
import pandas as pd | |
import time | |
import asyncio | |
from multiprocessing import TimeoutError, Process | |
from multiprocessing.dummy import Pool as ThreadPool | |
class F(object): | |
def __init__(self): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
<!DOCTYPE html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster-src.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster.js"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.css" /> |
This file contains 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
## Brutal shortcuts: | |
# Kill everything launched with "python registry.py" | |
kill -SIGTERM -$(ps aux | grep 'python registry.py' | awk '{print $2}') | |
# Same in a function | |
grepkill() { kill -SIGTERM -$(ps aux | grep $1 | awk '{print $2}'); } | |
# Restart a uvicorn server | |
git reset --hard ; kill -SIGTERM $(ps aux | grep 'uvicorn server:app' | grep -v "grep" | awk '{print $2}'); nohup uvicorn server:app --host 127.0.0.1 --port 8000 > server.log & |
This file contains 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
from pandas import DataFrame, MultiIndex | |
def __getattribute__(self, x): | |
try: | |
return _parent__getattribute__(self, x) | |
except AttributeError: | |
columns = _parent__getattribute__(self, 'columns') | |
cols = list(set([x.split('.')[0] for x in columns])) | |
if x in cols: | |
_prefix = x + '.' |
NewerOlder