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> | |
<title>Rich text editor demo</title> | |
<script src="./rich.js" defer></script> | |
<style> | |
#editor[contentEditable=true] { | |
padding: 0.5em; | |
margin: 1em; | |
} |
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
class Component extends HTMLElement { | |
constructor () { | |
super(); | |
this.addEventListener('click', this.changeBackground.bind(this)); | |
this.addEventListener('transitionend', this.revertBackground.bind(this)); | |
} | |
static get observedAttributes () { | |
return ['text']; | |
} |
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 () { | |
'use strict'; | |
window.dnd = window.dnd || {}; | |
function Move (container, options, node, e) { | |
this.container = container; | |
this.options = options; | |
this.node = node; |
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
# commands from http://www.askapache.com/linux/bash_profile-functions-advanced-shell.html | |
#alias chmod='command chmod -c' | |
alias cpr='command cp -rpv' | |
alias df='command df -kh' | |
alias df1='command df -ia' | |
alias diff='diff -up' | |
alias dsiz='du -sk * | sort -n --' | |
alias du='command du -kh' | |
alias du1='echo *|tr " " "n" |xargs -iFF command du -hs FF|sort' |
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
background: linear-gradient(45deg, #222 12%, transparent 0, transparent 88%, #222 0), | |
linear-gradient(135deg, transparent 37%, #111 0, #444 32%, #111 63%, transparent 0), | |
linear-gradient(45deg, transparent 37%, #222 0, #222 63%, transparent 0) #000; | |
background-size: 15px 15px; |
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 TWO_PI = 2 * Math.PI; | |
function tmpl (template, dict) { | |
return template.replace(/\$\{([^\}]*)\}/g, function (_, name) { | |
return dict[name]; | |
}); | |
} | |
function makeSegment (args, options) { | |
// args is {startAngle, angle, index, className} |
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>Multi-page print test</title> | |
<!-- | |
Print to PDF, landscape, letter size, no margins, enable background graphics. | |
Tested on Chrome. | |
--> | |
<style> |
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
Verifying that +elazutkin is my blockchain ID. https://onename.com/elazutkin |
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
user www-data; | |
http { | |
## | |
# Basic Settings | |
## | |
sendfile on; | |
tcp_nopush on; |
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
* + table { | |
border-style:solid; | |
border-width:1px; | |
border-color:#e7e3e7; | |
} | |
* + table th, * + table td { | |
border-style:dashed; | |
border-width:1px; | |
border-color:#e7e3e7; |