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
{ | |
"profile":{ | |
"name":"Sebastián Scarano", | |
"title":"Full Stack Developer", | |
"img":"assets/images/profile.jpg", | |
"email":"[email protected]", | |
"cell":"+54 9 11 3152 2631", | |
"social":[ | |
{"icon":"fa-twitter","url":"//twitter.com/opensas"}, | |
{ |
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
package formatters.json | |
import play.api.libs.json.Json.toJson | |
import play.api.libs.json.JsValue | |
import play.api.libs.json.Format | |
import java.util.Date | |
import java.text.SimpleDateFormat | |
object DateFormatter { |
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
#!/bin/sh | |
exec scala -savecompiled "$0" "$@" | |
!# | |
import java.io._ | |
val docs = new File(".").listFiles | |
.filter(_.getName.endsWith(".textile")) // process only textile files | |
.map(new DocumentationFile(_)) |
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
# by default, when db=fs is specified | |
# play stores the h2 database file at db/h2/play | |
# with this setting you can | |
# specify another location for the h2 file database | |
db.driver=org.h2.Driver | |
db.url=jdbc:h2:file:data/play;MODE=MYSQL | |
db.user=sa | |
db.pass= |
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
# Extracted from https://github.com/ulrich/macaron-factory/blob/master/.gitignore | |
# Ignore all dotfiles... | |
.* | |
# except for .gitignore | |
!.gitignore | |
# Ignore Play! working directory # | |
db | |
eclipse | |
log |