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
<snippet> | |
<content><![CDATA[ | |
<div class="${1:classname}"> | |
$2 | |
</div><!--/.$1 --> | |
]]></content> | |
<description>div class=""</description> | |
<tabTrigger>divc</tabTrigger> | |
<scope>text.html</scope> | |
</snippet> |
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 exposeMod(moduleName){ | |
var reqObject = require(moduleName); | |
if (moduleName.indexOf('/') ) { | |
moduleNameArray = moduleName.split('/'); | |
window[moduleNameArray[moduleNameArray.length-1]] = reqObject; | |
} | |
else { | |
window[moduleName] = reqObject; | |
} |
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
<snippet> | |
<content><![CDATA[ | |
var self = this; | |
]]></content> | |
<description>var self = this;</description> | |
<tabTrigger>selfthis</tabTrigger> | |
<scope>source.js</scope> | |
</snippet> |
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
INFO:werkzeug:10.0.2.2 - - [17/Aug/2013 00:00:46] "GET /static/lib/mustache.js HTTP/1.1" 200 - | |
---------------------------------------- | |
Exception happened during processing of request from ('10.0.2.2', 56038) | |
Traceback (most recent call last): | |
File "/usr/local/lib/python2.7/SocketServer.py", line 284, in _handle_request_noblock | |
self.process_request(request, client_address) | |
File "/usr/local/lib/python2.7/SocketServer.py", line 310, in process_request | |
self.finish_request(request, client_address) | |
File "/usr/local/lib/python2.7/SocketServer.py", line 323, in finish_request | |
self.RequestHandlerClass(request, client_address, self) |
OlderNewer