1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/assets/css/main.css">
<title>Summer holiday!</title>
</head>
<body>
<article>
<header>
<h1>Summer holiday!</h1>
<p class="post-date">July 19, 2024</p>
</header>
<div class="post-content">
<hr>
<p>As of today, my summer holiday has started. And with that comes a lot of freetime to mess around with computers! I have planned some projects for the next 6 weeks so I thought I would make a post on what I have planned!</p>
<hr>
<h2>Operating system plans</h2>
<img class="right-image" width="270" src="/images/summertux.png">
At some point, I will try out <a href="https://www.linuxfromscratch.org/">Linux from scratch</a> because I have heard it is a good way to see how a Linux system is constructed while making it. I would also like to try creating my own distro of some kind and maybe ship it too.
<p>While we are on the topic of Linux, I am going to try out <a href="https://www.gentoo.org/">Gentoo</a> to see if it is any good. All I really know is that it takes longer to install than <a href="https://archlinux.org/">Arch Linux</a> and you need to compile all the programs. I'm looking forward to that experience!</p>
<p>On top of trying Gentoo and Linux From Scratch, I will also try out <a href="https://www.freebsd.org/">FreeBSD</a> just to see how it is. Though I am not planning to switch to it because nothing can beat Linux! However, I have heard BSD is really good for web servers, and I know you can run Nextcloud on it, so maybe I will try something like that out to see if its any good.</p>
<hr>
<center>
This is my 'testing computer' where I will be doing all this on.
<img width="800" src="/images/testpc.png">
</center>
<hr>
<h2>Programming</h2>
<h3>Learning programming languages</h3>
<p>Over the next 6 weeks I will also try and dedicate some more time into learning the C programming language, and I will be trying to learn some more Python because it is easier for smaller projects and I am planning on trying to make a few small programs and see how much I can do.</p>
<h3>Fakefetch</h3>
<p>I will try to give Fakefetch weekly updates to improve its functionality because I really enjoy developing Fakefetch. It is something simple, yet it expands my knowledge of Linux and the C programming language. For example, I could add an IP option to Fakefetch where you can display your IP address, or I could add a battery option. There are lots of things to do with Fakefetch, so I am excited to work on it more!</p>
<h3>Dotfiles</h3>
<p>There is not much I will do with my dotfiles, to be honest, because so far I have my ideal setup. Maybe I will add some more bits to Neovim and perhaps create a custom color theme, but that's all I can really think of. Of course, I will add little bits and maybe update some of the programs on the install list, but as of today, there is not much I will change apart from maybe some patches for DWM.</p>
<h3>Website</h3>
<p>I will try to do daily updates to this website. Making this website is one of the most fun projects I have ever undertaken because it is just enjoyable to write down ideas and projects I have done. I will do my best to make this website more mobile-friendly; in fact, I am going to try to do this tomorrow and see how it goes.</p>
<h2>Writing</h2>
<p>In the next few weeks, I will be trying to compile all my notes about Linux into a small book that anybody can read! In this book, there will be information about different commands, how to start in the Linux world, and more! So far, I have finished the first part, but there is way more to go. If you are interested, keep an eye on the projects page for any updates!</p>
<hr>
<h2>Conclusion</h2>
<p>That is all for now, as you can tell I am going to be busy but I am going to love the next few weeks! Thank you for reading.</p>
</div>
</article>
<footer class="post-footer">
<!-- 🌟 Back button -->
<a href="/" class="back-button">⬅ Back to Home</a>
<p class="post-tags">
<a href="/tags/life/"
aria-label="View posts tagged life">
life
</a>
<a href="/tags/tech/"
aria-label="View posts tagged tech">
tech
</a>
</p>
</footer>
</body>
</html>
|