- Horiz. movement
- w, b, e
- f, t
- 0, ^, $
- %
- Vert. movement
- g, GG
- %
- H, M, L
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 main | |
| import "fmt" | |
| // fibonacci is a function that returns | |
| // a function that returns an int. | |
| func fibonacci() func() int { | |
| f0, f1 := 0, 1 | |
| return func() int { | |
| f0, f1 = f1, f1+f0 |
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
| body { | |
| font-family: Helvetica, arial, sans-serif; | |
| font-size: 14px; | |
| line-height: 1.6; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| background-color: white; | |
| color: #737373; | |
| padding: 30px; } |
Very short description of the application.
Applicatoin is written in ruby language, using Ruby on Rails web framework.
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
| def p(b); `curl -s http://roulette.engineyard.com` =~ /13/ ? b * 35 : 0; end |