This file contains 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
/*global define, document, exports*/ | |
// a function to get DOM nodes by nodeType property. If you do not supply a | |
// value I will give you every DOM node. | |
// | |
// global examples: var allComments = document.getNodesByType(8); var | |
// allComments = document.getNodesByType("COMMENT_NODE"); | |
// | |
// or use locally: var a = document.getElementById("item"); | |
// item.getNodesByType(2); | |
// |
This file contains 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>I Love U :: | |
</title> | |
<link href="css/style.css" rel="stylesheet" type="text/css"/> | |
<!-- 페이지 --> | |
<style> | |
body { |
This file contains 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
<--- Last few GCs ---> | |
6804 ms: Mark-sweep 1379.8 (1424.2) -> 1160.4 (1204.8) MB, 276.4 / 0 ms [allocation failure] [GC in old space requested]. | |
7106 ms: Mark-sweep 1160.4 (1204.8) -> 1160.4 (1204.8) MB, 302.2 / 0 ms [allocation failure] [GC in old space requested]. | |
7403 ms: Mark-sweep 1160.4 (1204.8) -> 1160.4 (1204.8) MB, 297.3 / 0 ms [last resort gc]. | |
7690 ms: Mark-sweep 1160.4 (1204.8) -> 1160.4 (1204.8) MB, 286.5 / 0 ms [last resort gc]. | |
<--- JS stacktrace ---> |
This file contains 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
/*global ace, define, global, module*/ | |
/*jslint browser:true, for:true*/ | |
(function language_init() { | |
"use strict"; | |
var language = {}; | |
language.setlangmode = function language_setlangmode(input) { | |
var langmap = { | |
coldfusion: "markup", | |
csharp: "javascript", | |
css: "css", |
This file contains 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 expWebTest = (function () { | |
var test = function () { | |
/*var delay = function (testExpression, callback) { | |
if (testExpression === true) { | |
return setTimeout(function () { | |
console.log("test delay"); | |
delay(node, callback); | |
}, 100); | |
} | |
console.clear(); |
This file contains 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
# Atom Beautify - Debugging information | |
The following debugging information was generated by `Atom Beautify` on `Wed Jan 13 2016 06:30:08 GMT-0600 (CST)`. | |
--- | |
**Platform**: darwin | |
## Versions |
This file contains 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
{% extends 'todo_lists/base.html' %} | |
{% block header_text %}Your to-do list{% endblock %} | |
{% block form_action %}/lists/{{ list.id }}/add_todo_item{% endblock %} | |
{% block table %} | |
<table id="id_todo_list_table"> | |
{% for item in list.todoitem_set.all %} | |
{ # comment # } | |
{# comment #} |
This file contains 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 core = function core(api) { | |
if (cmode === "beautify") { | |
if (capi === "" && cjsscope !== "none" && clang === "javascript") { | |
builder.head = "a"; | |
builder.cssCore = "body{font-family:'Arial';font-size:10px;overflow-y:scroll;}#samples #dcolorScheme{position:relative;z-index:1000}#apireturn textarea{font-size:1.2em;height:50em;width:100%}button{border-radius:.9em;display:block;font-weight:bold;width:100%}div .button{text-align:center}div button{display:inline-block;font-weight:bold;margin:1em 0;padding:1em 2em}button:hover{cursor:pointer}#introduction{clear:both;margin:0 0 0 5.6em;position:relative;top:-2.75em}#introduction ul{clear:both;height:3em;margin:0 0 0 -5.5em;overflow:hidden;width:100em}#introduction li{clear:none;display:block;float:left;font-size:1.4em;margin:0 4.95em -1em 0}#introduction li li{font-size:1em;margin-left:2em}#introduction .information,#webtool #introduction h2{left:-90em;position:absolute;top:0;width:10em}#introduction h2 |
This file contains 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 asdf = function () { | |
if (typeof myTargetFunction === function) { | |
return awesome(); | |
} | |
setTimeout(asdf, 100); | |
}; |