diff --git a/src/content/posts/2023_06_19-Hello-Django.mdx b/src/content/posts/2023_06_19-Hello-Django.mdx index df169bb..18fb38e 100644 --- a/src/content/posts/2023_06_19-Hello-Django.mdx +++ b/src/content/posts/2023_06_19-Hello-Django.mdx @@ -8,6 +8,7 @@ tags: - caddy - networking --- + import Note from "../../components/Note.astro"; @@ -48,4 +49,4 @@ In the end, I went with the third option, I went back to `Nginx Proxy Manager` ( After all of that, switching proxies, dropping Docker, and a lot of suffering, I got this page working. Overall, would I go with Django again? Most likely! It was fast and easy to learn, and it has some really nice features. Though I wish Python was faster so I could use this for larger projects :c -While I continue to work out bugs on this page and my terrible server management, enjoy reading the slop in the blog 😋 \ No newline at end of file +While I continue to work out bugs on this page and my terrible server management, enjoy reading the slop in the blog 😋 diff --git a/src/content/posts/2024_05_28-Astro_is_hard.mdx b/src/content/posts/2024_05_28-Astro_is_hard.mdx index 657e76f..cb99bb3 100644 --- a/src/content/posts/2024_05_28-Astro_is_hard.mdx +++ b/src/content/posts/2024_05_28-Astro_is_hard.mdx @@ -13,16 +13,18 @@ It's been written from scratch with Astro, Typescript and a lot of suffering, mo So where do I start, maybe _why_ I have chosen Astro over other existing options. ## Why Astro + TLDR: I don't know :3 -- I've been trying to learn typescript through trying astro -- Astro is hard, due to all the issues I've encountered +- I've been trying to learn typescript through trying astro +- Astro is hard, due to all the issues I've encountered ## The problems -- Issue with Astros `getEntries()` not working, thus having to implement my own method -- Fighting with Astro to display banner images, it won -- Using external plugins for images/slides - - Specifically passing variables into scripts + +- Issue with Astros `getEntries()` not working, thus having to implement my own method +- Fighting with Astro to display banner images, it won +- Using external plugins for images/slides + - Specifically passing variables into scripts ```typescript export async function getTagsBySlug( @@ -46,6 +48,7 @@ export async function getTagsBySlug( ``` ## What I've learned -- More experience writing in Typescript -- Learning about MDX accidentally -- Reading Documentation, ironically + +- More experience writing in Typescript +- Learning about MDX accidentally +- Reading Documentation, ironically