I hereby claim:
- I am judsonmitchell on github.
- I am judsonmitchell (https://keybase.io/judsonmitchell) on keybase.
- I have a public key whose fingerprint is 0150 6206 C29E 82B0 B8C6 C300 0CCE 0DE6 05AC 57B5
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Verifying that +judsonmitchell is my blockchain ID. https://onename.com/judsonmitchell
| data:text/html, <script type="text/javascript" src="https://cdn.rawgit.com/MrMitch/downatello/develop/downatello.js"></script><style type="text/css">#md,#html{position:absolute;top:0;bottom:0;padding:5px;border:none;outline:none;font-family:monaco,consolas,sans-serif;font-size:1em}#md{resize:none;left:0;width:48%;border-right:1px solid black}#html{left:50%;right:0;font-family:sans-serif}</style><textarea id="md" oninput="document.getElementById('html').innerHTML=downatello.toHtml(document.getElementById('md').value);"></textarea><div id="html"></div> |
Bootswatch: http://bootswatch.com/
Bootstrap: http://getbootstrap.com/
| 1. Javascript Review. [See here](https://jsbin.com/doquji/7/edit?js,console) | |
| 2. Create an HTML File | |
| 3. Add jquery and a css file. | |
| 4. Be able to do headings, paragraphs, forms, lists, hyperlinks, and tables. | |
| 5. Apply jQuery to the HTML and either modify the page or return some data. | |
| const sqlite3 = require('sqlite3').verbose(); | |
| const db = new sqlite3.Database('wedding.db'); | |
| const express = require('express'); | |
| const restapi = express(); | |
| restapi.get('/', function(req, res){ | |
| db.all('SELECT * FROM wedding', function(err, rows){ | |
| res.json(rows); | |
| }); | |
| }) |