Javascript cloth simulation.
Forked from dissimulate's Pen Tearable Cloth.
A Pen by EdwardBeckett on CodePen.
////////////////////////////////////////////////////////////// | |
// Font Variables (http://cssfontstack.com/) | |
////////////////////////////////////////////////////////////// | |
// | |
// Serif font-stacks | |
// | |
$baskerville-font-stack: "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif !default; |
Tomcat 8 on Java 8 Behind Apache on CentOS |
Javascript cloth simulation.
Forked from dissimulate's Pen Tearable Cloth.
A Pen by EdwardBeckett on CodePen.
// Colors | |
$brand-primary: #036; | |
$accent-color: rgba(193,213,229, 1.0); | |
$light-white: #FAFAFA; | |
$white-smoke: #F5F5F5; | |
$text-color: rgb(66, 100, 127); | |
$link-color: rgb(93, 123, 147); | |
$link-hover-color: darken( $link-color, 15%); | |
$light-border-color: lighten( $accent-color, 10%); |
import static java.util.Objects.*; | |
/** | |
* @author Edward Beckett :: <[email protected]> | |
* @since :: 7/31/2015 | |
*/ | |
public class IsNullTest { | |
private static Object one; // implicitly null |
<script> | |
function InvalidArgumentException( message){ | |
this.message = message; | |
if("captureStackTrace" in Error) { | |
Error.captureStackTrace( this, InvalidArgumentException ); | |
} else { | |
this.stack = (new Error()).stack; | |
} | |
} |
<script> | |
function removeNull( obj ) { | |
return obj.replace( /\\u0{1,5}/gi, '' ); | |
} | |
var obj = { | |
nul : "\0char", | |
sucks : "\u0000bad", | |
needs : "\0fix", | |
real : "\u0000 soon\0", |
D.3 Parameter and Variable Index | |
Index Entry Section | |
! | |
!: Special Parameters | |
# | |
#: Special Parameters | |
$ | |
$: Special Parameters | |
$!: Special Parameters |
export OPENSSL_CONF=/c/apache/conf/openssl.cnf | |
export DAYS=365 | |
export RSA=2048 | |
export DOMAIN=www.example.com | |
/c/apache/bin/openssl req -x509 -nodes -sha256 -days $DAYS -newkey rsa:$RSA -keyout $DOMAIN.key -out $DOMAIN.crt |
This example expects to have d3.min.js and d3.layout.min.js in the same directory as pie.js and pie_serv.js. | |
Run with node pie_serv.js |