I hereby claim:
- I am notmike101 on github.
- I am notmike (https://keybase.io/notmike) on keybase.
- I have a public key ASCxFjutBiU8y_2fNS6bvnzCaLDln756PlHnwGXRtp6dRgo
To claim this, I am signing this object:
import { patch } from './monkeyPatch'; | |
(() => { | |
patch(EventTarget, 'dispatchEvent', function() { | |
const args = Array.from(arguments); | |
const customEvent = new CustomEvent('GLOBAL_LOGGER', { | |
details: args[0], | |
}); |
#include <Windows.h> | |
bool runInSafeScreen(const char *, const char *); | |
BOOL IsUserAdmin(VOID); | |
int main() { | |
// We need to check if the user has administrator privileges. | |
if (!IsUserAdmin()) { | |
// If they don't, tell them they need administrator privileges. | |
printf("Please run this program as an administrator\n"); |
/* | |
Print the numbers 1 to 100. | |
For multiples of 4, print "Fizz". | |
For multiples of 5 print "Buzz". | |
For multiples of 8, print "Foo". | |
For multiples of 10, print "Bar" | |
For multiples of 4 and 5, print "FizzBuzz". | |
For multiples of 4 and 8, print "FizzFoo" | |
For multiples of 4 and 10, print "FizzBar" | |
For multiples of 5 and 8, print "BuzzFoo" |
BEGIN MESSAGE. | |
U56xb50RwNhOyjB XwqULL8KYDiK4jt 6Nj2TSh79466m0T 39lRyfxKMEBk9fv | |
gjYagDJMnlahfJy KVu5luEcCKETCKq 6Xr2MZHgg7CkxZb Xo8d5RrBJbk7pgE | |
Y9w5WD71dSV1NFd 9KQiDytPeUhBBsO RinzJ9rtz45UyYD uZ166sASJJdnClU | |
faOx17ETf1wdtMR usuZRuTT7EUORNz 06uwO7tiSkCT. | |
END MESSAGE. |
--[[ VoltageHack v2 Garry's Mod multi-hack ]]-- | |
--[[ Coded by Tyler with help from others ]]-- | |
--[[ Do NOT leak this hack code to anyone! ]]-- | |
--[[ Please ignore the awful messy code ]]-- | |
--[[ Some of this code is borrowed for now ]]-- | |
/* Start of Hack */ | |
--Requires-- |
#define CLIENT_DLL | |
#include <stdio.h> | |
#include <iostream> | |
#include <tlhelp32.h> | |
#include <fstream> | |
#include <winsock.h> | |
#pragma comment( lib, "winmm.lib" ) | |
#pragma comment( lib, "wininet.lib" ) |
-- This is old, probably doesn't work anymore | |
if args=="es" then | |
for x=1,50 do | |
cmd('"changelevel ""ma_say;rcon_password lolololz"') | |
wait(10) | |
cmd('"changelevel 1""ma_say;rcon_password lolololz"') | |
wait(10) | |
cmd('"changelevel ""ma_psay;rcon_password lolololz"') | |
wait(10) |
I hereby claim:
To claim this, I am signing this object:
methods: { | |
/* | |
* Inject a script tag into the page | |
* Parameters: | |
* path: Path of JS file | |
* target (default = head): Element that script should be injected into | |
* Pass a querySelector or a node here | |
* isAsync (default= true): Apply the 'async' property to the output tag | |
* isDefer (default = true): Apply the 'defer' property to the output tag. | |
*/ |