Skip to content

Instantly share code, notes, and snippets.

View sawatsky's full-sized avatar

Heather Sawatsky sawatsky

  • Bellevue, Washington, USA
View GitHub Profile
@sawatsky
sawatsky / db.json
Created March 16, 2018 03:21
Faux-database stuff
{
"drivers": [
{ "id": 1, "name": "John Smith", "phone": "123-123-1233", "license": "SAWATHL082JD", "SIN": "234-234-234", "mailingAddress": { "line1": "234 123th Ave NE", "line2": "Apt. 234", "city": "Bellevue", "region": "wa", "country": "us", "code": "98004" }, "trucks": [ 1, 2 ], "trailers": [ 1 ] },
{ "id": 2, "name": "Jane Doe", "phone": "754-324-2342", "license": "FHJSH934KJ", "SIN": "464-444-454", "mailingAddress": { "line1": "1241 231th St.", "line2": "Apt. 12", "city": "Melbourne", "region": "wa", "country": "us", "code": "12311" }, "trucks": [ 3 ], "trailers": [ 2 ] },
{ "id": 3, "name": "Gordon Ramsey", "phone": "555-345-9789", "license": "4523452345", "SIN": "333-555-444", "mailingAddress": { "line1": "345 123th Ave NE", "line2": "Apt. 32", "city": "Bellevue", "region": "wa", "country": "us", "code": "98004" }, "trucks": [ 4 ], "trailers": [] },
{ "id": 4, "name": "Ash Ketchum", "phone": "345-123-6574", "license": "3425234545", "SIN": "111-234-232", "mailingAddress": { "line1": "
@sawatsky
sawatsky / clients.html
Last active March 14, 2018 05:42
Pages to view lists of all resources
<!DOCTYPE html>
<title>Clients - TruckIt</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Heather Sawatsky"/>
<meta name="application-name" content="TruckIt"/>
<meta name="keywords" content=""/>
@sawatsky
sawatsky / clientDashboard.html
Last active March 14, 2018 05:44
The various dashboards
<!DOCTYPE html>
<title>Dashboard - TruckIt</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Heather Sawatsky"/>
<meta name="application-name" content="TruckIt"/>
<meta name="keywords" content=""/>
@sawatsky
sawatsky / client.html
Last active July 22, 2018 06:24
The various forms for creating / editing
<!DOCTYPE html>
<title>Client - TruckIt</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Heather Sawatsky"/>
<meta name="application-name" content="TruckIt"/>
<meta name="keywords" content=""/>