I hereby claim:
- I am egourlao on github.
- I am ericgo (https://keybase.io/ericgo) on keybase.
- I have a public key ASDw4bzfSZ_RM-qJamfwoiH7-l3SG_fYd8ik0u9vKNGKfAo
To claim this, I am signing this object:
[core] | |
user = Eric Gourlaouen | |
email = eric@thethingsnetwork.org | |
[user] | |
name = Eric Gourlaouen | |
email = gourlaoueneric@gmail.com | |
signingkey = 9B8D189E16C7D0183C8A6C27A1368F9ED8110BFD | |
[color] |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
set -e | |
go test -coverprofile=cover.out | |
go tool cover -html=cover.out -o coverage.html | |
open coverage.html |
#!/usr/bin/env python3 | |
list = [1, 2, 3, 4] | |
i = 0 | |
def read_list(): | |
global i | |
v = list[i] | |
i = i + 1 | |
return v |
#!/usr/bin/env python3 | |
class Indenter: | |
def __init__(self): | |
self.counter = 1 | |
def __enter__(self): | |
return self | |
def __exit__(self, type, value, traceback): | |
return | |
def print(self, msg): |
package main | |
import ( | |
"io" | |
"log" | |
"net" | |
"os" | |
) | |
func main() { |
I hereby claim:
To claim this, I am signing this object:
type Queue []int | |
func (q *Queue) Enqueue(i int) { | |
queue := append(*q, i) | |
*q = queue | |
} | |
func (q *Queue) Dequeue() (int, bool) { | |
if len(*q) == 0 { | |
return 0, false |