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
public sealed class Mapper | |
{ | |
public delegate void Rule<F, T>(F from, T to) | |
where F : class | |
where T : class; | |
public static T Map<F, T>(F primary, params Rule<F, T>[] rules) | |
where F : class | |
where T : class | |
{ |
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
public string digits() | |
{ | |
var bytes = new byte[4]; | |
var rng = RandomNumberGenerator.Create(); | |
rng.GetBytes(bytes); | |
uint random = BitConverter.ToUInt32(bytes, 0) % 100000000; | |
return String.Format("{0:D8}", random); | |
} |
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
/** | |
* Created with JetBrains WebStorm. | |
* User: ynonperek | |
* Date: 1/28/13 | |
* Time: 9:14 PM | |
* | |
* Mongoose plugin that adds a hashed password field | |
*/ | |
var bcrypt = require('bcrypt'); |
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
// lastMod.js | |
module.exports = exports = function lastModifiedPlugin (schema, options) { | |
schema.add({ lastMod: Date }) | |
schema.pre('save', function (next) { | |
this.lastMod = new Date | |
next() | |
}) | |
if (options && options.index) { |
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
// trying to confuse my mind (and i think i made it jeje!) | |
(function(moom){ | |
moom('moom'); | |
moom.moomoom = function(moom){ | |
return moom(moom); | |
}; | |
moom.moomoom(function(moom){ | |
moom(function(){ | |
console.log('moom'); |
NewerOlder