Pull-Request [ariasae-10-24-2023] from Obsidian (#35)

* PUSH NOTE : The Moon (Earth).md

* PUSH NOTE : Static Site Generators.md

* PUSH NOTE : Rhombic Dodecahedron.md

* PUSH NOTE : Rhizome.md

* PUSH NOTE : Rhizomatic Learning.md

* PUSH NOTE : Markdown Showcase.md

* PUSH NOTE : Public Journal.md
This commit is contained in:
Miguel Pimentel 2023-10-24 15:41:09 -05:00 committed by GitHub
parent 3fc928a59b
commit 4c2ada8e89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 329 additions and 1 deletions

View File

@ -0,0 +1,252 @@
---
title: Markdown Showcase
description: "This is intended as a quick reference and showcase of Markdown's synthax."
tags: [markdown, reference]
compartir: true
date: 2022-12-31
updated: 2023-10-11
---
This is intended as a quick reference and showcase of Markdown's synthax.
<!-- more -->
# Heading Level 1
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt. Vestibulum lacus tortor, ultricies id dignissim ac, bibendum in velit.
## Heading Level 2
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt. Vestibulum lacus tortor, ultricies id dignissim ac, bibendum in velit.
### Heading Level 3
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt. Vestibulum lacus tortor, ultricies id dignissim ac, bibendum in velit.
#### Heading Level 4
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt.
##### Heading Level 5
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt.
###### Heading Level 6
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
## Text Formatting
Text can be **bold**, _italic_, or ~~strikethrough~~.
**Bold**, _Italic_, _**Both**_.
**Bold**, _Italic_, ~~Strikethrough~~, ~~_**ALL OF THEM**_~~.
## Links
You can [link](https://example.dom/) to external pages. and other internal [[./Markdown|links]].
## Blockquotes
### Simple Example
> This is a blockquote
> with several lines
### Formatted Example
> **Blockquote Embedded List**
> 1. This is the first list item.
> 2. This is the second list item.
>
> Here's some example code:
> `Markdown.generate();`
## Lists
### Ordered List
In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris.
1. First item
2. Second item
3. Third item
### Unordered List
In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris.
* List item
* Another item
* And another item
### Nested List
In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris.
* Item
1. First Sub-item
2. Second Sub-item
1. Numbered Item
2. Another one
1. Sub-item
* Unordered again
## Code
### Inline Code
Let us use some `inline code` and check out how it `looks`. Here's some `more`.
### Code Blocks
```html
<html>
<head>
<div style="background-color: #333;">
<a href="https://example.com/">Example</a>
</div>
</head>
</html>
```
```css
.niceClass {
color: blue;
background-color: #fff;
}
```
```js
// Javascript code with syntax highlighting.
var fun = function lang(l) {
dateformat.i18n = require('./lang/' + l)
return true;
}
```
## Tables
In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris.
|head one|head two|head three|
|---|:---:|---:|
|ok|good swedish fish|nice|
|out of stock|good and plenty|nice|
|ok|good `oreos`|hmm|
|ok|good `zoute` drop|yumm|
### Simple Example
Title 1 | Title 2 | Title 3 | Title 4
--------------------- | --------------------- | --------------------- | ---------------------
lorem | lorem ipsum | lorem ipsum dolor | lorem ipsum dolor sit
lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit
lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit
lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit
### Longer Example
Title 1 | Title 2 | Title 3 | Title 4
--- | --- | --- | ---
lorem | lorem ipsum | lorem ipsum dolor | lorem ipsum dolor sit
lorem ipsum dolor sit amet | lorem ipsum dolor sit amet consectetur | lorem ipsum dolor sit amet | lorem ipsum dolor sit
lorem ipsum dolor | lorem ipsum | lorem | lorem ipsum
lorem ipsum dolor | lorem ipsum dolor sit | lorem ipsum dolor sit amet | lorem ipsum dolor sit amet consectetur
### Inline Markdown Within Tables
| Inline&nbsp;&nbsp;&nbsp; | Markdown&nbsp;&nbsp;&nbsp; | In&nbsp;&nbsp;&nbsp; | Table |
| ---------- | --------- | ----------------- | ---------- |
| _italics_ | **bold** | ~~strikethrough~~&nbsp;&nbsp;&nbsp; | `code` |
## Horizontal Rule
---
## Tasks and Custom Todos
- [ ] Pending Task
- [x] Completed Task
* [-] Won't Do Task
* [/] In Progress Task
* [*] You are a star.
* [!] Exclamation Mark!
* [?] Question Mark?
* [<] Scheduled Task
* [>] Forwarded Task
## Images
![image](https://just-the-docs.com/assets/images/small-image.jpg)
## Other Elements — Abbr, Sub, Sup, Kbd, Mark
### Description
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
### Subscript
H<sub>2</sub>O
### Superscript
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
### Keys Representation
Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
### Highlighting
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.
## Callouts
> [!EXAMPLE] Examples
>
> Aliases: example
> [!note] Notes
>
> Aliases: note
> [!abstract] Summaries
>
> Aliases: abstract, summary, tldr
> [!info] Info
>
> Aliases: info, todo
> [!tip] Hint
>
> Aliases: tip, hint, important
> [!success] Success
>
> Aliases: success, check, done
> [!question] Question
>
> Aliases: question, help, faq
> [!warning] Warning
>
> Aliases: warning, caution, attention
> [!failure] Failure
>
> Aliases: failure, fail, missing
> [!danger] Error
>
> Aliases: danger, error
> [!bug] Bug
>
> Aliases: bug
> [!quote] Quote
>
> Aliases: quote, cite

View File

@ -3,8 +3,20 @@ title: Public Journal
description: This new section will explore the concept of maintaining a Public Journal.
compartir: true
enableToc: true
updated: 2023-10-20
updated: 2023-10-24
---
## 2023-10-24
### GitHub
* Created new repo [upload-pages-artifact](https://github.com/semanticdata/upload-pages-artifact). Forked to bump `node16` to `node20`, as the former was deprecated by GitHub.
* Created new repo [upload-artifact](https://github.com/semanticdata/upload-artifact). Forked to bump `node16` to `node20`, as the former was deprecated by GitHub.
* Created new repo [deploy-pages](https://github.com/semanticdata/deploy-pages). Forked to bump `node16` to `node20`, as the former was deprecated by GitHub.
* With the three new GitHub actions, I can craft new workflows that use my own actions instead of the ones that have not been updated.
* Renamed [zola-minima] to Agouta. Inspired by the Hispaniolan solenodon.
> [Link Of The Day](https://en.wikipedia.org/wiki/False_friend)
## 2023-10-20
### Notes

View File

@ -0,0 +1,13 @@
---
title: Rhizomatic Learning
compartir: true
updated: 2023-10-02
tags: [stub]
---
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.
Explored initially as an application of post-structural thought to education, it has more recently been identified as methodology for net-enabled education. In contrast to goal-directed and hierarchical theories of learning, it posits that learning is most effective when it allows participants to react to evolving circumstances, preserving lines of flight that allow a fluid and continually evolving redefinition of the task at hand. In such a structure, "the community is the curriculum", subverting traditional notions of instructional design where objectives pre-exist student involvement.
> [!quote] From _Deleuze, Education, and Becoming._
>
> "The underground sprout of a rhizome does not have a traditional root. There is a stem there, the oldest part of which dies off while simultaneously rejuvenating itself at the tip. The rhizome's renewal of itself proceeds autopoietically: the new relations generated via rhizomatic connections are not copies, but each and every time a new map, a cartography. A rhizome does not consist of units, but of dimensions and directions." — Inna Semetsky

8
content/Rhizome.md Normal file
View File

@ -0,0 +1,8 @@
---
title: "Rhizome"
compartir: true
updated: 2023-10-02
tags: [stub]
---
Underground stem in which various plants asexually reproduce via budding.

View 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

View File

@ -0,0 +1,10 @@
---
title: "Static Site Generator"
tags: [markdown]
updated: 2023-10-02
compartir: true
---
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.
Popular choices in SSGs include [Jekyll](https://jekyllrb.com/), [Hugo](https://gohugo.io/), and [Zola](https://www.getzola.org/).

View File

@ -0,0 +1,13 @@
---
title: "The Moon (Earth)"
updated: 2023-10-11
compartir: true
---
Earth's only natural satellite. Orbits around the Earth at an average distance of 384,400 km (238,900 mi).
The usual English proper name for Earth's natural satellite is simply _Moon_. Occasionally, the name **Luna** is used in scientific writing and science fiction to distinguish our moon from others. **Cynthia** is another poetic name, though rare, for the Moon personified as a goddess, while **Selene** (literally "Moon") is the Greek goddess of the Moon.
### Pictures
![the moon zoomed in|400](https://upload.wikimedia.org/wikipedia/commons/e/e1/FullMoon2010.jpg)