Skip to content

Instantly share code, notes, and snippets.

View jazeee's full-sized avatar
🐕
Oh what a tangled web we weave/When first we practice to `useEffect`.

Jaz jazeee

🐕
Oh what a tangled web we weave/When first we practice to `useEffect`.
View GitHub Profile
@jazeee
jazeee / Simple Independent and Single Axis Zooming
Last active May 26, 2016 20:09 — forked from jgbos/README.md
Simple Independent Axis Zooming and Panning for x, y, or xy
This is the title of the gist (It is first, since it starts with a space in the name)
@jazeee
jazeee / client.html
Last active March 31, 2017 01:40 — forked from vitosamson/client.html
foscam streaming
<canvas height="720" width="1280" id="canvas"></canvas>
<button id="snapshotBtn">snapshot</button>
<script>
var fragments = [];
var frames = [];
var ws = new WebSocket('ws://192.168.1.3:4001');
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var reader = new FileReader();
@jazeee
jazeee / index.html
Created March 17, 2018 00:44
Memory Leak Example
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
</head>
<body>
<button id="test">Click me!</button>
<button id="replace-button">Replace Click me!</button>
</body>
<script>
{
@jazeee
jazeee / share_send_app_endpoints.md
Last active March 22, 2023 22:54 — forked from StephenBlackWasAlreadyTaken/share_send_app_endpoints.md
DexcomShare Endpoints for the Uploader App
  • these are the calls used by the dexcom uploader app
  • these are in no particular order!
  • User-Agent: Dexcom%20Share/3.0.2.11 CFNetwork/672.0.2 Darwin/14.0.0

General

Read Dexcoms System time clock

GET

@jazeee
jazeee / Go through each step in a Github code review
Last active November 5, 2023 16:11
Go through each step in a Github code review
getFirstSelect = () => $('input[type="checkbox"].js-reviewed-checkbox:not([checked])');
let firstMatchingElement = getFirstSelect(); firstMatchingElement.scrollIntoView();setTimeout(() => firstMatchingElement.click(), /*Time to Read the code*/10);