View ace-custom-autocomplete-test.html
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>Ace custom autocomplete test</title> | |
<script src="https://ajaxorg.github.io/ace-builds/src-min-noconflict/ace.js"></script> | |
<script src="https://ajaxorg.github.io/ace-builds/src-min-noconflict/ext-language_tools.js"></script> | |
<style> | |
body { | |
overflow: hidden; |
View gist:2699f579b09e411147467bf455d610b7
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
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Tutorial | |
Comment=Tutorial on getting started with Plasma 5 plasmoids. | |
Type=Service | |
X-Plasma-API=declarativeappletscript | |
X-Plasma-MainScript=ui/main.qml | |
X-KDE-ServiceTypes=Plasma/Applet |
View gist:7c694784fb26a76d6f0768fd827a5027
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
function EventSource (url) | |
{ | |
this.url = url; | |
this.offset = 0; | |
this.prefix = "data: "; | |
this._resetWorkaround(); | |
} | |
EventSource.prototype._resetWorkaround = function () { | |
if (this.ajax) { |
View html-ce-dir-tree.html
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
<html> | |
<head> | |
<title>experiment: html custom element directory tree</title> | |
<meta charset="utf-8"/> | |
<style> | |
body { | |
font-family: monospace; | |
font-size: 11pt; | |
} | |
foo-dir { |
View gist:bc2b3205051d526820dc918b119c5434
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 lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>vue.js tree-list form component experiment 2</title> | |
<script src="vue.js"></script> | |
</head> | |
<body> | |
<div style="display:flex"> |
View vuejs-tree-list.html
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 lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>vue.js tree-list form component experiment</title> | |
<script src="vue.js"></script> | |
</head> | |
<body> | |
<h2>vue.js tree-list form component experiment</h2> |