From 4c2ada8e890a1d7073b81c7ceaef71c8e8bed12b Mon Sep 17 00:00:00 2001 From: Miguel Pimentel Date: Tue, 24 Oct 2023 15:41:09 -0500 Subject: [PATCH] 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 --- content/Markdown Showcase.md | 252 ++++++++++++++++++++++++++++++ content/Public Journal.md | 14 +- content/Rhizomatic Learning.md | 13 ++ content/Rhizome.md | 8 + content/Rhombic Dodecahedron.md | 20 +++ content/Static Site Generators.md | 10 ++ content/The Moon (Earth).md | 13 ++ 7 files changed, 329 insertions(+), 1 deletion(-) create mode 100644 content/Markdown Showcase.md create mode 100644 content/Rhizomatic Learning.md create mode 100644 content/Rhizome.md create mode 100644 content/Rhombic Dodecahedron.md create mode 100644 content/Static Site Generators.md create mode 100644 content/The Moon (Earth).md diff --git a/content/Markdown Showcase.md b/content/Markdown Showcase.md new file mode 100644 index 000000000..ad5bd722a --- /dev/null +++ b/content/Markdown Showcase.md @@ -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. + + + +# 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 + + +
+ Example +
+ + +``` + +```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    | Markdown    | In    | Table | +| ---------- | --------- | ----------------- | ---------- | +| _italics_ | **bold** | ~~strikethrough~~    | `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 + +GIF is a bitmap image format. + +### Subscript + +H2O + +### Superscript + +Xn + Yn = Zn + +### Keys Representation + +Press CTRL+ALT+Delete to end the session. + +### Highlighting + +Most salamanders 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 diff --git a/content/Public Journal.md b/content/Public Journal.md index 98deae60a..a4884623e 100644 --- a/content/Public Journal.md +++ b/content/Public Journal.md @@ -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 diff --git a/content/Rhizomatic Learning.md b/content/Rhizomatic Learning.md new file mode 100644 index 000000000..e9eb2e56c --- /dev/null +++ b/content/Rhizomatic Learning.md @@ -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 diff --git a/content/Rhizome.md b/content/Rhizome.md new file mode 100644 index 000000000..f0436ac9a --- /dev/null +++ b/content/Rhizome.md @@ -0,0 +1,8 @@ +--- +title: "Rhizome" +compartir: true +updated: 2023-10-02 +tags: [stub] +--- + +Underground stem in which various plants asexually reproduce via budding. diff --git a/content/Rhombic Dodecahedron.md b/content/Rhombic Dodecahedron.md new file mode 100644 index 000000000..1aabbbc71 --- /dev/null +++ b/content/Rhombic Dodecahedron.md @@ -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 diff --git a/content/Static Site Generators.md b/content/Static Site Generators.md new file mode 100644 index 000000000..68ae44020 --- /dev/null +++ b/content/Static Site Generators.md @@ -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/). diff --git a/content/The Moon (Earth).md b/content/The Moon (Earth).md new file mode 100644 index 000000000..715686b96 --- /dev/null +++ b/content/The Moon (Earth).md @@ -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)