I hereby claim:
- I am tanema on github.
- I am timanema (https://keybase.io/timanema) on keybase.
- I have a public key ASB-TL0sgWCQjhi74q_peFJTNo2FDEgs3llgDLu6uQr1VAo
To claim this, I am signing this object:
| package hershey | |
| import ( | |
| "fmt" | |
| "math" | |
| "strings" | |
| "sync" | |
| "time" | |
| ) |
| require 'localstore' | |
| DB.set(key: "value") | |
| DB.exists?(:key) # => true | |
| DB.get(:key) # => "value" | |
| DB.get(:other, "default value") # => default val | |
| DB.get(:other) do | |
| val = computed_val() | |
| DB.set(other: val) | |
| val |
| package main | |
| import ( | |
| "fmt" | |
| "strconv" | |
| "strings" | |
| ) | |
| const ( | |
| // These are secret random numbers that are meant to help encrypt and disguise |
I hereby claim:
To claim this, I am signing this object:
| require 'csv' | |
| puts "[unifi.rb] Grabbing data from UniFi Controller" | |
| result = <<-eos | |
| NAME MAC AP CHAN RSSI RX TX | |
| GARETH-LAPTOP 9c:2a:70:c9:c3:37 SR_Wifi 1 44 72 72 | |
| android-ac059065c685d5be 90:18:7c:2f:bd:40 SR_Wifi 1 33 1 72 | |
| Joes-iPhone a8:88:08:66:7e:ed SR_Wifi 1 32 24 72 | |
| sr-dash-01 90:4c:e5:b3:3a:69 SR_Wifi 1 28 52 58 | |
| android-1be24885e86c9fb1 80:57:19:03:08:5f SR_Wifi 1 21 6 52 |
| #! /bin/bash | |
| # used for kill signals | |
| kill_rails () { | |
| kill -6 ${rails_pid} > /dev/null 2>&1 | |
| } | |
| #get password for haproxy | |
| read -s -p "Enter Password: " proxy_pass | |
| echo "" |
| #! /bin/bash | |
| ###################### USAGE ###################################### | |
| usage() { | |
| echo " | |
| Usage: mongotos3 [-t n] mongo_host mongo_collection s3_bucket | |
| -t : number of parallel processes to use | |
| mongo_host : the host of the mongodb server | |
| mongo_collection : the collection to collecthe gridfs data from | |
| s3_bucket : the name of the bucket you want to cp the files to | |
| " |
| package main | |
| import ( | |
| "fmt" | |
| "flag" | |
| "net" | |
| "bufio" | |
| "os" | |
| "time" | |
| "strconv" |
| git ls-files | perl -pe "s/.*\.(.*?)\n/\.\1\n/" | awk '/\..*/' | sort | uniq | xargs -n1 -E '\n' -I % sh -c 'git ls-files "*%" | xargs cat | echo "$(wc -l) %"' | sort -rn |
| ABApp.TriggerableTextField = Ember.TextField.extend(Ember.TargetActionSupport, { | |
| insertNewline: function() { | |
| this.triggerAction(); | |
| } | |
| }); |