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
This commit is contained in:
parent
e8f35d383a
commit
3b9bdd9d44
27 changed files with 0 additions and 83 deletions
64
config.ts
64
config.ts
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
- [x] Terminar neovim config
|
||||
- [ ] Avanzar escribiendo sobre meditación
|
||||
- [ ] Terminar Kimetsu
|
||||
- [x] Ordenar calcetines
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
- [x] Avanzar escribiendo sobre meditación
|
||||
- [x] Terminar Kimetsu
|
||||
- [x] Ir a clases de armonica
|
||||
Loading…
Add table
Add a link
Reference in a new issue