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
| http://i.imgur.com/dcpbT9j.png |
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
| import java.io.IOException; | |
| import java.util.Random; | |
| import java.util.Scanner; | |
| public class Tips { | |
| private static final Scanner in = new Scanner(System.in); | |
| private static final Random rand = new Random(System.currentTimeMillis()); | |
| // Never reassigned => should be final | |
| public static void main(String[] args) { |
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
| createPaginator = async (sourceMessage, message, next, prev) => { | |
| const emojinext = "▶"; | |
| const emojiprev = "◀"; | |
| const emojistop = "❌"; | |
| try { | |
| await message.react(emojiprev); | |
| await message.react(emojinext); | |
| // await message.react(emojistop); | |
| let handle = (reaction, user) => { | |
| if (reaction.message.id !== message.id) |
This file has been truncated, but you can view the full file.
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
| [PREINITIALIZATION][CLIENT][INFO] Current loaders after merging: [[preinit]] | |
| [PREINITIALIZATION][CLIENT][INFO] Loading scripts for loader with names [preinit] | |
| [PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[999:crafttweaker]: _activeStages.zs} as we are currently loading with a different loader | |
| [PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[998:crafttweaker]: _Global.zs} as we are currently loading with a different loader | |
| [PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[998:crafttweaker]: _oreDict.zs} as we are currently loading with a different loader | |
| [PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:gregtech]: _gregtechMaterials.zs} as we are currently loading with a different loader | |
| [PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: ActuallyAdditions.zs} as we are currently loading with a different loader | |
| [PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIEN |
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
| recipes.removeRecipeByName("minecraft:golden_hoe"); | |
| recipes.removeRecipeByName("mekanism:plasticblock_0"); | |
| recipes.removeRecipeByName("mekanism:plasticblock_4"); | |
| recipes.removeRecipeByName("mekanism:plasticblock_3"); | |
| recipes.removeRecipeByName("mekanism:plasticblock_2"); | |
| recipes.removeRecipeByName("mekanism:plasticblock_1"); | |
| recipes.removeRecipeByName("thaumcraft:redstoneinlay"); | |
| recipes.removeRecipeByName("advancedrocketry:compositionsensor"); | |
| recipes.removeRecipeByName("randomthings:escaperope"); | |
| recipes.removeRecipeByName("mekanism:plasticblock_8"); |
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
| package zentriggers.zentriggers.wrappers; | |
| import crafttweaker.annotations.ZenRegister; | |
| import net.minecraft.world.World; | |
| import stanhebben.zenscript.annotations.ZenClass; | |
| import stanhebben.zenscript.annotations.ZenGetter; | |
| import stanhebben.zenscript.annotations.ZenSetter; | |
| import zentriggers.zentriggers.ZenTriggers; | |
| @ZenRegister |
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
| delete get; | |
| delete myId; | |
| delete manga; | |
| delete mangaIdList; | |
| delete socials; | |
| delete i; | |
| delete socialPosts; | |
| delete latestChapters; | |
| const myId = 122045; | |
| const get = (operation, append) => fetch("https://graphql.anilist.co/", { |
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
Show hidden characters
| { | |
| "env": { | |
| "commonjs": true, | |
| "es6": true, | |
| "node": true | |
| }, | |
| "extends": [ | |
| "plugin:vue/base", | |
| "eslint:recommended", | |
| "plugin:@typescript-eslint/eslint-recommended", |
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de"> | |
| <head> | |
| <title>Forge Events</title> | |
| <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> | |
| <meta name="description" content="" /> | |
| <meta name="author" content="Vic" /> | |
| <meta name="keywords" content="" /> |
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
| package ca.teamdman.sfm.client.gui; | |
| import ca.teamdman.sfm.client.gui.core.BaseScreen; | |
| import ca.teamdman.sfm.client.gui.core.IFlowView; | |
| import net.minecraft.block.BlockState; | |
| import net.minecraft.client.Minecraft; | |
| import net.minecraft.client.renderer.BlockRendererDispatcher; | |
| import net.minecraft.client.renderer.BufferBuilder; | |
| import net.minecraft.client.renderer.Tessellator; | |
| import net.minecraft.client.renderer.model.IBakedModel; |
OlderNewer