Skip to content

Instantly share code, notes, and snippets.

View samuelcolvin's full-sized avatar

Samuel Colvin samuelcolvin

View GitHub Profile
@samuelcolvin
samuelcolvin / dt
Created April 11, 2015 17:16
datetime util
#! /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
@samuelcolvin
samuelcolvin / config.log
Created June 4, 2015 20:59
GnuTLS build error
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. ##
@samuelcolvin
samuelcolvin / findin.py
Last active June 2, 2022 15:51
python script to find strings in files in a directory
#! /usr/bin/python
import argparse
import subprocess
import os
import re
import mmap
from termcolor import colored
import mimetypes
@samuelcolvin
samuelcolvin / videojs_encoding.sh
Last active January 16, 2019 17:32
video.js ffmpeg encoding
# 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
@samuelcolvin
samuelcolvin / aiopg playing with aiohttp and gunicorn.md
Last active August 7, 2020 14:01
aiopg playing with aiohttp and gunicorn

aiopg playing with aiohttp and gunicorn

Setup

virtualenv -p /usr/bin/python3.5 env && source env/bin/activate
pip install SQLAlchemy aiohttp aiopg gunicorn

Usage

@samuelcolvin
samuelcolvin / TutorCruncher gource.sh
Created April 12, 2016 14:56
creating version history video of TutorCruncher
# 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
@samuelcolvin
samuelcolvin / asyncio_queue.py
Last active May 1, 2016 16:43
Asyncio concurrency
import asyncio
q = asyncio.Queue()
async def produce():
for i in range(10):
await q.put(i)
@samuelcolvin
samuelcolvin / useharrier.py
Last active May 4, 2016 14:28
see samuelcolvin/harrier this should one day be a package of its own
import json
from time import time
import urllib.request
class UseHarrierError(Exception):
pass
class UseHarrierKeyError(KeyError):
@samuelcolvin
samuelcolvin / heroku_rq_worker.py
Last active August 25, 2018 19:50
Custom Worker for RQ which does a better job of coping with Heroku's dyno shutdown process
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
import os
import signal
from fnmatch import fnmatch
from multiprocessing import Process
from pathlib import Path
from datetime import datetime
import pyinotify as ino