I hereby claim:
- I am bradclawsie on github.
- I am b7j0c (https://keybase.io/b7j0c) on keybase.
- I have a public key whose fingerprint is B1C1 F146 2CE7 6E5F 2D99 4FB3 D817 E42D CCB5 AB08
To claim this, I am signing this object:
#!/usr/bin/env perl | |
# perl note - if @ds = [1,2,3], shift(@ds) returns 1 and make @ds be [2,3] | |
# | |
# perl note - perl lets you treat chars and numbers the same and just mostly | |
# figures out what to do | |
use v5.38; | |
# the input | |
my $t = '8155999'; |
#!/usr/bin/env perl | |
use v5.36; | |
use Future::AsyncAwait; | |
use Future::IO; | |
use experimental qw( signatures ); | |
async sub f($v) { | |
say 'start of f' . $v; | |
say time; | |
say 'a' . $v; |
class lru { | |
size: number; | |
n: number; | |
key2val: Map<string, any>; | |
keys: string[]; | |
constructor(size: number) { | |
this.size = size; | |
this.n = 0; | |
this.key2val = new Map<string,any>(); |
package main | |
// run this: https://play.golang.org/p/lGEbAcNeVJr | |
import ( | |
"fmt" | |
"log" | |
) | |
const ( |
package main | |
// RUN IT! https://play.golang.org/p/hUrvvq_gBQX | |
import ( | |
"fmt" | |
) | |
func flatten(iface interface{}) []int { |
package main | |
import ( | |
"context" | |
"log" | |
"os" | |
"strconv" | |
"time" | |
pb "../counter" |
package main | |
import ( | |
"context" | |
"errors" | |
"log" | |
"net" | |
"sync" | |
pb "../counter" |
syntax = "proto3"; | |
package counter; | |
// Value contains a countername and its present value. | |
message Value { | |
string countername = 1; | |
int32 value = 2; | |
} |
package main | |
import ( | |
"errors" | |
"log" | |
"math/rand" | |
"sync" | |
"time" | |
) |
I hereby claim:
To claim this, I am signing this object: