File tree 3 files changed +33
-4
lines changed
3 files changed +33
-4
lines changed Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change @@ -41,16 +41,14 @@ defmodule JoelKoch.Dev.ContentPage do
41
41
42
42
< h1 id = "devlogs " > Devlogs</ h1 >
43
43
< ul role = "list " class = "cluster " >
44
- < li :for = { post <- @ posts } class = " transitions zoom " >
44
+ < li :for = { post <- @ posts } >
45
45
< . card >
46
46
< img :if = { post [ :image ] } src = { post . image } alt = "" width = "256 " height = "256 " />
47
47
< h2 > { post . title } </ h2 >
48
48
< p >
49
49
{ post . summary }
50
50
</ 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 >
54
52
</ . card >
55
53
</ li >
56
54
</ ul >
You can’t perform that action at this time.
0 commit comments