Skip to content

Instantly share code, notes, and snippets.

@sk8terboi87
sk8terboi87 / index.html
Last active August 29, 2015 14:05
HTML5 Canvas
CANVAS
========
http://www.comp.nus.edu.sg/~stevenha/visualization/training.html
Introduction
HTML5
what is canvas?
why canvas?
<http://www.sitepoint.com/html5-canvas-tutorial-introduction/>
@sk8terboi87
sk8terboi87 / index.html
Last active May 11, 2022 06:37
JavaScript Web Worker Example: Fetching Random Content from Wikipedia using Web Workers. http://codelikeapoem.com/2017/03/web-workers-beginners-guide.html
<!DOCTYPE html>
<html>
<head>
<title>Polling Example</title>
<style type="text/css">
.title, .result {
display: inline-block;
padding: 10px;
background-color: #fffeee;
}
<!DOCTYPE html>
<html>
<head>
<title>Bad Parts</title>
<script src="shakespeare.js"></script>
<script src="wordsworth.js"></script>
<script type="text/javascript">
console.log(getPoem());
</script>
</head>