mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-24 23:15:46 -05:00
Pull-Request [ariasae-10-19-2023] from Obsidian (#32)
* PUSH NOTE : NeoVim.md * PUSH NOTE : Static Site Generators.md * PUSH NOTE : The Moon (Earth).md * PUSH NOTE : Consistency.md * PUSH NOTE : Chuckwalla.md * PUSH NOTE : Scry Your Tasks.md * PUSH NOTE : Markdown.md * PUSH NOTE : Tools.md * PUSH NOTE : Writing with Outlines.md * PUSH NOTE : Poetry.md * PUSH NOTE : Guitar.md * PUSH NOTE : Words I Like.md * PUSH NOTE : Quotes Collection.md * PUSH NOTE : Free Facts.md * PUSH NOTE : Rhombic Dodecahedron.md * PUSH NOTE : Move Your Body.md * PUSH NOTE : Rhizomatic Learning.md * PUSH NOTE : Rhizome.md * PUSH NOTE : Sweep Your Mind.md * PUSH NOTE : Serif.md * PUSH NOTE : Scope of Work.md * PUSH NOTE : Sans-serif.md * PUSH NOTE : Micropolitan Statistical Area.md * PUSH NOTE : Continuous Care.md * PUSH NOTE : Chords.md * PUSH NOTE : Atomic Notes.md * PUSH NOTE : Arpeggio.md * PUSH NOTE : Emmet Cheat Sheet.md * PUSH NOTE : Public Journal.md * DELETE FILE : content/Budding/Chuckwalla.md * DELETE FILE : content/Budding/Continuous Care.md * DELETE FILE : content/Budding/Free Facts.md * DELETE FILE : content/Budding/NeoVim.md * DELETE FILE : content/Budding/Poetry.md * DELETE FILE : content/Budding/Quotes Collection.md * DELETE FILE : content/Budding/Scope of Work.md * DELETE FILE : content/Budding/Tools.md * DELETE FILE : content/Budding/Words I Like.md * DELETE FILE : content/Evergreen/Arpeggio.md * DELETE FILE : content/Evergreen/Atomic Notes.md * DELETE FILE : content/Evergreen/Chords.md * DELETE FILE : content/Evergreen/Micropolitan Statistical Area.md * DELETE FILE : content/Evergreen/Sweep Your Mind.md * DELETE FILE : content/Seedlings/Consistency.md * DELETE FILE : content/Seedlings/Guitar.md * DELETE FILE : content/Seedlings/Markdown.md * DELETE FILE : content/Seedlings/Move Your Body.md * DELETE FILE : content/Seedlings/Rhizomatic Learning.md * DELETE FILE : content/Seedlings/Rhizome.md * DELETE FILE : content/Seedlings/Sans-serif.md * DELETE FILE : content/Seedlings/Scry Your Tasks.md * DELETE FILE : content/Seedlings/Serif.md * DELETE FILE : content/Seedlings/Static Site Generators.md * DELETE FILE : content/Seedlings/The Moon (Earth).md * DELETE FILE : content/Seedlings/Writing with Outlines.md
This commit is contained in:
parent
07bd9e56fc
commit
06149bd2ae
278
content/Archive/Emmet Cheat Sheet.md
Normal file
278
content/Archive/Emmet Cheat Sheet.md
Normal file
@ -0,0 +1,278 @@
|
||||
---
|
||||
title: Emmet Cheat Sheet
|
||||
updated: 2023-10-19
|
||||
category: Archive
|
||||
tags: [archived]
|
||||
compartir: true
|
||||
---
|
||||
# Emmet Cheat Sheet
|
||||
|
||||
* [Documentation](https://docs.emmet.io/)
|
||||
* [Documentation](https://code.visualstudio.com/docs/editor/emmet) for Emmet in VS Code
|
||||
|
||||
## Notes on Abbreviation Formatting
|
||||
|
||||
When you get familiar with Emmet's abbreviations syntax, you may want to use some formatting to make your abbreviations more readable. But it won't work, because space is a _stop symbol,_ where Emmet stops abbreviation parsing. Many users mistakenly think that each abbreviation should be written in a new line, but they are wrong: you can type and expand the abbreviation anywhere in the text.
|
||||
|
||||
This is why Emmet needs some indicators (like spaces) where it should stop parsing to not expand anything that you don't need. If you're still thinking that such formatting is required for complex abbreviations to make them more readable:
|
||||
|
||||
* Abbreviations are not a template language, they don't have to be "readable", they have to be "quickly expandable and removable".
|
||||
* You don't really need to write complex abbreviations. Stop thinking that "typing" is the slowest process in web-development. You'll quickly find out that constructing a single complex abbreviation is much slower and error-prone than constructing and typing a few short ones.
|
||||
|
||||
## HTML + CSS Emmet Short Guide
|
||||
|
||||
Emmet abbreviation and snippet expansions are enabled by default in `html`, `haml`, `pug`, `slim`, `jsx`, `xml`, `xsl`, `css`, `scss`, `sass`, `less` and `stylus` files, as well as any language that inherits from any of the above like `handlebars` and `php`.
|
||||
|
||||
## Children
|
||||
|
||||
```css
|
||||
div>ul>li
|
||||
```
|
||||
|
||||
```html
|
||||
<div>
|
||||
<ul>
|
||||
<li></li>
|
||||
</ul>
|
||||
</div>
|
||||
```
|
||||
|
||||
## Siblings
|
||||
|
||||
```css
|
||||
div + p + bq
|
||||
```
|
||||
|
||||
```html
|
||||
<div></div>
|
||||
<p></p>
|
||||
<blockquote></blockquote>
|
||||
```
|
||||
|
||||
## Climb-up
|
||||
|
||||
```css
|
||||
div+div>p>span+em
|
||||
```
|
||||
|
||||
```html<div></div>
|
||||
<div>
|
||||
<p><span></span><em></em></p>
|
||||
</div>
|
||||
```
|
||||
|
||||
```css
|
||||
div+div>p>span+em^bq
|
||||
```
|
||||
|
||||
```html<div></div>
|
||||
<div>
|
||||
<p><span></span><em></em></p>
|
||||
<blockquote></blockquote>
|
||||
</div>
|
||||
```
|
||||
|
||||
```css
|
||||
div+div>p>span+em^^^bq
|
||||
```
|
||||
|
||||
```html
|
||||
<div></div>
|
||||
<div>
|
||||
<p><span></span><em></em></p>
|
||||
</div>
|
||||
<blockquote></blockquote>
|
||||
```
|
||||
|
||||
## Multiplication
|
||||
|
||||
```css
|
||||
ul>li*5
|
||||
```
|
||||
|
||||
```html
|
||||
<ul>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ul>
|
||||
```
|
||||
|
||||
## Grouping
|
||||
|
||||
```css
|
||||
div>(header>ul>li*2>a)+footer>p
|
||||
```
|
||||
|
||||
```html
|
||||
<div>
|
||||
<header>
|
||||
<ul>
|
||||
<li><a href=""></a></li>
|
||||
<li><a href=""></a></li>
|
||||
</ul>
|
||||
</header>
|
||||
<footer>
|
||||
<p></p>
|
||||
</footer>
|
||||
</div>
|
||||
```
|
||||
|
||||
```css
|
||||
(div>dl>(dt+dd)*3)+footer>p
|
||||
```
|
||||
|
||||
```html
|
||||
<div>
|
||||
<dl>
|
||||
<dt></dt>
|
||||
<dd></dd>
|
||||
<dt></dt>
|
||||
<dd></dd>
|
||||
<dt></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<footer>
|
||||
<p></p>
|
||||
</footer>
|
||||
```
|
||||
|
||||
## ID and Classes
|
||||
|
||||
```css
|
||||
div#header+div.page+div#footer.class1.class2.class3
|
||||
```
|
||||
|
||||
```html
|
||||
<div id="header"></div>
|
||||
<div class="page"></div>
|
||||
<div id="footer" class="class1 class2 class3"></div>
|
||||
```
|
||||
|
||||
## Custom Attributes
|
||||
|
||||
```css
|
||||
td[title="Hello world!" colspan=3]
|
||||
```
|
||||
|
||||
```html
|
||||
<td title="Hello world!" colspan="3"></td>
|
||||
```
|
||||
|
||||
## Item Numbering
|
||||
|
||||
```css
|
||||
ul>li.item$*5
|
||||
```
|
||||
|
||||
```html
|
||||
<ul>
|
||||
<li class="item1"></li>
|
||||
<li class="item2"></li>
|
||||
<li class="item3"></li>
|
||||
<li class="item4"></li>
|
||||
<li class="item5"></li>
|
||||
</ul>
|
||||
```
|
||||
|
||||
```css
|
||||
ul>li.item$$$*5
|
||||
```
|
||||
|
||||
```html
|
||||
<ul>
|
||||
<li class="item001"></li>
|
||||
<li class="item002"></li>
|
||||
<li class="item003"></li>
|
||||
<li class="item004"></li>
|
||||
<li class="item005"></li>
|
||||
</ul>
|
||||
```
|
||||
|
||||
## Changing Numbering Base and Direction
|
||||
|
||||
```css
|
||||
ul>li.item$@-*5
|
||||
```
|
||||
|
||||
```html<ul>
|
||||
<li class="item5"></li>
|
||||
<li class="item4"></li>
|
||||
<li class="item3"></li>
|
||||
<li class="item2"></li>
|
||||
<li class="item1"></li>
|
||||
</ul>
|
||||
```
|
||||
|
||||
```css
|
||||
ul>li.item$@3*5
|
||||
```
|
||||
|
||||
```html<ul>
|
||||
<li class="item3"></li>
|
||||
<li class="item4"></li>
|
||||
<li class="item5"></li>
|
||||
<li class="item6"></li>
|
||||
<li class="item7"></li>
|
||||
</ul>
|
||||
```
|
||||
|
||||
```css
|
||||
ul>li.item$@-3*5
|
||||
```
|
||||
|
||||
```html
|
||||
<ul>
|
||||
<li class="item7"></li>
|
||||
<li class="item6"></li>
|
||||
<li class="item5"></li>
|
||||
<li class="item4"></li>
|
||||
<li class="item3"></li>
|
||||
</ul>
|
||||
```
|
||||
|
||||
## Text
|
||||
|
||||
```css
|
||||
a{Click me}
|
||||
```
|
||||
|
||||
```html
|
||||
<a href="">Click me</a>
|
||||
```
|
||||
|
||||
```css
|
||||
a{click}+b{here}
|
||||
```
|
||||
|
||||
```html
|
||||
<a href="">click</a><b>here</b>
|
||||
```
|
||||
|
||||
```css
|
||||
a>{click}+b{here}
|
||||
```
|
||||
|
||||
```html
|
||||
<a href="">click<b>here</b></a>
|
||||
```
|
||||
|
||||
```css
|
||||
p>{Click }+a{here}+{ to continue}
|
||||
```
|
||||
|
||||
```html
|
||||
<p>Click <a href="">here</a> to continue</p>
|
||||
```
|
||||
|
||||
```css
|
||||
p{Click }+a{here}+{ to continue}
|
||||
```
|
||||
|
||||
```html
|
||||
<p>Click </p>
|
||||
<a href="">here</a> to continue
|
||||
```
|
||||
@ -3,7 +3,6 @@ title: Arpeggio
|
||||
tags: [music]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
category: Evergreen
|
||||
---
|
||||
An arpeggio is a type of [[./Chords|broken chord]] in which the notes that compose a chord are individually sounded in a progressive rising or descending order. Arpeggios on keyboard instruments may be called rolled chords.
|
||||
|
||||
@ -3,7 +3,6 @@ title: Atomic Notes
|
||||
tags: [digital-gardening]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
category: Evergreen
|
||||
---
|
||||
Atomic notes are single, self-contained notes that capture a single idea or piece of information. They are meant to be read and understood without needing to refer to anything more.
|
||||
|
||||
@ -3,6 +3,5 @@ title: Chords (music)
|
||||
tags: [music]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
category: Evergreen
|
||||
---
|
||||
A chord, in music, is any harmonic set of pitches/frequencies consisting of multiple notes (also called "pitches") that are heard as if sounding simultaneously. For many practical and theoretical purposes, arpeggios and other types of broken chords (in which the chord tones are not sounded simultaneously) may also be considered as _chords_ in the right musical context.
|
||||
@ -1,8 +1,7 @@
|
||||
---
|
||||
title: Chuckwalla
|
||||
updated: 2023-10-02
|
||||
updated: 2023-10-19
|
||||
compartir: true
|
||||
category: Budding
|
||||
---
|
||||
Chuckwallas are lizards found primarily in arid regions of the southwestern United States and northern Mexico. Some are found on coastal islands. The five species of chuckwallas are all placed within the genus _Sauromalus_; they are part of the iguanid family, _Iguanidae_—composed of iguanas, chuckwallas, and their prehistoric relatives.
|
||||
|
||||
@ -10,7 +9,7 @@ Chuckwallas are stocky, wide-bodied lizards with flattened midsections and promi
|
||||
|
||||
## Iguanidae (lizard family)
|
||||
|
||||
<img alt="iguanidae lizarf family" src="https://raw.githubusercontent.com/semanticdata/public-test/main/PNG/iguanidae-lizard-family.png" />
|
||||
<!-- <img alt="iguanidae lizarf family" src="https://raw.githubusercontent.com/semanticdata/public-test/main/PNG/iguanidae-lizard-family.png" /> -->
|
||||
|
||||
```mermaid
|
||||
mindmap
|
||||
7
content/Consistency.md
Normal file
7
content/Consistency.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Consistency is Key
|
||||
compartir: true
|
||||
updated: 2023-10-19
|
||||
tags: [stub]
|
||||
---
|
||||
**Show up.** **Do the work.** **Be consistent.**
|
||||
@ -3,8 +3,7 @@ title: Continuous Care
|
||||
tags: [digital-gardening]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
category: Budding
|
||||
---
|
||||
Be the watchful caretaker of your ever growing plants and flowers. Grow your knowledge by forming new branches and connecting the dots. Write short structured notes articulating specific ideas and share them. Avoid creating or nourishing orphan notes. Anything not connected eventually needs to go. We must: refine our ideas, thread our thoughts, and keep notes [[../Evergreen/Atomic Notes|atomic]].
|
||||
Be the watchful caretaker of your ever growing plants and flowers. Grow your knowledge by forming new branches and connecting the dots. Write short structured notes articulating specific ideas and share them. Avoid creating or nourishing orphan notes. Anything not connected eventually needs to go. We must: refine our ideas, thread our thoughts, and keep notes [[./Atomic Notes|atomic]].
|
||||
|
||||
Taking raw notes is _useless_. Seed your garden with quality content and cultivate your curiosity. Plant seeds in your mind garden by taking smart personal notes. These don't need to be written in a publishable form.
|
||||
@ -2,10 +2,13 @@
|
||||
title: Free Facts
|
||||
tags: [collection]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
updated: 2023-10-19
|
||||
enableToc: true
|
||||
category: Budding
|
||||
---
|
||||
### Disney Aladdin
|
||||
|
||||
There is a [Willhelm scream](https://en.wikipedia.org/wiki/Wilhelm_scream) in the movie Aladdin.
|
||||
|
||||
### Dumping Chemical Weapons Directly into the Ocean
|
||||
|
||||
After World War II, it is claimed that scientist did not know how to destroy the massive arsenals of chemical weapons. Russia, the UK, and the US opted for what seemed the safest and cheapest method of disposal at the time: dumping chemical weapons directly into the ocean.
|
||||
@ -4,7 +4,6 @@ tags: [learning, music]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
enableToc: true
|
||||
category: Seedlings
|
||||
---
|
||||
## Tabs for the Guitar
|
||||
|
||||
@ -12,7 +11,7 @@ When you are looking at a tab, you will see six horizontal lines. These lines re
|
||||
|
||||
### Arpeggio
|
||||
|
||||
An [[../Evergreen/Arpeggio|arpeggio]] is a type of [[../Evergreen/Chords|broken chord]] in which the notes that compose a chord are individually sounded in a progressive rising or descending order. Arpeggios on keyboard instruments may be called _rolled chords_.
|
||||
An [[./Arpeggio|arpeggio]] is a type of [[./Chords|broken chord]] in which the notes that compose a chord are individually sounded in a progressive rising or descending order. Arpeggios on keyboard instruments may be called _rolled chords_.
|
||||
|
||||
```md
|
||||
e|--------2-----------------|
|
||||
@ -3,8 +3,7 @@ title: Markdown
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
tags: [stub]
|
||||
category: Seedlings
|
||||
---
|
||||
Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Created by [John Gruber](https://daringfireball.net/projects/markdown/) in 2004, Markdown is now one of the world's most popular markup languages.
|
||||
|
||||
> Check out the [[../Markdown Showcase|Markdown Showcase]].
|
||||
> Check out the [[./Markdown Showcase|Markdown Showcase]].
|
||||
@ -3,7 +3,6 @@ title: Micropolitan Statistical Area
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
tags: [statistics]
|
||||
category: Evergreen
|
||||
---
|
||||
Micropolitan Statistical Areas are labor market and statistical areas in the United States centered on an urban cluster with a population of at least 10,000 but fewer than 50,000 people.
|
||||
|
||||
@ -3,7 +3,6 @@ title: Move Your Body
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
tags: [stub]
|
||||
category: Seedlings
|
||||
---
|
||||
Move your body every day. Benefits include:
|
||||
|
||||
@ -5,7 +5,6 @@ updated: 2023-10-02
|
||||
tags: [reference]
|
||||
enableToc: true
|
||||
aliases: [Nvim, Vim]
|
||||
category: Budding
|
||||
---
|
||||
|
||||
Vim-fork focused on extensibility and usability.
|
||||
@ -6,7 +6,6 @@ tags: [learning, writing]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
enableToc: true
|
||||
category: Budding
|
||||
---
|
||||
Poetry is a broad literary category that covers everything from bawdy limericks to unforgettable song lyrics to the sentimental couplets inside greeting cards. A **poem** is a singular piece of poetry.
|
||||
|
||||
@ -3,12 +3,28 @@ title: Public Journal
|
||||
description: This new section will explore the concept of maintaining a Public Journal.
|
||||
compartir: true
|
||||
enableToc: true
|
||||
updated: 2023-10-16
|
||||
updated: 2023-10-19
|
||||
---
|
||||
## 2023-10-18
|
||||
|
||||
> [!info] Acknowledgements
|
||||
>
|
||||
> This page takes inspiration from the [Journal of an Enigmatic Mind](https://speyllsite.pages.dev/journal/). It explores the concept of keeping a public journal, something I haven't done before.
|
||||
### Notes
|
||||
|
||||
* Created new CSS snippets for Obsidian. Changes appearance of list items in menus, and reduces font size for the [BMO Chabot](https://github.com/longy2k/obsidian-bmo-chatbot).
|
||||
|
||||
### Digital Garden
|
||||
|
||||
* Fixed stylesheet loop. Quartz changed how to address stylesheet order in sass. This broke my previous implementation adding custom and explorer stylesheets. It's all good now. The website looks as it should again.
|
||||
* Removed categories from all notes eliminating the folders that were created for Budding, Evergreen, and Seedlings. The Archive remains.
|
||||
|
||||
> [Link Of The Day](https://en.wikipedia.org/wiki/Lake_Chad)
|
||||
|
||||
## 2023-10-16
|
||||
|
||||
### Notes
|
||||
|
||||
* Attended a Boys Like Girls concert at The Fillmore in Minneapolis. Had a blast! The line-up was very good. LØLØ opened the night, followed by The Summer Set, continued by State Champs and of course, ended with Boys Like Girls. We arrived at 5:20PM, doors opened at 5:30PM, show started at 6:30PM, We were out by 10:45PM.
|
||||
|
||||
> [Link Of The Day](https://en.m.wikipedia.org/wiki/Mirabal_sisters)
|
||||
|
||||
## 2023-10-06
|
||||
|
||||
@ -249,3 +265,9 @@ updated: 2023-10-16
|
||||
* Today I upgraded the Garden backend from [Quartz v4-Alpha] to the official [Quartz v4] release.
|
||||
|
||||
> [Link Of The Day](https://en.m.wikipedia.org/wiki/Bus_factor)
|
||||
|
||||
## Acknowledgements
|
||||
|
||||
> [!info] Acknowledgements
|
||||
>
|
||||
> This page takes inspiration from the [Journal of an Enigmatic Mind](https://speyllsite.pages.dev/journal/). It explores the concept of keeping a public journal, something I haven't done before.
|
||||
|
||||
@ -4,7 +4,6 @@ tags: [collection]
|
||||
compartir: true
|
||||
updated: 2023-10-05
|
||||
enableToc: true
|
||||
category: Budding
|
||||
---
|
||||
|
||||
> [!quote]
|
||||
@ -3,7 +3,6 @@ title: Rhizomatic Learning
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
tags: [stub]
|
||||
category: Seedlings
|
||||
---
|
||||
Rhizomatic learning is a variety of pedagogical practices informed by the work of Gilles Deleuze and Félix Guattari. It takes it's name from the rhizome.
|
||||
|
||||
@ -3,7 +3,6 @@ title: "Rhizome"
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
tags: [stub]
|
||||
category: Seedlings
|
||||
---
|
||||
|
||||
Underground stem in which various plants asexually reproduce via budding.
|
||||
20
content/Rhombic Dodecahedron.md
Normal file
20
content/Rhombic Dodecahedron.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
title: Rhombic Dodecahedron
|
||||
compartir: true
|
||||
updated: 2023-10-19
|
||||
tags: [stub]
|
||||
---
|
||||
|
||||
In geometry, the rhombic dodecahedron is a convex polyhedron with 12 congruent rhombic faces. It has 24 edges, and 14 vertices of 2 types. It is a Catalan solid, and the dual polyhedron of the cuboctahedron.
|
||||
|
||||
## Rhombic Dodecahedral Honeycomb
|
||||
|
||||
The rhombic dodecahedral honeycomb (also _dodecahedrille_) is a space-filling tessellation (or honeycomb) in Euclidean 3-space. It is the Voronoi diagram of the face-centered cubic sphere-packing, which has the densest possible packing of equal spheres in ordinary space (see Kepler conjecture).
|
||||
|
||||
## In Dungeons and Dragons
|
||||
|
||||
> "I've never seen a rhombic dodecahedron d12 before. They do exist after a quick search, but the much more common d12 is just a dodecahedron, with pentagonal faces."
|
||||
|
||||
The UCLA[^1] investigators developed a technique that prevents that corrosion and showed that, in its absence, lithium atoms assemble into a surprising shape—the rhombic dodecahedron, a 12-sided figure similar to the dice used in role-playing games like Dungeons and Dragons.
|
||||
|
||||
[^1]: University of California, Los Angeles
|
||||
@ -3,7 +3,6 @@ title: Sans-serif
|
||||
tags: [typography]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
category: Seedlings
|
||||
---
|
||||
In typography and lettering, a sans-serif, sans serif, gothic, or simply sans letterform is one that does not have extending features called "serifs" at the end of strokes. Sans-serif typefaces tend to have less stroke width variation than serif typefaces. They are often used to convey simplicity and modernity or minimalism.
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
title: Scope of Work
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
category: Budding
|
||||
---
|
||||
A scope of work or SOW, is a descriptive document or working agreement that contains all information regarding the size of a project, the goals a team should accomplish by the end of the project and steps required to complete the project.
|
||||
|
||||
@ -3,7 +3,6 @@ title: Scry Your Tasks
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
tags: [stub]
|
||||
category: Seedlings
|
||||
---
|
||||
To _scry_ is to see or predict the future by means of a crystal ball. It is also the ability to look at the top cards of your deck and rearrange them in Magic the Gathering. This note was inspired by [Cortex](https://www.relay.fm/cortex) [Episode 142](https://www.relay.fm/cortex/142) where Myke and Grey discuss scrying your task lists.
|
||||
|
||||
@ -1,12 +0,0 @@
|
||||
---
|
||||
title: Consistency is Key
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
tags: [stub]
|
||||
category: Seedlings
|
||||
---
|
||||
**Show up.**
|
||||
|
||||
**Do the work.**
|
||||
|
||||
**Be consistent.**
|
||||
@ -3,7 +3,6 @@ title: Serif
|
||||
tags: [typography]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
category: Seedlings
|
||||
---
|
||||
In typography, a serif (/ˈsɛrɪf/) is a small line or stroke regularly attached to the end of a larger stroke in a letter or symbol within a particular font or family of fonts.
|
||||
|
||||
@ -3,7 +3,6 @@ title: "Static Site Generator"
|
||||
tags: [markdown]
|
||||
updated: 2023-10-02
|
||||
compartir: true
|
||||
category: Seedlings
|
||||
---
|
||||
|
||||
Static site generators (SSGs) are engines that use text input files (such as [[./Markdown|Markdown]], [reStructuredText](https://docutils.sourceforge.io/rst.html), and [AsciiDoc](https://asciidoc.org/)) to generate static web pages. SSGs are typically for rarely-changing, informative content, such as product pages, news websites, (software) documentation, manuals, and blogs.
|
||||
@ -4,7 +4,6 @@ tags: [digital-gardening]
|
||||
description: "These notes make it possible to offload a massive amount of information while demonstrating perfect recall when needed. The goal of a mind sweep is to identify everything that requires your attention or has the possibility of seeping into and affecting other parts of your life."
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
category: Evergreen
|
||||
---
|
||||
These notes make it possible to offload a massive amount of information while demonstrating "perfect recall" when needed. The goal of a mind sweep is to identify everything that requires your attention or has the possibility of seeping into and affecting other parts of your life. These include things that are stealing your focus, not letting you get your work done properly, etc.
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
title: "The Moon (Earth)"
|
||||
updated: 2023-10-11
|
||||
compartir: true
|
||||
category: Seedlings
|
||||
---
|
||||
|
||||
Earth's only natural satellite. Orbits around the Earth at an average distance of 384,400 km (238,900 mi).
|
||||
@ -2,8 +2,7 @@
|
||||
title: Tools I Use
|
||||
tags: [list]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
category: Budding
|
||||
updated: 2023-10-19
|
||||
---
|
||||
|
||||
A non-comprehensive list of the hardware and software I use on a day-to-day basis.
|
||||
@ -35,7 +34,6 @@ A non-comprehensive list of the hardware and software I use on a day-to-day basi
|
||||
### Notable Obsidian Extensions
|
||||
|
||||
* [Omnisearch](https://github.com/scambier/obsidian-omnisearch) – Better Search Engine.
|
||||
* [Kanban](https://github.com/mgmeyers/obsidian-kanban) – Kanban Boards for Obsidian.
|
||||
* [Obsidian Git](https://github.com/denolehov/obsidian-git) – Run Git commands from Obsidian.
|
||||
* [Natural Language Dates](https://github.com/argenos/nldates-obsidian) – Adds `@today` format to dates.
|
||||
* [Linter](https://github.com/platers/obsidian-linter) – Customizable Markdown Linter similar to Prettier.
|
||||
@ -4,7 +4,6 @@ tags: [collection]
|
||||
compartir: true
|
||||
updated: 2023-10-02
|
||||
enableToc: true
|
||||
category: Budding
|
||||
---
|
||||
### Anodyne (adjectives)
|
||||
|
||||
@ -5,7 +5,6 @@ tags: [learning, writing]
|
||||
compartir: true
|
||||
updated: 2023-10-12
|
||||
enableToc: true
|
||||
category: Seedlings
|
||||
---
|
||||
Learning how to write with brevity (short-form), how to write long-form, how to use gesticulation. Looking for ways to streamline producing written content.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user