Skip to content

Instantly share code, notes, and snippets.

Synchronizer
Initializing
initialized -> Connecting
Connecting
success -> Connected
Connected
Starting Sync
syncing -> Syncing
Syncing
disconnect -> Not Connected
@WinstonFassett
WinstonFassett / SketchSystems.spec
Last active November 14, 2020 15:51
Authenticated Connection
Authenticated Connection
Not Connected
connect -> Connecting
Connecting
success -> Authenticating
Authenticating
success -> Connected
Connected
disconnect -> Not Connected
Doc Viewer&
Mode
No Mode Set
Local Only
Remote Only
Local and Remote*&
go local only -> Local Only
go remote only -> Remote Only
Doc Viewer&
Mode
No Mode Set
Local Only
Remote Only
Local and Remote*&
go local only -> Local Only
go remote only -> Remote Only
@WinstonFassett
WinstonFassett / SketchSystems.spec
Created January 5, 2020 18:08
Online-First Realtime Doc Viewer
Online-First Realtime Doc Viewer
restart -> Loading
Loading
Connecting to Remote Doc
disconnect while loading -> Load Failed
Preparing Auth
Identifying User
got user token -> Verifying User
no user token -> Login
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<link href="http://cdn.quilljs.com/1.2.4/quill.snow.css" rel="stylesheet">
<link href="http://cdn.quilljs.com/1.2.4/quill.bubble.css" rel="stylesheet">
<style id="jsbin-css">
@WinstonFassett
WinstonFassett / index.html
Last active December 15, 2015 18:29 — forked from mbostock/.block
<!DOCTYPE html>
<meta charset="utf-8">
<style>
svg {
float: left;
border: solid 1px #aaa;
}
</style>
@WinstonFassett
WinstonFassett / index.html
Last active December 15, 2015 18:29 — forked from mbostock/.block
<!DOCTYPE html>
<meta charset="utf-8">
<style>
svg {
float: left;
border: solid 1px #aaa;
}
</style>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>One Graph</title>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.v2.js"></script>
<script type="text/javascript" src="simple-graph.js"></script>
<style type="text/css">
body { font: 13px sans-serif; }
rect { fill: none; }
@WinstonFassett
WinstonFassett / knockout-jquery-ui-widget.js
Created August 13, 2012 21:25 — forked from medmunds/knockout-jquery-ui-widget.js
Knockout binding for jQuery.ui.widget
// knockout-jquery-ui-widget.js
// Copyright (c) 2011, Planapple, Inc.
// License: MIT (http://www.opensource.org/licenses/mit-license.php)
//
// Knockout binding for jQuery UI widgets
//
// Examples:
// <input type="submit" value="OK" data-bind='jqueryui: "button"' />
//
// Attaches a jQuery UI button widget to this button, with default options.