I hereby claim:
- I am maxmcd on github.
- I am maxmcd (https://keybase.io/maxmcd) on keybase.
- I have a public key ASAaiTj7IljgqHFVFAAv8iKgaFZUkQ-A9vzCt_xxrkJnWgo
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"log" | |
"net" | |
"net/http" | |
"net/http/httputil" | |
"net/url" | |
"time" |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<title>SANKEY Experiment</title> | |
<style> | |
.node rect { | |
cursor: move; | |
fill-opacity: .9; | |
shape-rendering: crispEdges; | |
} |
license: apache-2.0 | |
function "hello" { | |
runtime = "rust" | |
path = "./hello" | |
} | |
gateway { | |
type = "http" | |
port = 8080 | |
route "/" { | |
function = "${function.hello}" |
package main | |
var stateAbbrv = []string{ | |
"AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "DC", "FL", "GA", "HI", "ID", | |
"IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO", | |
"MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", | |
"PR", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VA", "VI", "WA", "WV", "WI", | |
"WY", | |
} |
I hereby claim:
To claim this, I am signing this object:
static jmp_buf jmpEnv; | |
enum { | |
kPrepareBinaryAddress = 0x44dd, | |
kMutexBinaryAddress = 0x9090 | |
}; | |
void signal_handler(int n, siginfo_t *info, void *context) | |
{ | |
longjmp(jmpEnv, 1); |
FROM python:2.7.14 | |
# cerbero needs python 2.7.* | |
RUN apt-get update && apt-get install -y \ | |
--no-install-recommends \ | |
git \ | |
software-properties-common \ | |
python-software-properties \ | |
yasm \ | |
python-setuptools \ |
import boto3 | |
regions = [ | |
'us-east-2', | |
'us-east-1', | |
'us-west-1', | |
'us-west-2', | |
'ap-south-1', | |
'ap-northeast-2', | |
'ap-southeast-1', |
package main | |
import ( | |
"github.com/gin-gonic/gin" | |
) | |
func main() { | |
r := gin.Default() | |
r.GET("/", func(c *gin.Context) { | |
c.String(200, "Welcome. This is a test.") | |
}) |