brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
| #!/bin/sh | |
| # HowTo | |
| # Put it at /usr/local/bin/armaggeDocker.sh | |
| # Give permissions: chmod a+x /usr/local/bin/armaggeDocker.sh | |
| # Delete containers | |
| docker stop $(docker ps -a -q) | |
| docker rm $(docker ps -a -q) |
| 'use strict'; | |
| (function() { | |
| class AdminController { | |
| constructor(User, Modal) { | |
| // Use the User $resource to fetch all users | |
| this.users = User.query(); | |
| // Our callback function is called if/when the delete modal is confirmed |
| #!/bin/sh | |
| set -e | |
| set -x | |
| for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f3) | |
| do | |
| npm -g install "$package" | |
| done |
| from boto.dynamodb2.exceptions import ValidationException | |
| from boto.dynamodb2.fields import HashKey, RangeKey | |
| from boto.dynamodb2.layer1 import DynamoDBConnection | |
| from boto.dynamodb2.table import Table | |
| from boto.exception import JSONResponseError | |
| from time import sleep | |
| import sys | |
| if len(sys.argv) != 3: | |
| print 'Usage: %s <source_table_name> <destination_table_name>' % sys.argv[0] |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
| var cluster = require('cluster'); | |
| if (cluster.isWorker) { | |
| console.log('Worker ' + process.pid + ' has started.'); | |
| // Send message to master process. | |
| process.send({msgFromWorker: 'This is from worker ' + process.pid + '.'}) | |
| // Receive messages from the master process. |
| ############################################################################### | |
| ## Monit control file | |
| ############################################################################### | |
| ## | |
| ## Comments begin with a '#' and extend through the end of the line. Keywords | |
| ## are case insensitive. All path's MUST BE FULLY QUALIFIED, starting with '/'. | |
| ## | |
| ## Below you will find examples of some frequently used statements. For | |
| ## information about the control file, a complete list of statements and | |
| ## options please have a look in the monit manual. |