import of old blog posts
Some checks failed
Build and Deploy Blog / build-and-deploy-local (push) Failing after 27s
Some checks failed
Build and Deploy Blog / build-and-deploy-local (push) Failing after 27s
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { getPostData, getAllPostIds } from "@/lib/posts";
|
import { getPostData, getAllPostIds, getAdjacentPosts } from "@/lib/posts";
|
||||||
import type { PostData } from "@/lib/posts";
|
import type { PostData } from "@/lib/posts";
|
||||||
import Window from "@/components/window";
|
import Window from "@/components/window";
|
||||||
import TableOfContents from "@/components/table-of-contents";
|
import TableOfContents from "@/components/table-of-contents";
|
||||||
@@ -28,6 +28,7 @@ export async function generateMetadata({ params }: PageProps) {
|
|||||||
export default async function Post({ params }: PageProps) {
|
export default async function Post({ params }: PageProps) {
|
||||||
const { slug } = await params;
|
const { slug } = await params;
|
||||||
const postData: PostData = await getPostData(slug);
|
const postData: PostData = await getPostData(slug);
|
||||||
|
const { prev, next } = getAdjacentPosts(slug);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx-auto max-w-6xl">
|
<div className="mx-auto max-w-6xl">
|
||||||
@@ -92,13 +93,37 @@ export default async function Post({ params }: PageProps) {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mt-8 text-center">
|
<div className="mt-8 flex items-center justify-between gap-4">
|
||||||
|
{prev ? (
|
||||||
|
<Link
|
||||||
|
href={`/posts/${prev.id}`}
|
||||||
|
className="inline-block max-w-[38%] truncate rounded-full bg-white/80 px-6 py-2 font-semibold text-blue-700 shadow-md transition-all hover:bg-white"
|
||||||
|
title={prev.title}
|
||||||
|
>
|
||||||
|
← {prev.title}
|
||||||
|
</Link>
|
||||||
|
) : (
|
||||||
|
<span />
|
||||||
|
)}
|
||||||
|
|
||||||
<Link
|
<Link
|
||||||
href="/"
|
href="/"
|
||||||
className="inline-block rounded-full bg-white/80 px-6 py-2 font-semibold text-blue-700 shadow-md transition-all hover:bg-white"
|
className="inline-block shrink-0 rounded-full bg-white/80 px-6 py-2 font-semibold text-blue-700 shadow-md transition-all hover:bg-white"
|
||||||
>
|
>
|
||||||
← Back to home
|
Home
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
|
{next ? (
|
||||||
|
<Link
|
||||||
|
href={`/posts/${next.id}`}
|
||||||
|
className="inline-block max-w-[38%] truncate rounded-full bg-white/80 px-6 py-2 font-semibold text-blue-700 shadow-md transition-all hover:bg-white"
|
||||||
|
title={next.title}
|
||||||
|
>
|
||||||
|
{next.title} →
|
||||||
|
</Link>
|
||||||
|
) : (
|
||||||
|
<span />
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
10
lib/posts.ts
10
lib/posts.ts
@@ -89,6 +89,16 @@ export function getAllPostIds() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getAdjacentPosts(slug: string): { prev: PostMeta | null; next: PostMeta | null } {
|
||||||
|
const posts = getSortedPostsData(); // newest → oldest
|
||||||
|
const index = posts.findIndex((p) => p.id === slug);
|
||||||
|
if (index === -1) return { prev: null, next: null };
|
||||||
|
return {
|
||||||
|
prev: posts[index + 1] ?? null, // older
|
||||||
|
next: posts[index - 1] ?? null, // newer
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
export async function getPostData(id: string): Promise<PostData> {
|
export async function getPostData(id: string): Promise<PostData> {
|
||||||
const fullPath = path.join(postsDirectory, `${id}.mdx`);
|
const fullPath = path.join(postsDirectory, `${id}.mdx`);
|
||||||
if (!fs.existsSync(fullPath)) notFound();
|
if (!fs.existsSync(fullPath)) notFound();
|
||||||
|
|||||||
27
posts/about-me.mdx
Normal file
27
posts/about-me.mdx
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: "About Me"
|
||||||
|
description: "First post — introducing myself as an 17-year-old developer from Gdańsk with big dreams."
|
||||||
|
date: "2019-05-09"
|
||||||
|
---
|
||||||
|
|
||||||
|
First of all, I am aware that blogs are kind of a 2010–2012 thing. But since I am really bored and I've watched a lot of Victorious and iCarly recently, I thought that I'll also make my own blog, or at least try...
|
||||||
|
|
||||||
|
So, let's talk about me.
|
||||||
|
|
||||||
|
Hi, I'm an 17-year-old boy who lives in Gdańsk, Poland — well, for at least five days a week. I go to III High School and I'm in a bilingual class.
|
||||||
|
|
||||||
|
Like every other teenager, I have hobbies. My main hobby is **programming**. I've been coding since I was 11. I started with C++ but moved into C# very quickly. Currently, I make mobile apps, desktop applications, games, microservices, and many other interesting things. In the future, I want to work as a Software Developer in a big tech company like Google or Microsoft.
|
||||||
|
|
||||||
|
I also take photos. In my junior high, I had Photography classes and since then I've been interested in it. Although I don't plan anything with it in my future — it'll stay as a hobby, I guess.
|
||||||
|
|
||||||
|
Another hobby is very related to the last one: **filmmaking**. Since I was a little kid I wanted to make movies. When I was 11, I uploaded my first video on YouTube — not really a movie, but a Minecraft let's play I recorded with my friend. After that I started uploading other let's plays, tutorials, and vlogs. I've been to some summer camps where I learned how to make a movie, write a script, etc. I also was in a film group in my primary school and junior high. I've made 3 short movies but I want to make more.
|
||||||
|
|
||||||
|
This year I started going to the gym and... I loved it. I recommend everyone start going — it's fun and you can improve your health a lot.
|
||||||
|
|
||||||
|
Despite all those things, I'm trying to learn how to play the guitar and how to sing. The singing part is a spontaneous decision. I kinda like singing but I suck at it, so I want to learn how to do it properly. I'm pretty sure I'm gonna fail, but hey — it's worth trying, isn't it?
|
||||||
|
|
||||||
|
After high school, I want to study Computer Science and Data Engineering. Then I want to move to the United States, probably somewhere near Silicon Valley, and start my life there. I've wanted that since I was a little kid. My ultimate life goal is to have a good life, a lovely family, and a great job.
|
||||||
|
|
||||||
|
Okay, I think this is everything. I'm pretty sure no one will read this but I don't care — I just wanted to write some stuff and put it on the internet.
|
||||||
|
|
||||||
|
Have a nice day!
|
||||||
17
posts/beginning-of-tough-week.mdx
Normal file
17
posts/beginning-of-tough-week.mdx
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
title: "The Beginning of a Tough Week"
|
||||||
|
description: "3:30 AM coding sessions, a Physics homework nightmare, and a week packed with tests ahead."
|
||||||
|
date: "2019-05-13"
|
||||||
|
---
|
||||||
|
|
||||||
|
It's 3:30 AM on a Monday morning. Saturday's party was great — I danced a lot and, of course, ate a lot too.
|
||||||
|
|
||||||
|
Today I finally got my test project for work. I thought it was going to be much harder than it actually was. I've just finished working on those tasks. For almost 3 hours I was trying just to *run* the project. It took me that long because CMake couldn't find the libraries, so I downloaded Linux and did my work there.
|
||||||
|
|
||||||
|
Now I'm working on my Physics homework, which is not easy — mostly because I have no idea how to do it. My task is to draw a graph of a planet's journey around the sun and its apparent retrograde motion. The main problem is that I've got no idea where to get the data about Mars positions. I'll probably end up making them up.
|
||||||
|
|
||||||
|
This whole week isn't going to be easy either. On Tuesday I'm retaking two recent Math exams and I also have a Chemistry test. On Wednesday there's a Geography pop quiz from Europe's physical relief map. On Thursday I think I'm free, but I'll study before Friday's Math test.
|
||||||
|
|
||||||
|
As you can see, this week is really tough. But the bright side is that after this week, summer break will be a little closer.
|
||||||
|
|
||||||
|
Okay, I gotta get back to that Physics homework.
|
||||||
17
posts/boring-civics-class.mdx
Normal file
17
posts/boring-civics-class.mdx
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
title: "Boring civics class, blood drawn, and lime coke"
|
||||||
|
description: "First day back after teacher strikes, downloading my Google data, and anxiously waiting for a job test project."
|
||||||
|
date: "2019-05-09"
|
||||||
|
---
|
||||||
|
|
||||||
|
Welcome! Today it was my first day in school since last month. Teachers in my country went on strike, so we didn't have classes. But the strike is over — and so is my free time.
|
||||||
|
|
||||||
|
I had easy classes today: civics, English, two hours of Polish, and that's it. Civics was the worst. My teacher somehow changes the speed of the clock — I always feel like it's two hours instead of one. Today's topic actually wasn't that bad though; we were talking about the European Union and how it works, because last week was the 15th anniversary of Poland joining the EU. Tomorrow I have a day off because I'm going to the doctor.
|
||||||
|
|
||||||
|
After school I went home, watched a new episode of Riverdale on Netflix, and then downloaded my Google, Snapchat, and Facebook data. I found a few interesting things — for example, I didn't know that when Google tracks my location, it saves whether I was walking or driving. I also found some really embarrassing things from my past.
|
||||||
|
|
||||||
|
I've been checking my email for almost 8 days now. I'm waiting for a test project that will decide if I'm going to get a job as a C++ Software Engineer. I'm so pumped about this but also a little afraid. If I get this job, I'd have to keep up with school and work at the same time. I don't know how I'm going to do it, but I'll figure it out later. The job is 100% remote so that's at least good news. I've never worked before so all of this is new to me, and I'm thrilled.
|
||||||
|
|
||||||
|
I haven't had dinner yet and I'm literally starving — I had blood drawn this morning and couldn't have breakfast, so today I've eaten only two chocolate bars and drank lime coke so far.
|
||||||
|
|
||||||
|
I think that's it for now. Really, I gotta eat something.
|
||||||
15
posts/chill-saturday.mdx
Normal file
15
posts/chill-saturday.mdx
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
title: "Chill Saturday"
|
||||||
|
description: "Housework, singing practice, and exciting news about an early summer break."
|
||||||
|
date: "2019-05-18"
|
||||||
|
---
|
||||||
|
|
||||||
|
Hey! I've just pushed the last changes to my test project for work.
|
||||||
|
|
||||||
|
Today's weather was awesome. In the morning it was sunny, then it rained for a while, and now it's sunny and really warm. I was alone in the house so I did groceries, laundry, and washed dishes. After all that housework I had a little time for myself before I had to go back to work, so I practiced my singing. Actually, it wasn't that bad — I think I'm getting better at it. Maybe I'll do some covers soon, who knows.
|
||||||
|
|
||||||
|
A funny thing happened today: the Prime Minister of Poland said that summer break is going to be sooner than it was supposed to be. I'm going to have a summer vacation in literally a month. I'm so happy about this news. I just have to survive the next two weeks and I'll finally be free.
|
||||||
|
|
||||||
|
Well, not really free — if my evaluation tomorrow goes great, I'll have to work. But that's okay.
|
||||||
|
|
||||||
|
I tried to record something for my YouTube channel but didn't have any ideas. So I think that's it for today. See you soon.
|
||||||
19
posts/decisions.mdx
Normal file
19
posts/decisions.mdx
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
title: "Decisions"
|
||||||
|
description: "Weighing university options from Poland to Stanford, and discovering Gavin James and MAX."
|
||||||
|
date: "2020-03-11"
|
||||||
|
---
|
||||||
|
|
||||||
|
As you may already know, I'm a junior in high school, which means I'll have to choose a college soon. So today I took my time and checked universities in my country, in Europe, and I also looked at Stanford University. Having done that, I've come to some conclusions.
|
||||||
|
|
||||||
|
Firstly, I would love to study in the US, especially in California. But if I wanted to accomplish that, I'd have to start working on my GPA (which is not the best right now — 3.40) and prepare for the SAT. Secondly, I couldn't find any university in Europe (excluding the UK) that would suit me best, and I don't want to go study abroad just for the sake of it. If I went abroad, I'd want to study at a prestigious university that is respected globally.
|
||||||
|
|
||||||
|
Poland has some pretty good universities, but they rank very low in both world and European rankings. So I have to decide now, because there's a lot to do. If I choose Stanford, I'll have to ask teachers for recommendation letters, write a personal essay, and register for the SAT in Poland. Fortunately, Stanford doesn't require TOEFL.
|
||||||
|
|
||||||
|
The biggest problem is my GPA. I kind of messed up my grades during my freshman year and I can't change those anymore — they're pulling my GPA down. To hit a 4.0, I'd need to get top marks in Math, Physics, Spanish, and Polish. Maybe not all of it, but Math will definitely be the hardest. I'm not really worried about the SAT though — I did a mock one a few months ago and it went pretty well. The Math section was actually the easiest part.
|
||||||
|
|
||||||
|
I'll have to do more research on European universities. Maybe something will catch my eye.
|
||||||
|
|
||||||
|
On a completely different note: since last week I've been listening to Gavin James and MAX (also known as Max Schneider). I find Gavin's music very soothing, especially his album *Only Ticket Home*. I used to listen to MAX through Kurt Hugo Schneider's covers. Kurt also makes great music — if you haven't listened to him yet, go check him out. You might like it.
|
||||||
|
|
||||||
|
I think this is all for now. See ya sometime in the future!
|
||||||
19
posts/end-of-july.mdx
Normal file
19
posts/end-of-july.mdx
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
title: "The End of July"
|
||||||
|
description: "Lake house fishing, C++ and math homework, Minecraft, The Lion King, and Victoria Justice's new song."
|
||||||
|
date: "2019-08-01"
|
||||||
|
---
|
||||||
|
|
||||||
|
So July has come to an end. It's been a quite normal month — I haven't done anything particularly special.
|
||||||
|
|
||||||
|
I spent last week at the lake house with my family. I didn't bring a computer, so instead I took a book about C++ programming and my math notebook, calculator, and pencil case — because my math teacher sent me an email with 4 PDF files full of exercises about quadratic functions. I knew the day would come when my teacher would email me homework during vacation. And sadly it did. Actually, I was surprised that I still remembered how to solve those exercises and still had the equations down.
|
||||||
|
|
||||||
|
The lake house was near an actual lake, so I wanted to try fishing a little. I didn't have a fishing rod, so I made one myself. It was a really satisfying experience. I managed to catch 3 fish.
|
||||||
|
|
||||||
|
When I got back, I spent most of the week playing Minecraft and coding a game in C++. I'm really glad that Minecraft got popular again and that I actually have fun playing it. I feel like I'm 10 again.
|
||||||
|
|
||||||
|
Also, an amazing thing happened this week: Victoria Justice posted on Instagram that she's recording a brand new song! I'm so happy — I had literally just started listening to her songs and was thinking "I wonder when she'll make a new song," and then BANG, a new one is coming.
|
||||||
|
|
||||||
|
Oh, and I almost forgot — I went to see *The Lion King* twice! I was skeptical before seeing it, but after I watched it I changed my mind. I really liked the remake, although the original is still the best.
|
||||||
|
|
||||||
|
So that wraps up my recent activities. As you can see, nothing too crazy happened — maybe except for the Victoria thing.
|
||||||
13
posts/first-of-september.mdx
Normal file
13
posts/first-of-september.mdx
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
title: "1st of September"
|
||||||
|
description: "Summer's over, moving into a new apartment, and reflecting on a surprisingly productive vacation."
|
||||||
|
date: "2019-09-01"
|
||||||
|
---
|
||||||
|
|
||||||
|
So summertime has come and gone... and unfortunately, school starts tomorrow.
|
||||||
|
|
||||||
|
I've just moved into a new apartment with my best friend. Honestly, I'm a little worried about the upcoming school year — math is going to be much harder, and I'm living alone for the first time in my life.
|
||||||
|
|
||||||
|
To summarize my vacation: I did many interesting nerdy things. I built my own blog website (didn't deploy it though), wrote a video sharing website (same story), started writing a dating website (didn't finish), made a short movie (I have to publish it someday), got better at C++ programming, and finally became more productive — although I put off gym training and now I'll have to start again at some point.
|
||||||
|
|
||||||
|
Okay, I think this is all for now. See ya.
|
||||||
21
posts/hey-ho-im-alive.mdx
Normal file
21
posts/hey-ho-im-alive.mdx
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
title: "Hey Ho... I Am Alive"
|
||||||
|
description: "Adjusting to living alone, surviving a brutal school schedule, and squeezing in some coding between naps."
|
||||||
|
date: "2019-10-11"
|
||||||
|
---
|
||||||
|
|
||||||
|
Yeah, I know — I wasn't posting anything for a while. Honestly, I didn't expect such a big change in my life.
|
||||||
|
|
||||||
|
First of all, living alone (without your parents) is quite challenging. There are a lot of house chores I didn't notice before. The fridge becomes empty *very* quickly so I have to do groceries every two days. You're running short on flatware every time you want to prepare something to eat. It's not as great as you'd think.
|
||||||
|
|
||||||
|
School doesn't give me any slack either. I have a lot of math and physics. My daily routine looks something like this: wake up, grab something to eat (usually cornflakes), go to school, stop at the store on the way to buy lunch, sit through 7–8 hours of school, go back to the apartment, take a nap (sometimes 3 hours), prepare dinner, do homework and prepare for the next day's classes, take a shower, and finally go to sleep.
|
||||||
|
|
||||||
|
I don't have much time to code anything or practice singing or playing an instrument. This week I brought my harmonica and wanted to practice, but — no time.
|
||||||
|
|
||||||
|
Even though there are a lot of classes, my grades are not that bad so far. Tomorrow I have a very important math test and a Polish test. I honestly hate Polish as a school subject. It is so pointless and irritating. Nevertheless, I somehow managed to work a little on my video sharing website, and I'm quite proud of the result. It still looks ugly but I don't care about the frontend right now — the backend works perfectly.
|
||||||
|
|
||||||
|
HackHeroes started this week. It's an IT contest where contestants have to come up with an app that helps solve one of the global problems. I still have no idea what I want to build, but I'll figure it out.
|
||||||
|
|
||||||
|
Unfortunately, I stopped going to the gym. The reason is simple: no time, and no gym near me anymore. I was thinking about doing some in-house training but I haven't prepared a plan yet.
|
||||||
|
|
||||||
|
Anyway, it's already 2 AM and I still have a lot of studying to do. See you sometime in the future.
|
||||||
15
posts/hope.mdx
Normal file
15
posts/hope.mdx
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
title: "Hope"
|
||||||
|
description: "Math resit passed, test postponed, surviving on sleep deprivation with summer break just 26 days away."
|
||||||
|
date: "2019-05-15"
|
||||||
|
---
|
||||||
|
|
||||||
|
It's Wednesday afternoon — finally, half of the week is behind me. My Math resit went great and I got a better grade. Friday's test was postponed to next week, so I don't have any tests or pop quizzes until the end of this week.
|
||||||
|
|
||||||
|
But I'm really sleep-deprived. I don't sleep because I've got homework, the Erasmus project, and my job. On the other hand, I only have 26 more days to get through like this, and then I'll have a summer break. I can definitely do it.
|
||||||
|
|
||||||
|
Yesterday I watched *No Kiss List* and *The Outcast*. The Outcast was quite boring but No Kiss List turned out to be fine. My whole body is sore today because I went to the gym yesterday — my first training after almost a two-week break.
|
||||||
|
|
||||||
|
From now on, no more breaks. Summer is closer every day, and I gotta work on my body.
|
||||||
|
|
||||||
|
Okay, I think that's it for now.
|
||||||
15
posts/i-got-a-job.mdx
Normal file
15
posts/i-got-a-job.mdx
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
title: "I Got a Job!"
|
||||||
|
description: "Landing my first commercial programming job in the game dev industry — despite never wanting to work in game dev."
|
||||||
|
date: "2019-10-23"
|
||||||
|
---
|
||||||
|
|
||||||
|
So I finally got my first job. I'm obviously very happy, but the whole thing is a little ironic. I've always said I don't want to work in the game dev industry — and yet my first job is in the game dev industry.
|
||||||
|
|
||||||
|
I got hired as a programmer (obviously). Unfortunately I can't write much about it because I signed an NDA. But I can tell you that the job is great and it's good money. Of course, I'm happy for more reasons than just the pay — I'll finally have some commercial experience on my resume, which should make getting new jobs easier. Or at least that's what I hope.
|
||||||
|
|
||||||
|
My school life is also great right now. I passed all the exams and my grades are solid. Although I do miss hanging out with friends and summer parties — I don't have much time for those anymore.
|
||||||
|
|
||||||
|
So yeah, that was a quick life update. Have a nice day!
|
||||||
|
|
||||||
|
*(I really have to improve the formatting of these posts. Maybe I'll do it this weekend.)*
|
||||||
15
posts/interesting-friday.mdx
Normal file
15
posts/interesting-friday.mdx
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
title: "Interesting Friday"
|
||||||
|
description: "Doctor's visit, a new suit, pizza, and finally watching Avengers: Endgame."
|
||||||
|
date: "2019-05-11"
|
||||||
|
---
|
||||||
|
|
||||||
|
What a day. I slept only an hour today and didn't go to school because I had an appointment with the doctor. I waited for an hour because my mom got stuck in traffic. The doctor said everything is okay with me, so I'm happy. After the short visit we drove back to my city.
|
||||||
|
|
||||||
|
Tomorrow I'm going to my cousin's 18th birthday party and I didn't have a suit, so we went to the city center and bought me a new one. Then my sister and I went to some restaurant to get pizza. Weirdly I couldn't finish mine, which was strange because I was starving. Then I went home and as soon as I got there, I fell asleep. When I woke up it was 10 PM, so I finally watched Avengers: Endgame.
|
||||||
|
|
||||||
|
**Spoiler warning!**
|
||||||
|
|
||||||
|
I'm sad that the directors killed Tony Stark and not Captain America.
|
||||||
|
|
||||||
|
Okay, it's 3 AM now and I'll try to go back to sleep.
|
||||||
17
posts/interesting-weekend.mdx
Normal file
17
posts/interesting-weekend.mdx
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
title: "Interesting Weekend"
|
||||||
|
description: "Discovering Ron Pope, party games, watching a Bill Gates documentary, and ordering books."
|
||||||
|
date: "2019-10-27"
|
||||||
|
---
|
||||||
|
|
||||||
|
It's Sunday, 10 PM, and I sat down to write this post. This weekend passed so quickly. I don't remember anything from Friday to be honest — nothing really happened. Saturday was quite interesting: I was working, dealing with documents, and also did some house chores like vacuuming, cleaning dishes, and taking out the trash.
|
||||||
|
|
||||||
|
I started listening to Ron Pope, especially *Bitterness or Sympathy* and *One Grain of the Sand*. When I was in 4th grade I heard *A Drop in the Ocean* and really liked it, and this week while I was studying with Spotify in the background, those songs came on. I'm glad that happened. Thanks to Spotify's auto-play, I also discovered the AJR band a few years ago — and by the way, they dropped a new single this week: *Dear Winter 2.0*.
|
||||||
|
|
||||||
|
In the evening I had a party at my friend's house. We chatted, played some party games like spin the bottle and never have I ever. We also managed to dance what we call in Poland "Belgian dance." It was quite challenging because we did it in a very small room, but it was fun.
|
||||||
|
|
||||||
|
Today I was also working, and had a small chat with my coworker about deadlines. I watched one part of a documentary about Bill Gates and it motivated me to start reading books again. So I ordered *A Brief History of Time* by Stephen Hawking and *The Subtle Art of Not Giving a F\*ck*. I also watched *17 Again* — loved it. I love stupid comedies. So I watched another one: *American Pie 2*. Also great. Fun fact: I've never actually watched the original *American Pie*, so I'll have to fix that soon.
|
||||||
|
|
||||||
|
The upcoming week is going to be a piece of work. I have a few exams and I have to retake a Physics test and a recent Spanish pop quiz — both of which I failed. But I'll worry about that later.
|
||||||
|
|
||||||
|
To summarize: I'm happy and a little tired. That's it for now.
|
||||||
17
posts/july-update.mdx
Normal file
17
posts/july-update.mdx
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
title: "What Has Been Going On With My Life and Other Things..."
|
||||||
|
description: "Playing the DOS Dune game, Minecraft, web development, and rewriting a microservice."
|
||||||
|
date: "2019-07-22"
|
||||||
|
---
|
||||||
|
|
||||||
|
So July is coming to an end — well, not really, but half of it is already gone. For all that time I've been doing literally nothing. Hence the no new posts.
|
||||||
|
|
||||||
|
Today I discovered the old DOS game *Dune*, which is an adaptation of Frank Herbert's novel. I read that book back in April and it was amazing. Currently I'm on the third part of the series. Anyway, the game turned out to be really addictive. I spent 5 hours playing it today instead of Minecraft — which, by the way, I started playing again (thanks PewDiePie). Sadly, Dune keeps crashing at one specific mission and I can't progress anymore.
|
||||||
|
|
||||||
|
I did a little web development during the first week of July. I wrote my own blog platform. But I'm too lazy to finish configuring it for deployment, so I'm still using Blogger for these posts. Yesterday I rewrote a microservice for my music streaming platform.
|
||||||
|
|
||||||
|
Unfortunately I stopped going to the gym. I guess vacation time made me really lazy.
|
||||||
|
|
||||||
|
Last week I finished watching Stranger Things season 3. I was surprised because this season was actually good — I didn't like the previous one.
|
||||||
|
|
||||||
|
So I have no idea what else to write, so I guess bye until the next post!
|
||||||
25
posts/learning-spanish.mdx
Normal file
25
posts/learning-spanish.mdx
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: "Learning Spanish"
|
||||||
|
description: "Planning a Flutter app to gamify Spanish vocabulary learning because passive sitting in class just wasn't cutting it."
|
||||||
|
date: "2019-05-09"
|
||||||
|
---
|
||||||
|
|
||||||
|
Hello, it's me again. This is my 3rd post today. Anyway — this year I started learning Spanish, or I should say I signed up for Spanish classes at school, because I don't really *learn* there.
|
||||||
|
|
||||||
|
What I mean is that I attend the classes but I mostly just sit passively and listen to whatever the teacher says. So I decided to change my attitude. I was thinking for a while about how I can learn vocabulary and grammar in the fastest and most efficient way, and I came up with a solution.
|
||||||
|
|
||||||
|
Since I'm lazy and a programmer, I thought about making a simple app. A few months back I was making a game — an FPS shooter where, to destroy an enemy, you have to type the Spanish equivalent of an English word shown on the screen. I didn't finish that project, but I did make a tool that takes a CSV file with data and converts it into a JSON file. That way I can easily add words to a dictionary and parse it through the application.
|
||||||
|
|
||||||
|
The app itself will show me a new word (one in English, one in Spanish). But since I'm lazy and I really doubt I'll open the app every day, I'd have the option to add a widget to my home screen and have the app send me a daily notification. Might sound complicated, but it's not. All I need is a cup of tea and the Flutter docs.
|
||||||
|
|
||||||
|
I really need to start actually learning Spanish because:
|
||||||
|
|
||||||
|
1. I'd love to know this language.
|
||||||
|
2. It would boost my self-esteem.
|
||||||
|
3. I could brag that I know Spanish. 😂
|
||||||
|
|
||||||
|
So far I only know how to greet and introduce myself, read and speak, count, and describe my appearance or someone else's.
|
||||||
|
|
||||||
|
*Mi español es pobre.*
|
||||||
|
|
||||||
|
*Nos vemos más tarde, amigos!*
|
||||||
15
posts/my-life.mdx
Normal file
15
posts/my-life.mdx
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
title: "My Life"
|
||||||
|
description: "Feeling sick before important exams and a party, reviving Twitter, and hoping to survive the night."
|
||||||
|
date: "2019-05-21"
|
||||||
|
---
|
||||||
|
|
||||||
|
Tuesday, 10 PM — I finally came back to being alive. I slept for 4 hours right after I came back from school.
|
||||||
|
|
||||||
|
Lately I've been having this weird cough but it didn't hurt or anything so I simply ignored it. But today after the second period I was shaking a little bit and didn't feel well. I still don't feel right — I have a headache and I'm pretty sure I have a fever. But I have to keep studying and pretend like I'm not sick for two reasons.
|
||||||
|
|
||||||
|
First, I have really important exams this weekend so I can't miss them. Second, my friend is throwing a party this Saturday and I really want to go — so I have to feel better by Friday.
|
||||||
|
|
||||||
|
Recently I also revived my Twitter account, so I'm quite active on social media these days.
|
||||||
|
|
||||||
|
That's it for today. To the next time... I hope I'm not going to die in my sleep tonight.
|
||||||
17
posts/quite-active-friday.mdx
Normal file
17
posts/quite-active-friday.mdx
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
title: "Quite Active Friday"
|
||||||
|
description: "Skipped the date but had a great gym session, swam at the lake alone, and caught a breathtaking sunset."
|
||||||
|
date: "2019-06-15"
|
||||||
|
---
|
||||||
|
|
||||||
|
So I didn't ask my crush out. Apparently she came to Gdańsk with her friends when I was on the train back home, so we couldn't really meet.
|
||||||
|
|
||||||
|
Instead of going on a date, I went to the gym and had an amazing training session. I did my usual full body workout and some abs exercises, but today was different — after my routine I did cardio and some boxing. I have to say, I loved punching the punching bag. I'm considering training boxing for real. It could be useful, and it's a great exercise for improving physical condition. Also, when you're punching a bag, you can completely blow off steam you've gathered over a whole week. That's amazing.
|
||||||
|
|
||||||
|
After the gym, I finally got my bike from the basement and rode to the lake. Unfortunately I was alone there because some of my friends were with my crush in Gdańsk and others weren't available. So I swam for a while and rode back home.
|
||||||
|
|
||||||
|
On my way back I saw such an amazing sunset. It was the most breathtaking view I've seen this year. I was really upset that I didn't have my DSLR camera with me. Well, I didn't lose much — every summer I have this view, so I'll take a picture of it someday and post it here.
|
||||||
|
|
||||||
|
When I got back I made myself a second dinner: scrambled eggs with beef steaks and a strawberry milkshake my mom made before. After that I worked a little on my game, and now I'm writing this post while waiting for Flutter to finish updating so I can implement new features to my app. After that I want to start coding a brand new app — more info on that later.
|
||||||
|
|
||||||
|
So to sum up: no date today, but I did awesome things anyway. I see this as an absolute win.
|
||||||
15
posts/school-trip.mdx
Normal file
15
posts/school-trip.mdx
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
title: "School Trip"
|
||||||
|
description: "Writing from a hotel in Poznań, exhausted from sightseeing, and planning to finally ask my crush out."
|
||||||
|
date: "2019-06-11"
|
||||||
|
---
|
||||||
|
|
||||||
|
So I haven't been posting anything new for a while. Honestly, I don't have much time lately — every weekend I go out with my friends or go to parties. My social life is quite decent now and I'm really glad about that.
|
||||||
|
|
||||||
|
Right now I'm lying on the bed in my hotel room. I'm in Poznań on my school trip. The trip is actually pretty good. I'm exhausted from walking and visiting a lot of buildings, but the vibe is good and the weather is great. Today it was 93°F — that's insane. Tomorrow is going to be at least 96°F. I think I'm gonna melt.
|
||||||
|
|
||||||
|
But honestly I can't wait to get back to Gdańsk. I'm going to ask my crush out, so I'm excited and terrified at the same time. I'd be so happy if she said yes. I hope I find the courage to actually do it on Friday.
|
||||||
|
|
||||||
|
The thing I'm most worried about is that our relationship will get worse if she says no. But whoever doesn't take action doesn't really know what life is about — or something like that.
|
||||||
|
|
||||||
|
Wish me luck, and hopefully I'll write about my amazing date on Friday night.
|
||||||
23
posts/solved-problem.mdx
Normal file
23
posts/solved-problem.mdx
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
title: "Solved Problem"
|
||||||
|
description: "A breakthrough in socializing, realizing conversations work differently than I thought, and reflecting on work habits."
|
||||||
|
date: "2019-11-07"
|
||||||
|
---
|
||||||
|
|
||||||
|
Today a magical thing happened. I accidentally solved my problem with having conversations with people.
|
||||||
|
|
||||||
|
I've always had trouble starting a conversation with anyone. I thought that asking questions like "how are you?" or "how was your day?" was stupid because they didn't give me any valuable information. So by thinking that way, I struggled with socializing.
|
||||||
|
|
||||||
|
But today I came to the realization that this is completely normal — asking casual questions. And this is brilliant. If I know how to start a conversation, I can talk with people more often, and I'll be less awkward around them. What's more, I boosted my self-esteem and started caring less about what people think about me. Previously I didn't really care either, but I wasn't very confident or sure about my actions.
|
||||||
|
|
||||||
|
I also realized that girls are actual human beings. I know that sounds weird, so let me explain. When I was talking with a girl, I had some filter on — I was choosing my words very carefully for no real reason. But recently I stopped doing that, and the results are awesome. You can actually just have a normal conversation.
|
||||||
|
|
||||||
|
I watched *The Society* and it gave me a lot to think about. I really didn't expect to come away with thoughts from a teen drama TV show. I kept thinking: how would I and my friends deal with a similar situation?
|
||||||
|
|
||||||
|
I've slowly started to regret some of my life decisions. I have a job and that's great, but I am so not qualified for it. I know how to code and I think I'm a decent coder, but the job turned out not to be about coding that much. There are so many things I wasn't prepared for.
|
||||||
|
|
||||||
|
Also, school gave me bad habits around deadlines — I'm used to doing all my homework or school projects just one day before the deadline. And that is **so wrong** in the real world. I need to start sticking to my schedule.
|
||||||
|
|
||||||
|
So I have a few things to work on. One: I have to really get to work. Two: I have to prepare my TED Talk for the Erasmus thing. Three: I have to finally ask my crush out. Hopefully I'll do all of it by the end of November.
|
||||||
|
|
||||||
|
See ya!
|
||||||
19
posts/summer-time.mdx
Normal file
19
posts/summer-time.mdx
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
title: "Summer Time"
|
||||||
|
description: "Missing friends during summer break, working on games, a birthday party, and discovering Jon Bellion and classical music."
|
||||||
|
date: "2019-06-30"
|
||||||
|
---
|
||||||
|
|
||||||
|
The second week of my vacation has just started, and I have to admit — even though I have summer break — I don't feel as happy as I thought I would. I guess the problem is the absence of my friends. Some went to various summer camps, others are working, so we can't hang out together.
|
||||||
|
|
||||||
|
Nevertheless, I managed to finish my Spanish learning game last week. Now I'm working on a Pepsiman remake with a friend. I'm also still working on my other projects like my game engine and some other things.
|
||||||
|
|
||||||
|
Yesterday I was at my cousin's 18th birthday party and it was a really great one. This time I wasn't the photographer — my ex-classmate from junior high took that job. I talked with her about some stuff and danced with her and obviously other people too. I don't really like dancing because I just don't know how to dance. But if it's a party, you've got to have fun, so dancing is what you do.
|
||||||
|
|
||||||
|
Sadly I haven't been to the gym since June 15th. This makes me sad. I can't motivate myself to go. Even though I really want to, it's 90°F so I spend most of my time at the lake, and when I come back I'm too tired to go. Maybe it'll change this week.
|
||||||
|
|
||||||
|
Recently I started listening to Jon Bellion and — wait for it — classical music. It's really weird. I've never liked classical music, but a few days ago when I was sunbathing on the patio I thought: let's try some classical music. And since that moment I listen to it. It turned out it's not as bad as I always thought.
|
||||||
|
|
||||||
|
And Jon Bellion's music makes me really happy. My favorites are Stupid Deep (acoustic version), 80s Films, and Human (acoustic version).
|
||||||
|
|
||||||
|
So that's it for now. How is your summer break?
|
||||||
21
posts/task-failed-successfully.mdx
Normal file
21
posts/task-failed-successfully.mdx
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
title: "Task Failed Successfully"
|
||||||
|
description: "Getting rejected but feeling accomplished anyway, and figuring out that having money is surprisingly hard to manage."
|
||||||
|
date: "2019-11-21"
|
||||||
|
---
|
||||||
|
|
||||||
|
I was meaning to write this post last week but I got caught up in homework and work, so I'm writing it now.
|
||||||
|
|
||||||
|
Last week was wonderful. I finally got enough courage and asked out my crush. You're probably curious about her response — well, she said no. She said she didn't want to date anyone at that moment, so I got rejected. But I was quite happy with the result. I mean, I finally asked somebody out. The feeling of overcoming your fear is awesome. By doing it I boosted my confidence so much.
|
||||||
|
|
||||||
|
My cousin's daughter had her 1-year birthday party on Saturday, so naturally we went. I actually enjoyed my time there — I talked to my uncle about my job and economics.
|
||||||
|
|
||||||
|
This week, on the other hand, was strange. I was feeling weird. Last week I had been feeling somewhat accomplished and full of joy. But this week was completely different — I didn't have any goal to accomplish, which could explain the weird feelings. I got some not-so-great grades and had two difficult tests.
|
||||||
|
|
||||||
|
But I also got paid yesterday, and oh man... that feeling when you get your payment is so joyous I honestly can't describe it. You have to experience it yourself.
|
||||||
|
|
||||||
|
And with it, I found a new problem to solve. I started spending money like water. The problem is that I have a fairly nice bank balance at the moment, and when I spend 100 or 50 PLN, I don't see that much change in my account. So my brain thinks I'm not spending much and proceeds to spend even more. And **this is bad**.
|
||||||
|
|
||||||
|
I guess I have to get used to having a little more money than I've ever had before.
|
||||||
|
|
||||||
|
So the last two weeks flew right in front of my eyes. Thanksgiving is next week but my family doesn't celebrate it, so I'm just waiting for Black Friday — maybe I'll buy something cool this year.
|
||||||
15
posts/the-final-week.mdx
Normal file
15
posts/the-final-week.mdx
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
title: "The Final Week!"
|
||||||
|
description: "Erasmus visitors, a massive house party, and just two tests left before summer freedom."
|
||||||
|
date: "2019-06-02"
|
||||||
|
---
|
||||||
|
|
||||||
|
Hello everybody! I haven't posted anything new for a while — it was caused mostly by my social life and school. I'm so glad that I started going out with my friends again on weekends. I really missed it.
|
||||||
|
|
||||||
|
Last week I had the Erasmus thing going on at school. I have to admit, my English wasn't that bad compared to the Italian and Portuguese guys. Also last week I was at an amazing party at my friend's house. It was supposed to be a small gathering but it turned into a really big one — instead of 30 people, almost 40 came. And it wouldn't have been that bad if they hadn't brought gallons of alcohol. I actually didn't drink much through the whole party. Right at the beginning I drank the beer I had bought before, and later I didn't drink anything. So I was sober through the entire event. I helped my best friend keep the house safe, talked with my friends, and helped one of them down the stairs. To summarize: the party was great.
|
||||||
|
|
||||||
|
The week after the party wasn't the best, but I made it through. That Erasmus thing was really interesting and I'm definitely going to take part in such an event next year. It's a lot of fun and you get to meet people from different cultures across Europe. I really liked the Dutch students — their English was decent and they were friendly. They tried to teach me some Dutch but failed. It's impossible for me to pronounce those sentences.
|
||||||
|
|
||||||
|
This week is my **final week** with tests. I only have two more and then I'm completely free. After Wednesday I can chill by the seashore. Can't wait to come back home. I'm going with some friends to a lake to play volleyball and swim, and later we'll probably set a campfire. Also during this week I'm probably going to work a little on my game.
|
||||||
|
|
||||||
|
I hope tomorrow's Physics test will be easy. That's it for tonight.
|
||||||
37
posts/what-have-i-been-up-to.mdx
Normal file
37
posts/what-have-i-been-up-to.mdx
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
title: "What Have I Been Up to Lately?"
|
||||||
|
description: "Four months of life updates: losing and gaining a job, turning 18, writing audio software, and a birthday party."
|
||||||
|
date: "2020-02-24"
|
||||||
|
---
|
||||||
|
|
||||||
|
My last post was a very long time ago — four months to be exact. During that period I lost my job but got another one, became an adult, got addicted to Minecraft again, lost interest in ukulele (which I'd picked up during Christmas), wrote audio recording software, and became more attractive and handsome. I'd had no idea that was even possible. I was already perfect. (/s)
|
||||||
|
|
||||||
|
But let's start from the beginning.
|
||||||
|
|
||||||
|
## December
|
||||||
|
|
||||||
|
The first half of December was pretty terrible. There were a lot of tests and I had a lot of stuff from work on my plate. We were running 2 weeks behind schedule and there were a lot of unresolved tickets. I couldn't keep up with Math, Physics, and work at the same time. I knew I had to drop either my education or work. That problem ended up solving itself at the beginning of January — more on that later.
|
||||||
|
|
||||||
|
The second half of December was much more pleasant. First: Christmas break — no school. Second: I love Christmas season because my entire family gathers at my grandparents' house and there's this friendly, loving vibe everywhere. The smells are great. It's just magical. Third: I was playing Minecraft constantly and enjoying it like I did when I was a little kid back in 2011–2013.
|
||||||
|
|
||||||
|
The last night of that decade I spent at my friend's house at a New Year's party. There were a lot of people — my friends and their friends. The party was great.
|
||||||
|
|
||||||
|
## January
|
||||||
|
|
||||||
|
Which brings us to January 1st... oh boy, it was a very busy night. I came back home around 11 AM, sat down at my desk, and played Minecraft. Around 5 PM I packed my stuff and went back to my friend's house because we were heading back to our apartment in Gdańsk for school. I was pretty hungry — I hadn't eaten anything all day. When we got to the apartment I made myself french fries and grabbed a diet coke from the fridge. Then I went to sleep.
|
||||||
|
|
||||||
|
A week and a half after the Christmas break we had another one: Winter Break, which lasted two weeks as usual. During that break I hung out with friends and slept through most of it. Oh, and I got another job — this time making a website for the dental clinic where my mom works. After the break there were those exams again. Obviously I passed all of them. I did have to retake one Math test about polynomial equations and inequalities, but I got a 4 from the retake, which was nice.
|
||||||
|
|
||||||
|
My music taste also expanded: Jon Bellion and his *The Human Condition* album, and Michael Jackson. I actually didn't know that "I Want You Back" was originally performed by The Jacksons — I thought it was created for the show *Victorious*. Every day you learn something new.
|
||||||
|
|
||||||
|
## February
|
||||||
|
|
||||||
|
I have a warm feeling about this month — my birthday is on the 27th, and I have nice memories tied to this time of year.
|
||||||
|
|
||||||
|
During the first week, I wrote audio recording software and started working on another piece of software: a screen recorder. I haven't completed it yet, but I'm very close. I also think I finally figured out OpenGL, which is a huge milestone.
|
||||||
|
|
||||||
|
I had my 18th birthday party on the 15th. It was quite decent. Last week I took a mock bilingual English "matura" exam (something like the SATs in the US), and the last task is always to write an opinion essay. Well, I hadn't written any essays in a while, and this one I wrote so badly I can't even describe it. There was no structure. Arguments were weak. It seemed like I had no idea what I wanted to say — which honestly wasn't that far from the truth.
|
||||||
|
|
||||||
|
Today I helped my friend shoot a short ad for his class. We had a lot of fun even though it was freezing cold and raining outside. But we managed to shoot it, and the results are astonishing.
|
||||||
|
|
||||||
|
Well, that's it for today. Have a nice day and stay safe!
|
||||||
Reference in New Issue
Block a user