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
package mathhulk; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.io.OutputStream; | |
import java.io.Reader; | |
import java.net.HttpURLConnection; | |
import java.net.URL; |
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
package me.diamonddev.craftoblo.menus; | |
import org.bukkit.Bukkit; | |
import org.bukkit.ChatColor; | |
import org.bukkit.Material; | |
import org.bukkit.Sound; | |
import org.bukkit.entity.Player; | |
import org.bukkit.event.EventHandler; | |
import org.bukkit.event.Listener; | |
import org.bukkit.event.inventory.InventoryClickEvent; |
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
package me.diamonddev.craftoblo.classes; | |
import lombok.Getter; | |
import me.diamonddev.craftoblo.abilitys.AbilityObject; | |
import com.coalesce.gui.ItemBuilder; | |
import org.bukkit.ChatColor; | |
import org.bukkit.Material; | |
import org.bukkit.inventory.ItemFlag; | |
import org.bukkit.inventory.ItemStack; |
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
package me.diamonddev.craftoblo.animation; | |
import me.diamonddev.craftoblo.Craftoblo; | |
import org.bukkit.entity.ArmorStand; | |
import org.bukkit.scheduler.BukkitRunnable; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class AnimationPlayer { |
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
package com.al1l.d3scrape; | |
import com.mashape.unirest.http.HttpResponse; | |
import com.mashape.unirest.http.Unirest; | |
import com.mashape.unirest.http.exceptions.UnirestException; | |
import com.mashape.unirest.request.GetRequest; | |
import me.diamonddev.craftoblo.items.ItemQuality; | |
import org.json.JSONArray; | |
import org.json.JSONObject; |
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
<?php | |
$hook = new DiscordWebhook($hook_url); | |
$hook->send('```php\n// Some php code\n```'); |
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
/*! | |
========================================================= | |
* Argon Design System - v1.0.1 | |
========================================================= | |
* Product Page: https://www.creative-tim.com/product/argon-design-system | |
* Copyright 2018 Creative Tim (https://www.creative-tim.com) | |
* Licensed under MIT (https://github.com/creativetimofficial/argon-design-system/blob/master/LICENSE.md) |
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
const fs = require('fs'); | |
const path = require('path'); | |
function mkDirByPathSync(targetDir, { isRelativeToScript = false } = {}) { | |
const sep = path.sep; | |
const initDir = path.isAbsolute(targetDir) ? sep : ''; | |
const baseDir = isRelativeToScript ? __dirname : '.'; | |
return targetDir.split(sep).reduce((parentDir, childDir) => { | |
const curDir = path.resolve(baseDir, parentDir, childDir); |
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
<?php | |
// Allen, StackDoubleFlow | |
$tokens = array("mySecret", "myOtherSecret"); | |
$blacklist_names = array("upload.php", ".htaccess"); | |
$sharexdir = "./"; // File directory | |
$lengthofstring = 5; // Length of file name | |
// Random file name generation | |
function random_string($length) { |
OlderNewer