I hereby claim:
- I am comp500 on github.
- I am comp500 (https://keybase.io/comp500) on keybase.
- I have a public key ASAL1bTNtCzF3YK7jYL_O_OJpIV4acrKlNMbZ08cKx9PMwo
To claim this, I am signing this object:
| <?php | |
| require("bin/API/Scratch.php") | |
| var scratch = new ScratchWebsiteFromURL("scratch.mit.edu"); | |
| scratch->gainSuperUserAccess(); | |
| var me = scratch->getUserByName("comp500"); | |
| var scratchteam = scratch->getST(); | |
| scratchteam->removeAllMembers(); | |
| var member = scratchteam->addMember(me); | |
| scratchteam->setOwner(member); | |
| member->hackScratch(); |
I hereby claim:
To claim this, I am signing this object:
| // require modules | |
| var path = require('path'); | |
| var fs = require('fs'); | |
| var url = require('url'); | |
| var prompt = require('prompt'); | |
| if (!process.env.APPDATA) { // Check for AppData existence | |
| throw new Error("AppData not found. Are you on windows?"); | |
| } | |
| var instancesFile = path.join(process.env.APPDATA, "Curse Client/GameInstances/MinecraftGameInstance.json"); // find instances file |
| var fs = require('fs'); | |
| var windows1252 = require('windows-1252'); | |
| function parseRecipes(callback, itemList) { | |
| fs.readFile('recipes.txt', 'utf8', function (err, data) { | |
| if (err) throw err; | |
| var dataLines = data.split('\n'); | |
| console.log(dataLines.length + " recipes"); | |
| var recipes = []; | |
| var oreDictionary = []; |
| quark.guide=Quark |
| { | |
| "black": "#1E1E1E", | |
| "dark_blue": "#2472C8", | |
| "dark_green": "#0DBC79", | |
| "dark_cyan": "#11A8CD", | |
| "dark_red": "#CD3131", | |
| "dark_magenta": "#BC3FBC", | |
| "dark_yellow": "#E5E510", | |
| "gray": "#CCCCCC", | |
| "dark_gray": "#666666", |
| BR2_HAVE_DOT_CONFIG=y | |
| BR2_HOST_GCC_AT_LEAST_4_5=y | |
| BR2_HOST_GCC_AT_LEAST_4_6=y | |
| BR2_HOST_GCC_AT_LEAST_4_7=y | |
| BR2_HOST_GCC_AT_LEAST_4_8=y | |
| BR2_HOST_GCC_AT_LEAST_4_9=y | |
| BR2_HOST_GCC_AT_LEAST_5=y | |
| BR2_HOST_GCC_AT_LEAST_6=y | |
| BR2_HOST_GCC_AT_LEAST_7=y | |
| BR2_ARCH_IS_64=y |
header_upstream name value
header_downstream name value
header_upstream name regex replacement
header_downstream name regex replacement
| /* ==UserStyle== | |
| @name thonk | |
| @namespace comp500 | |
| @version 1.0.0 | |
| @description Replaces GitHub's Confused emoji with thonk | |
| @author comp500 | |
| ==/UserStyle== */ | |
| /* | |
| Doesn't work for some reason |
| import crafttweaker.recipes.ICraftingRecipe; | |
| import crafttweaker.item.IIngredient; | |
| import crafttweaker.item.IItemStack; | |
| // ZenScroll loop finder, by comp500. | |
| // Finds crafting loops added by mods and creates ZenScroll scroll groups for them. | |
| // Requires: https://minecraft.curseforge.com/projects/zenscroll | |
| // Revision 4: improved comments | |
| // To use: |