Skip to content

Instantly share code, notes, and snippets.

View jonathanbaker7's full-sized avatar
💭
Developing in the bleeding edge..

Jonathan Baker jonathanbaker7

💭
Developing in the bleeding edge..
  • Washington, DC, USA
View GitHub Profile
@jonathanbaker7
jonathanbaker7 / metadata
Created April 18, 2023 18:11 — forked from bhenhsi/metadata
Uber CLA
{
"name": {
"title": "Full Name",
"type": "string",
"githubKey": "name",
"required": true
},
"email": {
"title": "E-Mail Address",
"type": "string",
<!DOCTYPE html>
<html>
<body>
<h2>Testing the events queue in a browser</h2>
<p>The event queue is single threaded, so anything currently running blocks all other
events. This includes JavaScript, page rendering, and any user input</p>
<p>To test this, click on the “Go” button. Watch the input boxes, as they are being updated in each loop. The rendering, however, is on hold, so the changes don’t appear.</p>
<p>While the loop is running, you can also click the browser refresh button. Nothing will happen until the loop completes!</p>