Skip to content

Instantly share code, notes, and snippets.

View rjack's full-sized avatar

Giacomo Ritucci rjack

View GitHub Profile
@rjack
rjack / index.html
Created October 1, 2010 23:24
Unstoppable Web Worker
<!DOCTYPE>
<html>
<head></head>
<body>
<p>Start the worker from the browser console (fire up a CPU monitor to
have some sort of visual feedback)</p>
<pre>worker.postMessage("run")</pre>
<p>you will NOT be able to stop it with</p>
<pre>worker.postMessage("stop")</pre>
<p>What I'd expected:</p>