I hereby claim:
- I am pangeacake on github.
- I am pangeacake (https://keybase.io/pangeacake) on keybase.
- I have a public key whose fingerprint is 86EE 5E3A E433 7DA6 1F3A CC82 0CBB F2BF 6E65 A89F
To claim this, I am signing this object:
| var delay = 500; | |
| var regex = /\?cid=(\d+)/; | |
| var results = {}; | |
| $(".instructor_endorsed_sr").each(function(i, o) { | |
| var iid = setTimeout(function(){ | |
| o.click(); | |
| // On threads with multiple answers, only first person gets credit? | |
| var name = $("#s_answer .post_region_actions .user_name").first().text() || "Anonymous"; |
| import re | |
| import aiohttp | |
| async def run(username, password): | |
| session = aiohttp.ClientSession() | |
| data = { | |
| 'client_id': 'play-valorant-web-prod', | |
| 'nonce': '1', | |
| 'redirect_uri': 'https://beta.playvalorant.com/opt_in', | |
| 'response_type': 'token id_token', |
| #!/usr/bin/env python3 | |
| """ | |
| Very simple HTTP server in python for logging requests | |
| Usage:: | |
| ./server.py [<port>] | |
| """ | |
| from http.server import BaseHTTPRequestHandler, HTTPServer | |
| import logging | |
| class S(BaseHTTPRequestHandler): |
| # Big thanks to the original creator of this script, IamLukeVice: https://www.reddit.com/user/IamLukeVice | |
| # | |
| # Copy all this content, paste in notepad and save as a ps1 file, example: Fix-Fornite-Replays.ps1 | |
| # Then, open the folder containing the script, right click it and choose: Run With Powershell | |
| # If it doesnt run, follow this: https://superuser.com/questions/106360/how-to-enable-execution-of-powershell-scripts | |
| $LocalAppDataFolder = "$env:LOCALAPPDATA" | |
| $FortniteReplaysFolder = $LocalAppDataFolder + "\FortniteGame\Saved\Demos" | |
| $count = 0 | |
| Get-Childitem $FortniteReplaysFolder -Filter *.replay | | |
| Foreach-Object { |
| import java.security.MessageDigest; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.io.UnsupportedEncodingException; | |
| import java.math.BigInteger; | |
| class Blacklist { | |
| public static MessageDigest CRYPT; | |
| public static String[] HASHES = new String[] {"879f1dea801746b51a2a908b04f7fe6fff5f7a47", "5f2eceb54f642fb5f58abca0b52f7f0349f06cef", "a2e2be30dc9be014f171c8a3bbe955e55fd66d87"}; |
I hereby claim:
To claim this, I am signing this object:
| /* | |
| * Copyright (c) 2015. Starlis LLC / dba Empire Minecraft | |
| * | |
| * This source code is proprietary software and must not be redistributed without Starlis LLC's approval | |
| * | |
| */ | |
| package com.empireminecraft.systems.holograms; | |
| import com.empireminecraft.config.meta.PersistentMetaKey; |
| /* | |
| * Copyright (c) 2015. Starlis LLC / dba Empire Minecraft | |
| * | |
| * MIT License: | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| * this software and associated documentation files (the "Software"), to deal in | |
| * the Software without restriction, including without limitation the rights to use, | |
| * copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the | |
| * Software, and to permit persons to whom the Software is furnished to do so, |
| #!/bin/bash | |
| # To use this script: | |
| # wget -qO- https://gist.github.com/ClayFreeman/a4dae9b7d0fa2c6476eb/raw | sh | |
| echo | |
| # Store pre-script working directory | |
| export PAST_PWD=`pwd` | |
| # Store MB of RAM available | |
| export RAM_MB=`free -m | egrep '^Mem' | awk '{print $2}'` |