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