I hereby claim:
- I am pablosan on github.
- I am pablosan (https://keybase.io/pablosan) on keybase.
- I have a public key ASBdJ3HRRje3JtpRaK-hrhstSAYBMC8-_lvT5CBFuUY_BAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # Authorize TCP, SSH & ICMP for default Security Group | |
| #ec2-authorize default -P icmp -t -1:-1 -s 0.0.0.0/0 | |
| #ec2-authorize default -P tcp -p 22 -s 0.0.0.0/0 | |
| # The Static IP Address for this instance: | |
| IP_ADDRESS=$(cat ~/.ec2/ip_address) | |
| # Create new t1.micro instance using ami-cef405a7 (64 bit Ubuntu Server 10.10 Maverick Meerkat) |
| var sys = require('sys'); | |
| setTimeout(function () { | |
| sys.puts('nodeJS!'); | |
| }, 2000); | |
| sys.puts('Hello'); |
| var http = require('http'); | |
| http.createServer(function (request, response) { | |
| response.writeHead(200, {'Content-Type': 'text/plain'}); | |
| response.end('Hello NodeJS!'); | |
| }).listen(80); | |
| console.log('Server running on port 80'); |
| function resetForm() { | |
| document.getElementById("searchValue").disabled=true; | |
| document.getElementById("filterValue").disabled=true; | |
| document.someComplexForm.reset(); | |
| } |