This file contains 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
function Words(...templates) { | |
this.templates = templates | |
} | |
Words.prototype.generate = function() { | |
return this.templates.map(generate).join(' ') | |
} | |
function generate(template) { | |
if(template instanceof Words) | |
return template.generate() |
This file contains 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 Scratch tips browser | |
// @namespace scratchTipsBrowser | |
// @version 0.1.0 | |
// @description Tips Browser for MIT Scratch | |
// @author Jonathan50 | |
// @match https://cdn.scratch.mit.edu/scratchr2/static/*/help/en/home.html | |
// @grant none | |
// ==/UserScript== |
This file contains 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 python3 | |
# Jonathan50's Great Decompiler | |
# for Python 3 | |
# | |
# http://creativecommons.org/publicdomain/zero/1.0/ | |
# To the extent possible under law, the person | |
# who associated CC0 with Jonathan50's great decompiler has | |
# waived all copyright and related or neighboring | |
# rights to Jonathan50's great decompiler. |
This file contains 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 thisandagain Summoner | |
// @namespace thisandagainPlsExplainThisPost | |
// @version 1.06 | |
// @description Adds a button to posts to magically summon thisandagain or thisandbatman | |
// @author Jonathan50 | |
// @match https://scratch.mit.edu/discuss/* | |
// @grant none | |
// ==/UserScript== |
NewerOlder