I hereby claim:
- I am badslug on github.
- I am badslug (https://keybase.io/badslug) on keybase.
- I have a public key whose fingerprint is B64D 14F7 34DA E9FD 3BC8 0CDA 384C 4BAF AC5C F83C
To claim this, I am signing this object:
.classpath | |
*.ipr | |
*.iml | |
*.iws | |
.project | |
.idea/ | |
.settings/ | |
.gradle/ | |
target/ | |
build/ |
{ | |
"name":"shipping", | |
"title":"Shipping Address", | |
"notes":"Used to gather shipping address information (if shipping is not billing)", | |
"template":"shipping_address.jade", | |
"fields":[ | |
{ | |
"name":"street1", | |
"label":"Street 1", | |
"type":"text", |
ion $ cd .. | |
ion $ rm -Rf my-test-project/ | |
ion $ mrt uninstall --system | |
Deleting ~/.meteorite. Note that previously installed projects will no longer work... | |
ion $ mrt create my-test-project | |
Fetching Meteor (branch: master)... | |
Downloading Meteor development bundle... | |
######################################################################## 100.0% | |
my-test-project: created. |
description "node.js bastion server - used for services that must attach to protected ports (e.g. 80)" | |
author "Wyndham Jade - http://www.wyndhamjade.com" | |
# used to be: start on startup | |
# until we found some mounts weren't ready yet while booting: | |
start on started mountall | |
stop on shutdown | |
# Automatically Respawn: | |
respawn |
description "node.js server" | |
author "Wyndham Jade - http://www.wyndhamjade.com" | |
# used to be: start on startup | |
# until we found some mounts weren't ready yet while booting: | |
start on started mountall | |
stop on shutdown | |
# Automatically Respawn: | |
respawn |
I hereby claim:
To claim this, I am signing this object:
// Send an event to a channel or timeout. The channel can be buffered or not. | |
func Send(event []byte) { | |
select { | |
case channel <- event: | |
// Channel receives the event if there is room (buffered) or if a reader is ready on the channel (unbuffered) | |
case <- time.After(5 * time.Second): | |
// Timed out - event is not sent if you do nothing here | |
// Alternatively you can do something else with the event here | |
} | |
} |