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> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Mouse Movement</title> | |
<style> | |
body { | |
margin: 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
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Mar 26 2016 06:40:26) | |
MacOS X (unix) version | |
Included patches: 1-1655 | |
Compiled by [email protected] | |
Huge version with MacVim GUI. Features included (+) or not (-): | |
+acl +file_in_path +mouse_sgr +tag_old_static | |
+arabic +find_in_path -mouse_sysmouse -tag_any_white | |
+autocmd +float +mouse_urxvt -tcl | |
+balloon_eval +folding +mouse_xterm +terminfo | |
+browse -footer +multi_byte +termresponse |
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
times in msec | |
clock self+sourced self: sourced script | |
clock elapsed: other lines | |
000.014 000.014: --- VIM STARTING --- | |
000.078 000.064: Allocated generic buffers | |
000.328 000.250: locale set | |
000.341 000.013: GUI prepared |
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
OFF |
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
$ meteor | |
[[[[[ ~/dev/meteortest ]]]]] | |
Running on: http://localhost:3000/ | |
update collections | |
callback | |
after | |
callback | |
after | |
callback |
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 lineWidth = 80 - 'PASS'.length - 4 * 3; // 4 * 3 is for indenting 4 times | |
var suites = { | |
'test foo': require('./test/test_foo'), | |
'test bar': require('./test/test_bar'), | |
}; | |
var padding = function(length, pad) { | |
return (new Array(length + 1)).join(pad || ' '); | |
}; |
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
#!/bin/sh | |
# This shows how to handle combined short options along with | |
# other long and short options. It does so by splitting them | |
# apart (e.g. 'tar -xvzf ...' -> 'tar -x -v -z -f ...') | |
while test $# -gt 0 | |
do | |
case $1 in |
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
.highlight .c { color: #586E75 } /* Comment */ | |
.highlight .err { color: #93A1A1 } /* Error */ | |
.highlight .g { color: #93A1A1 } /* Generic */ | |
.highlight .k { color: #859900 } /* Keyword */ | |
.highlight .l { color: #93A1A1 } /* Literal */ | |
.highlight .n { color: #657b83 } /* Name */ | |
.highlight .o { color: #859900 } /* Operator */ | |
.highlight .x { color: #CB4B16 } /* Other */ | |
.highlight .p { color: #657b83 } /* Punctuation */ | |
.highlight .cm { color: #586E75 } /* Comment.Multiline */ |