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
/* | |
JavaScript Caesar shift | |
by Evan Hahn (evanhahn.com) | |
* * * * * * * * * * * * | |
For small occasions (like month-anniversaries), I like to make little websites | |
for people that only "unlock" on the right day. |
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
'use strict'; | |
var Schema = { | |
name: { | |
type: String | |
}, | |
lastname: { | |
type: String | |
}, | |
avatar: { |