This file contains hidden or 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
| {% if LANGUAGE_CODE == 'en' %} | |
| {% compress js inline %} | |
| <script> | |
| window.json_locale_data = { | |
| "messages": {}, | |
| "locale": "en", | |
| "lang": "en" | |
| }; | |
| </script> | |
| {% endcompress %} |
This file contains hidden or 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/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. |
This file contains hidden or 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
| { | |
| "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, |
NewerOlder