- center stroke only
- check 0.5px
- fix rx value in rect and elipcise; real rx = (h/2 * rx) / 100
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() { | |
var showInfo = function(message) { | |
$('div.progress').hide(); | |
$('strong.message').text(message); | |
$('div.alert').show(); | |
}; | |
$('input[type="submit"]').on('click', function(evt) { | |
evt.preventDefault(); |
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
/* | |
format PostHTMLTree | |
@see https://dev.w3.org/html5/html-author/ | |
*/ | |
/* | |
declarations | |
@see https://dev.w3.org/html5/html-author/#doctype-declaration | |
<!DOCTYPE |
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
/* | |
format PostHTMLTree | |
@see https://dev.w3.org/html5/html-author/ | |
*/ | |
/* | |
declarations | |
@see https://dev.w3.org/html5/html-author/#doctype-declaration | |
<!DOCTYPE |
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 tree = [ | |
{ | |
val: 1, | |
next: [ | |
{val: 2, next: null}, | |
{val: 3, next: [{val: 4, next: null}]} | |
] | |
} | |
]; | |
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
#!/bin/bash | |
find . -type f \( -name '*.roo' -or -name '*.css' \) -not -path './desktop.bundles/*' -print -exec sh -c 'file={}; newfile="${file/%.roo/.styl}"; mv "$file" "$newfile";' \; | xargs find |