| import Foundation | |
| import Dispatch | |
| import NIO | |
| import NIOSSH | |
| public class SwiftNioSshWrapper { | |
| let host: String | |
| let port: Int | |
| let user: String | |
| let password: String |
| GOCMD=go | |
| GOTEST=$(GOCMD) test | |
| GOVET=$(GOCMD) vet | |
| BINARY_NAME=example | |
| VERSION?=0.0.0 | |
| SERVICE_PORT?=3000 | |
| DOCKER_REGISTRY?= #if set it should finished by / | |
| EXPORT_RESULT?=false # for CI please set EXPORT_RESULT to true | |
| GREEN := $(shell tput -Txterm setaf 2) |
We are looking for a friendly, motivated back-end PHP Developer to join our team of contractors. Must be available to work onsite - when necessary.
Desired Experience: PHP, MySQL, HTML, CSS, JavaScript, Git, Wordpress and WooCommerce.
Strong written and verbal skills to communicate with team members effectively a must!!
Desirable Skills:
| # IMPORTANT! | |
| # This gist has been transformed into a github repo | |
| # You can find the most recent version there: | |
| # https://github.com/Neo23x0/auditd | |
| # ___ ___ __ __ | |
| # / | __ ______/ (_) /_____/ / | |
| # / /| |/ / / / __ / / __/ __ / | |
| # / ___ / /_/ / /_/ / / /_/ /_/ / | |
| # /_/ |_\__,_/\__,_/_/\__/\__,_/ |
| #!/usr/bin/env node | |
| if (process.mainModule === module) setImmediate(() => main(process.argv).catch(e => console.log(e.stack) && process.exit(1))) | |
| async function main(argv) { | |
| console.log(argv.slice(2)) | |
| } |
| #!/usr/bin/env node | |
| console.log('yay gist') |
| # curl -s https://gist.githubusercontent.com/gcollazo/93853987c5e1fa362494315478cd0608/raw/01-run.sh | bash | |
| echo "" | |
| mkdir testnpmyanrnpm5 | |
| cd testnpmyanrnpm5 | |
| curl -s https://gist.githubusercontent.com/gcollazo/93853987c5e1fa362494315478cd0608/raw/npm-test.sh | bash | |
| curl -s https://gist.githubusercontent.com/gcollazo/93853987c5e1fa362494315478cd0608/raw/yarn-test.sh | bash | |
| cd .. |
| import express from 'express'; | |
| let App = express(), | |
| app_port = process.env.app_port || 11337, | |
| app_host = process.env.app_host || '127.0.0.1'; | |
| App.listen(app_port, () => { | |
| console.log(`Server app running on http://${app_host}:${app_port}`); | |
| }); | |