apt-get install libvirt-bin virtinst cloud-img-utils
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * api/models/User.js | |
| * | |
| * The user model contains the instance method for validating the password. | |
| */ | |
| var bcrypt = require('bcrypt'); | |
| function hashPassword(values, next) { | |
| bcrypt.hash(values.password, 10, function(err, hash) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| conf = { | |
| "sqs-access-key": "", | |
| "sqs-secret-key": "", | |
| "sqs-queue-name": "", | |
| "sqs-region": "us-east-1", | |
| "sqs-path": "sqssend" | |
| } | |
| import boto.sqs | |
| conn = boto.sqs.connect_to_region( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 127.0.0.1:9000; | |
| location / { | |
| proxy_pass http://unix:/var/run/docker.sock:/; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "Starting the Cluster on Docker Swarm" | |
| docker pull jayjohnson/rabbitclusternode | |
| docker network create -d overlay testoverlay | |
| swarmnodes="swarm1.internallevvel.com swarm2.internallevvel.com swarm3.internallevvel.com" | |
| for node in $swarmnodes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node_modules | |
| build | |
| npm-debug.log | |
| .env | |
| .DS_Store |
http://mojodna.net/2014/05/14/kvm-libvirt-and-ubuntu-14-04.html
- Get a qcow2 image from here: https://cloud-images.ubuntu.com/releases/16.04/release/
- Convert it with qemu-img
- Resize it (we'll add 50GB). This will be a "thin" resize.
Example: https://cloud-images.ubuntu.com/releases/16.04/release/ubuntu-16.04-server-cloudimg-amd64-disk1.img
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // array buffer to JSON | |
| const dataString JSON.stringify(Array.from(new Uint8Array(arrayBuffer))); | |
| // send around | |
| // JSON to ArrayBuffer | |
| new Uint8Array(JSON.parse(dataString)).buffer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "time" | |
| ) | |
| func main() { | |
| queue := NewQueue("amqp://guest:guest@localhost:5672/", "hello") |
OlderNewer