git branch -a --sort=authordate --format="%(authordate:relative)%09%(refname)%09%(authorname)"
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 fish_prompt --description 'Write out the prompt' | |
| set -l last_status $status | |
| set -g fish_prompt_pwd_dir_length 0 | |
| set_color magenta | |
| echo -n (date '+%Y-%m-%d %H:%I:%S') | |
| echo -n ' ' | |
| # User | |
| set_color $fish_color_user |
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
| libsqlite3-dev |
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
| <%= Rouge::Themes::Github.render(:scope => '.highlight') %> | |
| .highlight { | |
| padding: 10px; | |
| } | |
| .highlight { | |
| line-height: 120%; | |
| pre, code { | |
| overflow-x: scroll; |
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
| <?php | |
| $holidays = array( | |
| '2016-01-01' => '元日', | |
| '2016-01-11' => '成人の日', | |
| '2016-02-11' => '建国記念の日', | |
| '2016-03-20' => '春分の日', | |
| '2016-03-21' => '振替休日', | |
| '2016-04-29' => '昭和の日', | |
| '2016-05-03' => '憲法記念日', |