Key | Mode |
---|---|
i |
Insert |
Esc |
Normal |
v |
Visual |
: |
Command-line |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A - Append text at the end of the line | |
B - Move back to the beginning of a word | |
C - Change to the end of the line | |
D - Delete to the end of the line | |
E - Move to the end of a word | |
F - Find the next occurrence of a character | |
G - Go to the last line of the document | |
H - Move to the top of the screen | |
I - Insert text at the beginning of the line | |
J - Join the current line with the next line |
The MiniDataAPI
is a persistence API specification that designed to be small and relatively easy to implement across a wide range of datastores. While early implementations have been SQL-based, the specification can be quickly implemented in key/value stores, document databases, and more.
TODO: Write why we're doing this, in a really interesting way! __
Work in Progress
- Code something on Glitch.com, Codepen.io, ObservableHQ.com, or elsewhere
- Take screenshots or photos if applicable
- Write up a private blog post on Dev.to
- Edit 1-2 images for the post in Photoshop. Ideally 2 (a cover image and a post body image) so Pinterest has an image to pin from the post body.
- Have post reviewed for typos and grammar
- Make blog post public on Dev.to
- Post link with thoughtful hashtags to:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": | |
{ | |
"id":3, | |
"name":"Audrey Roy Greenfeld", | |
"coordinates": [ | |
{ | |
"timestamp":1572724399, | |
"lat":"29.664731", | |
"long":"-95.027364" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="observablehq-14b9698c"></div> | |
<script type="module"> | |
import {Runtime, Inspector} from "https://cdn.jsdelivr.net/npm/@observablehq/runtime@4/dist/runtime.js"; | |
import define from "https://api.observablehq.com/@tmcw/notebook-visualizer-elk-edition.js?v=3"; | |
const inspect = Inspector.into("#observablehq-14b9698c"); | |
(new Runtime).module(define, name => (name === "graph") && inspect()); | |
</script> |
NewerOlder