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
alphazeroAO ~/Code/java/Blake2b ± diff src/main/java/ove/crypto/digest/Blake2b.java ../githubbers/tim/Blake2b/src/main/java/ove/crypto/digest/Blake2b.java master | |
22a23 | |
> import java.io.Serializable; | |
108a110,165 | |
> /** | |
> * A serializable / JSON-izable object usable for pausing a hash-in-process | |
> * which can then be resumed with the same Parameter the original digest | |
> * was constructed with, and fed additional bytes to conclude the hash. | |
> */ | |
> public static final class ResumeHandle implements Serializable { |
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
/* define generic package */ | |
// file p.go | |
package p | |
typevar K generic.ComparableType // poor man catagory | |
typevar V generic.AnyType // ^^ | |
import (...) | |
type X struct { |
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
/* define generic package */ | |
// file p.go | |
package p | |
typevar K generic.ComparableType // poor man catagory | |
typevar V generic.AnyType // ^^ | |
import (...) | |
type X struct { |
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
language specification for level extended brainfuck | |
rev alpha.0 | |
-- what | |
Yet another riff on the brainfuck language. | |
-- program structure | |
A bflx program is a sequence of byte codes (with ASCII semantics) of minimum length of 1. | |
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
package main | |
import ( | |
"fmt" | |
"os" | |
) | |
func main() { | |
if len(os.Args) < 1 { | |
fmt.Fprintf(os.Stderr, "usage: bf <program>") |
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
Verifying that "alphazero.id" is my Blockstack ID. https://onename.com/alphazero |
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
二 // 2 | |
进 // "enter" per google but accounting is most likely meaning | |
制 // system | |
二进制 // binary (number system) | |
十 // 10 | |
进 // "enter" .. | |
制 // system |
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
XorShift* | |
453361 of 524288 slots with ideal cnt of 2 | |
ideal: 141655 (27.019%) | |
missed: 70927 (13.528%) | |
less: 142038 (27.092%) | |
more: 169668 (32.362%) | |
max hits: 12 | |
STD-LIB | |
452947 of 524288 slots with ideal cnt of 2 | |
ideal: 141284 (26.948%) |
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
var s0 = [16]uint64{ | |
0xEA221D1E5C8DB483, | |
0xF89369282348A220, | |
0x7022326276090608, | |
0x1618FCC12E583E30, | |
0xF7E7C005F85EFC69, | |
0x132B746F9C2FF047, | |
0x338324A69CBDC6B5, | |
0x2B91B21FAAB58FE0, | |
0x85CB192105B8B12B, |
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
package foo | |
import ( | |
"fmt" | |
"testing" | |
) | |
const M = 32768 | |
const M0 = M / 8192 // play with this knob ... |
NewerOlder