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
requirejs: { | |
amilia: { | |
options: { | |
baseUrl:'../app/', | |
name:'main', | |
mainConfigFile: "../app/config_amilia.js", | |
out: "../app/build/debug/require_amilia.js" | |
} | |
}, | |
oodili: { |
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
# Hello, Git. Let's make you better. | |
alias g="git" | |
# Sensible git defaults: | |
# ---------------------- | |
alias gadd="git add --verbose" # Make it print out the files added. | |
alias ggrep="git grep --color=always -I" # Colored; don't search binary files (-I). | |
alias gdiff="git diff --color --patch-with-stat" # Show stats of each commit; color. | |
alias glog="git log --color --graph --decorate --date=relative" # Color; short dates; have a small "graph" lines on the left. |
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
//reference Date.js | |
if (!Utilities) var Utilities = {}; | |
$.extend(Utilities, | |
{ | |
Birthdate : function(lg) { | |
var Month = { | |
en : ["January","February","March","April","May","June","July","August","September","October","November","December"], | |
fr : ["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"] | |
} |