virtualenv -p /usr/bin/python3.5 env && source env/bin/activate
pip install SQLAlchemy aiohttp aiopg gunicorn
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
#! /usr/bin/python | |
import argparse | |
import subprocess | |
import os | |
import datetime | |
import re | |
from dateutil.parser import parse as du_parse | |
from dateutil import tz | |
from termcolor import colored |
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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by nettle configure 2.7, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ /home/samuel/.julia/v0.3/GnuTLS/deps/src/nettle-2.7/configure --prefix=/home/samuel/.julia/v0.3/GnuTLS/deps/usr | |
## --------- ## | |
## Platform. ## |
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
#! /usr/bin/python | |
import argparse | |
import subprocess | |
import os | |
import re | |
import mmap | |
from termcolor import colored | |
import mimetypes |
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
# example video encoding for vidoe.js | |
# for the mp4 video you need aac installed, on Ubuntu: | |
sudo apt-get install libfaac0 | |
# you seem to need two files for video js, a webm file and an mp4 file | |
# using ffmpeg these can be generated hence, assuming you start from a .mov file. | |
ffmpeg -i video.mov -codec:a aac -strict -2 -codec:v h264 -b:a 128k -b:v 1200k -flags +aic+mv4 video.mp4 | |
ffmpeg -i video.mov -codec:a libvorbis -codec:v libvpx -b:a 128k -b:v 1200k video.webm |
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
# to create the initial video, you need to press U twice once the video has started to force user names | |
gource -1920x1080 -o - --seconds-per-day 0.01 --hide progress,filenames | ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 TutorCruncher.mp4 | |
# to convert it to webm and make it a resonable size | |
ffmpeg -i TutorCruncher.mp4 -codec:v libvpx -b:v 3600k -an TutorCruncher.webm |
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 asyncio | |
q = asyncio.Queue() | |
async def produce(): | |
for i in range(10): | |
await q.put(i) | |
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 json | |
from time import time | |
import urllib.request | |
class UseHarrierError(Exception): | |
pass | |
class UseHarrierKeyError(KeyError): |
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 os | |
import signal | |
import errno | |
import random | |
import rq.queue | |
from rq.worker import signal_name, StopRequested, logger as rq_logger | |
IMMINENT_SHUTDOWN_DELAY = 6 |
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 os | |
import signal | |
from fnmatch import fnmatch | |
from multiprocessing import Process | |
from pathlib import Path | |
from datetime import datetime | |
import pyinotify as ino |