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
| /** | |
| * konami.js - copyright (c) 2014-2016 rummik | |
| * license: Public Domain / CC0 / WTFPL | |
| * source: https://gist.github.com/rummik/10633824 | |
| * usage: | |
| * window.addEventListener('konami', function() { ... }) | |
| * window.onkonami = function() { ... } | |
| */ | |
| (function() { |
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
| /** | |
| * Shadowy Zen Thing | |
| */ | |
| body { | |
| background: #fafafa; | |
| } | |
| .soup { | |
| -webkit-column-count: 2; |
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
| /** | |
| * Non-ducky Circular Thing | |
| */ | |
| .arrow:before { | |
| content: '→'; | |
| -webkit-animation: around 5s infinite ease-in-out; | |
| position: absolute; | |
| left: 0; | |
| font-family: monospace; |
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
| <!doctype html> | |
| <meta charset="utf-8"> | |
| <title>Dragon Hatcher</title> | |
| <link href="//fonts.googleapis.com/css?family=Imprima" rel="stylesheet"> | |
| <div id="count">0</div> | |
| <div id="clicky">hatch</div> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| canvas { | |
| outline: 1px solid #000; | |
| } | |
| </style> |
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
| Section "ServerLayout" | |
| Identifier "Layout0" | |
| Screen 0 "Screen0" | |
| InputDevice "Keyboard0" "CoreKeyboard" | |
| InputDevice "Mouse0" "CorePointer" | |
| EndSection | |
| Section "InputDevice" | |
| # generated from default | |
| Identifier "Mouse0" |
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
| #!/bin/sh -e | |
| for home in /home/*; do | |
| user=$(basename $home) | |
| if [ -x $home/.rc.local ]; then | |
| sudo -u $user $home/.rc.local & | |
| fi | |
| done |
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 python | |
| from __future__ import print_function, unicode_literals | |
| import sys | |
| # Pull in testing harness, but make it very quiet | |
| try: | |
| class DevNull: | |
| def write(*a, **kw): |
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 python | |
| from __future__ import print_function, unicode_literals | |
| import sys | |
| import uuid | |
| from datetime import timedelta | |
| from aspen.utils import utcnow |
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 python | |
| from __future__ import print_function, unicode_literals | |
| import os | |
| import sys | |
| import uuid | |
| from datetime import timedelta |