Skip to content

Commit 6c80d3d

Browse files
committed
Add devlog 2024-12-15
1 parent 90d8b9f commit 6c80d3d

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed

_posts/devlogs/2024_12_15.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: Planning for Devlogs
3+
permalink: /devlogs/:year-:month-:day
4+
date: 2024-12-15
5+
layout: JoelKoch.Dev.PageLayout
6+
summary: Read about my plan to publish devlogs
7+
image: /images/2024_12_15_devlog.webp
8+
---
9+
# Devlogs
10+
11+
I got the idea to write a dev diary from this talk and want to try it.
12+
13+
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/8OUyP9p_CNc?si=AWLkALaesx3GMWND" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
14+
15+
I prefer the term "devlog", so I'm going with that.
16+
I'm not sure yet what I'm going to publish, it might be summaries of a number of weeks.
17+
I think I will keep a running note and publish it after some while.
18+
19+
## Current Plan
20+
21+
### Difficulties
22+
What is hard to do?
23+
24+
### Observations
25+
What did I learn that was interesting?
26+
Which were the tradeoffs I made?
27+
28+
### Questions
29+
What do I want to figure out?
30+
31+
Let's see how it goes.

extra/images/2024_12_15_devlog.webp

2.8 KB
Binary file not shown.

lib/pages/content_page.ex

+2-4
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,14 @@ defmodule JoelKoch.Dev.ContentPage do
4141
4242
<h1 id="devlogs">Devlogs</h1>
4343
<ul role="list" class="cluster">
44-
<li :for={post <- @posts} class="transitions zoom">
44+
<li :for={post <- @posts}>
4545
<.card>
4646
<img :if={post[:image]} src={post.image} alt="" width="256" height="256" />
4747
<h2>{post.title}</h2>
4848
<p>
4949
{post.summary}
5050
</p>
51-
<p>
52-
Devlog from {DateTime.to_date(post.date)}
53-
</p>
51+
<a href={post.permalink}>Devlog from {DateTime.to_date(post.date)}</a>
5452
</.card>
5553
</li>
5654
</ul>

0 commit comments

Comments
 (0)