brew install mongodb
Set up launchctl to auto start mongod
$ ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
/usr/local/opt/mongodb/ is a symlink to /usr/local/Cellar/mongodb/x.y.z (e.g., 2.4.9)
| find . -iname "*.js" -exec bash -c 'mv "$0" "${0%\.js}.ts"' {} \; |
| git filter-branch -f --index-filter "git rm -rf --cached --ignore-unmatch FOLDERNAME" -- --all | |
| rm -rf .git/refs/original/ | |
| git reflog expire --expire=now --all | |
| git gc --prune=now | |
| git gc --aggressive --prune=now | |
| git push --all --force |
| Here is one thing you can do. | |
| Copy the image you want to multiply. (CtrlA and CtrlC) | |
| Make a new 'Black' color layer and click 'add mask'. | |
| alt-click the Mask icon, so that you can enter to mask edit mode. | |
| Paste your 'multiply' images in the mask (b/w) , and then invert it. | |
| You will have a black layer with your multiply material masked. | |
| You can adjust opacity of that layer to find best looking image. (30~40%?) | |
| If you save it as transparent PNG file, you are done. |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 | |
| (http://www.wtfpl.net/about/) | |
| Copyright (C) 2015 Mario Mendes (@hyprstack) | |
| Copyright (C) 2015 Ivan Fraixedes (https://ivan.fraixed.es) | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. |
| var mongoose = require('mongoose'); | |
| mongoose.Model.seed = function(entities) { | |
| var promise = new mongoose.Promise; | |
| this.create(entities, function(err) { | |
| if(err) { promise.reject(err); } | |
| else { promise.resolve(); } | |
| }); | |
| return promise; | |
| }; |
| var mongoose = require('./db-connect'), | |
| Schema = mongoose.Schema, | |
| ObjectId = Schema.ObjectId, | |
| uuid = require('node-uuid'), | |
| Validator = require('validator').Validator, | |
| val = new Validator(), | |
| bcrypt = require('bcrypt'); | |
| Validator.prototype.error = function(msg) { return false; }; |
| /** | |
| * An AngularJS directive for Dropzone.js, http://www.dropzonejs.com/ | |
| * | |
| * Usage: | |
| * | |
| * <div ng-app="app" ng-controller="SomeCtrl"> | |
| * <button dropzone="dropzoneConfig"> | |
| * Drag and drop files here or click to upload | |
| * </button> | |
| * </div> |