Skip to content

Instantly share code, notes, and snippets.

View Stanley-GF's full-sized avatar
🎯
monster.casa

Stanley Stanley-GF

🎯
monster.casa
View GitHub Profile
function LogOut(){
var req = webpackJsonp.push([
[], {
extra_id: (e, t, r) => e.exports = r
},
[
["extra_id"]
]
@Stanley-GF
Stanley-GF / getbadges
Created May 7, 2021 18:04
Javascript Get Discord Badges using Flags
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;
@Stanley-GF
Stanley-GF / Hastebin.cs
Created December 26, 2020 14:30
A simple C# method for create hastebin without using any librarys
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("\"", "");
}
}