From 18c3fc888efbcd9ec8300925bd9f5749c1e8e7a9 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Wed, 30 Sep 2020 18:56:22 -0500 Subject: [PATCH] Added tags --- .vscode/template.code-snippets | 8 ++++++-- DynamoDB.md | 4 ++++ Lazy loading images in HTML.md | 4 ++++ Open Graph Protocol.md | 4 ++++ Perfectly centering pixels is tricky.md | 4 ++++ Share file with ipfs.md | 4 ++++ 6 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.vscode/template.code-snippets b/.vscode/template.code-snippets index 029fbcc..c0c89b0 100644 --- a/.vscode/template.code-snippets +++ b/.vscode/template.code-snippets @@ -3,13 +3,17 @@ "scope": "markdown", "prefix": "note", "body": [ + "---", + "tags: $1", + "---", + "", "# ${TM_FILENAME_BASE}", "", - "$2", + "$3", "", "## What led to learning this", "", - "- $1", + "- $2", "", ], } diff --git a/DynamoDB.md b/DynamoDB.md index ce71450..d376571 100644 --- a/DynamoDB.md +++ b/DynamoDB.md @@ -1,3 +1,7 @@ +--- +tags: knowledge, database, nosql +--- + # DynamoDB It's a [[NoSQL]] [[Database]] from [[AWS]] diff --git a/Lazy loading images in HTML.md b/Lazy loading images in HTML.md index 663192f..3f93bfe 100644 --- a/Lazy loading images in HTML.md +++ b/Lazy loading images in HTML.md @@ -1,3 +1,7 @@ +--- +tags: knowledge, frontend +--- + # Lazy loading images in HTML To implement [[Lazy Loading]] to an `` tag, add the attribute `loading=lazy` diff --git a/Open Graph Protocol.md b/Open Graph Protocol.md index aca4050..694b66c 100644 --- a/Open Graph Protocol.md +++ b/Open Graph Protocol.md @@ -1,3 +1,7 @@ +--- +tags: knowledge, web +--- + # Open Graph Protocol This is a standard that uses websites to tell external websites how a link preview should look diff --git a/Perfectly centering pixels is tricky.md b/Perfectly centering pixels is tricky.md index f97027d..00d577e 100644 --- a/Perfectly centering pixels is tricky.md +++ b/Perfectly centering pixels is tricky.md @@ -1,3 +1,7 @@ +--- +tags: knowledge, frontend, from-podcast +--- + # Perfectly centering pixels is tricky To perfectly center a container (like a `
`) inside another container, both containers' sizes must have the same parity, in other words, both sizes must be either even or odd, in the direction of centering. diff --git a/Share file with ipfs.md b/Share file with ipfs.md index 580ddd2..bc7717c 100644 --- a/Share file with ipfs.md +++ b/Share file with ipfs.md @@ -1,3 +1,7 @@ +--- +tags: tutorial, ipfs +--- + # Share file with ipfs **Warning:** Only tested serving the file, not downloading it