added blog post 2026/0208
This commit is contained in:
@@ -350,26 +350,22 @@
|
|||||||
|
|
||||||
/* #region Lists (ul and LinkList) */
|
/* #region Lists (ul and LinkList) */
|
||||||
.list, ul {
|
.list, ul {
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
display: table;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list a, li {
|
.list a, li {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
/* transition: color 0.1s ease-in-out; */
|
|
||||||
margin: 0;
|
|
||||||
padding: 0px 0;
|
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
|
display: table-row;
|
||||||
}
|
}
|
||||||
.list a::before, li::before {
|
.list a::before, li::before {
|
||||||
content: "–";
|
content: "–";
|
||||||
font-family: var(--font-mono);
|
font-family: var(--font-mono);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--color-highlight);
|
color: var(--color-highlight);
|
||||||
margin: 0 4px 0 12px;
|
display: table-cell;
|
||||||
}
|
padding-left: 12px;
|
||||||
li::before {
|
|
||||||
padding-right: 8px;
|
padding-right: 8px;
|
||||||
}
|
}
|
||||||
.list a:hover::before {
|
.list a:hover::before {
|
||||||
|
|||||||
32
src/routes/blog/2026/0208.md
Normal file
32
src/routes/blog/2026/0208.md
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
Lately, I've not been able to do the things I'd like to do. I've had plenty of time, don't get me wrong – I finished my university assignments back at the start of January, cleaned my entire flat after coming back from my abroad semester, haven't been employed for months (though I'll soon have a job again) and university doesn't start again for me until April. And even then, I only have a single course left to take until October to finish my bachelor's.
|
||||||
|
|
||||||
|
Yet, I've made little progress on many of my projects and project ideas. [My game](/projects/projectn5) has been dormant for, at this point, almost two months, even though I've been thinking about it almost every day. Electronics projects I've been meaning to start, like a portable Raspberry Pi Zero 2W music player, I have barely begun working on. My 3D printer has seen almost no use even after I returned. I used to make music for a decade but now it's been 5 years since the last time I wrote a song.
|
||||||
|
|
||||||
|
I'm also still invested in trying to learn 3D modelling. How to model human characters, environments, items. Texturing. Rigging. Animation. There are studios employing entire teams for **each** of these fields, and I am trying to do all of them by myself.
|
||||||
|
|
||||||
|
And then there are the things I *do* spend time on currently, like updating my website. Maintaining my web server and learning how to use `systemd` and `docker-compose`. Moving over to self-hosted services and Linux to lessen big tech's grip on my data. At one point, I even tried things like writing a `REST` API in `Go` (a language I have never used before), and I was thinking of building my own Matter server for smart home stuff up until very recently too. I'm also still trying to configure a Raspberry Pi as a backup server. And if you wanna go that far, you may even include Cities: Skylines here, because trying to learn how to build a functioning city is an amount of work that could span a combined bachelor's and master's programme.
|
||||||
|
|
||||||
|
Now that I've started trying to learn [how to draw](/blog/2026/0205), I wonder: am I picking up too many hobbies all at once? Am I even able to create fulfilling work in all these hobbies? I'm just one human being, after all, and it's starting to feel a little overwhelming.
|
||||||
|
|
||||||
|
Maybe I should learn to reduce. Put some things on pause. It's difficult to decide to stop pursuing hobbies, but maybe by making a clean cut instead of having them linger on, I can make time (and space in my mind) for the things I'd rather do.
|
||||||
|
|
||||||
|
So I'm deciding now:
|
||||||
|
|
||||||
|
- I want to spend more time on my game. That's staying. It should become my main priority, in fact.
|
||||||
|
- My server is running fine, it doesn't really need constant maintenance. Some things I would like to change before I leave it to be though, like trying to use Docker for my Nginx install to make the installation more portable. I'm also considering getting rid of my Nextcloud installation and instead embracing copyparty for files and using my email provider for task synchronisation. Maybe set up an integration so that my website auto-updates whenever I push to Gitea. Saves the extra SSH login.
|
||||||
|
- I do like updating my website but I should settle on the current style (it looks pretty decent now anyway) and focus on adding content.
|
||||||
|
- Electronics projects are on pause.
|
||||||
|
- Playing around with random languages (like the `GO` API thing) is gonna go.
|
||||||
|
- I want to 3D print a coat hook for my flat door, so I'll do that and then not touch FreeCAD for a while.
|
||||||
|
- Trying to develop a music album is pretty difficult, and I already have a game to take care of. Music is officially on pause from now on (not that I could install FL Studio natively on Linux anyway...).
|
||||||
|
- And maybe I'll play games other than Cities: Skylines for for now.
|
||||||
|
|
||||||
|
And then there's drawing... cynical me wants to put that on hold too. But I do think that it could help me in developing my game. My idea is to be able to draw concept art, sketch down ideas instead of having them vanish before I manage to create them in Blender. Also, if I actually manage to take this to a level I can be somewhat happy with, I believe that drawing can serve as a fulfilling small hobby, in contrast to gamedev, which is a much bigger task where ideas take longer to come to fruition.
|
||||||
|
|
||||||
|
To sum up, I will focus on:
|
||||||
|
|
||||||
|
- Project N5
|
||||||
|
- Website
|
||||||
|
- Learning to draw
|
||||||
|
|
||||||
|
Let's see where this takes me :)
|
||||||
@@ -30,6 +30,17 @@ export const posts: BlogPostLink[] = [
|
|||||||
// title: "Portsmouth Postmortem",
|
// title: "Portsmouth Postmortem",
|
||||||
// description: "",
|
// description: "",
|
||||||
// }],
|
// }],
|
||||||
|
{
|
||||||
|
key: "2026/0208",
|
||||||
|
post: {
|
||||||
|
date: "2026-02-08",
|
||||||
|
time: "17:45",
|
||||||
|
banner: "sadstick.webp",
|
||||||
|
bannerAlt: "A curved stick from a tree with some dry leaves attached. Its form resembles an entity with two legs, a spine, and no arms, leaning over and looking sad.",
|
||||||
|
title: "Am I doing too much?",
|
||||||
|
description: "I'm trying to pursue too many hobbies all at once and it's a struggle.",
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: "2026/0205",
|
key: "2026/0205",
|
||||||
post: {
|
post: {
|
||||||
|
|||||||
BIN
static/blog/2026/0208/sadstick.webp
Normal file
BIN
static/blog/2026/0208/sadstick.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 120 KiB |
Reference in New Issue
Block a user