Pull-Request [ariasae-12-12-2023] from Obsidian (#45)

* PUSH NOTE : JavaScript.md

* PUSH NOTE : Svelte.md

* PUSH NOTE : CSS.md

* PUSH NOTE : Public Journal.md

* PUSH NOTE : Past Titles and Roles.md

* PUSH NOTE : Markdown.md

* PUSH NOTE : About.md
This commit is contained in:
Miguel Pimentel 2023-12-12 19:37:42 -06:00 committed by GitHub
parent a931a4f6ba
commit 8ae5ba3eac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 49 additions and 14 deletions

View File

@ -8,28 +8,20 @@ tags:
## Hi! I'm Miguel 👋🏼
I am a problem solver, hobby developer, music enjoyer, and public infrastructure enthusiast. I live in Minnesota, also known as the _"Land of 10,000 Lakes"_ for having over 14,000 bodies of fresh water.
I am a problem solver, hobby developer, music enjoyer, and public infrastructure enthusiast. I live in Minnesota, also known as the _"Land of 10,000 Lakes"_ for having over 14,000 bodies of fresh water. I know… it's silly. 😅
I think a lot, work a lot, have existential crises, and know just enough about making websites to make me dangerous. I enjoy writing, reading, coding, listening to music, and love having a problem to solve.
If you are aching for more, check out what [[./Tools|tools]] I use daily, or read my [[./Dev Journal|public journal]].
If you are aching for more, check out what [[./Tools|tools]] I use daily, or read my [[./Public Journal|public journal]].
### As of December 2023, I am…
… learning about web dev with [Zola](https://www.getzola.org).
… learning about web dev with [[./Zola|Zola]].
… making simple browser [extensions](https://addons.mozilla.org/en-US/firefox/user/17772574/).
… collecting bookmarks with [Raindrop](https://raindrop.io/SemanticData).
… compiling [configuration files](https://github.com/semanticdata/dotfiles) in [GitHub](https://github.com/).
… developing a [theme](https://github.com/semanticdata/obsidian-sample-theme) for [Obsidian](https://obsidian.md/).
### These Are Things I…
| … Like | … Love | … am Passionate About |
| -------------------- | -------------------- | --------------------- |
| Writing / Journaling | Listening to Music | Firefighting |
| Photography | Computer Programming | Public Infrastructure |
| Video Games | Motorcycles | Open-source Software |
### Reach Out
Here are some places you can find me on the web. You'll probably be able to find me in other places too, provided you look hard enough.

18
content/CSS.md Normal file
View File

@ -0,0 +1,18 @@
---
title: CSS
compartir: true
aliases:
- Cascading Style Sheets
updated: 2023-12-12
---
CSS (Cascading Style Sheets) is a language used to describe the visual appearance and formatting of HTML documents. It defines how elements are presented on web pages, including layout, color, typography, and more. It enhances the aesthetics and overall user experience of websites.
## CSS Frameworks
CSS frameworks are pre-prepared collections of CSS stylesheets that help developers create visually appealing and responsive websites. These frameworks provide a set of standardized and reusable CSS components, layout systems, and pre-designed templates, making it easier to build attractive and consistent web pages.
One popular CSS framework that deserves special mention is [[./Bulma|Bulma]]. Why does it deserve especial attention? Because I like it. 😅
Known for its simplicity and flexibility, [[./Bulma|Bulma]] has gained significant traction among web developers. Here's a closer look at why it has become a go-to choice for many.

15
content/JavaScript.md Normal file
View File

@ -0,0 +1,15 @@
---
title: JS
aliases:
- Javascript
- JavaScript
compartir: true
updated: 2023-12-12
---
[JavaScript](https://en.wikipedia.org/wiki/JavaScript) is a versatile and powerful programming language used for building interactive and dynamic web applications. It runs on the client-side, enabling interactivity on web pages. JavaScript can manipulate HTML elements, handle events, perform calculations, and communicate with servers, making it a key technology in modern web development.
## JavaScript Frameworks
JavaScript frameworks are pre-written and reusable code libraries that simplify and speed up web development. They provide tools, functions, and structure to build dynamic and interactive websites or applications. Frameworks like React, Vue, [[./Svelte|Svelte]], and Angular make it easier to handle complex logic and create engaging user interfaces.

View File

@ -7,6 +7,6 @@ tags:
---
Markdown is a lightweight [[./Markup Language|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.
Markdown is a lightweight [[./Markup Language|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]] to see what Markdown can do.

View File

@ -4,7 +4,6 @@ compartir: true
updated: 2023-12-12
---
### Past Titles and Roles
| Title | Description |
| :------------------------------------- | :-------------------------------------------------------------------------------------------------- |

View File

@ -17,10 +17,13 @@ updated: 2023-12-12
- Created a new Firefox extension to hold [ChatGPT in the Sidebar](https://github.com/semanticdata/firefox-chatgpt-in-sidebar).
- Started learning [Svelte](https://svelte.dev/) with the aim to create a Milkdown markdown editor web app.
- Started learning [Bulma](https://bulma.io/). I would like to use it in conjunction with [Zola](https://www.getzola.org/) to create better looking websites.
- Started learning [[./Bulma|Bulma]] I would like to use it in conjunction with [[./Zola|Zola]] to create better looking websites.
- I intend to restart using [Espanso](https://espanso.org/) to help with repetitive work phrases, addresses, contractors, etc.
### November
- Created a new Firefox extension, [WhatsApp Pinned](https://github.com/semanticdata/firefox-ticktick-pinned), and [TickTick Pinned](https://github.com/semanticdata/firefox-ticktick-pinned) which toggle their respective web apps in a pinned tab.
- Ported the Chrome extension [Text Revealer](https://github.com/jamigibbs/text-revealer-chrome-extension) to Firefox. [Source](https://github.com/semanticdata/text-revealer-firefox-extension)
> [!notice]
> The more technical aspect of the Public Journal have been extracted into the new [[./Dev Journal|Dev Journal]]. Which I ttotally intend to keep updated. 🙄

8
content/Svelte.md Normal file
View File

@ -0,0 +1,8 @@
---
title: Svelte
compartir: true
updated: 2023-12-12
---
[Svelte](https://svelte.dev/) is a modern [[./JavaScript#JavaScript Frameworks|JavaScript Framework]] for building web applications. It compiles components into efficient, framework-free [[./JavaScript|JavaScript]] code, resulting in fast and lightweight applications. With its reactive approach and declarative syntax, Svelte simplifies development and delivers impressive performance.