From 3b9bdd9d445f042d424643ffbc0b3395e1547b4a Mon Sep 17 00:00:00 2001 From: aleidk Date: Wed, 31 Jan 2024 20:14:26 -0300 Subject: [PATCH] re-structure notes Affected files: README.md config.ts notes/Crear una nueva funcionalidad.md notes/Cypress.md notes/Depression.md notes/Design.md notes/Dev Tools.md notes/Email.md notes/Git.md notes/Good Enough.md notes/How to build systems.md notes/Meditation.md notes/Misc.md notes/Neovim.md notes/React.md notes/Self Steam.md notes/The cult of done.md notes/Tiding up the todos list.md notes/Work.md notes/conventional_commits.md notes/daily/2023-08-11.md notes/daily/2023-10-26.md notes/daily/2023-10-27.md notes/free time.md notes/fuuka-juno.md notes/index.md notes/ulysses pact.md --- _README.md => README.md | 0 config.ts | 64 ------------------- .../Crear una nueva funcionalidad.md | 0 notes/{utils => }/Cypress.md | 0 notes/{thoughts => }/Depression.md | 0 notes/{thoughts => }/Design.md | 0 notes/{utils => }/Dev Tools.md | 0 notes/{utils => }/Email.md | 0 notes/{utils => }/Git.md | 0 notes/{coping mechanisms => }/Good Enough.md | 0 .../How to build systems.md | 0 notes/{coping mechanisms => }/Meditation.md | 0 notes/{thoughts => }/Misc.md | 0 notes/{utils => }/Neovim.md | 0 notes/{utils => }/React.md | 0 notes/{thoughts => }/Self Steam.md | 0 notes/{thoughts => }/The cult of done.md | 0 .../Tiding up the todos list.md | 0 notes/{thoughts => }/Work.md | 0 notes/{utils => }/conventional_commits.md | 0 notes/daily/2023-08-11.md | 12 ---- notes/daily/2023-10-26.md | 4 -- notes/daily/2023-10-27.md | 3 - notes/{coping mechanisms => }/free time.md | 0 notes/{references => }/fuuka-juno.md | 0 notes/{coping mechanisms => }/index.md | 0 notes/{coping mechanisms => }/ulysses pact.md | 0 27 files changed, 83 deletions(-) rename _README.md => README.md (100%) delete mode 100644 config.ts rename notes/{utils => }/Crear una nueva funcionalidad.md (100%) rename notes/{utils => }/Cypress.md (100%) rename notes/{thoughts => }/Depression.md (100%) rename notes/{thoughts => }/Design.md (100%) rename notes/{utils => }/Dev Tools.md (100%) rename notes/{utils => }/Email.md (100%) rename notes/{utils => }/Git.md (100%) rename notes/{coping mechanisms => }/Good Enough.md (100%) rename notes/{coping mechanisms => }/How to build systems.md (100%) rename notes/{coping mechanisms => }/Meditation.md (100%) rename notes/{thoughts => }/Misc.md (100%) rename notes/{utils => }/Neovim.md (100%) rename notes/{utils => }/React.md (100%) rename notes/{thoughts => }/Self Steam.md (100%) rename notes/{thoughts => }/The cult of done.md (100%) rename notes/{coping mechanisms => }/Tiding up the todos list.md (100%) rename notes/{thoughts => }/Work.md (100%) rename notes/{utils => }/conventional_commits.md (100%) delete mode 100644 notes/daily/2023-08-11.md delete mode 100644 notes/daily/2023-10-26.md delete mode 100644 notes/daily/2023-10-27.md rename notes/{coping mechanisms => }/free time.md (100%) rename notes/{references => }/fuuka-juno.md (100%) rename notes/{coping mechanisms => }/index.md (100%) rename notes/{coping mechanisms => }/ulysses pact.md (100%) diff --git a/_README.md b/README.md similarity index 100% rename from _README.md rename to README.md diff --git a/config.ts b/config.ts deleted file mode 100644 index b7035de..0000000 --- a/config.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { MediaType } from '@components/MediaGallery/types'; -import { z, defineCollection } from 'astro:content'; - -// AstroJS collection configuration - -const games = defineCollection({ - type: 'content', - schema: z.object({ - title: z.string(), - release: z.coerce.date(), - developers: z.array(z.string()), - genres: z.array(z.string()), - status: z.enum([ - 'Backlog', - 'On Line', - 'Playing', - 'Played', - 'Wishlist', - 'Want to Replay', - 'Always Playable', - 'Tried', - ]), - times_played: z.number(), - }), -}); - -const blog = defineCollection({ - type: 'content', - schema: z.object({ - title: z.string(), - draft: z.boolean().optional(), - tags: z.array(z.string()).optional(), - published_at: z.coerce.date().optional(), - updated_at: z.coerce.date().optional(), - }), -}); - -const portafolio = defineCollection({ - type: 'content', - schema: z.object({ - title: z.string(), - draft: z.boolean().optional(), - tags: z.array(z.string()).optional(), - technologies: z.array(z.string()), - published_at: z.coerce.date().optional(), - updated_at: z.coerce.date().optional(), - media: z - .array( - z.object({ - type: z.nativeEnum(MediaType), - url: z.string().url(), - alt: z.string(), - mime: z.string().optional(), - }), - ) - .catch([]), - }), -}); - -export const collections = { - games, - blog, - portafolio, -}; diff --git a/notes/utils/Crear una nueva funcionalidad.md b/notes/Crear una nueva funcionalidad.md similarity index 100% rename from notes/utils/Crear una nueva funcionalidad.md rename to notes/Crear una nueva funcionalidad.md diff --git a/notes/utils/Cypress.md b/notes/Cypress.md similarity index 100% rename from notes/utils/Cypress.md rename to notes/Cypress.md diff --git a/notes/thoughts/Depression.md b/notes/Depression.md similarity index 100% rename from notes/thoughts/Depression.md rename to notes/Depression.md diff --git a/notes/thoughts/Design.md b/notes/Design.md similarity index 100% rename from notes/thoughts/Design.md rename to notes/Design.md diff --git a/notes/utils/Dev Tools.md b/notes/Dev Tools.md similarity index 100% rename from notes/utils/Dev Tools.md rename to notes/Dev Tools.md diff --git a/notes/utils/Email.md b/notes/Email.md similarity index 100% rename from notes/utils/Email.md rename to notes/Email.md diff --git a/notes/utils/Git.md b/notes/Git.md similarity index 100% rename from notes/utils/Git.md rename to notes/Git.md diff --git a/notes/coping mechanisms/Good Enough.md b/notes/Good Enough.md similarity index 100% rename from notes/coping mechanisms/Good Enough.md rename to notes/Good Enough.md diff --git a/notes/coping mechanisms/How to build systems.md b/notes/How to build systems.md similarity index 100% rename from notes/coping mechanisms/How to build systems.md rename to notes/How to build systems.md diff --git a/notes/coping mechanisms/Meditation.md b/notes/Meditation.md similarity index 100% rename from notes/coping mechanisms/Meditation.md rename to notes/Meditation.md diff --git a/notes/thoughts/Misc.md b/notes/Misc.md similarity index 100% rename from notes/thoughts/Misc.md rename to notes/Misc.md diff --git a/notes/utils/Neovim.md b/notes/Neovim.md similarity index 100% rename from notes/utils/Neovim.md rename to notes/Neovim.md diff --git a/notes/utils/React.md b/notes/React.md similarity index 100% rename from notes/utils/React.md rename to notes/React.md diff --git a/notes/thoughts/Self Steam.md b/notes/Self Steam.md similarity index 100% rename from notes/thoughts/Self Steam.md rename to notes/Self Steam.md diff --git a/notes/thoughts/The cult of done.md b/notes/The cult of done.md similarity index 100% rename from notes/thoughts/The cult of done.md rename to notes/The cult of done.md diff --git a/notes/coping mechanisms/Tiding up the todos list.md b/notes/Tiding up the todos list.md similarity index 100% rename from notes/coping mechanisms/Tiding up the todos list.md rename to notes/Tiding up the todos list.md diff --git a/notes/thoughts/Work.md b/notes/Work.md similarity index 100% rename from notes/thoughts/Work.md rename to notes/Work.md diff --git a/notes/utils/conventional_commits.md b/notes/conventional_commits.md similarity index 100% rename from notes/utils/conventional_commits.md rename to notes/conventional_commits.md diff --git a/notes/daily/2023-08-11.md b/notes/daily/2023-08-11.md deleted file mode 100644 index 95b0738..0000000 --- a/notes/daily/2023-08-11.md +++ /dev/null @@ -1,12 +0,0 @@ -#homelab - -Tengo una idea de como consolidar lo que estoy buscando para mi escritorio y mi server: - -- Comprar un mini PC: Esto me ahorraría plata en vez de hacerlo custom, único requisito: que acepte el HDD de 8TB -- Settiar proxmox u otro para hacer VM's -- crear una VM liviana (Alpine??) en donde pueda usarla como escritorio, instalar el mínimo de apps necesarias - - DE liviano (O solo un WM??) - - Browser - - Obsidian - - Spotify (u alternativa más liviana) -- Conectarle un monitor y comprar un teclado Bluetooth chico, ponerlo al lado del monitor principal \ No newline at end of file diff --git a/notes/daily/2023-10-26.md b/notes/daily/2023-10-26.md deleted file mode 100644 index 182d2df..0000000 --- a/notes/daily/2023-10-26.md +++ /dev/null @@ -1,4 +0,0 @@ -- [x] Terminar neovim config -- [ ] Avanzar escribiendo sobre meditación -- [ ] Terminar Kimetsu -- [x] Ordenar calcetines \ No newline at end of file diff --git a/notes/daily/2023-10-27.md b/notes/daily/2023-10-27.md deleted file mode 100644 index eda090e..0000000 --- a/notes/daily/2023-10-27.md +++ /dev/null @@ -1,3 +0,0 @@ -- [x] Avanzar escribiendo sobre meditación -- [x] Terminar Kimetsu -- [x] Ir a clases de armonica \ No newline at end of file diff --git a/notes/coping mechanisms/free time.md b/notes/free time.md similarity index 100% rename from notes/coping mechanisms/free time.md rename to notes/free time.md diff --git a/notes/references/fuuka-juno.md b/notes/fuuka-juno.md similarity index 100% rename from notes/references/fuuka-juno.md rename to notes/fuuka-juno.md diff --git a/notes/coping mechanisms/index.md b/notes/index.md similarity index 100% rename from notes/coping mechanisms/index.md rename to notes/index.md diff --git a/notes/coping mechanisms/ulysses pact.md b/notes/ulysses pact.md similarity index 100% rename from notes/coping mechanisms/ulysses pact.md rename to notes/ulysses pact.md