From 67cc292ec6cb21e35bcabd985e0adb07b9732566 Mon Sep 17 00:00:00 2001 From: Miguel Pimentel Date: Thu, 14 Dec 2023 15:15:34 -0600 Subject: [PATCH] Pull-Request [ariasae-12-14-2023] from Obsidian (#48) * PUSH NOTE : Mermaid JS Graphs.md * PUSH NOTE : Projects.md * PUSH NOTE : Words I Like.md --- content/Mermaid JS Graphs.md | 111 +++++++++++++++++++++++++++++++++++ content/Projects.md | 35 +++++++++-- content/Words I Like.md | 10 +++- 3 files changed, 151 insertions(+), 5 deletions(-) create mode 100644 content/Mermaid JS Graphs.md diff --git a/content/Mermaid JS Graphs.md b/content/Mermaid JS Graphs.md new file mode 100644 index 000000000..c678cefd2 --- /dev/null +++ b/content/Mermaid JS Graphs.md @@ -0,0 +1,111 @@ +--- +title: Mermaid Graphs +updated: 2023-12-14 +compartir: true +--- + + +Mermaid JS is a JavaScript based diagramming and charting tool that renders Markdown-inspired text definitions to create and modify diagrams dynamically. Mermaid lets you create diagrams and visualizations using text and code. + +Check out the [Documentation](https://mermaid.js.org/intro/). + +## Graph Examples + +### Git Graph + +https://mermaid.js.org/syntax/gitgraph.html + +``` +gitGraph +   commit +   commit +   branch develop +   checkout develop +   commit +   commit +   checkout main +   merge develop +   commit +   commit +``` + +```mermaid +gitGraph +   commit +   commit +   branch develop +   checkout develop +   commit +   commit +   checkout main +   merge develop +   commit +   commit +``` + +### Mindmap + +https://mermaid.js.org/syntax/mindmap.html + +``` +mindmap +  root((mindmap)) +    Origins +      Long history +      ::icon(fa fa-book) +      Popularisation +        British popular psychology author Tony Buzan +    Research +      On effectiveness
and features +      On Automatic creation +        Uses +            Creative techniques +            Strategic planning +            Argument mapping +    Tools +      Pen and paper +      Mermaid +``` + +```mermaid +mindmap +  root((mindmap)) +    Origins +      Long history +      ::icon(fa fa-book) +      Popularisation +        British popular psychology author Tony Buzan +    Research +      On effectiveness
and features +      On Automatic creation +        Uses +            Creative techniques +            Strategic planning +            Argument mapping +    Tools +      Pen and paper +      Mermaid +``` + +### Gantt + +```mermaid +gantt + title GL Approaches Lighting Retrofit + dateFormat YYYY-MM-DD + excludes weekends + Construction Phase :2024-01-08, 2024-02-15 + West Bank :2024-01-08, 2024-01-09 + Westgate :2024-01-10, 2024-01-12 + Raymond Ave :2024-01-12, 1d + Fairview Ave: 2024-01-15, 2024-01-16 + Wheeler St Ped Cross :2024-01-17,1d + Snelling Ave :2024-01-18,2024-01-22 + Hamline Ave :2024-01-23,2024-01-25 + Lexington Pkwy :2024-01-26,2024-01-30 + Victoria St :2024-01-31,2024-02-02 + Dale St :2024-02-05,2024-02-07 + Western Ave :2024-02-08,2024-02-12 + Capitol / Rice St :2024-02-13,1d + Robert St :2024-02-14,1d +``` diff --git a/content/Projects.md b/content/Projects.md index b2a672821..2ccf39420 100644 --- a/content/Projects.md +++ b/content/Projects.md @@ -1,7 +1,7 @@ --- title: Projects compartir: true -updated: 2023-12-12 +updated: 2023-12-14 --- @@ -9,23 +9,50 @@ A compilation of my projects. ## Personal Projects -- Mabuya – [Repo](https://github.com/semanticdata/mabuya) -- Forgetful Notes – [Repo](https://github.com/semanticdata/forgetful-notes) -- Obsidian Starter Vault +### Mabuya + +Minimal Zola theme focused on helping you build an elegant, fast, lightweight, and SEO-ready blog. + +[Repo](https://github.com/semanticdata/mabuya) + +### Forgetful Notes + +My digital garden of knowledge. It serves as a platform for my learning and creative endeavours. A space for thinking through, building upon, and coming back to. + +[Repo](https://github.com/semanticdata/forgetful-notes) + +### Obsidian Starter Vault + +Opinionated compilation of extensions and settings to help you learn and start exploring Obsidian. + +[Repo](https://github.com/semanticdata/obsidian-starter-vault) ## Firefox Extensions - Brave Search + - Firefox extension adding Brave Search as a search engine option within Firefox. Also includes keyword `@brave` as a search shortcut. +- ChatGPT in Sidebar + - Firefox extension to open ChatGPT within the Firefox sidebar. This extension adds a new section to the sidebar which contains the ChatGPT web app. It also adds a shortcut, and a button toggle within the toolbar. - Discord in Sidebar + - Firefox extension to display Discord within the Firefox sidebar. This extension adds a new section to the sidebar which contains the Discord web app. It also adds a shortcut, and a button toggle within the toolbar. - Fastmail in Sidebar + - Firefox extension to display Fastmail within the Firefox sidebar. This extension adds a new section to the sidebar which contains the Fastmail website. It also adds a shortcut, and a button toggle within the toolbar. - Llama Life in Sidebar + - Firefox extension to display Llama Life within the Firefox sidebar. This extension adds a new section to the sidebar which contains the Llama Life web app. It also adds a shortcut, and a button toggle within the toolbar. - Sorry, Minnesota Only + - Firefox extension that removes all states starting with "M" except Minnesota within most dropdown menus. This allows you to press "M" in your keyboard and go directly to it, instead of any other state options. - Telegram in Sidebar + - Firefox extension to display Telegram within the Firefox sidebar. This extension adds a new section to the sidebar which contains the Telegram web app. It also adds a shortcut, and a button toggle within the toolbar. - Text Revealer + - Firefox extension to reveal deeper information about highlighted text on a web page. Creates a pop up with additional information about the text selected. - TickTick in Sidebar + - Firefox extension to display TickTick within the Firefox sidebar. This extension adds a new section to the sidebar which contains the TickTick web app. It also adds a shortcut, and a button toggle within the toolbar. - TickTick Pinned + - Firefox extension to open or toggle TickTick's web app within a pinned tab. This extension adds a keyboard shortcut, and a toggle button within the toolbar. - WhatsApp in Sidebar + - Firefox extension to open WhatsApp Web within the Firefox sidebar. This extension adds a new section to the sidebar which contains the WhatsApp web app. It also adds a shortcut, and a button toggle within the toolbar. - WhatsApp Pinned + - Firefox extension to open or toggle WhatsApp Web within a pinned tab. This extension adds a keyboard shortcut, and a toggle button within the toolbar. ## Zola Themes (WIP) diff --git a/content/Words I Like.md b/content/Words I Like.md index a4239e9b2..8603fb5db 100644 --- a/content/Words I Like.md +++ b/content/Words I Like.md @@ -3,7 +3,7 @@ title: Words I Like tags: - collection compartir: true -updated: 2023-12-13 +updated: 2023-12-14 enableToc: true --- @@ -79,6 +79,10 @@ Also used as a _noun_ to describe something that soothes, calms, or comforts. 1. Appropriateness to the purpose at hand. 2. Adherence to self-serving means. +### Flotsam (noun) + +1. The wreckage of a ship or its cargo found floating on or washed up by the sea. + ### Forestall (noun) 1. To delay, hinder, or prevent (an event, for example) by taking action beforehand: synonym: prevent. @@ -130,6 +134,10 @@ Also used as a _noun_ to describe something that soothes, calms, or comforts. 1. A short trip or excursion, usually for pleasure; an outing. +### Jetsam (noun) + +1. Unwanted material or goods that have been thrown overboard from a ship and washed ashore, especially material that has been discarded to lighten the vessel. + ### Logy (slang) 1. Characterized by lethargy; sluggish.