update npm deps, convert rss feed to use @astrojs/rss

pull/1/head
Drake 2 years ago
parent 5e4793aeed
commit f26965a155

@ -10,14 +10,15 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^1.0.0-beta.14"
"astro": "^1.0.0-beta.31"
},
"dependencies": {
"@astrojs/deno": "^0.1.0",
"@astrojs/deno": "^0.1.2",
"@astrojs/renderer-preact": "^0.5.0",
"@astrojs/renderer-react": "^0.5.0",
"@astrojs/renderer-svelte": "^0.5.2",
"@astrojs/renderer-vue": "^0.4.0",
"vite": "^2.9.6"
"@astrojs/rss": "^0.2.0",
"vite": "^2.9.9"
}
}

File diff suppressed because it is too large Load Diff

@ -3,7 +3,7 @@ layout: ../../layout/BaseBlog.astro
title: So... what happens when we die?
description: But like, I really do want to fuck Angel Dust when I die.
wip: false
date: Fri, Apr 23 2021
pubDate: Fri, Apr 23 2021
---
So... what _really_ happens when we die? Do we just... stop existing? Is our consciousness stuck in a black void with our own thoughts? Is there a Heaven? Hell? ~~Are the people on Dr. Oz just making s\*\*t up?~~

@ -0,0 +1,19 @@
import rss from "@astrojs/rss";
//console.log(await import.meta.glob("./*.md")['./afterlife.md']())
const posts = import.meta.glob("./*.md");
Object.keys(posts).forEach(async (k) => {
const res = await posts[k]();
console.log(res)
if (res.frontmatter.wip) {
delete posts[k];
}
})
export const get = () => rss({
title: "Ruthenic's blog",
description: "My blog, utilized for talking about random things.",
site: import.meta.env.SITE,
items: posts
})

@ -3,7 +3,7 @@ layout: ../../layout/BaseBlog.astro
title: Gnome, and why it sucks
description: yes, even worse than The new Trio 😈💗💗💗 - Corina Dust 😈😝
wip: false
date: Mon, Jan 31 2022
pubDate: Mon, Jan 31 2022
---
If you didn't know, I use Linux. And I, to say the least, do not like Gnome[1]. Filled with header bars the size of Jupiter, no minimize or maximize buttons without an external program, extensions written **IN JAVASCRIPT** that are nearly mandatory for the best experience, being somewhat unoptimized for mouse pointers (we'll get to this later), and performance lower than the JVM on a good day, it's regarded in some circles as the worst DE available for most users. Even with these problems, I will give it complements for adopting Wayland earlier than the LX\*s and XFCE, but that doesn't do much to make up for the complaints I've listed prior, especially when Wayland is still not ready for prime-time quite yet (although I will recommend Pipewire at this point to anyone, even on X11). The HIG does not make this situation better.

@ -3,7 +3,7 @@ layout: ../../layout/BaseBlog.astro
title: Why are printers shit?
description: Fuck you, Canon.
wip: false
date: Mon, Apr 12 2021
pubDate: Mon, Apr 12 2021
---
Why are printers so terrible? I mean, is it that hard to make a functional product? I know this has been well walked ground, but any printer I've ever used makes me wanna send my head through a wall!

@ -3,7 +3,7 @@ layout: ../../layout/BaseBlog.astro
title: "A Story Of Subliminals: Part I"
description: That moment when you want to learn sex jokes so much you turn to magic audio.
wip: false
date: Fri, Apr 6 2021
pubDate: Fri, Apr 6 2021
---
_Hello, and welcome to this "blog post". This is a compilation of all my posts on Discord about subliminals (more specifically, Hazbin Hotel subliminals), with redundant information removed and some slight html improvements added. A part II will eventually come, with the story of me trying subliminals out and seeing if they "work." Until then, enjoy!_

@ -3,7 +3,7 @@ layout: ../../layout/BaseBlog.astro
title: template
description: description
wip: true
date: WORDDAY, MONTH NUMDAY YEAR
pubDate: WORDDAY, MONTH NUMDAY YEAR
---
Content here!

@ -3,7 +3,7 @@ layout: ../../layout/BaseBlog.astro
title: Why Tulpamancy isn't
description: description
wip: true
date: WORDDAY, MONTH NUMDAY YEAR
pubDate: WORDDAY, MONTH NUMDAY YEAR
---
Content here!

Loading…
Cancel
Save