Skip to content

Instantly share code, notes, and snippets.

View wolever's full-sized avatar

David Wolever wolever

View GitHub Profile
@wolever
wolever / entropy.py
Last active February 7, 2016 03:48
Entropy: for when you'd prefer your entropy deterministic and immutable
import textwrap
from numpy.random import RandomState
def _entropy_mk_method(name):
orig_func = RandomState.__dict__[name]
args = None
if orig_func.__doc__:
# Most functions have their signature in the first line of their
# docstring (ex, "beta(a, b, size=None)"). Split that out so we can
@wolever
wolever / README.rst
Last active February 4, 2016 21:06
youtube2podcast: turn YouTube videos into a podcast

A couple of scripts I use to turn YouTube videos into podcasts.

Example:

$ youtube2podcast https://www.youtube.com/watch?v=p22LSKPUxJk https://www.youtube.com/watch?v=zEqDbsPUgH8
...
Starting podcast server...
http://0.0.0.0:9431/youtube-podcast

Requires avconv, youtube-dl, and dir2podcast:

@wolever
wolever / .gitignore
Last active December 29, 2015 22:17
Playing with implementing RAFT in Haskell (probably terrible)
*.class
*.o
*.pyc
*.sqlite3
*.sw[a-z]
*~
.DS_Store
bin-debug/*
bin-release/*
bin/*
@wolever
wolever / bp.js
Created November 30, 2015 23:34
bp: a small wrapper to make promises bindable in Angular
ngModule.factory('bp', function() {
return function(q) {
q.state = 'pending';
q.isPending = true;
q.isFulfilled = false;
q.isRejected = false;
q.then(function(result) {
q.state = 'fulfilled';
q.isPending = false;
q.isFulfilled = true;
@wolever
wolever / _README.rst
Last active June 26, 2024 07:06
Django testing things. To be put in a `testing` subdirectory of the project root.
  1. Put these files in yourapp/testing/
  2. Install:
  3. Run tests with python manage.py test, or test specific files or directories with python manage.py test myapp/tests/test_models.py
  1. Test cases which use the database must subclass MyAppTestCase, but other test can use test functions, generators, and everything else supported by nose: https://nose.readthedocs.org/en/latest/writing_tests.html
@wolever
wolever / mktags.sh
Last active November 12, 2015 22:26
Create tags for Django templates and management commands (so I can jump to a template with `:tag base.html`)
#!/bin/bash
IFS="`printf "\n\t"`"
set -eu
cd "$(dirname "$0")"
srcdir="akindi/"
ctags -R \
--exclude='*/lib/*' \
@wolever
wolever / shim.js
Last active November 5, 2015 21:39
My Webpack config
// Used to define the asset prefix at runtime
__webpack_require__.p = window.WEBPACK_ASSET_PREFIX || "ERROR-WEBPACK_ASSET_PREFIX-NOT-SET/";
@wolever
wolever / .babelrc
Last active November 5, 2015 21:40
Adding Babel (ES6) to a legacy project being built with webpack
{
// Enable all the features, including `::`-binding (ex, `setTimeout(::this.foo, 1000)`)
"stage": 0
}
@wolever
wolever / spectrogram.py
Last active September 28, 2015 20:29 — forked from maurisvh/spectrogram.py
ANSI art spectrogram viewer that reads audio from a microphone
#!/usr/bin/python
import numpy
import pyaudio
import sys
WIDTH = 79
BOOST = 1.0
@wolever
wolever / pluralize_and_summarize_interval.sql
Created August 27, 2015 20:07
PostgreSQL functions for pluralizing strings and summarizing / humanizing time intervals.
-- > select pluralize(42, 'friend');
-- '42 friends'
-- > select pluralize(1, 'ox', 'oxen');
-- '1 ox'
-- > select pluralize(32, 'is %s thing', 'are %s things')
-- 'are 32 things'
-- > select summarize_interval('interval 12.9 seconds')
-- '12 seconds'
-- > select summarize_interval('interval 3 hours 53 minutes')
-- '3 hours'