Skip to content

Instantly share code, notes, and snippets.

View jeandrek's full-sized avatar

Jeandre jeandrek

  • New Zealand
View GitHub Profile
@jeandrek
jeandrek / clickbait.js
Last active May 28, 2016 08:47
Better clickbait (more clickbaity) http://jonathan50.github.io/clickbait.html
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()
@jeandrek
jeandrek / scratch-tips-browser.user.js
Created May 1, 2016 01:47
Tips Browser for MIT Scratch
// ==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==
#!/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.
@jeandrek
jeandrek / tpe-alt-alt.user.js
Last active December 6, 2015 22:18 — forked from hyperobject/tpe-alt.user.js
A remixed remixed TPE userscript
// ==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==