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
// ==UserScript== | |
// @name New Coffee-Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description shows how to use coffeescript compiler | |
// @author You | |
// @require http://coffeescript.org/extras/coffee-script.js | |
// @match https://site.com | |
// ==/UserScript== | |
/* jshint ignore:start */ |
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
# | |
# 2d platformer slope platform demo | |
# written to try to to help out someone on IRC | |
# | |
# controls: | |
# - left and right keyboard cursor keys: horizontal walking movement | |
# - up arrow cursor keyboard key: jump | |
# | |
# blockeduser | |
# Tue Dec 24 15:03:09 EST 2013 |