removed root div, moved to single quotes

This commit is contained in:
Johannes Olzem 2023-08-29 18:40:16 +02:00
parent 166ab93328
commit a414066ab9
Signed by: jolzem
GPG Key ID: DB5485828E95A447
9 changed files with 539 additions and 559 deletions

View File

@ -1,27 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<html lang='en'>
<head>
<title>About - Johannes Olzem</title>
<meta name="description" content="Johannes Olzem's Webspace.">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css">
<link rel="icon" href="/favico.ico">
<meta name='description' content="Johannes Olzem's Webspace.">
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='stylesheet' href='/css/style.css'>
<link rel='icon' href='/favico.ico'>
</head>
<body>
<div id="root">
<header>
<a href="/">Johannes Olzem's Webspace</a>
<a href='/'>Johannes Olzem's Webspace</a>
</header>
<nav>
<a href="/blog/">Blog</a>
<a href="#">About Me</a>
<a href="/contact/">Contact</a>
<a href='/blog/'>Blog</a>
<a href='#'>About Me</a>
<a href='/contact/'>Contact</a>
</nav>
<main>
<h2>About Me</h2>
<!--<img src="/img/me.png" style="float:left;margin:1rem;border-radius:1rem;height:256px;">-->
<p style="margin-bottom: 2rem;">
<!--<img src='/img/me.png' style='float:left;margin:1rem;border-radius:1rem;height:256px;'>-->
<p style='margin-bottom: 2rem;'>
Hey there!<br />
My name is Johannes, and I'm a computer enthusiast born and raised in Germany.
Currently, I'm majoring in IT and English, and I'm passionate about most things related to technology.
@ -49,13 +48,12 @@
<h2>About this website</h2>
<p>
This website has no ads or trackers and does not use cookies.<br>
It is also free and open source under the <a href="/LICENSE.txt">GNU General Public License v3</a>.<br>
<a href="https://github.com/jolzem/jolzem.github.io/">View Source Code</a><br>
It is also free and open source under the <a href='/LICENSE.txt'>GNU General Public License v3</a>.<br>
<a href='https://github.com/jolzem/jolzem.github.io/'>View Source Code</a><br>
</p>
</main>
<footer>
<h6><a href><script>document.write(window.location.href);</script></a></h6>
</footer>
</div>
</body>
</html>

View File

@ -1,67 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<html lang='en'>
<head>
<title>How to create a Rust server on Linux - Blog - Johannes Olzem</title>
<meta name="description" content="Johannes Olzem's Webspace.">
<meta charset="utf-8">
<link rel="stylesheet" href="/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favico.ico">
<meta name='description' content="Johannes Olzem's Webspace.">
<meta charset='utf-8'>
<link rel='stylesheet' href='/css/style.css'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='icon' href='/favico.ico'>
</head>
<body>
<div id="root">
<header>
<a href="/">Johannes Olzem's Webspace</a>
<a href='/'>Johannes Olzem's Webspace</a>
</header>
<nav>
<a href="/blog/">Blog</a>
<a href="/about/">About Me</a>
<a href="/contact/">Contact</a>
<a href='/blog/'>Blog</a>
<a href='/about/'>About Me</a>
<a href='/contact/'>Contact</a>
</nav>
<main>
<h1>How to create a Rust server on Linux</h1>
<div class="author">Johannes Olzem</div>
<div class="date">May 23, 2023</div>
<div class='author'>Johannes Olzem</div>
<div class='date'>May 23, 2023</div>
<h2>Table of Contents</h2>
<ul>
<li><a href="#Requirements">Requirements</a></li>
<li><a href="#SteamCMD">SteamCMD</a><br /></li>
<li><a href="#Installing">Installing</a><br /></li>
<li><a href="#Running">Running</a></li>
<li><a href='#Requirements'>Requirements</a></li>
<li><a href='#SteamCMD'>SteamCMD</a><br /></li>
<li><a href='#Installing'>Installing</a><br /></li>
<li><a href='#Running'>Running</a></li>
</ul>
<h2 id="Requirements">Requirements</h2>
<h2 id='Requirements'>Requirements</h2>
<ul>
<li>Debian Linux</li>
<li>&#62;5GB of RAM</li>
<li>&#62;4.5GB of free disc space</li>
</ul>
<h2 id="SteamCMD">SteamCMD</h2>
<h2 id='SteamCMD'>SteamCMD</h2>
<h3>Configuring the envoirenment</h3>
<p>
Create a user with the name "steam" and give it a password.
Create a user with the name 'steam' and give it a password.
</p>
<p class="code">
<p class='code'>
sudo useradd -m steam
</p>
<p class="code">
<p class='code'>
sudo passwd steam
</p>
<br />
<p>
When prompted, enter a new password for the "steam" user. <br />
Then switch to the "steam" user and go to its home folder.
When prompted, enter a new password for the 'steam' user. <br />
Then switch to the 'steam' user and go to its home folder.
</p>
<p class="code">
<p class='code'>
su steam
</p>
<p class="code">
<p class='code'>
cd
</p>
<br />
<p>
Enable the contrib and non-free repositories by changing your <code>/etc/apt/sources.list</code> to resemble the following:
</p>
<p class="code no-dollar" style="text-align:left;">
<p class='code no-dollar' style='text-align:left;'>
deb http://deb.debian.org/debian bullseye main contrib non-free<br />
deb-src http://deb.debian.org/debian bullseye main contrib non-free<br />
<br />
@ -75,15 +74,15 @@
<p>
Finally, to install SteamCMD run:
</p>
<p class="code">
<p class='code'>
sudo apt install steamcmd
</p>
<br />
<h2 id="Installing">Installing</h2>
<h2 id='Installing'>Installing</h2>
<p>
Run SteamCMD
</p>
<p class="code">
<p class='code'>
steamcmd
</p>
<br />
@ -91,14 +90,14 @@
After a short update period, a prompt like <code>Steam&#62;</code> should appear.<br />
To login anonymously type:
</p>
<p class="code no-dollar">
<p class='code no-dollar'>
login anonymous
</p>
<br />
<p>
Now install the Rust Dedicated Server application.
</p>
<p class="code no-dollar">
<p class='code no-dollar'>
app_update 258550
</p>
<p>
@ -107,22 +106,22 @@
<br />
Afterwards you can quit the SteamCMD shell.
</p>
<p class="code no-dollar">
<p class='code no-dollar'>
quit
</p>
<br />
<h2 id="Running">Running</h2>
<h2 id='Running'>Running</h2>
<p>
First navigate to the Rust server directory.
</p>
<p class="code">
<p class='code'>
cd ~/Steam/steamapps/common/rust_dedicated
</p>
<br />
<p>
Finally, start up the Rust server by running:
</p>
<p class="code">
<p class='code'>
./RustDedicated -batchmode
</p>
<br />
@ -183,14 +182,14 @@
<tr>
<td><code>+server.hostname</code>
</td>
<td><code>"Your Server Name"</code>
<td><code>'Your Server Name'</code>
</td>
<td>The displayed name of your server.
</td></tr>
<tr>
<td><code>+server.identity</code>
</td>
<td><code>"my_server_identity"</code>
<td><code>'my_server_identity'</code>
</td>
<td>Changes path to your server data rust/server/my_server_identity. Useful for running multiple instances.
</td></tr>
@ -225,7 +224,7 @@
<tr>
<td><code>+rcon.password</code>
</td>
<td><code>"YourPassword"</code>
<td><code>'YourPassword'</code>
</td>
<td>Sets the RCON password
</td></tr>
@ -248,22 +247,21 @@
<h2>Sources</h2>
<ul>
<li>
<a href="https://wiki.facepunch.com/rust/Creating-a-server">Rust Wiki, "Creating a server"</a>
<a href='https://wiki.facepunch.com/rust/Creating-a-server'>Rust Wiki, 'Creating a server'</a>
</li>
<li>
<a href="https://developer.valvesoftware.com/wiki/SteamCMD#Linux">Valve Developer Community, "SteamCMD"</a>
<a href='https://developer.valvesoftware.com/wiki/SteamCMD#Linux'>Valve Developer Community, 'SteamCMD'</a>
</li>
<li>
<a href="https://www.rustafied.com/how-to-host-your-own-rust-server">Rustafied, "How to: Host your own Rust Dedicated Server"</a>
<a href='https://www.rustafied.com/how-to-host-your-own-rust-server'>Rustafied, 'How to: Host your own Rust Dedicated Server'</a>
</li>
<li>
<a href="https://developer.valvesoftware.com/wiki/Rust_Dedicated_Server">Valve Developer Community, "Rust Dedicated Server"</a>
<a href='https://developer.valvesoftware.com/wiki/Rust_Dedicated_Server'>Valve Developer Community, 'Rust Dedicated Server'</a>
</li>
</ul>
</main>
<footer>
<h6><a href><script>document.write(window.location.href);</script></a></h6>
</footer>
</div>
</body>
</html>

View File

@ -1,34 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<html lang='en'>
<head>
<title>Blog - Johannes Olzem</title>
<meta name="description" content="Johannes Olzem's Webspace.">
<meta charset="utf-8">
<link rel="stylesheet" href="/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favico.ico">
<meta name='description' content="Johannes Olzem's Webspace.">
<meta charset='utf-8'>
<link rel='stylesheet' href='/css/style.css'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='icon' href='/favico.ico'>
</head>
<body>
<div id="root">
<header>
<a href="/">Johannes Olzem's Webspace</a>
<a href='/'>Johannes Olzem's Webspace</a>
</header>
<nav>
<a href="#">Blog</a>
<a href="/about/">About Me</a>
<a href="/contact/">Contact</a>
<a href='#'>Blog</a>
<a href='/about/'>About Me</a>
<a href='/contact/'>Contact</a>
</nav>
<main>
<h2>Blog</h2>
<div class="blog-entries">
<a href="quick-fixes/">Quick Fixes</a>
<a href="the-current-state-of-software-is-utterly-ridiculous/">The current state of software is utterly ridiculous</a>
<a href="how-to-create-a-rust-server-on-linux/">How to create a Rust server on Linux</a>
<div class='blog-entries'>
<a href='quick-fixes/'>Quick Fixes</a>
<a href='the-current-state-of-software-is-utterly-ridiculous/'>The current state of software is utterly ridiculous</a>
<a href='how-to-create-a-rust-server-on-linux/'>How to create a Rust server on Linux</a>
</div>
</main>
<footer>
<h6><a href><script>document.write(window.location.href);</script></a></h6>
</footer>
</div>
</body>
</html>

View File

@ -1,22 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<html lang='en'>
<head>
<title>Quick Fixes - Blog - Johannes Olzem</title>
<meta name="description" content="Johannes Olzem's Webspace.">
<meta charset="utf-8">
<link rel="stylesheet" href="/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favico.ico">
<meta name='description' content="Johannes Olzem's Webspace.">
<meta charset='utf-8'>
<link rel='stylesheet' href='/css/style.css'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='icon' href='/favico.ico'>
</head>
<body>
<div id="root" class="quick-fixes">
<body class='quick-fixes'>
<header>
<a href="/">Johannes Olzem's Webspace</a>
<a href='/'>Johannes Olzem's Webspace</a>
</header>
<nav>
<a href="/blog/">Blog</a>
<a href="/about/">About Me</a>
<a href="/contact/">Contact</a>
<a href='/blog/'>Blog</a>
<a href='/about/'>About Me</a>
<a href='/contact/'>Contact</a>
</nav>
<main>
<h2>Quick Fixes</h2>
@ -48,17 +47,16 @@
<tr>
<td>Pacman install fails with 404 (<code>error: failed retrieving file 'X' from Y : The requested URL returned error: 404</code>).</td>
<td>
Replace <code>/etc/pacman.d/mirrorlist</code> with a new file generated at <a href="https://archlinux.org/mirrorlist/">https://archlinux.org/mirrorlist/</a>.<br>
Replace <code>/etc/pacman.d/mirrorlist</code> with a new file generated at <a href='https://archlinux.org/mirrorlist/'>https://archlinux.org/mirrorlist/</a>.<br>
Then run <code>sudo pacman -Syyu</code> to update with the new mirrorlist. Make sure to use 2 y's, to force the new changes.
</td>
<td>Your mirrorlist is outdated, possibly due to the recent <a href="https://archlinux.org/news/git-migration-completed/">pacman git migration</a>.</td>
<td>Your mirrorlist is outdated, possibly due to the recent <a href='https://archlinux.org/news/git-migration-completed/'>pacman git migration</a>.</td>
</tr>
</table>
</main>
<footer>
<h6><a href><script>document.write(window.location.href);</script></a></h6>
</footer>
</div>
</body>
</html>

View File

@ -1,27 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<html lang='en'>
<head>
<title>The current state of software is utterly ridiculous - Blog - Johannes Olzem</title>
<meta name="description" content="Johannes Olzem's Webspace.">
<meta charset="utf-8">
<link rel="stylesheet" href="/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favico.ico">
<meta name='description' content="Johannes Olzem's Webspace.">
<meta charset='utf-8'>
<link rel='stylesheet' href='/css/style.css'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='icon' href='/favico.ico'>
</head>
<body>
<div id="root">
<header>
<a href="/">Johannes Olzem's Webspace</a>
<a href='/'>Johannes Olzem's Webspace</a>
</header>
<nav>
<a href="/blog/">Blog</a>
<a href="/about/">About Me</a>
<a href="/contact/">Contact</a>
<a href='/blog/'>Blog</a>
<a href='/about/'>About Me</a>
<a href='/contact/'>Contact</a>
</nav>
<main>
<h1>The current state of software is utterly ridiculous</h1>
<div class="author">Johannes Olzem</div>
<div class="date">May 15, 2023</div>
<div class='author'>Johannes Olzem</div>
<div class='date'>May 15, 2023</div>
<p>
First off, I want to say that this is not an informative blog post. It's simply a rant on how modern software is increasingly slow and bloated.
</p>
@ -61,6 +60,5 @@
<footer>
<h6><a href><script>document.write(window.location.href);</script></a></h6>
</footer>
</div>
</body>
</html>

View File

@ -1,33 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<html lang='en'>
<head>
<title>Contact - Johannes Olzem</title>
<meta name="description" content="Johannes Olzem's Webspace.">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css">
<link rel="icon" href="/favico.ico">
<meta name='description' content="Johannes Olzem's Webspace.">
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='stylesheet' href='/css/style.css'>
<link rel='icon' href='/favico.ico'>
</head>
<body>
<div id="root">
<header>
<a href="/">Johannes Olzem's Webspace</a>
<a href='/'>Johannes Olzem's Webspace</a>
</header>
<nav>
<a href="/blog/">Blog</a>
<a href="/about/">About Me</a>
<a href="#">Contact</a>
<a href='/blog/'>Blog</a>
<a href='/about/'>About Me</a>
<a href='#'>Contact</a>
</nav>
<main>
<h2>Contact</h2>
<p>
Email me:
<a href="mailto:jolzem@pm.me?subject=Hi!" target="_blank">jolzem@pm.me</a>
<a href='mailto:jolzem@pm.me?subject=Hi!' target='_blank'>jolzem@pm.me</a>
</p>
</main>
<footer>
<h6><a href><script>document.write(window.location.href);</script></a></h6>
</footer>
</div>
</body>
</html>

View File

@ -33,11 +33,7 @@ body {
text-align: center;
background-color: var(--body-bg);
margin: 0;
}
#root {
max-width: 800px;
min-height: 100vh;
margin: 0 auto;
}

View File

@ -1,33 +1,31 @@
<!doctype html>
<html lang="en">
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Donate - Johannes Olzem</title>
<meta name="description" content="Johannes Olzem's Webspace.">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css">
<link rel="icon" href="/favico.ico">
<meta name='description' content="Johannes Olzem's Webspace.">
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='stylesheet' href='/css/style.css'>
<link rel='icon' href='/favico.ico'>
</head>
<body>
<div id="root">
<header>
<a href="/">Johannes Olzem's Webspace</a>
<a href='/'>Johannes Olzem's Webspace</a>
</header>
<nav>
<a href="/blog/">Blog</a>
<a href="/about/">About Me</a>
<a href="/contact/">Contact</a>
<a href="#">Donate</a>
<a href='/blog/'>Blog</a>
<a href='/about/'>About Me</a>
<a href='/contact/'>Contact</a>
<a href='#'>Donate</a>
</nav>
<main>
<h2>Donate</h2>
<p>This is only here so I can copy my Monero adress when I need it and don't want to/cannot access my wallet. Don't give me money.</p>
<br>
<p style="overflow-wrap: anywhere;">4BK7poh4kom8tti2HReRjQFbooWNiCiYj6sYfq4jdqBBhfN1FWn3an4ZRb1fytH5363vzyvTxBKzd5UphnexhJ7t1kjzTzP</p>
<p style='overflow-wrap: anywhere;'>4BK7poh4kom8tti2HReRjQFbooWNiCiYj6sYfq4jdqBBhfN1FWn3an4ZRb1fytH5363vzyvTxBKzd5UphnexhJ7t1kjzTzP</p>
</main>
<footer>
<h6><a href=""><script>document.write(window.location.href);</script></a></h6>
<h6><a href><script>document.write(window.location.href);</script></a></h6>
</footer>
</div>
</body>
</html>

View File

@ -1,29 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<html lang='en'>
<head>
<title>Johannes Olzem</title>
<meta name="description" content="Johannes Olzem's Webspace.">
<meta charset="utf-8">
<link rel="stylesheet" href="/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favico.ico">
<meta name='description' content="Johannes Olzem's Webspace.">
<meta charset='utf-8'>
<link rel='stylesheet' href='/css/style.css'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='icon' href='/favico.ico'>
</head>
<body>
<div id="root">
<header>
<a href="/">Johannes Olzem's Webspace</a>
<a href='/'>Johannes Olzem's Webspace</a>
</header>
<nav>
<a href="/blog/">Blog</a>
<a href="/about/">About Me</a>
<a href="/contact/">Contact</a>
<a href='/blog/'>Blog</a>
<a href='/about/'>About Me</a>
<a href='/contact/'>Contact</a>
</nav>
<main>
<h2>Welcome to my Webspace!</h2>
<p>
Here I maintain my <a href="/blog/" class="inline">blog</a>
Here I maintain my <a href='/blog/' class='inline'>blog</a>
about various topics and with various guides.<br />
You can learn more about me <a href="/about/" class="inline">here</a>.<br />
You can learn more about me <a href='/about/' class='inline'>here</a>.<br />
</p>
<h2>Why run this website?</h2>
<p>
@ -50,6 +49,5 @@ _____________________________
<footer>
<h6><a href><script>document.write(window.location.href);</script></a></h6>
</footer>
</div>
</body>
</html>