-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (82 loc) · 4.11 KB
/
index.html
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
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Home - danemasen</title>
</head>
<body>
<header>
<a href="./"><h1>danemasen</h1></a>
</header>
<main>
<div id="about-me">
<h3>About Me </h3>
<p>Software minimalist and beginner blogger, read my blog <a href="https://perhaps.blog">here</a>. Been using Linux since 2022, and I'm currently running <a href="https://voidlinux.org">Void Linux</a> on both my desktop PC and my laptop.</p>
</div>
<div id="recommended">
<h3>Tools I Use and Recommend</h3>
<ul>
<li><a href="https://www.gnu.org/software/bash/">bash</a> ------ GNU's Bourne Again SHell.</li>
<li><a href="https://github.com/Duncaen/OpenDoas">opendoas</a> -- A port of OpenBSD's doas tool.</li>
<li><a href="https://openssh.com">openssh</a> --- Connect to and manage machines remotely.</li>
<li><a href="https://git-scm.com">git</a> ------- Version Control System.</li>
<li><a href="https://neovim.io">neovim</a> ---- Fast and powerful terminal-based text editor.</li>
<li><a href="https://github.com/tmux/tmux">tmux</a> ------ Powerful terminal multiplexer.</li>
<li><a href="https://codeberg.org/dwl/dwl">dwl</a>/<a href="https://dwm.suckless.org/">dwm</a> --- Lightweight window managers for Wayland and Xorg, respectively.</li>
<li><a href="https://codeberg.org/dnkl/foot">foot</a>/<a href="https://st.suckless.org/">st</a> --- Lightweight terminal emulators for Wayland and Xorg, respectively.</li>
<li><a href="https://codeberg.org/newsraft/newsraft">newsraft</a> -- Small RSS feed reader.</li>
<li><a href="https://www.mozilla.org/en-US/firefox/new/">firefox</a> --- Open source world wide web browser.</li>
</ul>
</div>
<div id="public-projects">
<h3>My Projects</h3>
<ul>
<li><a href="https://perhaps.blog">Perhaps Blog</a></li>
<li>Perlfetch (<a href="https://git.sr.ht/~danemasen/perlfetch">SourceHut</a>)(<a href="https://codeberg.org/danemasen/perlfetch">Codeberg</a>)(<a href="https://github.com/danemasen/perlfetch">GitHub</a>)</li>
<p>A tiny system information script for Linux and OS X.</p>
</ul>
</div>
<div id="other">
<h3>Other</h3>
<ul>
<li>Dotfiles (<a href="https://git.sr.ht/~danemasen/dotfiles">SourceHut</a>)(<a href="https://codeberg.org/danemasen/dotfiles">Codeberg</a>)(<a href="https://github.com/danemasen/dotfiles">GitHub</a>)</li>
<p>My configuration files for variations programs.</p>
<li>Iosevka Custom (<a href="https://git.sr.ht/~danemasen/iosevka-custom">SourceHut</a>)(<a href="https://codeberg.org/danemasen/iosevka-custom">Codeberg</a>)(<a href="https://github.com/danemasen/iosevka-custom">GitHub</a>)</li>
<p>My custom variation/configuration of the lovely Iosevka font.</p>
<li>Iosevka Custom Nerd Font (<a href="https://git.sr.ht/~danemasen/iosevka-custom-nerd-font">SourceHut</a>)(<a href="https://codeberg.org/danemasen/iosevka-custom-nerd-font">Codeberg</a>)(<a href="https://github.com/danemasen/iosevka-custom-nerd-font">GitHub</a>)</li>
<p>My custom nerd font variation/configuration of the lovely Iosevka font.</p>
</ul>
</div>
</main>
<footer>
<div id="email">
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div id="mastodon">
<a href="https://mastodon.social/@danemasen">Mastodon</a>
</div>
<div id="lemmy">
<a href="https://lemmy.ml/u/danemasen">Lemmy</a>
</div>
<div id="patreon">
<a href="https://patreon.com/danemasen">Patreon</a>
</div>
<div id="kofi">
<a href="https://ko-fi.com/danemasen">Ko-Fi</a>
</div>
<div id="paypal">
<a href="https://paypal.me/danemasen?country.x=DK&locale.x=en_US">Donate via PayPal</a>
</div>
<div id="sourcehut">
<a href="https://sr.ht/~danemasen/">SourceHut</a>
</div>
<div id="codeberg">
<a href="https://codeberg.org/danemasen">Codeberg</a>
</div>
<div id="github">
<a href="https://github.com/danemasen">GitHub</a>
</div>
</footer>
</body>
</html>