I hereby claim:
- I am ra on github.
- I am allard (https://keybase.io/allard) on keybase.
- I have a public key ASAIR7ILTRpEfyjpYOjf7crGmN-IIhdHyL7aWcfsaQqNlQo
To claim this, I am signing this object:
chat spaces I use regularly | |
Signal | |
Mastodon | |
iMessage/Messages (Apple) | |
SMS | |
Slack | |
Verifying that +ra is my blockchain ID. https://onename.com/ra |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
// x := string([]rune{0x767d, 0x9d6c, 0x7fd4}) // works | |
// x := string(rune(0x66)) // works |
$ for i in {1..10}; do sleep 4; date; curl -s http://citibikenyc.com/stations/json | tr "},{" " \n" | head -2 | tail -1; done | |
Mon Jul 8 17:38:20 UTC 2013 | |
"executionTime":"2013-07-08 01:36:01 PM" "stationBeanList":[ | |
Mon Jul 8 17:38:24 UTC 2013 | |
"executionTime":"2013-07-08 01:36:01 PM" "stationBeanList":[ | |
Mon Jul 8 17:38:28 UTC 2013 | |
"executionTime":"2013-07-08 01:38:01 PM" "stationBeanList":[ | |
Mon Jul 8 17:38:33 UTC 2013 | |
"executionTime":"2013-07-08 01:38:01 PM" "stationBeanList":[ | |
Mon Jul 8 17:38:37 UTC 2013 |
cut -d : -f 10 grab | cut -d ' ' -f 1 | awk '{total = total + $1}END{print total}' | |
grep -v Planned grab | cut -d : -f 10 | cut -d ' ' -f 1 | grep -c ^0$ | |
# login information | |
set imap_user='account@gmail.com' | |
set imap_pass='password' | |
# email server location | |
set spoolfile=imaps://account@gmail.com@imap.gmail.com:993/INBOX | |
set folder=imaps://account@gmail.com@imap.gmail.com:993/ | |
set smtp_url=smtp://account@gmail.com:password@smtp.gmail.com:587 | |
set editor=/usr/bin/vi | |
set from=account@gmail.com |
crosh> help | |
enterprise_ca_approve [--allow-self-signed] <url> | |
Approve an enterprise certificate authority. The <url> option should be | |
an http or https url to your enterprise Certificate Authority in PEM | |
format. This CA will be used to validate the signature of an enterprise | |
policy extension. | |
If the --allow-self-signed option is provided, then you may provide a self | |
signed CA. Use this only if you are certain of the source of the CA. |
crosh> help | |
enterprise_ca_approve [--allow-self-signed] <url> | |
Approve an enterprise certificate authority. The <url> option should be | |
an http or https url to your enterprise Certificate Authority in PEM | |
format. This CA will be used to validate the signature of an enterprise | |
policy extension. | |
If the --allow-self-signed option is provided, then you may provide a self | |
signed CA. Use this only if you are certain of the source of the CA. |
for i in gmail emacs twitter; do curl -s -A Safari http://www.google.com/search?q=site:usesthis.com+$i | fmt | grep About | grep results ; done |