I hereby claim:
- I am jmhodges on github.
- I am jmhodges (https://keybase.io/jmhodges) on keybase.
- I have a public key whose fingerprint is 8A35 CDF5 3D9F 1A4C 189D 67F6 3A39 B99B 7493 8DA7
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| object Welp { | |
| def foobar(a: Int, b: Int, c:Int) { throw new IllegalArgumentException } | |
| def main(args: Array[String]) { | |
| List(3) map { | |
| try { | |
| foobar(1, 2, _) | |
| } catch { | |
| case e: Throwable => { // This set of braces is optional. Problem remains when removed. | |
| println("won't be printed") |
| $ twurl -U '/1.1/users/show.json?screen_name=jmhodges' | |
| {"errors":[{"message":"SSL is required","code":92}]} |
| $ # This DYLD_LIBRARY_PATH is because the default OS X 10.8 (and, I think, 10.9) still doesn't have | |
| $ # a modern OpenSSL installation. You'll want `openssl version` to be 1.0.1e, at least. | |
| $ DYLD_LIBRARY_PATH=/usr/local/ssl/lib:$DYLD_LIBRARY_PATH /usr/local/ssl/bin/openssl s_client -connect console.aws.amazon.com:443 < /dev/null 2>/dev/null | egrep '(Protocol|Cipher)\s+:' | |
| Protocol : TLSv1 | |
| Cipher : RC4-MD5 | |
| $ # :( :( The same result for aws.amazon.com. Amazon.com still uses TLS 1.0 and RC4-SHA, too! |
| package main | |
| import ( | |
| "io" | |
| "log" | |
| "math/rand" | |
| "net/http" | |
| "os" | |
| ) |
| package comeatme | |
| import ( | |
| "code.google.com/p/google-api-go-client/plus/v1" | |
| "net/http" | |
| ) | |
| type SimpleKeyTransport struct { | |
| Key string | |
| Transport http.RoundTripper |
| changeset: 3:172d32922e72 | |
| user: Brian Kernighan <[email protected]> | |
| date: Fri Apr 01 02:03:04 1988 -0500 | |
| summary: last-minute fix: convert to ANSI C | |
| diff -r ac3363d7e788 -r 172d32922e72 src/pkg/debug/macho/testdata/hello.c | |
| --- a/src/pkg/debug/macho/testdata/hello.c Fri Apr 01 02:02:04 1988 -0500 | |
| +++ b/src/pkg/debug/macho/testdata/hello.c Fri Apr 01 02:03:04 1988 -0500 | |
| @@ -1,6 +1,8 @@ | |
| #include <stdio.h> |
| [jhodges@thehost ~]$ identify -list resource | |
| File Area Memory Map Disk Thread Time | |
| ------------------------------------------------------------------------------- | |
| 24576 50.551GB 35.309GiB 94.158GiB 18.446744EB 16 unlimited |
| trying to | |
| attempting to | |
| to help | |
| that helps | |
| utilize | |
| helps to |
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "os" | |
| ) | |
| func makeTable(word string) ([]int) { | |
| table := make([]int, len(word)) |