Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.191.135.50
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
libjs-codemirror /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
activeline.html
3.26
KB
-rw-r--r--
2022-01-28 11:40
anywordhint.html
2.87
KB
-rw-r--r--
2022-01-28 11:40
bidi.html
4.88
KB
-rw-r--r--
2022-01-28 11:40
btree.html
2.94
KB
-rw-r--r--
2022-01-28 11:40
buffers.html
3.59
KB
-rw-r--r--
2022-01-28 11:40
changemode.html
1.78
KB
-rw-r--r--
2022-01-28 11:40
closebrackets.html
1.72
KB
-rw-r--r--
2022-01-28 11:40
closetag.html
1.58
KB
-rw-r--r--
2022-01-28 11:40
complete.html
4.4
KB
-rw-r--r--
2022-01-28 11:40
emacs.html
2.76
KB
-rw-r--r--
2022-01-28 11:40
folding.html
6.12
KB
-rw-r--r--
2022-01-28 11:40
fullscreen.html
3.53
KB
-rw-r--r--
2022-01-28 11:40
hardwrap.html
2.62
KB
-rw-r--r--
2022-01-28 11:40
html5complete.html
1.99
KB
-rw-r--r--
2022-01-28 11:40
indentwrap.html
2.62
KB
-rw-r--r--
2022-01-28 11:40
loadmode.html
2.31
KB
-rw-r--r--
2022-01-28 11:40
marker.html
1.53
KB
-rw-r--r--
2022-01-28 11:40
markselection.html
1.94
KB
-rw-r--r--
2022-01-28 11:40
matchhighlighter.html
4.89
KB
-rw-r--r--
2022-01-28 11:40
matchtags.html
1.48
KB
-rw-r--r--
2022-01-28 11:40
multiplex.html
2.25
KB
-rw-r--r--
2022-01-28 11:40
mustache.html
2.18
KB
-rw-r--r--
2022-01-28 11:40
panel.html
3.57
KB
-rw-r--r--
2022-01-28 11:40
placeholder.html
1.55
KB
-rw-r--r--
2022-01-28 11:40
preview.html
2.54
KB
-rw-r--r--
2022-01-28 11:40
requirejs.html
2.27
KB
-rw-r--r--
2022-01-28 11:40
resize.html
1.4
KB
-rw-r--r--
2022-01-28 11:40
rulers.html
1.45
KB
-rw-r--r--
2022-01-28 11:40
runmode-standalone.html
2.3
KB
-rw-r--r--
2022-01-28 11:40
runmode.html
2.36
KB
-rw-r--r--
2022-01-28 11:40
search.html
4.89
KB
-rw-r--r--
2022-01-28 11:40
simplemode.html
8.14
KB
-rw-r--r--
2022-01-28 11:40
simplescrollbars.html
5.1
KB
-rw-r--r--
2022-01-28 11:40
spanaffectswrapping_shim.html
3
KB
-rw-r--r--
2022-01-28 11:40
sublime.html
3.23
KB
-rw-r--r--
2022-01-28 11:40
theme.html
7.5
KB
-rw-r--r--
2022-01-28 11:40
trailingspace.html
1.61
KB
-rw-r--r--
2022-01-28 11:40
variableheight.html
2.12
KB
-rw-r--r--
2022-01-28 11:40
vim.html
4.32
KB
-rw-r--r--
2022-01-28 11:40
visibletabs.html
1.89
KB
-rw-r--r--
2022-01-28 11:40
xmlcomplete.html
3.78
KB
-rw-r--r--
2022-01-28 11:40
Save
Rename
<!doctype html> <title>CodeMirror: B-Tree visualization</title> <meta charset="utf-8"/> <link rel=stylesheet href="../html/docs.css"> <link rel="stylesheet" href="/usr/share/javascript/codemirror/lib/codemirror.css"> <script src="/usr/share/javascript/codemirror/lib/codemirror.js"></script> <style> .lineblock { display: inline-block; margin: 1px; height: 5px; } .CodeMirror {border: 1px solid #aaa; height: 400px} </style> <div id=nav> <a href="https://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../html/logo.png"></a> <ul> <li><a href="../index.html">Home</a> <li><a href="../html/manual.html">Manual</a> <li><a href="https://github.com/codemirror/codemirror">Code</a> </ul> <ul> <li><a class=active href="#">B-Tree visualization</a> </ul> </div> <article> <h2>B-Tree visualization</h2> <form><textarea id="code" name="code">type here, see a summary of the document b-tree below</textarea></form> <div style="display: inline-block; height: 402px; overflow-y: auto" id="output"></div> <script id="me"> var editor = CodeMirror.fromTextArea(document.getElementById("code"), { lineNumbers: true, lineWrapping: true }); var updateTimeout; editor.on("change", function(cm) { clearTimeout(updateTimeout); updateTimeout = setTimeout(updateVisual, 200); }); updateVisual(); function updateVisual() { var out = document.getElementById("output"); out.innerHTML = ""; function drawTree(out, node) { if (node.lines) { out.appendChild(document.createElement("div")).innerHTML = "<b>leaf</b>: " + node.lines.length + " lines, " + Math.round(node.height) + " px"; var lines = out.appendChild(document.createElement("div")); lines.style.lineHeight = "6px"; lines.style.marginLeft = "10px"; for (var i = 0; i < node.lines.length; ++i) { var line = node.lines[i], lineElt = lines.appendChild(document.createElement("div")); lineElt.className = "lineblock"; var gray = Math.min(line.text.length * 3, 230), col = gray.toString(16); if (col.length == 1) col = "0" + col; lineElt.style.background = "#" + col + col + col; lineElt.style.width = Math.max(Math.round(line.height / 3), 1) + "px"; } } else { out.appendChild(document.createElement("div")).innerHTML = "<b>node</b>: " + node.size + " lines, " + Math.round(node.height) + " px"; var sub = out.appendChild(document.createElement("div")); sub.style.paddingLeft = "20px"; for (var i = 0; i < node.children.length; ++i) drawTree(sub, node.children[i]); } } drawTree(out, editor.getDoc()); } function fillEditor() { var sc = document.getElementById("me"); var doc = (sc.textContent || sc.innerText || sc.innerHTML).replace(/^\s*/, "") + "\n"; doc += doc; doc += doc; doc += doc; doc += doc; doc += doc; doc += doc; editor.setValue(doc); } </script> <p><button onclick="fillEditor()">Add a lot of content</button></p> </article>