diff --git a/src/pages/blog.astro b/src/pages/blog.astro index 3cc2e26..b118bc4 100644 --- a/src/pages/blog.astro +++ b/src/pages/blog.astro @@ -5,30 +5,30 @@ let allPosts = await Astro.glob('./blog/**/index.mdx'); allPosts.sort((a, b) => new Date(b.frontmatter.pubDate).valueOf() - new Date(a.frontmatter.pubDate).valueOf()); const heroes = (await import.meta.glob("./blog/**/hero.png")); await Promise.all(allPosts.map(async (post) => { - post.frontmatter.hero = (await heroes[`.${post.url}/hero.png`]()).default; + post.frontmatter.hero = (await heroes[`.${post.url}/hero.png`]()).default; })); --- -
-

Blog

-

Hot takes and cool things.

- +
+
diff --git a/src/pages/blog/ai_pair_programming/hero.png b/src/pages/blog/ai_pair_programming/hero.png new file mode 100644 index 0000000..8d1b659 Binary files /dev/null and b/src/pages/blog/ai_pair_programming/hero.png differ diff --git a/src/pages/blog/ai_pair_programming/index.mdx b/src/pages/blog/ai_pair_programming/index.mdx new file mode 100644 index 0000000..39b5999 --- /dev/null +++ b/src/pages/blog/ai_pair_programming/index.mdx @@ -0,0 +1,8 @@ +--- +layout: ../../../layouts/BlogLayout.astro +pubDate: 2024/03/27 +title: "It's hard to learn with AI." +description: "Coming soon" +--- + +Hero image retrieved from: https://wearesauce.io/using-chat-gpt-as-a-pair-programmer diff --git a/src/pages/blog/iquhack24/index.mdx b/src/pages/blog/iquhack24/index.mdx index 78f745c..09eae54 100644 --- a/src/pages/blog/iquhack24/index.mdx +++ b/src/pages/blog/iquhack24/index.mdx @@ -1,12 +1,10 @@ --- layout: ../../../layouts/BlogLayout.astro -pubDate: 2023/09/16 +pubDate: 2024/01/21 title: "MIT's IQuHACK 2024!" description: "We secured a top 3 finish at MIT's quantum hackathon, IQuHACK. Here are my outtakes and experience." --- -import BlogPicture from "../../../components/BlogPicture.astro"; - First things first, a quick Public Service Announcement: ingesting 1400+ mg of caffeine is not recommended, even under the most dire of circumstances. Now, let's begin. IQuHack is an annual quantum hackathon put on by QRISE and MIT and takes place on the MIT campus. @@ -15,4 +13,6 @@ Participants then rank the challenges they want and are sorted accordingly. Each We ranked Quandela's challenge highest. We hoped we could do some cool and novel things with QPINNs (quantum physics-informed neural networks). We got into Quandela's challenge but we weren't going to be able to do QPINNs after the specific prompt was revealed. -TODO: Finish this after I get over the fact that we couldn't use QPINNs. +TODO: Finish this after I get over the fact that we couldn't use QPINNs. title: "MIT's IQuHACK 2024!" +description: "We secured a top 3 finish at MIT's quantum hackathon, IQuHACK. Here are my outtakes and experience." + diff --git a/src/pages/blog/uw_class_tierlist/hero.png b/src/pages/blog/uw_class_tierlist/hero.png new file mode 100644 index 0000000..e9eabed Binary files /dev/null and b/src/pages/blog/uw_class_tierlist/hero.png differ diff --git a/src/pages/blog/uw_class_tierlist/index.mdx b/src/pages/blog/uw_class_tierlist/index.mdx new file mode 100644 index 0000000..5aa7efc --- /dev/null +++ b/src/pages/blog/uw_class_tierlist/index.mdx @@ -0,0 +1,6 @@ +--- +layout: ../../../layouts/BlogLayout.astro +pubDate: 2024/03/17 +title: "My UW-Madison Class Tier List" +description: "Coming soon" +--- diff --git a/src/pages/rss.xml.js b/src/pages/rss.xml.js index 8bd605e..939372c 100644 --- a/src/pages/rss.xml.js +++ b/src/pages/rss.xml.js @@ -1,6 +1,5 @@ import rss, { pagesGlobToRssItems } from '@astrojs/rss'; -const SITE_TITLE = 'Nick Winans | Blog'; -const SITE_DESCRIPTION = `Hey! I'm Nick. I'm a software engineer and keyboard hobbyist turned business owner.`; +const SITE_TITLE = 'Nico Salm | Blog'; export async function get(context) { return rss({