This commit is contained in:
2025-07-22 23:10:46 +02:00
parent d9811b41f5
commit 0c21f23d79
2 changed files with 39 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
<li><a href="/blog" aria-label="Blog">blog()</a></li> <li><a href="/blog" aria-label="Blog">blog()</a></li>
<li><a href="/now" aria-label="Now">now()</a></li> <li><a href="/now" aria-label="Now">now()</a></li>
<li><a href="/links" aria-label="Links">links()</a></li> <li><a href="/links" aria-label="Links">links()</a></li>
<li><a href="/beliefs">beliefs()</a></li> <li><a href="/about">about()</a></li>
<li><a href="https://git.rhetenor.de" aria-label="External link to my git">git()</a></li> <li><a href="https://git.rhetenor.de" aria-label="External link to my git">git()</a></li>
</ul> </ul>
</nav> </nav>

38
src/pages/about.html Normal file
View File

@@ -0,0 +1,38 @@
<main id="beliefs">
<h1 id="mainHeading">mount /dev/about</h1>
stuff about me.
<h2>command line tools</h2>
<ul>
<li>terminal emulator: kitty (for static stuff), yakuake (for ad-hoc stuff)</li>
<li>shell: fish</li>
<li>fish pkg manager: omf (need to change to fisher)</li>
<li>file search: fd</li>
<li>grep: ripgrep</li>
<li>editor: neovim</li>
<li>nvim config: astronvim + custom</li>
</ul>
<h2>beliefs</h2>
some beliefs. i update from time to time
<h3>writing</h3>
<p>
dates need to be everywhere
<p>
citations are always important, always give the source
</p>
<h3>programming</h3>
<h4>test first</h4>
writing test before the actual program ensures that there are tests in the end. manual testing sucks!
<h4>premature optimization</h4>
<p>
<blockquote cite="Donald Knuth - The Art of Programming">“The real problem is that programmers have spent far too much time worrying about efficiency in the wrong places and at the wrong times; premature optimization is the root of all evil (or at least most of it) in programming.”</blockquote>
this led to programming being to unoptimized. but i know of enough people still overoptimizing.
</p>
<span>last updated: 25-07-22</span>
</main>