I hereby claim:
- I am ocpodariu on github.
- I am ovd (https://keybase.io/ovd) on keybase.
- I have a public key ASAeiz9ahABh0CDMlsZIIvyneA5gs5URquExrwMpwjJrIQo
To claim this, I am signing this object:
| package main | |
| import ( | |
| "bytes" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| "time" | |
| ) |
| #!/usr/bin/env python | |
| import sys | |
| import logging | |
| import ConfigParser | |
| import redis | |
| def connect_to_redis(host, port, database): | |
| rc = redis.Redis(host=host, port=port, db=database) | |
| rc.get("test-conn") |
I hereby claim:
To claim this, I am signing this object:
| // Given a list that contains integers and lists of integers, | |
| // build a list containing all the integers. | |
| // | |
| // Example: | |
| // given L = [1 2 [7 [8 9]] 3 [4 5] 6] | |
| // obtain M = [1 2 7 8 9 3 4 5 6] | |
| package main | |
| import ( |