- Loi n°55-385 from 1955
- Wikipedia / Etat d'urgence en France (general structure)
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
| #!/bin/bash | |
| [ -z "$PHP_VERSION" ] && PHP_VERSION="7.0.1" | |
| ZEND_VM="GOTO" | |
| ZLIB_VERSION="1.2.8" | |
| POLARSSL_VERSION="1.3.8" | |
| LIBMCRYPT_VERSION="2.5.8" | |
| GMP_VERSION="6.0.0a" | |
| GMP_VERSION_DIR="6.0.0" | |
| CURL_VERSION="curl-7_44_0" |
#Terms and abbreviations
| Term | Definition |
|---|---|
| MCPE | Minecraft PE, or any other versions of Minecraft that we support |
| Player | the person who owns the client; the actual human who plays the game; the actual human who legitimately owns an account |
| Client | the machine that owns the MCPE app, or the MCPE app itself, owned by the player |
| Server | the MCPE server that has an global auth plugin, or a network of these servers |
| Official/Vendor | (describes) the organization that is in charge of the whole project |
| Database | the centralized server that hosts accounts, controlled and managed by vendor, provides limited access to servers |
| Global | For all servers that use the same database |
Since Twitter doesn't have an edit button, it's a suitable host for JavaScript modules.
Source tweet: https://twitter.com/rauchg/status/712799807073419264
const leftPad = await requireFromTwitter('712799807073419264');
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
| Why do compilers even bother with exploiting undefinedness signed overflow? And what are those | |
| mysterious cases where it helps? | |
| A lot of people (myself included) are against transforms that aggressively exploit undefined behavior, but | |
| I think it's useful to know what compiler writers are accomplishing by this. | |
| TL;DR: C doesn't work very well if int!=register width, but (for backwards compat) int is 32-bit on all | |
| major 64-bit targets, and this causes quite hairy problems for code generation and optimization in some | |
| fairly common cases. The signed overflow UB exploitation is an attempt to work around this. |
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 | |
| /* | |
| * | |
| * ____ _ _ __ __ _ __ __ ____ | |
| * | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \ | |
| * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) | | |
| * | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/ | |
| * |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_| | |
| * |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 UDPProxy extends \Threaded { | |
| // private static $ENCRYPT_KEY = 'jsd8hv8QWCH'; | |
| /**@var stream*/ | |
| public $socket; | |
| /**@var stream*/ | |
| public $sql; |
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
| ; | |
| ; the "monitor ROM" of an apple 1 fit in one page (256 bytes). | |
| ; | |
| ; this is my attempt to take the disassembled code, give names to the | |
| ; variables and routines, and try to document how it worked. | |
| ; | |
| ; | |
| ; an apple 1 had 8KB of RAM (more, if you hacked on the motherboard), and a | |
| ; peripheral chip that drove the keyboard and video. the video was run by a | |
| ; side processor that could treat the display as an append-only terminal that |