This file contains 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 | |
$compressed = array( | |
".0" => "Hacha Split Archive File", | |
".000" => "DoubleSpace Compressed File", | |
".7z" => "7-Zip Compressed File", | |
".7z.001" => "7-Zip Split Archive Part 1 File", | |
".7z.002" => "7-Zip Split Archive Part 2 File", | |
".a00" => "ALZip Second Split Archive File", | |
".a01" => "ALZip Third Split Archive File", |
This file contains 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
/** | |
* K.jpg's OpenSimplex 2, smooth variant ("SuperSimplex") | |
* | |
* More language ports, as well as legacy 2014 OpenSimplex, can be found here: | |
* https://github.com/KdotJPG/OpenSimplex2 | |
*/ | |
public class OpenSimplex2S { | |
private static final long PRIME_X = 0x5205402B9270C86FL; |
This file contains 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
call AbsDE | |
ld hl, OP1 | |
jp m, Positive | |
ld (hl), $1a | |
inc hl | |
Positive: | |
ex de, hl | |
push hl | |
push af | |
inc sp |