Skip to content

Commit 84f1661

Browse files
committed
log entries
1 parent 0b991ff commit 84f1661

14 files changed

+305
-45
lines changed

public/data/logs.json

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,47 +5,53 @@
55
"author": "Douglas Adams",
66
"date": "2025-10-15",
77
"rating": 5,
8-
"link": "https://www.goodreads.com/book/show/386162.The_Hitchhiker_s_Guide_to_the_Galaxy"
8+
"link": "https://www.goodreads.com/book/show/386162.The_Hitchhiker_s_Guide_to_the_Galaxy",
9+
"slug": "the-hitchhikers-guide-to-the-galaxy"
910
},
1011
{
1112
"title": "The Matrix",
1213
"category": "Movie",
1314
"director": "The Wachowskis",
1415
"date": "2025-10-14",
1516
"rating": 5,
16-
"link": "https://www.imdb.com/title/tt0133093/"
17+
"link": "https://www.imdb.com/title/tt0133093/",
18+
"slug": "the-matrix"
1719
},
1820
{
1921
"title": "The Legend of Zelda: Breath of the Wild",
2022
"category": "Game",
2123
"platform": "Nintendo Switch",
2224
"date": "2025-10-12",
2325
"rating": 5,
24-
"link": "https://www.zelda.com/breath-of-the-wild/"
26+
"link": "https://www.zelda.com/breath-of-the-wild/",
27+
"slug": "the-legend-of-zelda-breath-of-the-wild"
2528
},
2629
{
2730
"title": "The Go Programming Language",
2831
"category": "Book",
2932
"author": "Alan A. A. Donovan & Brian W. Kernighan",
3033
"date": "2025-10-10",
3134
"rating": 5,
32-
"link": "https://www.gopl.io/"
35+
"link": "https://www.gopl.io/",
36+
"slug": "the-go-programming-language"
3337
},
3438
{
3539
"title": "How to build a mechanical keyboard",
3640
"category": "Article",
3741
"source": "PC Gamer",
3842
"date": "2025-10-08",
3943
"rating": 4,
40-
"link": "https://www.pcgamer.com/how-to-build-a-mechanical-keyboard/"
44+
"link": "https://www.pcgamer.com/how-to-build-a-mechanical-keyboard/",
45+
"slug": "how-to-build-a-mechanical-keyboard"
4146
},
4247
{
4348
"title": "In the Aeroplane Over the Sea",
4449
"category": "Music",
4550
"artist": "Neutral Milk Hotel",
4651
"date": "2025-10-06",
4752
"rating": 5,
48-
"link": "https://www.youtube.com/watch?v=hD6_q5d4v-w"
53+
"link": "https://www.youtube.com/watch?v=hD6_q5d4v-w",
54+
"slug": "in-the-aeroplane-over-the-sea"
4955
},
5056
{
5157
"title": "Breaking Bad",
@@ -54,6 +60,7 @@
5460
"year": "2008-2013",
5561
"date": "2025-10-04",
5662
"rating": 5,
57-
"link": "https://www.imdb.com/title/tt0903747/"
63+
"link": "https://www.imdb.com/title/tt0903747/",
64+
"slug": "breaking-bad"
5865
}
5966
]

public/logo192.png

566 Bytes
Loading

public/logo512.png

9.07 KB
Loading

public/logs/breaking-bad.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Breaking Bad
2+
3+
- **Category:** Series
4+
- **Creator:** Vince Gilligan
5+
- **Year:** 2008-2013
6+
- **Date:** 2025-10-04
7+
- **Rating:** 5/5
8+
- **Link:** [IMDb](https://www.imdb.com/title/tt0903747/)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# How to build a mechanical keyboard
2+
3+
- **Category:** Article
4+
- **Source:** PC Gamer
5+
- **Date:** 2025-10-08
6+
- **Rating:** 4/5
7+
- **Link:** [PC Gamer](https://www.pcgamer.com/how-to-build-a-mechanical-keyboard/)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# In the Aeroplane Over the Sea
2+
3+
- **Category:** Music
4+
- **Artist:** Neutral Milk Hotel
5+
- **Date:** 2025-10-06
6+
- **Rating:** 5/5
7+
- **Link:** [YouTube](https://www.youtube.com/watch?v=hD6_q5d4v-w)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# The Go Programming Language
2+
3+
- **Category:** Book
4+
- **Author:** Alan A. A. Donovan & Brian W. Kernighan
5+
- **Date:** 2025-10-10
6+
- **Rating:** 5/5
7+
- **Link:** [gopl.io](https://www.gopl.io/)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# The Hitchhiker's Guide to the Galaxy
2+
3+
- **Category:** Book
4+
- **Author:** Douglas Adams
5+
- **Date:** 2025-10-15
6+
- **Rating:** 5/5
7+
- **Link:** [Goodreads](https://www.goodreads.com/book/show/386162.The_Hitchhiker_s_Guide_to_the_Galaxy)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# The Legend of Zelda: Breath of the Wild
2+
3+
- **Category:** Game
4+
- **Platform:** Nintendo Switch
5+
- **Date:** 2025-10-12
6+
- **Rating:** 5/5
7+
- **Link:** [Zelda.com](https://www.zelda.com/breath-of-the-wild/)

public/logs/the-matrix.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# The Matrix
2+
3+
- **Category:** Movie
4+
- **Director:** The Wachowskis
5+
- **Date:** 2025-10-14
6+
- **Rating:** 5/5
7+
- **Link:** [IMDb](https://www.imdb.com/title/tt0133093/)

0 commit comments

Comments
 (0)