I hereby claim:
- I am robske110 on github.
- I am robske_110 (https://keybase.io/robske_110) on keybase.
- I have a public key whose fingerprint is 5015 859F D09F 5B50 875A BC08 135F 9978 BB31 1E40
To claim this, I am signing this object:
| #!/bin/bash | |
| pg_pw=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
| sudo su postgres -c "psql -c \"DO \\$\\$ | |
| BEGIN | |
| IF EXISTS (SELECT FROM pg_roles WHERE rolname='$1') THEN | |
| ALTER ROLE $1 WITH PASSWORD '$pg_pw'; | |
| ELSE | |
| CREATE USER $1 WITH PASSWORD '$pg_pw'; | |
| END IF; |
| <?php | |
| // DynTableCopy | |
| // Copyright robske_110 2021 | |
| declare(strict_types=1); | |
| $dbConnectionConfig = [ | |
| "DB_SRC_HOST" => null, | |
| "DB_SRC_NAME" => null, | |
| "DB_SRC_USER" => null, |
| name: EpicWing | |
| spacing: 0.1 | |
| particles: | |
| F: TYPE_FLAME | |
| L: TYPE_DRIP_LAVA | |
| model: "FFXXXXXXXXXXXXXXXXXXFF\nFLFXXXXXXXXXXXXXXXXFLF\nFLLFXXXXXXXXXXXXXXFLLF\nFLLLFXXXXXXXXXXXXFLLLF\nFLLLLFXXXXXXXXXFFLLLLF\nFLLLLLFXXXXXXXXFLLLLLF\nFLLLLLFXXXXXXXXFLLLLLF\nFLLLLFFXXXXXXXXFFLLLLF\nFLLLFXXXXXXXXXXXXFLLLF\nFLLFXXXXXXXXXXXXXXFLLF\nFLFXXXXXXXXXXXXXXXXFLF\nFFXXXXXXXXXXXXXXXXXXFF" | |
| centermode: "static" |
| <?php | |
| $path = 'your/path/to/skin.png'; | |
| $img = @imagecreatefrompng($path); | |
| $bytes = ''; | |
| $l = (int) @getimagesize($path)[1]; | |
| for ($y = 0; $y < $l; $y++) { | |
| for ($x = 0; $x < 64; $x++) { | |
| $rgba = @imagecolorat($img, $x, $y); |
| <?php | |
| //Just for fun | |
| $appleEventTimer = new AppleEventTimer(strtotime("12 September 2017")); | |
| $appleEventTimer->start(); | |
| echo("AppleEventTimer> exit, APPLE EVENT IS NOW!\n"); | |
| class AppleEventTimer{ | |
| /** @var int */ | |
| const APPLE_EVENT_TIME = 19; //h | |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| function isLeapYear(int $year): bool{ | |
| return (is_int($year / 4) || is_int($year / 400)) ? (!is_int($year / 100) || is_int($year / 400)) : false; | |
| } |
| <?php | |
| /** | |
| * @name LayDown | |
| * @main robske_110\LayDown\LayDown | |
| * @version 1.0.0alpha | |
| * @api 2.1.0 | |
| * @description Experience everything Upside Down! | |
| * @author robske_110 | |
| */ |