I hereby claim:
- I am query on github.
- I am query (https://keybase.io/query) on keybase.
- I have a public key ASCjx8qsk7Hy36SSLXtW_bc0XarsfQfROCcgQe2Y7baoewo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
@font-face { | |
font-family: 'Lucida Grande'; | |
src: local('Helvetica'); | |
} | |
@font-face { | |
font-family: 'Lucida Grande'; | |
font-weight: bold; | |
src: local('Helvetica-Bold'); | |
} |
# The following patch file applies several fixes to the ASSERT v0.14b | |
# software distribution [1] such that the `./install.sh` script works | |
# properly on Debian 7.1. To apply it, use the following commands: | |
# | |
# $ cd assert-v0.14b/ | |
# $ patch -p1 < patch.diff | |
# | |
# [1]: http://cemantix.org/software/assert.html | |
# | |
diff -ur a/bin/extract-propbank-features.csh b/bin/extract-propbank-features.csh |
#!/bin/sh | |
# Find and delete broken symbolic links, which cause virtualenv to balk. | |
# "-L" resolves symbolic links to their destination if possible, meaning | |
# that if the filename is still a link ("-type l"), it's a broken one. | |
# Since "-L" doesn't work with "-delete", this calls "rm" instead. | |
find -L $1 -type l -exec rm -- {} + | |
# Just run virtualenv again to handle the rest. | |
virtualenv $1 |
#!/bin/bash | |
# | |
# randopen.bash [-n] [DIR] | |
# | |
# Choose a random file selected from the directory DIR, or the current | |
# directory if it is not given, and its subdirectories. Output the | |
# selected file's name, and open it unless the `-n` option is given. | |
# | |
# Requires at least bash 3.1. `open` is specific to OS X and should be | |
# replaced on other platforms (e.g., `xdg-open`). |
preprocess do | |
@items.each do |item| | |
if %w{png gif jpg jpeg}.include? item[:extension] | |
dimensions = Dimensions.dimensions(item.raw_filename) | |
item[:img_width] = dimensions[0] | |
item[:img_height] = dimensions[1] | |
end | |
end | |
end |
@font-face { | |
font-family: 'Arial'; | |
src: local('HelveticaNeue'); | |
} | |
@font-face { | |
font-family: 'Arial'; | |
font-weight: bold; | |
src: local('HelveticaNeue-Bold'); | |
} |
#!/usr/bin/python | |
# rtorrent_xmlrpc | |
# (c) 2011 Roger Que <[email protected]> | |
# | |
# Python module for interacting with rtorrent's XML-RPC interface | |
# directly over SCGI, instead of through an HTTP server intermediary. | |
# Inspired by Glenn Washburn's xmlrpc2scgi.py [1], but subclasses the | |
# built-in xmlrpclib classes so that it is compatible with features | |
# such as MultiCall objects. |