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
| <p>test</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
| int main() { | |
| } |
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
| <!DOCTYPE html> | |
| <!-- This is the shortest Image Uploader ever :) | |
| And you can even make it shorter if you don't | |
| want all the drag'n drop thing. --> | |
| <!-- | |
| AUTHOR: @paulrouget <paul@mozilla.com> | |
| LICENSE: |
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
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <title>HTML5 today and tomorrow</title> | |
| <section id="intro"> | |
| <h1>HTML5 & Friends</h1> | |
| <h2>Today and tomorrow</h2> | |
| <footer>by <a href="http://twitter.com/paulrouget">@paulrouget</a></footer> | |
| </section> |
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
| html { | |
| background-color: -moz-dialog; | |
| } | |
| body { | |
| margin: 0; | |
| overflow: auto; | |
| font-family: Lucida Grande, sans-serif; | |
| font-size: 11px; | |
| border-top: 1px solid #BBB9BA; |
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
| set -g default-terminal "screen-256color" | |
| set -g status-utf8 on | |
| bind M source-file ~/.tmux/mac.session | |
| bind L source-file ~/.tmux/linux.session | |
| # set -g terminal-overrides 'xterm*:smcup@:rmcup@' | |
| # THEME | |
| set -g status-bg black |
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
| var rows = document.querySelectorAll("#report > tbody > tr:not(#report-header)") | |
| var bugs = {}; | |
| var currentBug = null; | |
| var currentDate = null; | |
| for (var i = 0; i < rows.length; i++) { | |
| var row = rows[i]; | |
| // new bug? |
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 f = this.iframe; | |
| this.iframe.addEventListener("load", function() { | |
| dump("XXX " + f.contentDocument + "\n"); // Will dump "undefined" - but later, this property is available. Why? | |
| }, true); |
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
| """ FocusMode | |
| function! ToggleFocusMode() | |
| if (&foldcolumn != 12) | |
| set laststatus=0 | |
| set numberwidth=10 | |
| set foldcolumn=12 | |
| set noruler | |
| hi FoldColumn ctermbg=none | |
| hi LineNr ctermfg=0 ctermbg=none | |
| hi NonText ctermfg=0 |
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
| <canvas contextmenu="fullscreenmenu"></canvas> | |
| <!-- can be a div if you prefer --> | |
| <menu id="fullscreenmenu" type="context"> | |
| <menuitem label="fullscreen" | |
| onclick="document.querySelector('canvas').requestFullScreen()"> | |
| </menuitem> | |
| </menu> | |
| <script> |
OlderNewer