Remember, it's all just text.
FoldingText does some neat things, but in the end you are just typing. If you know how to type, you already know most of what you need to effectively use FoldingText.
(Click "#" to expand headings)
const jsonResponse = await fetch( | |
"https://api.kinopio.club/space/<space ID>", | |
); | |
const spaceJson = await jsonResponse.json(); | |
// console.log(spaceJson); | |
const cards = spaceJson.cards; | |
const sortedCards = cards.sort((a: any, b: any) => a.createdAt < b.createdAt); | |
console.log(sortedCards); |
export KINOPIO_API_KEY=<enter `JSON.parse(localStorage.user).apiKey` in console> | |
export KINOPIO_SPACE_KEY=<space key> | |
curl -H "Authorization: $KINOPIO_API_KEY" https://kinopio-server.herokuapp.com/space/$KINOPIO_SPACE_KEY | jq -r '.cards | .[] | .createdAt + "\t" + (.name | tojson)' | sort |
A list
I hereby claim:
To claim this, I am signing this object:
Jesus Loves Me | |
Chris Tomlin | |
I was lost | |
I was in chains | |
The world had a hold of me | |
My heart was a stone | |
I was covered in shame | |
When He came for me |
--- | |
doing_file: "~/Dropbox/Notes/Lists/what_was_i_doing.md" | |
current_section: Currently | |
editor_app: | |
templates: | |
default: | |
date_format: "%Y-%m-%d %H:%M" | |
template: "%date | %title%note" | |
wrap_width: 0 | |
today: |
from plistlib import writePlistToString | |
from datetime import datetime | |
from uuid import uuid4 | |
def create_dayone_dict(entry_text): | |
d = { | |
'Creation Date': datetime.now(), | |
'Entry Text': entry_text, | |
'UUID': str(uuid4()).translate(None, '-'), | |
'Time Zone': 'America/New_York' |
import dropboxclient | |
import urllib | |
import webbrowser | |
import datetime | |
def get_log_files(logdir): | |
client = dropboxclient.get_client() | |
metadata = client.metadata(logdir) | |
print metadata | |