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
(function(window, document, $) { | |
var FANCYBOX_OVERLAY = ".fancybox-overlay"; | |
$(document).ready(function () { | |
var paceLoading = { | |
hideLoading: function() { | |
Pace.stop(); | |
$(FANCYBOX_OVERLAY).show(); | |
}, |
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
package model | |
import model.traits.BaseTable | |
import model.traits.SecureTable | |
import play.api.libs.Crypto | |
import scala.slick.driver.PostgresDriver.simple._ | |
case class LoveLetter(id: Long, fromId: Long, toId: Long, content: SecureString) |
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
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="robbyrussell" | |
# Example aliases |
NewerOlder