start new with session name:
tmux new -s myname
attach:
tmux attach-session -t myname
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<head> | |
<style> | |
body{margin:0px;} | |
.axis path, | |
.axis line { | |
fill: none; | |
stroke: black; |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<head><style> | |
body{margin:0px;} | |
.axis path, | |
.axis line { | |
fill: none; | |
stroke: black; | |
shape-rendering: crispEdges; | |
} |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<head><style> | |
body{margin:0px;} | |
.axis path, | |
.axis line { | |
fill: none; | |
stroke: black; | |
shape-rendering: crispEdges; | |
} |
Colors | X | Y | Quantity | |
---|---|---|---|---|
#9467bd | 1 | 8 | 91 | |
#1f77b4 | 9 | 1 | 32 | |
#1f77b4 | 3 | 1 | 67 | |
#bcbd22 | 5 | 5 | 63 | |
#9467bd | 6 | 6 | 57 | |
#2ca02c | 5 | 10 | 65 | |
#d62728 | 8 | 2 | 36 | |
#9467bd | 2 | 8 | 82 | |
#bcbd22 | 4 | 7 | 69 |
if ('serviceWorker' in navigator) { | |
navigator.serviceWorker.register('./sw.js') | |
.then(function(reg) { | |
if(reg.installing) { | |
console.log('Service worker installing on registration.'); | |
} else if(reg.waiting) { | |
console.log('Service worker installed on registration.'); | |
} else if(reg.active) { | |
console.log('Service worker already active on registration.'); |
const EventEmitter = require('events').EventEmitter | |
const fs = require('fs') | |
const findPattern = (files, regex) => { | |
const emitter = new EventEmitter() | |
files.forEach(file => { | |
fs.readFile(file, 'utf8', (err, content) => { | |
if (err) return emitter.emit('error', err) |
module.exports = { | |
"files": ["*html","*js","*css"], | |
"server": true, | |
"port": 3000, | |
"https": true, | |
"routes": { | |
"/foo": "foo" | |
} | |
}; |
<!DOCTYPE html> | |
<html> | |
<body> | |
<script src="devtools.js"></script> | |
</body> | |
</html> |
package com.keighty; | |
import java.lang.annotation.Documented; | |
@Documented | |
@interface CustomAnnotation { | |
int id(); | |
String description(); | |
String author() default "[unknown]"; | |
} |