Added tags

This commit is contained in:
Marco D'Agostini 2020-09-30 18:56:22 -05:00
parent d35a5058cd
commit 18c3fc888e
6 changed files with 26 additions and 2 deletions

View File

@ -3,13 +3,17 @@
"scope": "markdown", "scope": "markdown",
"prefix": "note", "prefix": "note",
"body": [ "body": [
"---",
"tags: $1",
"---",
"",
"# ${TM_FILENAME_BASE}", "# ${TM_FILENAME_BASE}",
"", "",
"$2", "$3",
"", "",
"## What led to learning this", "## What led to learning this",
"", "",
"- $1", "- $2",
"", "",
], ],
} }

View File

@ -1,3 +1,7 @@
---
tags: knowledge, database, nosql
---
# DynamoDB # DynamoDB
It's a [[NoSQL]] [[Database]] from [[AWS]] It's a [[NoSQL]] [[Database]] from [[AWS]]

View File

@ -1,3 +1,7 @@
---
tags: knowledge, frontend
---
# Lazy loading images in HTML # Lazy loading images in HTML
To implement [[Lazy Loading]] to an `<img ... >` tag, add the attribute `loading=lazy` To implement [[Lazy Loading]] to an `<img ... >` tag, add the attribute `loading=lazy`

View File

@ -1,3 +1,7 @@
---
tags: knowledge, web
---
# Open Graph Protocol # Open Graph Protocol
This is a standard that uses websites to tell external websites how a link preview should look This is a standard that uses websites to tell external websites how a link preview should look

View File

@ -1,3 +1,7 @@
---
tags: knowledge, frontend, from-podcast
---
# Perfectly centering pixels is tricky # Perfectly centering pixels is tricky
To perfectly center a container (like a `<div>`) 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. To perfectly center a container (like a `<div>`) 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.

View File

@ -1,3 +1,7 @@
---
tags: tutorial, ipfs
---
# Share file with ipfs # Share file with ipfs
**Warning:** Only tested serving the file, not downloading it **Warning:** Only tested serving the file, not downloading it