This file contains 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
<?php | |
/** | |
* MIME types. | |
* | |
* This file contains most commonly used MIME types | |
* according to file extension names. | |
* | |
* @author Qiang Xue <[email protected]> | |
* @link http://www.yiiframework.com/ | |
* @copyright 2008-2013 Yii Software LLC |
This file contains 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
module.exports.connections = { | |
yourDB: { | |
host: 'mongodb02.prod.whatever.com', | |
port: 27017, | |
database: 'somedb', | |
schema : true, | |
replSet: { | |
servers: [ | |
{ | |
host: 'mongodb01.prod.whatever.com' |
This file contains 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
Verifying that +luislobo is my openname (Bitcoin username). https://onename.com/luislobo |
This file contains 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
git checkout <feature-branch> | |
git pull | |
git checkout <release-branch> | |
git pull | |
git merge --no-ff <feature-branch> | |
git push | |
git tag -a branch-<feature-branch> -m "Merge <feature-branch> into <release-branch>" | |
git push --tags | |
git branch -d <feature-branch> | |
git push origin :<feature-branch> |
This file contains 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
// Require the default sails singleton (this is the same Sails instance you use globally in your app) | |
var sails = require('sails'); | |
// setup | |
before(function(done) { | |
sails.lift({ | |
// You can customize the port if you want (or use sails.load instead if you are testing using the VRI/sails.request() or just need access to the ORM, etc.) | |
// port: 4000, |
This file contains 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
grep version `find -iname lodash -type d -exec find {} -iname package.json \;` |
This file contains 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
# Ask for the user password | |
# Script only works if sudo caches the password for a few minutes | |
sudo true | |
# Install kernel extra's to enable docker aufs support | |
# sudo apt-get -y install linux-image-extra-$(uname -r) | |
# Add Docker PPA and install latest version | |
# sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 | |
# sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list" |
This file contains 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
class A { | |
constructor(name){ | |
this.name = name; | |
} | |
static create(name){ | |
return new this(name); | |
} |
This file contains 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
const stream = require('stream'); | |
const request = require('request'); | |
const AWS = require('aws-sdk'); | |
const s3 = new AWS.S3(); | |
const BUCKET = 'mybucket'; | |
const KEY = 'luis/yourvideo.mp4'; | |
request.get('https://yoursite/yourvideo.mp4') | |
.pipe(uploadFromStream()) |
OlderNewer