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
// First language in the list is the main language | |
// The seconds I actually dont know but but seems like some features support second languages | |
// Language codes: http://www.lingoes.net/en/translator/langcode.htm | |
const LANGUAGE = ["nl-NL", "en-US"]; | |
const COPILOT = true; | |
const setLocalAsJson = (key, json) => localStorage.setItem(key, JSON.stringify(json)); | |
let features = [ | |
{ |
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 Gist blacktheme | |
// @version 0.1 | |
// @description try to take over gisthub! | |
// @author Nick | |
// @match https://gist.github.com/* | |
// @grant none | |
// ==/UserScript== | |
document.querySelector("html").setAttribute("data-color-mode", "dark"); |
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 me.nick.random; | |
import java.util.Base64; | |
/** | |
* Created by Nick on 2019-03-23 22:45. | |
*/ | |
public class Adfly { | |
private int skips; |
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 me.ikeetjeop.staffonlineultimate.utils; | |
import com.avaje.ebean.text.json.JsonElementArray; | |
import com.google.gson.Gson; | |
import com.google.gson.JsonArray; | |
import com.google.gson.JsonElement; | |
import com.google.gson.JsonObject; | |
import org.bukkit.Bukkit; | |
import org.json.simple.JSONArray; | |
import org.json.simple.parser.JSONParser; |
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 me.ikeetjeop.staffonlineultimate.utils; | |
import com.google.gson.Gson; | |
import com.google.gson.JsonObject; | |
import java.io.IOException; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.util.HashMap; | |
import java.util.Map; |
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 sample.server.mysql; | |
import sample.server.serverplayer.DataPlayer; | |
import java.sql.*; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.UUID; | |
/** |