chore: update pages

This commit is contained in:
Daniel Gallegos 2024-10-10 18:29:56 -04:00
parent 6f9fe60400
commit 8162746fea
No known key found for this signature in database
114 changed files with 697 additions and 109 deletions

View file

@ -1,13 +1,16 @@
tags:: #sapling #infrastructure #github #logseq #sync #technology
- > taco: logseq was the answer i wanted the whole time
taco: it was sitting in front of me
taco: i pay for it
taco: i'm just dumb.
taco: but here we are
- me, in the [birdcat cafe matrix server](https://chat.birdcat.cafe)
- tl;dr: the whole thing is hosted on [[github]] pages! you can check out the source code [here](https://github.com/TacoWolf/garden). what we do is sync our [[logseq]] notes using their beta sync client across all of our devices and then use their auto-commit function to save our files every 60 seconds. after we're satisfied with our writing, we push those commits upstream to github. logseq then compiles itself as a [single page application](https://github.com/logseq/publish-spa). check out [this workflow](https://github.com/TacoWolf/garden/blob/main/.github/workflows/publish.yml) to see how that publish action works. :3
- # set up [[logseq]]
- or whatever your [[personal knowledge management]] tool of choice is.
- or whatever your [[personal knowledge management]] tool of choice is. this specific guide requires the use of logseq, though.
- # create a new [[github]] [[repository]]
- you'll be using this to synchronize your notes in the cloud.
- you'll be using this to synchronize your notes in [[the cloud]].
- i keep my notes in [this repo](https://github.com/TacoWolf/garden).
- i use [[logseq]]'s auto commit functionality to do the heavy lifting for me.
- # set up the github auto publish file
@ -39,6 +42,5 @@
- set up a custom domain under your settings page, which is still something like `https://github.com/yourusername/yourrepo/settings/pages`. then input the custom domain and start pushing to your repo. the github robots will [[automagically]] do the work for you. you can see examples of pages being pushed [here](https://github.com/TacoWolf/garden/actions/workflows/publish.yml).
- # look at all of its majesty
- check out the live url. [ta-daaaa!](https://garden.birdcat.cafe) it should be working now.
- tags:: #sapling #infrastructure #github #logseq #sync
- i'm not changing the title. long urls 5evr.
- did you know [[mastodon]] urls shorten down to like 32 characters? so this won't matter for my target audience lol
- i'm not changing the title. long urls 5evr.
- did you know [[mastodon]] urls shorten down to like 32 characters? so this won't matter for my target audience lol

View file

@ -0,0 +1,46 @@
tags:: #sapling #infrastructure #github #logseq #sync #technology
- > taco: logseq was the answer i wanted the whole time
taco: it was sitting in front of me
taco: i pay for it
taco: i'm just dumb.
taco: but here we are
- me, in the [birdcat cafe matrix server](https://chat.birdcat.cafe)
- tl;dr: the whole thing is hosted on [[github]] pages! you can check out the source code [here](https://github.com/TacoWolf/garden). what we do is sync our [[logseq]] notes using their beta sync client across all of our devices and then use their auto-commit function to save our files every 60 seconds. after we're satisfied with our writing, we push those commits upstream to github. logseq then compiles itself as a [single page application](https://github.com/logseq/publish-spa). check out [this workflow](https://github.com/TacoWolf/garden/blob/main/.github/workflows/publish.yml) to see how that publish action works. :3
- # set up [[logseq]]
- or whatever your [[personal knowledge management]] tool of choice is. this specific guide requires the use of logseq, though.
- # create a new [[github]] [[repository]]
- you'll be using this to synchronize your notes in [[the cloud]].
- i keep my notes in [this repo](https://github.com/TacoWolf/garden).
- i use [[logseq]]'s auto commit functionality to do the heavy lifting for me.
- # set up the github auto publish file
- there's a [github action in the marketplace](https://github.com/marketplace/actions/logseq-publish-spa); that'll [[take you to the mountain]]. you can just copy and paste the one that's there, no tweaking needed. here's a copy just in case:
- ```
on: [push]
permissions:
contents: write
jobs:
test:
runs-on: ubuntu-latest
name: Publish Logseq graph
steps:
- uses: actions/checkout@v3
- uses: logseq/publish-spa@v0.2.0
- name: add a nojekyll file # to make sure asset paths are correctly identified
run: touch $GITHUB_WORKSPACE/www/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: www
```
- you're going to want to go to `https://github.com/yourusername/yourrepo/settings/pages`. under here, you're going to want to select your source as `Deploy from a branch`.
- this will publish your page at `yourusername.github.io/yourrepository`. HOWEVER, you probably want custom dns stuff like i've got setup. so you need to...
-
- # set up the github repository for custom dns
- your [[dns]] provider is gonna have a different setup depending on what their web interface looks like, so i can't help you too much here. but you're going to need a `CNAME` record that redirects to `yourusername.github.io`. that will point that url to github's servers so it will know what domain it's needing to serve for that request it just got from your dns rerouting.
- set up a custom domain under your settings page, which is still something like `https://github.com/yourusername/yourrepo/settings/pages`. then input the custom domain and start pushing to your repo. the github robots will [[automagically]] do the work for you. you can see examples of pages being pushed [here](https://github.com/TacoWolf/garden/actions/workflows/publish.yml).
- # look at all of its majesty
- check out the live url. [ta-daaaa!](https://garden.birdcat.cafe) it should be working now.
- i'm not changing the title. long urls 5evr.
- did you know [[mastodon]] urls shorten down to like 32 characters? so this won't matter for my target audience lol

View file

@ -0,0 +1,46 @@
tags:: #sapling #infrastructure #github #logseq #sync #technology
- > taco: logseq was the answer i wanted the whole time
taco: it was sitting in front of me
taco: i pay for it
taco: i'm just dumb.
taco: but here we are
- me, in the [birdcat cafe matrix server](https://chat.birdcat.cafe)
- tl;dr: the whole thing is hosted on [[github]] pages! you can check out the source code [here](https://github.com/TacoWolf/garden). what we do is sync our [[logseq]] notes using their beta sync client across all of our devices and then use their auto-commit function to save our files every 60 seconds. after we're satisfied with our writing, we push those commits upstream to github. logseq then compiles itself as a [single page application](https://github.com/logseq/publish-spa). check out [this workflow](https://github.com/TacoWolf/garden/blob/main/.github/workflows/publish.yml) to see how that publish action works. :3
- # set up [[logseq]]
- or whatever your [[personal knowledge management]] tool of choice is. this specific guide requires the use of logseq, though.
- # create a new [[github]] [[repository]]
- you'll be using this to synchronize your notes in [[the cloud]].
- i keep my notes in [this repo](https://github.com/TacoWolf/garden).
- i use [[logseq]]'s auto commit functionality to do the heavy lifting for me.
- # set up the github auto publish file
- there's a [github action in the marketplace](https://github.com/marketplace/actions/logseq-publish-spa); that'll [[take you to the mountain]]. you can just copy and paste the one that's there, no tweaking needed. here's a copy just in case:
- ```
on: [push]
permissions:
contents: write
jobs:
test:
runs-on: ubuntu-latest
name: Publish Logseq graph
steps:
- uses: actions/checkout@v3
- uses: logseq/publish-spa@v0.2.0
- name: add a nojekyll file # to make sure asset paths are correctly identified
run: touch $GITHUB_WORKSPACE/www/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: www
```
- you're going to want to go to `https://github.com/yourusername/yourrepo/settings/pages`. under here, you're going to want to select your source as `Deploy from a branch`.
- this will publish your page at `yourusername.github.io/yourrepository`. HOWEVER, you probably want custom dns stuff like i've got setup. so you need to...
-
- # set up the github repository for custom dns
- your [[dns]] provider is gonna have a different setup depending on what their web interface looks like, so i can't help you too much here. but you're going to need a `CNAME` record that redirects to `yourusername.github.io`. that will point that url to github's servers so it will know what domain it's needing to serve for that request it just got from your dns rerouting.
- set up a custom domain under your settings page, which is still something like `https://github.com/yourusername/yourrepo/settings/pages`. then input the custom domain and start pushing to your repo. the github robots will [[automagically]] do the work for you. you can see examples of pages being pushed [here](https://github.com/TacoWolf/garden/actions/workflows/publish.yml).
- # look at all of its majesty
- check out the live url. [ta-daaaa!](https://garden.birdcat.cafe) it should be working now.
- i'm not changing the title. long urls 5evr.
- did you know [[mastodon]] urls shorten down to like 32 characters? so this won't matter for my target audience lol

View file

@ -0,0 +1,11 @@
tags:: #technology #[[programming language]] #infrastructure #seed
- **prev:** [[programming]]
- a cross-[[programming paradigm]] general-purpose [[programming language]].
- ```rust
fn main() {
println!("Hello, World!");
}
```
- learn how to install rust [here](https://www.rust-lang.org/learn/get-started).
- read the manual for rust [here](https://doc.rust-lang.org/book/) and [here](https://rust-book.cs.brown.edu/). the first one is the official one with no fancy dippings. the second one has quizzes, highlighting, visualizations, etc. [[pick your poison]].
- **next:** [[programming language]]

View file

@ -0,0 +1,11 @@
tags:: #technology #[[programming language]] #infrastructure #seed
- **prev:** [[programming]]
- a cross-[[programming paradigm]] general-purpose [[programming language]].
- ```rust
fn main() {
println!("Hello, World!");
}
```
- learn how to install rust [here](https://www.rust-lang.org/learn/get-started).
- read the manual for rust [here](https://doc.rust-lang.org/book/) and [here](https://rust-book.cs.brown.edu/). the first one is the official one with no fancy dippings. the second one has quizzes, highlighting, visualizations, etc. [[pick your poison]].
- **next:** [[programming language]]

View file

@ -0,0 +1,11 @@
tags:: #technology #[[programming language]] #infrastructure #seed
- **prev:** [[programming]]
- a cross-[[programming paradigm]] general-purpose [[programming language]].
- ```rust
fn main() {
println!("Hello, World!");
}
```
- learn how to install rust [here](https://www.rust-lang.org/learn/get-started).
- read the manual for rust [here](https://doc.rust-lang.org/book/) and [here](https://rust-book.cs.brown.edu/). the first one is the official one with no fancy dippings. the second one has quizzes, highlighting, visualizations, etc. [[pick your poison]].
- **next:** [[programming language]]

View file

@ -1 +1 @@
["6819d5ac-7c6b-4965-ba7b-e56686e61416" "e11b5282-195e-40cb-af42-af79882dc719" 688]
["6819d5ac-7c6b-4965-ba7b-e56686e61416" "e11b5282-195e-40cb-af42-af79882dc719" 707]

View file

@ -1,3 +1,2 @@
tags:: #[[video [[games]]]]
-

View file

@ -1,5 +1,4 @@
tags:: #garden #zettlekasten #[[digital garden]]
- **prev:** [[seed]]
- seeds are our word for [[zettles]], a part of [[zettlekasten]]. our methodology is to keep things simple but have enough metadata for [[logseq]] to pick up and generate the graph view from.
- # seed format

View file

@ -1,5 +1,4 @@
tags:: #seed
- **prev:** [[zettlekasten]]
- > the web as topology
- digital gardens, according to [maggie appleton](https://maggieappleton.com/garden-history) are organized around "contextual relationships and associative links". i personally believe [[logseq]] conduces itself really well to the topography-based bi-directionality of the web, especially since you can publish the whole thing as a [single page app](how to upload a logseq graph that's synchronized to github pages and also publish it to the internet) and link to individual pages within it *and* visualize your thoughts as a graph instantly.

View file

@ -1,5 +1,4 @@
tags:: #seed, #section
- **prev:** [[entrance]]
- things that we like that you should check out.
- ## categories

View file

@ -1,5 +1,4 @@
tags:: #sapling
- **prev:** root 🌳
- ![aeolus.thisisfine.ych.tropicals.orinoxide.compressed.png](../assets/aeolus.thisisfine.ych.tropicals.orinoxide.compressed_1691948586264_0.png){:height 726, :width 718}
- > this is fine. :3

View file

@ -9,16 +9,28 @@ tags:: #[[web browser]] #[[open source]] #technology
- why? i don't remember any of my passwords and neither should you
- **libredirect**: https://addons.mozilla.org/en-US/firefox/addon/libredirect/
- why? redirects to privacy respecting frontends
- huge shout out to [proxitok](https://proxitok.pabloferreiro.es/) btw
- **ublock origin**: https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
- why? blocks ads
- **enhancer for youtube**: https://addons.mozilla.org/en-US/firefox/addon/enhancer-for-youtube
- why? makes watching youtube a whole lot better
- **sponsorblock for youtube**: https://sponsor.ajay.app/
- why? makes youtube watchable
- **dearrow** ($ paid): https://dearrow.ajay.app/
- why? makes youtube titles readable
- **xbrowsersync**: https://addons.mozilla.org/en-US/firefox/addon/xbs/
- why? syncs bookmarks anonymously w/ encryption
- **search by image**: https://addons.mozilla.org/en-US/firefox/addon/search_by_image/
- why? searches by image lmao it's in the title
- **indie wiki buddy**: https://addons.mozilla.org/en-US/firefox/addon/indie-wiki-buddy/
- why? redirects to cooler wikis that are actually maintained.
- **bypass paywalls firefox clean**: https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean
- why? redirects to cooler wikis that are actually maintained
- **bypass paywalls firefox clean**: https://github.com/bpc-clone/bypass-paywalls-firefox-clean
- why? banned from the mozilla store by dmca, so you know it's good.
- **humble bundle downloader**: https://addons.mozilla.org/en-US/firefox/addon/humble-bundle-downloader/
- why? i need to download those mf books
- **kde connect**: https://addons.mozilla.org/en-US/firefox/addon/kde_connect/
- why? kde connect is awesome, that's why
- **firefox multi-account containers**: https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/
- why? helps containerize the web. ignore the vpn shit
-
- **next:** [[websites]]

View file

@ -1,5 +1,4 @@
tags:: #seed
- **prev:** [[entertainment]]
- there are many types of games to play! here is a non-exhaustive list of games the [[head gardener]] likes.
- [[video [[games]]]]

View file

@ -1,5 +1,4 @@
tags:: #sapling #github #logseq #sync #technology
- > taco: logseq was the answer i wanted the whole time
taco: it was sitting in front of me
taco: i pay for it

View file

@ -0,0 +1,5 @@
tags:: #technology #websites #[[web development]]
- **prev:** [[web development]]
- hugo is an open source static-site generator written in [[go]].
- https://gohugo.io/
- **next:** [[websites]]

View file

@ -1,5 +1,4 @@
tags:: #seed, #section
- prev: [[entrance]]
- this is a collection of (hopefully) helpful texts to guide you to use [[the grid]] *en el mundo de la informática* {the world of technology}.
- # topics

View file

@ -1,5 +1,4 @@
tags:: #seed
- **prev:** [[digital garden]]ing
- > the fastest way to learn - [swyx, 2018](https://www.swyx.io/learn-in-public)
- learning is a neverending process. it's just [endless toil](logseq://graph/garden?block-id=64d816c0-7fbe-49bc-8852-730e511633b2). we have reached a point in information where nobody knows everything! but that's a good thing. we just need to make sure we can share our knowledge publicly so that others can pick up where we left off. that's why we should write down our thoughts and ideas and fail forwards!

View file

@ -1,5 +1,4 @@
tags:: #[[open source]] #[[personal knowledge management]]
- **prev:** [[personal knowledge management]]
- open source knowledge base software.
- home: https://logseq.com

View file

@ -1,5 +1,4 @@
tags:: #seed #flower #fediverse
- prev: [[social media]]
- one of the coolest social networks on [da fedoverse](fediverse).
- i have like 80 accounts. [you'll never find me](https://meow.social/@chirpbirb).

View file

@ -1,5 +1,4 @@
tags:: #seed
- **prev:** [[entertainment]]
- these are all of the sick jams i like.
- # artists

View file

@ -1,11 +1,9 @@
tags:: #technology #[[open source]]
- **prev:** [[software]]
- a term coined by [Christine Peterson](https://en.wikipedia.org/wiki/Christine_Peterson) that relates to a produce which is licensed to permit modifications and redistribution of its [[source code]].
- formally, there's a definition by the [open source initiative](https://opensource.org/osd):
- free redistribution
logseq.order-list-type:: number
- you shouldn't be restricted
- source code
logseq.order-list-type:: number
- derived works
@ -20,5 +18,7 @@ tags:: #technology #[[open source]]
logseq.order-list-type:: number
- license must not be specific to a product
logseq.order-list-type:: number
- license must be technology neutral
logseq.order-list-type:: number
- not to be confused with [[source available]] products.
- **next:** [[linux]]

View file

@ -1,5 +1,4 @@
tags:: #seed #knowledge #meta #zettlekasten #life
- prev: [[infrastructure]]
- personal knowledge management is a way of managing the knowledge a person... knows. related to having a [[second brain]]. read more [here](https://en.wikipedia.org/wiki/Personal_knowledge_management). i personally use [[zettlekasten]].
- next: [[zettlekasten]]

View file

@ -1,5 +1,4 @@
tags:: #technology #[[programming language]] #seed
- **prev:** [[programming]]
- a cross-[[programming paradigm]] general-purpose [[programming language]].
- ```rust

View file

@ -1,5 +1,4 @@
tags:: #seed #garden #meta
- **prev:** [[garden]]
- seeds are pages that are just being planted. watch as they grow! seeds can come from anywhere. consider these drafts, works in progress. they may grow right in front of your eyes!
- ### anatomy of a seed

View file

@ -1,5 +1,4 @@
tags:: #technology #html #websites
- **prev:** [[html]]
- [[html]] evolved as peoples needs changed on the internet. where there was a specific need for text documents before there is now a need for posting articles, tables, videos, figures, and more! thankfully, html5 brought many semantic elements that you can use in all of your wedsides.
- ## resources

View file

@ -1,5 +1,4 @@
tags:: #technology #[[core concepts]]
- **prev:**
-
- encoded computer instructions.
- **next:**

View file

@ -1,5 +1,4 @@
tags:: #flower #music #skrillex
- **prev:** [[flower]]
- # **ROCK AND ROLL!**
- {{video https://www.youtube.com/watch?v=eOofWzI3flA}}

View file

@ -1,5 +1,4 @@
tags:: #meta
- ## [[seed]]
template:: seed
template-including-parent:: false
@ -8,3 +7,4 @@ tags:: #meta
- **prev:**
-
- **next:**
-

View file

@ -1,5 +1,4 @@
tags:: #life #knowledge
- **prev:** [[thoughts]]
- also known as [[learning in public]].
- **next:** [[learning in public]]

View file

@ -1,5 +1,4 @@
tags:: #art
- **prev:** [[games]]
- video games are electronic games that usually require [[user input]] to manipulate text and images on a [[display]].
- read more [here](https://en.wikipedia.org/wiki/Video_game).

View file

@ -0,0 +1,11 @@
tags:: #flower #[[mr. robot]]
- **prev:** [[html]]
- > i remember when i was a kid, i got into web design by ripping off sites i liked.
> all you had to do was `view-source` on your browser and there it was:
> the code.
> you could copy paste it. modify it a little. put your name on it and like that,
> it was your site.
- > `view-source`.
> what if we had that for people?
> would people really want to see?
- **next:** [[mr. robot]]

View file

@ -1,5 +1,4 @@
tags:: #meta #seed
- **prev:** [[personal knowledge management]]
- zettlekasten is a german word meaning "slip box".
- zettlekasten is a note taking system. it was popularized by [sonkhe ahrens' "how to take smart notes"](https://www.soenkeahrens.de/en/takesmartnotes) by documenting the way that [niklas luhmann](https://en.wikipedia.org/wiki/Niklas_Luhmann) was able to use the original zettlekasten method to write so prolificly.

View file

@ -0,0 +1,2 @@
tags:: #[[video [[games]]]]
-

View file

@ -0,0 +1,22 @@
tags:: #garden #zettlekasten #[[digital garden]]
- **prev:** [[seed]]
- seeds are our word for [[zettles]], a part of [[zettlekasten]]. our methodology is to keep things simple but have enough metadata for [[logseq]] to pick up and generate the graph view from.
- # seed format
- id:: 64e3fb8f-7148-427c-837d-4a38f70293a2
```
tags: #whatev
**prev:**
[content]
**next:**
```
- technically the first line has two `::` but [[logseq]] parses it weird so there.
- `tags::` - related concepts to this one/categorization.
- the reason why tags are at the top is to take advantage of [[logseq]]'s built in tagging system. :3
- this allows us to [[hyperlink]] to another related concept, keep engagement with another, related idea, and give it metadata to sort through. nothing more, nothing less! [[keep it simple]], part of [[lazy engineering]]. 😎🤙
- `**prev:**` - something related to the concept, possibly something overarching.
- bolded to look pretty.
- `[content]` - you know, whatever the seed contains.
- `**next:**` - another concept to keep the flow going!
- also bolded to stand out and look pretty.
- we use a logseq [template](logseq://graph/garden?block-id=64db7d5e-9da5-432a-aa11-f97ae5d113ec) for this, too, for ease of use.
- **next:** [[gardening habits]]

View file

@ -1,5 +1,6 @@
tags:: #seed
- **prev:** [[zettlekasten]]
- > the web as topology
-
- digital gardens, according to [maggie appleton](https://maggieappleton.com/garden-history) are organized around "contextual relationships and associative links". i personally believe [[logseq]] conduces itself really well to the topography-based bi-directionality of the web, especially since you can publish the whole thing as a [single page app](how to upload a logseq graph that's synchronized to github pages and also publish it to the internet) and link to individual pages within it *and* visualize your thoughts as a graph instantly.
-
- ## other gardens to look at
@ -7,5 +8,4 @@
- tom chritchlow's [wikifolders](https://tomcritchlow.com/wiki/)
- buster benson's [piles](https://busterbenson.com/piles) and [codex](https://busterbenson.com/codex)
- nathaniel ellison's [notes](https://www.nateliason.com/notes)
- ### references
tags:: #seed
- **next:** [[thinking in public]]

View file

@ -1,8 +1,11 @@
public:: true
- things that i like that you should check out.
- [[music]]
- [[movies]]
- [[shows]]
- [[books]]
- [[games]]
- [[websites]]
tags:: #seed, #section
- **prev:** [[entrance]]
- things that we like that you should check out.
- ## categories
- #music
- #movies
- #shows
- #literature
- #games
- #websites
- **next:** [[infrastructure]]

View file

@ -1,8 +1,11 @@
- ![](../assets/Screenshot_from_2023-08-12_23-36-59_1691898902368_0.png)
- artwork by [@orinoxide@mastodon.art](https://mastodon.art/@orinoxide)
- please observe the sections of the [[garden]] we maintain at your leisure. [[take your time]].
- 🤔 [[thoughts]] - ideas we're thinking on. watch them grow into [seeds](seed) in real time.
- 👀 [[entertainment]] - things that activate my bio-digital jazz, man.
- ⚙️ [[infrastructure]] - technology, code, guides, etc.
- is there a [[weed]]? let me know by [filing an issue on github](https://github.com/TacoWolf/garden/issues).
tags:: #sapling
tags:: #sapling
- **prev:** root 🌳
- ![aeolus.thisisfine.ych.tropicals.orinoxide.compressed.png](../assets/aeolus.thisisfine.ych.tropicals.orinoxide.compressed_1691948586264_0.png){:height 726, :width 718}
- > this is fine. :3
- 🎨 artwork by [oxide](https://oxide.space/) / [@orinoxide@mastodon.art](https://mastodon.art/@orinoxide).
- please observe the sections of the [[garden]] [we]([[gardeners]]) maintain at your leisure. [[take your time]].
- 🤔 **[[thoughts]]** - ideas we're thinking on. watch them grow into [seeds](seed) in real time.
- 👀 **[[entertainment]]** - things that activate my bio-digital jazz, man.
- ⚙️ **[[infrastructure]]** - technology, code, guides, etc.
- [is there a]([[is that a [[weed]]]]) [[weed]]? let me know by [filing an issue on github](https://github.com/TacoWolf/garden/issues) or [let us know on mastodon](https://furry.engineer/@taco).
- **next:** [[entertainment]]

View file

@ -1,8 +1,9 @@
tags:: #[[web browser]] #[[open source]]
tags:: #[[web browser]] #[[open source]] #technology
- **prev:** [[web browser]]
- a web browser by [[mozilla]].
- ## extensions i use
- **betterfox**: https://github.com/yokoffing/Betterfox
- not technically an extension but a great set of defaults for firefox
- **bitwarden**: https://addons.mozilla.org/en-US/firefox/addon/bitwarden-password-manager/
- why? i don't remember any of my passwords and neither should you
- **libredirect**: https://addons.mozilla.org/en-US/firefox/addon/libredirect/

View file

@ -1,2 +1,8 @@
public:: true
tags:: #seed
- **prev:** [[entertainment]]
- there are many types of games to play! here is a non-exhaustive list of games the [[head gardener]] likes.
- [[video [[games]]]]
- [[tabletop [[games]]]]
- [[card [[games]]]]
- **next:** [[video [[games]]]]
-

View file

@ -1,13 +1,15 @@
tags:: #sapling #github #logseq #sync #technology
- > taco: logseq was the answer i wanted the whole time
taco: it was sitting in front of me
taco: i pay for it
taco: i'm just dumb.
taco: but here we are
- me, in the [birdcat cafe matrix server](https://chat.birdcat.cafe)
- tl;dr: the whole thing is hosted on [[github]] pages! you can check out the source code [here](https://github.com/TacoWolf/garden). what we do is sync our [[logseq]] notes using their beta sync client across all of our devices and then use their auto-commit function to save our files every 60 seconds. after we're satisfied with our writing, we push those commits upstream to github. logseq then compiles itself as a [single page application](https://github.com/logseq/publish-spa). check out [this workflow](https://github.com/TacoWolf/garden/blob/main/.github/workflows/publish.yml) to see how that publish action works. :3
- # set up [[logseq]]
- or whatever your [[personal knowledge management]] tool of choice is.
- or whatever your [[personal knowledge management]] tool of choice is. this specific guide requires the use of logseq, though.
- # create a new [[github]] [[repository]]
- you'll be using this to synchronize your notes in the cloud.
- you'll be using this to synchronize your notes in [[the cloud]].
- i keep my notes in [this repo](https://github.com/TacoWolf/garden).
- i use [[logseq]]'s auto commit functionality to do the heavy lifting for me.
- # set up the github auto publish file
@ -39,6 +41,5 @@
- set up a custom domain under your settings page, which is still something like `https://github.com/yourusername/yourrepo/settings/pages`. then input the custom domain and start pushing to your repo. the github robots will [[automagically]] do the work for you. you can see examples of pages being pushed [here](https://github.com/TacoWolf/garden/actions/workflows/publish.yml).
- # look at all of its majesty
- check out the live url. [ta-daaaa!](https://garden.birdcat.cafe) it should be working now.
- tags:: #sapling #infrastructure #github #logseq #sync
- i'm not changing the title. long urls 5evr.
- did you know [[mastodon]] urls shorten down to like 32 characters? so this won't matter for my target audience lol
- i'm not changing the title. long urls 5evr.
- did you know [[mastodon]] urls shorten down to like 32 characters? so this won't matter for my target audience lol

View file

@ -0,0 +1,5 @@
tags:: #technology #websites #[[web development]]
- **prev:** [[web development]]
- hugo is an open source static-site generator written in [[go]].
- https://gohugo.io/
- **next:** [[websites]]

View file

@ -1,7 +1,15 @@
public:: true
tags:: #seed
tags:: #seed, #section
- prev: [[entrance]]
- [[The Grid]].
- this is a collection of (hopefully) helpful texts to guide you *en el mundo de la informática* {the world of technology}.
- # [[personal knowledge management]]
- [[how to upload a logseq graph that's synchronized to github pages and also publish it to the internet]]
- this is a collection of (hopefully) helpful texts to guide you to use [[the grid]] *en el mundo de la informática* {the world of technology}.
- # topics
- #culture
- #games
- #health
- #life
- #money
- #movies
- #music
- #science
- #shows
- #technology
- **next:** [[thoughts]]

View file

@ -0,0 +1,5 @@
tags:: #seed
- **prev:** [[digital garden]]ing
- > the fastest way to learn - [swyx, 2018](https://www.swyx.io/learn-in-public)
- learning is a neverending process. it's just [endless toil](logseq://graph/garden?block-id=64d816c0-7fbe-49bc-8852-730e511633b2). we have reached a point in information where nobody knows everything! but that's a good thing. we just need to make sure we can share our knowledge publicly so that others can pick up where we left off. that's why we should write down our thoughts and ideas and fail forwards!
- **next:** [[thoughts]]

View file

@ -1,2 +1,7 @@
public:: true
-
tags:: #[[open source]] #[[personal knowledge management]]
- **prev:** [[personal knowledge management]]
- open source knowledge base software.
- home: https://logseq.com
- source code: https://github.com/logseq/logseq
- i like it because it saves everything as markdown files at its core and i can publish my files on the internet.
- **next:** [[open source software]]

View file

@ -0,0 +1,6 @@
tags:: #seed #flower #fediverse
- prev: [[social media]]
- one of the coolest social networks on [da fedoverse](fediverse).
- i have like 80 accounts. [you'll never find me](https://meow.social/@chirpbirb).
- next: [[fediverse]]
-

View file

@ -1,8 +1,12 @@
public:: true
tags:: #seed
- prev: [[entertainment]]
- **prev:** [[entertainment]]
- these are all of the sick jams i like.
- # artists
- [[weezer]]
- [[daft punk]]
- # albums
- [[ok human]]
- # songs
- # playlists
- [[numbers]]
- [[the grid]]
- **next:** [[movies]]

View file

@ -0,0 +1,24 @@
tags:: #technology #[[open source]]
- **prev:** [[software]]
- a term coined by [Christine Peterson](https://en.wikipedia.org/wiki/Christine_Peterson) that relates to a produce which is licensed to permit modifications and redistribution of its [[source code]].
- formally, there's a definition by the [open source initiative](https://opensource.org/osd):
- free redistribution
logseq.order-list-type:: number
- you shouldn't be restricted
- source code
logseq.order-list-type:: number
- derived works
logseq.order-list-type:: number
- integrity of the author's source code
logseq.order-list-type:: number
- no discrimination against groups or persons
logseq.order-list-type:: number
- no discrimination against fields of endeavour
logseq.order-list-type:: number
- distribution of license
logseq.order-list-type:: number
- license must not be specific to a product
logseq.order-list-type:: number
- not to be confused with [[source available]] products.
- **next:** [[linux]]

View file

@ -0,0 +1,4 @@
tags:: #seed #knowledge #meta #zettlekasten #life
- prev: [[infrastructure]]
- personal knowledge management is a way of managing the knowledge a person... knows. related to having a [[second brain]]. read more [here](https://en.wikipedia.org/wiki/Personal_knowledge_management). i personally use [[zettlekasten]].
- next: [[zettlekasten]]

View file

@ -0,0 +1,11 @@
tags:: #technology #[[programming language]] #seed
- **prev:** [[programming]]
- a cross-[[programming paradigm]] general-purpose [[programming language]].
- ```rust
fn main() {
println!("Hello, World!");
}
```
- learn how to install rust [here](https://www.rust-lang.org/learn/get-started).
- read the manual for rust [here](https://doc.rust-lang.org/book/) and [here](https://rust-book.cs.brown.edu/). the first one is the official one with no fancy dippings. the second one has quizzes, highlighting, visualizations, etc. [[pick your poison]].
- **next:** [[programming language]]

View file

@ -0,0 +1,6 @@
tags:: #seed #garden #meta
- **prev:** [[garden]]
- seeds are pages that are just being planted. watch as they grow! seeds can come from anywhere. consider these drafts, works in progress. they may grow right in front of your eyes!
- ### anatomy of a seed
- {{embed ((64e3fb8f-7148-427c-837d-4a38f70293a2))}}
- **next:** [[sapling]]

View file

@ -0,0 +1,11 @@
tags:: #technology #html #websites
- **prev:** [[html]]
- [[html]] evolved as peoples needs changed on the internet. where there was a specific need for text documents before there is now a need for posting articles, tables, videos, figures, and more! thankfully, html5 brought many semantic elements that you can use in all of your wedsides.
- ## resources
- https://www.freecodecamp.org/news/semantic-html5-elements/
- https://developer.mozilla.org/en-US/docs/Web/HTML/Element
- https://www.w3.org/WAI/ARIA/apg/patterns/
- https://www.w3.org/WAI/ARIA/apg/patterns/landmarks/
-
- **next:** [[css]]
-

View file

@ -0,0 +1,5 @@
tags:: #technology #[[core concepts]]
- **prev:**
-
- **next:**

View file

@ -0,0 +1,5 @@
tags:: #flower #music #skrillex
- **prev:** [[flower]]
- # **ROCK AND ROLL!**
- {{video https://www.youtube.com/watch?v=eOofWzI3flA}}
- **next:** [[rock 'n' roll (will take you to the mountain)]]

View file

@ -0,0 +1,10 @@
tags:: #meta
- ## [[seed]]
template:: seed
template-including-parent:: false
id:: 64db7d5e-9da5-432a-aa11-f97ae5d113ec
- tags::
- **prev:**
-
- **next:**
-

View file

@ -1,4 +1,4 @@
public:: true
- prev: [[thoughts]]
tags:: #life #knowledge
- **prev:** [[thoughts]]
- also known as [[learning in public]].
- next: [[learning in public]]
- **next:** [[learning in public]]

View file

@ -0,0 +1,5 @@
tags:: #art
- **prev:** [[games]]
- video games are electronic games that usually require [[user input]] to manipulate text and images on a [[display]].
- read more [here](https://en.wikipedia.org/wiki/Video_game).
- **next:** [[tabletop [[games]]]]

View file

@ -0,0 +1,11 @@
tags:: #flower #[[mr. robot]]
- **prev:** [[html]]
- > i remember when i was a kid, i got into web design by ripping off sites i liked.
> all you had to do was `view-source` on your browser and there it was:
> the code.
> you could copy paste it. modify it a little. put your name on it and like that,
> it was your site.
- > `view-source`.
> what if we had that for people?
> would people really want to see?
- **next:** [[mr. robot]]

View file

@ -1,2 +1,4 @@
public:: true
tags:: #technology
- **prev:** [[internet]]
-
- **next:** [[html]]

View file

@ -0,0 +1,15 @@
tags:: #meta #seed
- **prev:** [[personal knowledge management]]
- zettlekasten is a german word meaning "slip box".
- zettlekasten is a note taking system. it was popularized by [sonkhe ahrens' "how to take smart notes"](https://www.soenkeahrens.de/en/takesmartnotes) by documenting the way that [niklas luhmann](https://en.wikipedia.org/wiki/Niklas_Luhmann) was able to use the original zettlekasten method to write so prolificly.
- the original zettlekastens were card files consisting of small pieces of information stored on note cards kept in card filing cabinets.
- these small pieces of information are called [[zettles]].
- [[zettles]] are usually linked together by ids/references to create a mental network of information.
- card files were eventually used as inspiration for [[hyperlink]]-based [[personal knowledge management]] software.
- after completing a note, the idea is to put it away in the slip boxes for safekeeping.
- ### further reading
- this video by artem kirsanov shows a really neat way of using [[obsidian]] that influenced a lot of the way that i take notes.
- {{video https://www.youtube.com/watch?v=E6ySG7xYgjY}}
- this video by aidan helfant showcases a brief history of [[zettlekasten]] and the benefits of having a second brain through taking [[zettles]] down quickly!
- {{video https://www.youtube.com/watch?v=wvAZ9-hmWQU}}
- **next:** [[thinking in public]]

View file

@ -0,0 +1,3 @@
tags:: #[[video [[games]]]]
-

View file

@ -0,0 +1,23 @@
tags:: #garden #zettlekasten #[[digital garden]]
- **prev:** [[seed]]
- seeds are our word for [[zettles]], a part of [[zettlekasten]]. our methodology is to keep things simple but have enough metadata for [[logseq]] to pick up and generate the graph view from.
- # seed format
- id:: 64e3fb8f-7148-427c-837d-4a38f70293a2
```
tags: #whatev
**prev:**
[content]
**next:**
```
- technically the first line has two `::` but [[logseq]] parses it weird so there.
- `tags::` - related concepts to this one/categorization.
- the reason why tags are at the top is to take advantage of [[logseq]]'s built in tagging system. :3
- this allows us to [[hyperlink]] to another related concept, keep engagement with another, related idea, and give it metadata to sort through. nothing more, nothing less! [[keep it simple]], part of [[lazy engineering]]. 😎🤙
- `**prev:**` - something related to the concept, possibly something overarching.
- bolded to look pretty.
- `[content]` - you know, whatever the seed contains.
- `**next:**` - another concept to keep the flow going!
- also bolded to stand out and look pretty.
- we use a logseq [template](logseq://graph/garden?block-id=64db7d5e-9da5-432a-aa11-f97ae5d113ec) for this, too, for ease of use.
- **next:** [[gardening habits]]

View file

@ -0,0 +1,12 @@
tags:: #seed
- **prev:** [[zettlekasten]]
- > the web as topology
- digital gardens, according to [maggie appleton](https://maggieappleton.com/garden-history) are organized around "contextual relationships and associative links". i personally believe [[logseq]] conduces itself really well to the topography-based bi-directionality of the web, especially since you can publish the whole thing as a [single page app](how to upload a logseq graph that's synchronized to github pages and also publish it to the internet) and link to individual pages within it *and* visualize your thoughts as a graph instantly.
-
- ## other gardens to look at
- from [maggie appleton's article](https://maggieappleton.com/garden-history)
- tom chritchlow's [wikifolders](https://tomcritchlow.com/wiki/)
- buster benson's [piles](https://busterbenson.com/piles) and [codex](https://busterbenson.com/codex)
- nathaniel ellison's [notes](https://www.nateliason.com/notes)
- **next:** [[thinking in public]]

View file

@ -0,0 +1,12 @@
tags:: #seed, #section
- **prev:** [[entrance]]
- things that we like that you should check out.
- ## categories
- #music
- #movies
- #shows
- #literature
- #games
- #websites
- **next:** [[infrastructure]]

View file

@ -0,0 +1,12 @@
tags:: #sapling
- **prev:** root 🌳
- ![aeolus.thisisfine.ych.tropicals.orinoxide.compressed.png](../assets/aeolus.thisisfine.ych.tropicals.orinoxide.compressed_1691948586264_0.png){:height 726, :width 718}
- > this is fine. :3
- 🎨 artwork by [oxide](https://oxide.space/) / [@orinoxide@mastodon.art](https://mastodon.art/@orinoxide).
- please observe the sections of the [[garden]] [we]([[gardeners]]) maintain at your leisure. [[take your time]].
- 🤔 **[[thoughts]]** - ideas we're thinking on. watch them grow into [seeds](seed) in real time.
- 👀 **[[entertainment]]** - things that activate my bio-digital jazz, man.
- ⚙️ **[[infrastructure]]** - technology, code, guides, etc.
- [is there a]([[is that a [[weed]]]]) [[weed]]? let me know by [filing an issue on github](https://github.com/TacoWolf/garden/issues) or [let us know on mastodon](https://furry.engineer/@taco).
- **next:** [[entertainment]]

View file

@ -0,0 +1,24 @@
tags:: #[[web browser]] #[[open source]] #technology
- **prev:** [[web browser]]
- a web browser by [[mozilla]].
- ## extensions i use
- **betterfox**: https://github.com/yokoffing/Betterfox
- not technically an extension but a great set of defaults for firefox
- **bitwarden**: https://addons.mozilla.org/en-US/firefox/addon/bitwarden-password-manager/
- why? i don't remember any of my passwords and neither should you
- **libredirect**: https://addons.mozilla.org/en-US/firefox/addon/libredirect/
- why? redirects to privacy respecting frontends
- **ublock origin**: https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
- why? blocks ads
- **xbrowsersync**: https://addons.mozilla.org/en-US/firefox/addon/xbs/
- why? syncs bookmarks anonymously w/ encryption
- **search by image**: https://addons.mozilla.org/en-US/firefox/addon/search_by_image/
- why? searches by image lmao it's in the title
- **indie wiki buddy**: https://addons.mozilla.org/en-US/firefox/addon/indie-wiki-buddy/
- why? redirects to cooler wikis that are actually maintained.
- **bypass paywalls firefox clean**: https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean
- why? banned from the mozilla store by dmca, so you know it's good.
- **humble bundle downloader**: https://addons.mozilla.org/en-US/firefox/addon/humble-bundle-downloader/
- why? i need to download those mf books
- **next:** [[websites]]

View file

@ -0,0 +1,9 @@
tags:: #seed
- **prev:** [[entertainment]]
- there are many types of games to play! here is a non-exhaustive list of games the [[head gardener]] likes.
- [[video [[games]]]]
- [[tabletop [[games]]]]
- [[card [[games]]]]
- **next:** [[video [[games]]]]
-

View file

@ -1,13 +1,16 @@
tags:: #sapling #github #logseq #sync #technology
- > taco: logseq was the answer i wanted the whole time
taco: it was sitting in front of me
taco: i pay for it
taco: i'm just dumb.
taco: but here we are
- me, in the [birdcat cafe matrix server](https://chat.birdcat.cafe)
- tl;dr: the whole thing is hosted on [[github]] pages! you can check out the source code [here](https://github.com/TacoWolf/garden). what we do is sync our [[logseq]] notes using their beta sync client across all of our devices and then use their auto-commit function to save our files every 60 seconds. after we're satisfied with our writing, we push those commits upstream to github. logseq then compiles itself as a [single page application](https://github.com/logseq/publish-spa). check out [this workflow](https://github.com/TacoWolf/garden/blob/main/.github/workflows/publish.yml) to see how that publish action works. :3
- # set up [[logseq]]
- or whatever your [[personal knowledge management]] tool of choice is.
- or whatever your [[personal knowledge management]] tool of choice is. this specific guide requires the use of logseq, though.
- # create a new [[github]] [[repository]]
- you'll be using this to synchronize your notes in the cloud.
- you'll be using this to synchronize your notes in [[the cloud]].
- i keep my notes in [this repo](https://github.com/TacoWolf/garden).
- i use [[logseq]]'s auto commit functionality to do the heavy lifting for me.
- # set up the github auto publish file
@ -39,6 +42,5 @@
- set up a custom domain under your settings page, which is still something like `https://github.com/yourusername/yourrepo/settings/pages`. then input the custom domain and start pushing to your repo. the github robots will [[automagically]] do the work for you. you can see examples of pages being pushed [here](https://github.com/TacoWolf/garden/actions/workflows/publish.yml).
- # look at all of its majesty
- check out the live url. [ta-daaaa!](https://garden.birdcat.cafe) it should be working now.
- tags:: #sapling #infrastructure #github #logseq #sync
- i'm not changing the title. long urls 5evr.
- did you know [[mastodon]] urls shorten down to like 32 characters? so this won't matter for my target audience lol
- i'm not changing the title. long urls 5evr.
- did you know [[mastodon]] urls shorten down to like 32 characters? so this won't matter for my target audience lol

View file

@ -0,0 +1,6 @@
tags:: #technology #websites #[[web development]]
- **prev:** [[web development]]
- hugo is an open source static-site generator written in [[go]].
- https://gohugo.io/
- **next:** [[websites]]

View file

@ -0,0 +1,16 @@
tags:: #seed, #section
- prev: [[entrance]]
- this is a collection of (hopefully) helpful texts to guide you to use [[the grid]] *en el mundo de la informática* {the world of technology}.
- # topics
- #culture
- #games
- #health
- #life
- #money
- #movies
- #music
- #science
- #shows
- #technology
- **next:** [[thoughts]]

View file

@ -0,0 +1,6 @@
tags:: #seed
- **prev:** [[digital garden]]ing
- > the fastest way to learn - [swyx, 2018](https://www.swyx.io/learn-in-public)
- learning is a neverending process. it's just [endless toil](logseq://graph/garden?block-id=64d816c0-7fbe-49bc-8852-730e511633b2). we have reached a point in information where nobody knows everything! but that's a good thing. we just need to make sure we can share our knowledge publicly so that others can pick up where we left off. that's why we should write down our thoughts and ideas and fail forwards!
- **next:** [[thoughts]]

View file

@ -0,0 +1,8 @@
tags:: #[[open source]] #[[personal knowledge management]]
- **prev:** [[personal knowledge management]]
- open source knowledge base software.
- home: https://logseq.com
- source code: https://github.com/logseq/logseq
- i like it because it saves everything as markdown files at its core and i can publish my files on the internet.
- **next:** [[open source software]]

View file

@ -0,0 +1,7 @@
tags:: #seed #flower #fediverse
- prev: [[social media]]
- one of the coolest social networks on [da fedoverse](fediverse).
- i have like 80 accounts. [you'll never find me](https://meow.social/@chirpbirb).
- next: [[fediverse]]
-

View file

@ -0,0 +1,13 @@
tags:: #seed
- **prev:** [[entertainment]]
- these are all of the sick jams i like.
- # artists
- [[weezer]]
- [[daft punk]]
- # albums
- [[ok human]]
- # songs
- [[numbers]]
- [[the grid]]
- **next:** [[movies]]

View file

@ -0,0 +1,25 @@
tags:: #technology #[[open source]]
- **prev:** [[software]]
- a term coined by [Christine Peterson](https://en.wikipedia.org/wiki/Christine_Peterson) that relates to a produce which is licensed to permit modifications and redistribution of its [[source code]].
- formally, there's a definition by the [open source initiative](https://opensource.org/osd):
- free redistribution
logseq.order-list-type:: number
- source code
logseq.order-list-type:: number
- derived works
logseq.order-list-type:: number
- integrity of the author's source code
logseq.order-list-type:: number
- no discrimination against groups or persons
logseq.order-list-type:: number
- no discrimination against fields of endeavour
logseq.order-list-type:: number
- distribution of license
logseq.order-list-type:: number
- license must not be specific to a product
logseq.order-list-type:: number
- license must be technology neutral
logseq.order-list-type:: number
- not to be confused with [[source available]] products.
- **next:** [[linux]]

View file

@ -0,0 +1,5 @@
tags:: #seed #knowledge #meta #zettlekasten #life
- prev: [[infrastructure]]
- personal knowledge management is a way of managing the knowledge a person... knows. related to having a [[second brain]]. read more [here](https://en.wikipedia.org/wiki/Personal_knowledge_management). i personally use [[zettlekasten]].
- next: [[zettlekasten]]

View file

@ -0,0 +1,12 @@
tags:: #technology #[[programming language]] #seed
- **prev:** [[programming]]
- a cross-[[programming paradigm]] general-purpose [[programming language]].
- ```rust
fn main() {
println!("Hello, World!");
}
```
- learn how to install rust [here](https://www.rust-lang.org/learn/get-started).
- read the manual for rust [here](https://doc.rust-lang.org/book/) and [here](https://rust-book.cs.brown.edu/). the first one is the official one with no fancy dippings. the second one has quizzes, highlighting, visualizations, etc. [[pick your poison]].
- **next:** [[programming language]]

View file

@ -0,0 +1,7 @@
tags:: #seed #garden #meta
- **prev:** [[garden]]
- seeds are pages that are just being planted. watch as they grow! seeds can come from anywhere. consider these drafts, works in progress. they may grow right in front of your eyes!
- ### anatomy of a seed
- {{embed ((64e3fb8f-7148-427c-837d-4a38f70293a2))}}
- **next:** [[sapling]]

View file

@ -0,0 +1,12 @@
tags:: #technology #html #websites
- **prev:** [[html]]
- [[html]] evolved as peoples needs changed on the internet. where there was a specific need for text documents before there is now a need for posting articles, tables, videos, figures, and more! thankfully, html5 brought many semantic elements that you can use in all of your wedsides.
- ## resources
- https://www.freecodecamp.org/news/semantic-html5-elements/
- https://developer.mozilla.org/en-US/docs/Web/HTML/Element
- https://www.w3.org/WAI/ARIA/apg/patterns/
- https://www.w3.org/WAI/ARIA/apg/patterns/landmarks/
-
- **next:** [[css]]
-

View file

@ -0,0 +1,5 @@
tags:: #technology #[[core concepts]]
- **prev:**
- encoded computer instructions.
- **next:**

View file

@ -0,0 +1,6 @@
tags:: #flower #music #skrillex
- **prev:** [[flower]]
- # **ROCK AND ROLL!**
- {{video https://www.youtube.com/watch?v=eOofWzI3flA}}
- **next:** [[rock 'n' roll (will take you to the mountain)]]

View file

@ -0,0 +1,11 @@
tags:: #meta
- ## [[seed]]
template:: seed
template-including-parent:: false
id:: 64db7d5e-9da5-432a-aa11-f97ae5d113ec
- tags::
- **prev:**
-
- **next:**
-

View file

@ -0,0 +1,5 @@
tags:: #life #knowledge
- **prev:** [[thoughts]]
- also known as [[learning in public]].
- **next:** [[learning in public]]

View file

@ -0,0 +1,6 @@
tags:: #art
- **prev:** [[games]]
- video games are electronic games that usually require [[user input]] to manipulate text and images on a [[display]].
- read more [here](https://en.wikipedia.org/wiki/Video_game).
- **next:** [[tabletop [[games]]]]

View file

@ -0,0 +1,12 @@
tags:: #flower #[[mr. robot]]
- **prev:** [[html]]
- > i remember when i was a kid, i got into web design by ripping off sites i liked.
> all you had to do was `view-source` on your browser and there it was:
> the code.
> you could copy paste it. modify it a little. put your name on it and like that,
> it was your site.
- > `view-source`.
> what if we had that for people?
> would people really want to see?
- **next:** [[mr. robot]]

View file

@ -0,0 +1,5 @@
tags:: #technology
- **prev:** [[internet]]
-
- **next:** [[html]]

View file

@ -0,0 +1,16 @@
tags:: #meta #seed
- **prev:** [[personal knowledge management]]
- zettlekasten is a german word meaning "slip box".
- zettlekasten is a note taking system. it was popularized by [sonkhe ahrens' "how to take smart notes"](https://www.soenkeahrens.de/en/takesmartnotes) by documenting the way that [niklas luhmann](https://en.wikipedia.org/wiki/Niklas_Luhmann) was able to use the original zettlekasten method to write so prolificly.
- the original zettlekastens were card files consisting of small pieces of information stored on note cards kept in card filing cabinets.
- these small pieces of information are called [[zettles]].
- [[zettles]] are usually linked together by ids/references to create a mental network of information.
- card files were eventually used as inspiration for [[hyperlink]]-based [[personal knowledge management]] software.
- after completing a note, the idea is to put it away in the slip boxes for safekeeping.
- ### further reading
- this video by artem kirsanov shows a really neat way of using [[obsidian]] that influenced a lot of the way that i take notes.
- {{video https://www.youtube.com/watch?v=E6ySG7xYgjY}}
- this video by aidan helfant showcases a brief history of [[zettlekasten]] and the benefits of having a second brain through taking [[zettles]] down quickly!
- {{video https://www.youtube.com/watch?v=wvAZ9-hmWQU}}
- **next:** [[thinking in public]]

View file

@ -1,3 +1,2 @@
tags:: #[[video [[games]]]]
-

View file

@ -1,5 +1,4 @@
tags:: #garden #zettlekasten #[[digital garden]]
- **prev:** [[seed]]
- seeds are our word for [[zettles]], a part of [[zettlekasten]]. our methodology is to keep things simple but have enough metadata for [[logseq]] to pick up and generate the graph view from.
- # seed format

View file

@ -1,5 +1,4 @@
tags:: #seed
- **prev:** [[zettlekasten]]
- > the web as topology
- digital gardens, according to [maggie appleton](https://maggieappleton.com/garden-history) are organized around "contextual relationships and associative links". i personally believe [[logseq]] conduces itself really well to the topography-based bi-directionality of the web, especially since you can publish the whole thing as a [single page app](how to upload a logseq graph that's synchronized to github pages and also publish it to the internet) and link to individual pages within it *and* visualize your thoughts as a graph instantly.

View file

@ -1,5 +1,4 @@
tags:: #seed, #section
- **prev:** [[entrance]]
- things that we like that you should check out.
- ## categories

View file

@ -1,5 +1,4 @@
tags:: #sapling
- **prev:** root 🌳
- ![aeolus.thisisfine.ych.tropicals.orinoxide.compressed.png](../assets/aeolus.thisisfine.ych.tropicals.orinoxide.compressed_1691948586264_0.png){:height 726, :width 718}
- > this is fine. :3

View file

@ -9,16 +9,28 @@ tags:: #[[web browser]] #[[open source]] #technology
- why? i don't remember any of my passwords and neither should you
- **libredirect**: https://addons.mozilla.org/en-US/firefox/addon/libredirect/
- why? redirects to privacy respecting frontends
- huge shout out to [proxitok](https://proxitok.pabloferreiro.es/) btw
- **ublock origin**: https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
- why? blocks ads
- **enhancer for youtube**: https://addons.mozilla.org/en-US/firefox/addon/enhancer-for-youtube
- why? makes watching youtube a whole lot better
- **sponsorblock for youtube**: https://sponsor.ajay.app/
- why? makes youtube watchable
- **dearrow** ($ paid): https://dearrow.ajay.app/
- why? makes youtube titles readable
- **xbrowsersync**: https://addons.mozilla.org/en-US/firefox/addon/xbs/
- why? syncs bookmarks anonymously w/ encryption
- **search by image**: https://addons.mozilla.org/en-US/firefox/addon/search_by_image/
- why? searches by image lmao it's in the title
- **indie wiki buddy**: https://addons.mozilla.org/en-US/firefox/addon/indie-wiki-buddy/
- why? redirects to cooler wikis that are actually maintained.
- **bypass paywalls firefox clean**: https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean
- why? redirects to cooler wikis that are actually maintained
- **bypass paywalls firefox clean**: https://github.com/bpc-clone/bypass-paywalls-firefox-clean
- why? banned from the mozilla store by dmca, so you know it's good.
- **humble bundle downloader**: https://addons.mozilla.org/en-US/firefox/addon/humble-bundle-downloader/
- why? i need to download those mf books
- **kde connect**: https://addons.mozilla.org/en-US/firefox/addon/kde_connect/
- why? kde connect is awesome, that's why
- **firefox multi-account containers**: https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/
- why? helps containerize the web. ignore the vpn shit
-
- **next:** [[websites]]

View file

@ -1,5 +1,4 @@
tags:: #seed
- **prev:** [[entertainment]]
- there are many types of games to play! here is a non-exhaustive list of games the [[head gardener]] likes.
- [[video [[games]]]]

View file

@ -1,5 +1,4 @@
tags:: #sapling #github #logseq #sync #technology
- > taco: logseq was the answer i wanted the whole time
taco: it was sitting in front of me
taco: i pay for it

5
pages/hugo.md Normal file
View file

@ -0,0 +1,5 @@
tags:: #technology #websites #[[web development]]
- **prev:** [[web development]]
- hugo is an open source static-site generator written in [[go]].
- https://gohugo.io/
- **next:** [[websites]]

View file

@ -1,5 +1,4 @@
tags:: #seed, #section
- prev: [[entrance]]
- this is a collection of (hopefully) helpful texts to guide you to use [[the grid]] *en el mundo de la informática* {the world of technology}.
- # topics

View file

@ -1,5 +1,4 @@
tags:: #seed
- **prev:** [[digital garden]]ing
- > the fastest way to learn - [swyx, 2018](https://www.swyx.io/learn-in-public)
- learning is a neverending process. it's just [endless toil](logseq://graph/garden?block-id=64d816c0-7fbe-49bc-8852-730e511633b2). we have reached a point in information where nobody knows everything! but that's a good thing. we just need to make sure we can share our knowledge publicly so that others can pick up where we left off. that's why we should write down our thoughts and ideas and fail forwards!

View file

@ -1,5 +1,4 @@
tags:: #[[open source]] #[[personal knowledge management]]
- **prev:** [[personal knowledge management]]
- open source knowledge base software.
- home: https://logseq.com

View file

@ -1,5 +1,4 @@
tags:: #seed #flower #fediverse
- prev: [[social media]]
- one of the coolest social networks on [da fedoverse](fediverse).
- i have like 80 accounts. [you'll never find me](https://meow.social/@chirpbirb).

Some files were not shown because too many files have changed in this diff Show more