I hereby claim:
- I am knpwrs on github.
- I am knpwrs (https://keybase.io/knpwrs) on keybase.
- I have a public key ASDVcUXtlPO_iG4YeU0jQ52dGB6K8kuHUFXBKudi53cVzAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env sh | |
| # From http://redd.it/3cszgd | |
| if [ $EUID != 0 ]; then | |
| echo "It's a weird tree." | |
| else | |
| echo ' _ __' | |
| echo ' / `\ (~._ ./ )' | |
| echo ' \__/ __`-_\__/ ./' | |
| echo ' _ \ \/ \ \ |_ __' |
| ((name, global, definition) -> | |
| if module? | |
| module.exports = definition() | |
| else if define? and typeof define.amd is 'object' | |
| define definition | |
| # alternatively define name definition | |
| else | |
| global[name] = definition() | |
| )('name', @, -> | |
| # return module definition here |
| # Dependencies | |
| fs = require 'fs' | |
| https = require 'https' | |
| http = require 'http' | |
| # Variables | |
| SECURE_PORT = 8443 | |
| INSECURE_PORT = 8080 | |
| HOST = 'localhost' | |
| MESSAGE = 'Hello, Secure World!' |