Skip to content

Instantly share code, notes, and snippets.

View beck's full-sized avatar

Doug beck

View GitHub Profile
@beck
beck / translations.djt
Last active August 29, 2015 14:19
because django's jsi18n js makes me sad
{% if LANGUAGE_CODE == 'en' %}
{% compress js inline %}
<script>
window.json_locale_data = {
"messages": {},
"locale": "en",
"lang": "en"
};
</script>
{% endcompress %}
@beck
beck / dicks.rb
Last active August 29, 2015 14:00
dicks
#!/usr/bin/env ruby
#
# dicks v0.03 - Concise version thanks to a kind
# redditor (ageddyn)
#
# Brutish way to print out a bunch of ascii dongs.
# usage: 'dicks n' will print n dicks. Defaults
# to 5 dicks if no argument is called.
#
# Sperm patch coming soon.
@beck
beck / jscs.json
Created March 18, 2014 18:29
yola style
{
"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch"],
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowRightStickedOperators": ["?", "+", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"requireRightStickedOperators": ["!"],
"requireLeftStickedOperators": [","],
"disallowImplicitTypeConversion": ["string"],
"disallowKeywords": ["with"],
"disallowMultipleLineBreaks": true,