Skip to content

Instantly share code, notes, and snippets.

View simon-o-matic's full-sized avatar
💭
CODING LIKE A BOSS

Simon Raik-Allen simon-o-matic

💭
CODING LIKE A BOSS
View GitHub Profile
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<title>Hello React</title>
<script src="lib/react.js"></script>
<script src="lib/JSXTransformer.js"></script>
<script src="lib/jquery-1.11.3.min.js"></script>
</head>
<body>
@simon-o-matic
simon-o-matic / nextTick.js
Created May 27, 2012 06:13 — forked from mmalecki/nextTick.js
process.nextTick vs setTimeout(fn, 0)
for (var i = 0; i < 1024 * 1024; i++) {
process.nextTick(function () { Math.sqrt(i) } )
}