I hereby claim:
- I am tripodsan on github.
- I am tripod (https://keybase.io/tripod) on keybase.
- I have a public key ASDN0ppKP23oRpXKyB2rZVJU6iJmxrBsukPYGjXg26Bdqgo
To claim this, I am signing this object:
| #!/bin/bash | |
| if [ $# -eq 0 ]; then | |
| echo "usage: wp <namespace>" | |
| exit 1 | |
| fi | |
| ln -sf ~/.wskprops_$1 ~/.wskprops | |
| wsk namespace list |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <style> | |
| .test { | |
| border: 1px solid black; | |
| resize: both; | |
| overflow: auto; | |
| width: 200px; |
I hereby claim:
To claim this, I am signing this object:
| console.log('init.js started'); | |
| var http = require('http'); | |
| http.get("http://127.0.0.1:8080/index.html", function(res) { | |
| console.log("Got response: " + res.statusCode); | |
| }).on('error', function(e) { | |
| console.log("Got error: " + e.message); | |
| }); |