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="example-numbers"> | |
| <input class="typeahead" type="text" placeholder="numbers (one through ten)"> | |
| </div> |
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
| let &t_ti = &t_ti . "\e[?6h\e[?69h" | |
| let &t_te = "\e[?69l\e[?6l" . &t_te | |
| let &t_CV = "\e[%i%p1%d;%p2%ds" | |
| let &t_CS = "y" |
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
| Handlebars.registerHelper ('truncate', function (str, len) { | |
| if (str.length > len) { | |
| var new_str = str.substr (0, len+1); | |
| while (new_str.length) { | |
| var ch = new_str.substr ( -1 ); | |
| new_str = new_str.substr ( 0, -1 ); | |
| if (ch == ' ') { | |
| break; |
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
| diff -r b89e2bdcc6e5 src/screen.c | |
| --- a/src/screen.c Sun Dec 16 12:50:40 2012 +0100 | |
| +++ b/src/screen.c Sat Jan 12 17:38:58 2013 +0900 | |
| @@ -8890,6 +8890,24 @@ | |
| */ | |
| clear_cmdline = TRUE; | |
| + char buf[256]; | |
| + if (del) { | |
| + sprintf(buf, |
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
| black = #073642 | |
| red = #dc322f | |
| green = #859900 | |
| yellow = #b58900 | |
| blue = #268bd2 | |
| magenta = #d33682 | |
| cyan = #2aa198 | |
| white = #eee8d5 | |
| hl_black = #002b36 | |
| hl_red = #cb4b16 |
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; | |
| padding: 30px; } | |
| body > *:first-child { |
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 download(blob, filename) { | |
| const objectURL = window.URL.createObjectURL(blob), | |
| a = document.createElement('a'), | |
| e = document.createEvent('MouseEvent'); | |
| //a要素のdownload属性にファイル名を設定 | |
| a.download = filename; | |
| a.href = objectURL; | |
| //clickイベントを着火 |
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
| #~/.mutt/aliases | |
| alias nick Nicholas Levandoski <nick.levandoski@auglug.org> | |
| alias tim Timothy Pitt <timothy.pitt@auglug.org> | |
| alias steven Steven Jackson <sjackson@auglug.org> | |
| alias kaleb Kaleb Hornsby <kaleb.hornsby@auglug.org> | |
| alias alug-admin nick, tim, steven |