Skip to content

Commit

Permalink
Add week 9 essay
Browse files Browse the repository at this point in the history
  • Loading branch information
saulprl-enc committed Sep 9, 2024
1 parent c0e1a3e commit 2cac399
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/blog/entries.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import Week5 from "@/mdx/blog-entries/spark-week-5.mdx";
import Week6 from "@/mdx/blog-entries/spark-week-6.mdx";
import Week7 from "@/mdx/blog-entries/spark-week-7.mdx";
import Week8 from "@/mdx/blog-entries/spark-week-8.mdx";
import Week9 from "@/mdx/blog-entries/spark-week-9.mdx";
import { mdxComponents } from "@/mdx/components/components";

export type TBlogEntry = {
Expand Down Expand Up @@ -66,4 +67,12 @@ export const blogEntries: Array<TBlogEntry> = [
content: <Week8 components={{ ...mdxComponents }} />,
estimatedTime: 2,
},
{
id: 9,
title: "Spark Week 9 Essay",
date: "2024-09-08",
slug: "spark-week-9",
content: <Week9 components={{ ...mdxComponents }} />,
estimatedTime: 3,
},
];
21 changes: 21 additions & 0 deletions src/mdx/blog-entries/spark-week-9.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
export { Layout as default } from "../components/components.tsx";

# Spark Week 9
<br />

This week, I focused on trying to recover from last week's issues and attempting to finish my project, as well as attending our weekly *Spark Communication Sessions*, so let's start with that.
<br />

## Spark Communication Sessions
<br />

We had a longer-than-usual meeting this time due to the previous one being postponed. This time, we listened to one of our teammates' improvised presentation, where they told us about the story behind the *Lullaby Song*. We had the opportunity to give them some feedback, and then moved on to the next topic: hooks and presentation recommendations. It was a mainly theory-focused meeting and we've been given an assignment to put our newly acquired knowledge into practice.
<br />

## Breakable Toy
<br />

I resumed my work on this project by attempting to finish the back-end, using some mock responses so that the server would respond with data even if the external API was down. Everything was going smoothly until the API started working again, which brought up some issues I hadn't considered due to the logic being different in both cases. Unfortunately, I spent longer than I expected fixing those issues and eventually ended up with too little time to finish the front-end and setting up the Docker integration. I decided to still submit whatever I had at the time and continue working on the project on a different branch in order to have something to present at the very least.
<br />

Overall, I'm really disappointed because I know I can deliver high quality apps, but I definitely haven't been on a good run and this project ended up not being as interesting as I expected.

0 comments on commit 2cac399

Please sign in to comment.