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:
| /** | |
| * @typedef {(...args: Parameters<T[M]>) => ReturnType<T[M]>} PatchFunction | |
| * @template {object} T | |
| * @template {keyof T} M | |
| */ | |
| /** | |
| * @typedef {(PatchFunction<T, M>) & { | |
| * readonly original: T[M]; | |
| * readonly isPatched: true; |
| # FizzBuzz written using Rockstar language provided by codewithrockstar.com | |
| # This could obviously be simpler, but I wanted to make this as close to actual song lyrics as possible | |
| # AI generated song: https://suno.com/song/eaa91cc5-1e94-4ebe-b9d8-bb55cbd64fa1 | |
| Life takes love and blood. | |
| Let My Family be love over blood. | |
| Turn down my family. | |
| Let my child be blood times my family. | |
| Let my soul be love minus my child. | |
| Send back my soul. |
| import { patch } from './monkeyPatch'; | |
| (() => { | |
| patch(EventTarget, 'dispatchEvent', function() { | |
| const args = Array.from(arguments); | |
| const customEvent = new CustomEvent('GLOBAL_LOGGER', { | |
| details: args[0], | |
| }); |
| /* | |
| 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. |
| #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. | |
| */ |