Website | (Hyperlinked) Name |
---|---|
GMail | [email protected] |
GitHub | SOF3 |
PocketMine Forums | SOFe |
PhpFiddle | PhpFiddle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteRule "^/([A-Za-z0-9]([A-Za-z0-9\-]*[A-Za-z0-9\-])?)/([A-Za-z0-9_\-]+)(/([^\.]+))?\.(zip|tar|gz|phar|php|pmf)" /index.php?username=$1&repo=$3&version=$5&extension=$6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.HashMap; | |
import java.util.Map; | |
class NeedleTree{ | |
private int codePoint; | |
private boolean selfSet = false; | |
private Map<Integer, NeedleTree> children = new HashMap<>(); | |
public NeedleTree(int codePoint){ | |
this.codePoint = codePoint; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Minecraft: Pocket Edition header extractor | |
* | |
* This tool needs objdump (and objdump-multiarch + arm variants) installed on the current system | |
* | |
*/ | |
const VERSION = "0.0.1"; |
For 4 people:
1,2;3,4
1,3;2,4
1,4;2,3
For 6 people:
1,2;3,4;5,6
1,3;2,5;4,6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ReadStreamTask extends AsyncTask{ | |
public function __construct(string $host, CommandSender $sender){ // Step 1 | |
$this->host = $host; | |
parent::__construct($sender); | |
} | |
public function onRun(){ | |
$socket = fsockopen($this->host); // Step 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: ChatPopSound | |
author: PEMapModder | |
version: "1.0" | |
api: | |
- 1.12.0 | |
main: PEMapModder\ChatPopSound\Main | |
commands: [] | |
permissions: [] | |
... |
I hereby claim:
- I am sof3 on github.
- I am sofe (https://keybase.io/sofe) on keybase.
- I have a public key whose fingerprint is 2967 BB2A 20B3 A34D 3F9E B350 A037 9676 C4D9 D5D9
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 | |
7 | |
8 | |
9 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class SendMessageTask extends AsyncTask{ | |
public function __construct(PluginMain $mainClass, string $url){ | |
parent::__construct($mainClass); | |
$this->url = $url; | |
} | |
public function onRun(){ | |
$this->setResult(Utils::getURL($this->data)); | |
} |
OlderNewer