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
| [~] go env 22:19:41 | |
| GOARCH="amd64" | |
| GOBIN="" | |
| GOCHAR="6" | |
| GOEXE="" | |
| GOHOSTARCH="amd64" | |
| GOHOSTOS="darwin" | |
| GOOS="darwin" | |
| GOPATH="/Users/grapswiz/Documents/go-workspace" | |
| GORACE="" |
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
| # boxen | |
| [ -f /opt/boxen/env.sh ] && source /opt/boxen/env.sh | |
| # appengine | |
| export PATH=$HOME/appengine-java-sdk-1.8.7/bin:$PATH | |
| # nodebrew | |
| export PATH=$HOME/.nodebrew/current/bin:$PATH | |
| # project settings |
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
| export GOROOT=/usr/local/Cellar/go/1.1.1 | |
| export GOPATH=$HOME/Dropbox/holy-light | |
| export GOBIN=$GOROOT/bin | |
| export PATH=$PATH:$GOBIN:$GOPATH/src |
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
| application: goxembourg | |
| version: 1 | |
| runtime: go | |
| api_version: go1 | |
| handlers: | |
| - url: /v1.* | |
| script: _go_app |
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
| application: gotwiggle | |
| version: 1 | |
| runtime: go | |
| api_version: go1 | |
| handlers: | |
| - url: /.* | |
| script: _go_app |
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
| application: gogogrid | |
| version: 1 | |
| runtime: go | |
| api_version: go1 | |
| handlers: | |
| - url: /.* | |
| script: _go_app |
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 functionA (b) { | |
| var functionB = function (a) { | |
| console.log('a and b function'); | |
| }; | |
| return functionB; | |
| } |
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
| render: => | |
| template = doT.template($("#content").html()) | |
| text = template( | |
| foo: 'bar' | |
| hee: 'bur' | |
| ) | |
| @html text |
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
| <div class="row-fluid"> | |
| <div class="span4"> | |
| <h2>Span4</h2> | |
| <p>I am a pen. I am a pen. I am a pen. I am a pen. I am a pen. I am a pen. I am a pen. I am a pen. I am a pen. I am a pen. I am a pen. </p> | |
| </div> | |
| <div class="span8"> | |
| <h2>Span8</h2> | |
| <p>sssssssssssssssssssssssssssss</p> |
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
| <div class="navbar navbar-fixed-top"> | |
| <div class="navbar-inner"> | |
| <div class="container-fluid"> | |
| <a class="brand" href="#">yama</a> | |
| <ul class="nav"> | |
| <li><a href="#">こ</a></li> | |
| </ul> | |
| <ul class="nav pull-right"> | |
| <li class="dropdown"> | |
| <a class="dropdown-toggle" data-toggle="dropdown" href="#">アイコン</a> |