removed root div, moved to single quotes
This commit is contained in:
parent
166ab93328
commit
a414066ab9
@ -1,27 +1,26 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang='en'>
|
||||||
<head>
|
<head>
|
||||||
<title>About - Johannes Olzem</title>
|
<title>About - Johannes Olzem</title>
|
||||||
<meta name="description" content="Johannes Olzem's Webspace.">
|
<meta name='description' content="Johannes Olzem's Webspace.">
|
||||||
<meta charset="utf-8">
|
<meta charset='utf-8'>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel='stylesheet' href='/css/style.css'>
|
||||||
<link rel="icon" href="/favico.ico">
|
<link rel='icon' href='/favico.ico'>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root">
|
|
||||||
<header>
|
<header>
|
||||||
<a href="/">Johannes Olzem's Webspace</a>
|
<a href='/'>Johannes Olzem's Webspace</a>
|
||||||
</header>
|
</header>
|
||||||
<nav>
|
<nav>
|
||||||
<a href="/blog/">Blog</a>
|
<a href='/blog/'>Blog</a>
|
||||||
<a href="#">About Me</a>
|
<a href='#'>About Me</a>
|
||||||
<a href="/contact/">Contact</a>
|
<a href='/contact/'>Contact</a>
|
||||||
</nav>
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
<h2>About Me</h2>
|
<h2>About Me</h2>
|
||||||
<!--<img src="/img/me.png" style="float:left;margin:1rem;border-radius:1rem;height:256px;">-->
|
<!--<img src='/img/me.png' style='float:left;margin:1rem;border-radius:1rem;height:256px;'>-->
|
||||||
<p style="margin-bottom: 2rem;">
|
<p style='margin-bottom: 2rem;'>
|
||||||
Hey there!<br />
|
Hey there!<br />
|
||||||
My name is Johannes, and I'm a computer enthusiast born and raised in Germany.
|
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.
|
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>
|
<h2>About this website</h2>
|
||||||
<p>
|
<p>
|
||||||
This website has no ads or trackers and does not use cookies.<br>
|
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>
|
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>
|
<a href='https://github.com/jolzem/jolzem.github.io/'>View Source Code</a><br>
|
||||||
</p>
|
</p>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<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>
|
</footer>
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,67 +1,66 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang='en'>
|
||||||
<head>
|
<head>
|
||||||
<title>How to create a Rust server on Linux - Blog - Johannes Olzem</title>
|
<title>How to create a Rust server on Linux - Blog - Johannes Olzem</title>
|
||||||
<meta name="description" content="Johannes Olzem's Webspace.">
|
<meta name='description' content="Johannes Olzem's Webspace.">
|
||||||
<meta charset="utf-8">
|
<meta charset='utf-8'>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel='stylesheet' href='/css/style.css'>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
||||||
<link rel="icon" href="/favico.ico">
|
<link rel='icon' href='/favico.ico'>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root">
|
|
||||||
<header>
|
<header>
|
||||||
<a href="/">Johannes Olzem's Webspace</a>
|
<a href='/'>Johannes Olzem's Webspace</a>
|
||||||
</header>
|
</header>
|
||||||
<nav>
|
<nav>
|
||||||
<a href="/blog/">Blog</a>
|
<a href='/blog/'>Blog</a>
|
||||||
<a href="/about/">About Me</a>
|
<a href='/about/'>About Me</a>
|
||||||
<a href="/contact/">Contact</a>
|
<a href='/contact/'>Contact</a>
|
||||||
</nav>
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
<h1>How to create a Rust server on Linux</h1>
|
<h1>How to create a Rust server on Linux</h1>
|
||||||
<div class="author">Johannes Olzem</div>
|
<div class='author'>Johannes Olzem</div>
|
||||||
<div class="date">May 23, 2023</div>
|
<div class='date'>May 23, 2023</div>
|
||||||
<h2>Table of Contents</h2>
|
<h2>Table of Contents</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#Requirements">Requirements</a></li>
|
<li><a href='#Requirements'>Requirements</a></li>
|
||||||
<li><a href="#SteamCMD">SteamCMD</a><br /></li>
|
<li><a href='#SteamCMD'>SteamCMD</a><br /></li>
|
||||||
<li><a href="#Installing">Installing</a><br /></li>
|
<li><a href='#Installing'>Installing</a><br /></li>
|
||||||
<li><a href="#Running">Running</a></li>
|
<li><a href='#Running'>Running</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="Requirements">Requirements</h2>
|
<h2 id='Requirements'>Requirements</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Debian Linux</li>
|
<li>Debian Linux</li>
|
||||||
<li>>5GB of RAM</li>
|
<li>>5GB of RAM</li>
|
||||||
<li>>4.5GB of free disc space</li>
|
<li>>4.5GB of free disc space</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="SteamCMD">SteamCMD</h2>
|
<h2 id='SteamCMD'>SteamCMD</h2>
|
||||||
<h3>Configuring the envoirenment</h3>
|
<h3>Configuring the envoirenment</h3>
|
||||||
<p>
|
<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>
|
||||||
<p class="code">
|
<p class='code'>
|
||||||
sudo useradd -m steam
|
sudo useradd -m steam
|
||||||
</p>
|
</p>
|
||||||
<p class="code">
|
<p class='code'>
|
||||||
sudo passwd steam
|
sudo passwd steam
|
||||||
</p>
|
</p>
|
||||||
<br />
|
<br />
|
||||||
<p>
|
<p>
|
||||||
When prompted, enter a new password for the "steam" user. <br />
|
When prompted, enter a new password for the 'steam' user. <br />
|
||||||
Then switch to the "steam" user and go to its home folder.
|
Then switch to the 'steam' user and go to its home folder.
|
||||||
</p>
|
</p>
|
||||||
<p class="code">
|
<p class='code'>
|
||||||
su steam
|
su steam
|
||||||
</p>
|
</p>
|
||||||
<p class="code">
|
<p class='code'>
|
||||||
cd
|
cd
|
||||||
</p>
|
</p>
|
||||||
<br />
|
<br />
|
||||||
<p>
|
<p>
|
||||||
Enable the contrib and non-free repositories by changing your <code>/etc/apt/sources.list</code> to resemble the following:
|
Enable the contrib and non-free repositories by changing your <code>/etc/apt/sources.list</code> to resemble the following:
|
||||||
</p>
|
</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 http://deb.debian.org/debian bullseye main contrib non-free<br />
|
||||||
deb-src 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 />
|
<br />
|
||||||
@ -75,15 +74,15 @@
|
|||||||
<p>
|
<p>
|
||||||
Finally, to install SteamCMD run:
|
Finally, to install SteamCMD run:
|
||||||
</p>
|
</p>
|
||||||
<p class="code">
|
<p class='code'>
|
||||||
sudo apt install steamcmd
|
sudo apt install steamcmd
|
||||||
</p>
|
</p>
|
||||||
<br />
|
<br />
|
||||||
<h2 id="Installing">Installing</h2>
|
<h2 id='Installing'>Installing</h2>
|
||||||
<p>
|
<p>
|
||||||
Run SteamCMD
|
Run SteamCMD
|
||||||
</p>
|
</p>
|
||||||
<p class="code">
|
<p class='code'>
|
||||||
steamcmd
|
steamcmd
|
||||||
</p>
|
</p>
|
||||||
<br />
|
<br />
|
||||||
@ -91,14 +90,14 @@
|
|||||||
After a short update period, a prompt like <code>Steam></code> should appear.<br />
|
After a short update period, a prompt like <code>Steam></code> should appear.<br />
|
||||||
To login anonymously type:
|
To login anonymously type:
|
||||||
</p>
|
</p>
|
||||||
<p class="code no-dollar">
|
<p class='code no-dollar'>
|
||||||
login anonymous
|
login anonymous
|
||||||
</p>
|
</p>
|
||||||
<br />
|
<br />
|
||||||
<p>
|
<p>
|
||||||
Now install the Rust Dedicated Server application.
|
Now install the Rust Dedicated Server application.
|
||||||
</p>
|
</p>
|
||||||
<p class="code no-dollar">
|
<p class='code no-dollar'>
|
||||||
app_update 258550
|
app_update 258550
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
@ -107,22 +106,22 @@
|
|||||||
<br />
|
<br />
|
||||||
Afterwards you can quit the SteamCMD shell.
|
Afterwards you can quit the SteamCMD shell.
|
||||||
</p>
|
</p>
|
||||||
<p class="code no-dollar">
|
<p class='code no-dollar'>
|
||||||
quit
|
quit
|
||||||
</p>
|
</p>
|
||||||
<br />
|
<br />
|
||||||
<h2 id="Running">Running</h2>
|
<h2 id='Running'>Running</h2>
|
||||||
<p>
|
<p>
|
||||||
First navigate to the Rust server directory.
|
First navigate to the Rust server directory.
|
||||||
</p>
|
</p>
|
||||||
<p class="code">
|
<p class='code'>
|
||||||
cd ~/Steam/steamapps/common/rust_dedicated
|
cd ~/Steam/steamapps/common/rust_dedicated
|
||||||
</p>
|
</p>
|
||||||
<br />
|
<br />
|
||||||
<p>
|
<p>
|
||||||
Finally, start up the Rust server by running:
|
Finally, start up the Rust server by running:
|
||||||
</p>
|
</p>
|
||||||
<p class="code">
|
<p class='code'>
|
||||||
./RustDedicated -batchmode
|
./RustDedicated -batchmode
|
||||||
</p>
|
</p>
|
||||||
<br />
|
<br />
|
||||||
@ -183,14 +182,14 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td><code>+server.hostname</code>
|
<td><code>+server.hostname</code>
|
||||||
</td>
|
</td>
|
||||||
<td><code>"Your Server Name"</code>
|
<td><code>'Your Server Name'</code>
|
||||||
</td>
|
</td>
|
||||||
<td>The displayed name of your server.
|
<td>The displayed name of your server.
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>+server.identity</code>
|
<td><code>+server.identity</code>
|
||||||
</td>
|
</td>
|
||||||
<td><code>"my_server_identity"</code>
|
<td><code>'my_server_identity'</code>
|
||||||
</td>
|
</td>
|
||||||
<td>Changes path to your server data rust/server/my_server_identity. Useful for running multiple instances.
|
<td>Changes path to your server data rust/server/my_server_identity. Useful for running multiple instances.
|
||||||
</td></tr>
|
</td></tr>
|
||||||
@ -225,7 +224,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td><code>+rcon.password</code>
|
<td><code>+rcon.password</code>
|
||||||
</td>
|
</td>
|
||||||
<td><code>"YourPassword"</code>
|
<td><code>'YourPassword'</code>
|
||||||
</td>
|
</td>
|
||||||
<td>Sets the RCON password
|
<td>Sets the RCON password
|
||||||
</td></tr>
|
</td></tr>
|
||||||
@ -248,22 +247,21 @@
|
|||||||
<h2>Sources</h2>
|
<h2>Sources</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<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>
|
||||||
<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>
|
||||||
<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>
|
||||||
<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>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<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>
|
</footer>
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,34 +1,32 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang='en'>
|
||||||
<head>
|
<head>
|
||||||
<title>Blog - Johannes Olzem</title>
|
<title>Blog - Johannes Olzem</title>
|
||||||
<meta name="description" content="Johannes Olzem's Webspace.">
|
<meta name='description' content="Johannes Olzem's Webspace.">
|
||||||
<meta charset="utf-8">
|
<meta charset='utf-8'>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel='stylesheet' href='/css/style.css'>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
||||||
<link rel="icon" href="/favico.ico">
|
<link rel='icon' href='/favico.ico'>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root">
|
|
||||||
<header>
|
<header>
|
||||||
<a href="/">Johannes Olzem's Webspace</a>
|
<a href='/'>Johannes Olzem's Webspace</a>
|
||||||
</header>
|
</header>
|
||||||
<nav>
|
<nav>
|
||||||
<a href="#">Blog</a>
|
<a href='#'>Blog</a>
|
||||||
<a href="/about/">About Me</a>
|
<a href='/about/'>About Me</a>
|
||||||
<a href="/contact/">Contact</a>
|
<a href='/contact/'>Contact</a>
|
||||||
</nav>
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
<h2>Blog</h2>
|
<h2>Blog</h2>
|
||||||
<div class="blog-entries">
|
<div class='blog-entries'>
|
||||||
<a href="quick-fixes/">Quick Fixes</a>
|
<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='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>
|
<a href='how-to-create-a-rust-server-on-linux/'>How to create a Rust server on Linux</a>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<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>
|
</footer>
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,22 +1,21 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang='en'>
|
||||||
<head>
|
<head>
|
||||||
<title>Quick Fixes - Blog - Johannes Olzem</title>
|
<title>Quick Fixes - Blog - Johannes Olzem</title>
|
||||||
<meta name="description" content="Johannes Olzem's Webspace.">
|
<meta name='description' content="Johannes Olzem's Webspace.">
|
||||||
<meta charset="utf-8">
|
<meta charset='utf-8'>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel='stylesheet' href='/css/style.css'>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
||||||
<link rel="icon" href="/favico.ico">
|
<link rel='icon' href='/favico.ico'>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class='quick-fixes'>
|
||||||
<div id="root" class="quick-fixes">
|
|
||||||
<header>
|
<header>
|
||||||
<a href="/">Johannes Olzem's Webspace</a>
|
<a href='/'>Johannes Olzem's Webspace</a>
|
||||||
</header>
|
</header>
|
||||||
<nav>
|
<nav>
|
||||||
<a href="/blog/">Blog</a>
|
<a href='/blog/'>Blog</a>
|
||||||
<a href="/about/">About Me</a>
|
<a href='/about/'>About Me</a>
|
||||||
<a href="/contact/">Contact</a>
|
<a href='/contact/'>Contact</a>
|
||||||
</nav>
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
<h2>Quick Fixes</h2>
|
<h2>Quick Fixes</h2>
|
||||||
@ -48,17 +47,16 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>Pacman install fails with 404 (<code>error: failed retrieving file 'X' from Y : The requested URL returned error: 404</code>).</td>
|
<td>Pacman install fails with 404 (<code>error: failed retrieving file 'X' from Y : The requested URL returned error: 404</code>).</td>
|
||||||
<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.
|
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>
|
||||||
<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>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<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>
|
</footer>
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
@ -1,27 +1,26 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang='en'>
|
||||||
<head>
|
<head>
|
||||||
<title>The current state of software is utterly ridiculous - Blog - Johannes Olzem</title>
|
<title>The current state of software is utterly ridiculous - Blog - Johannes Olzem</title>
|
||||||
<meta name="description" content="Johannes Olzem's Webspace.">
|
<meta name='description' content="Johannes Olzem's Webspace.">
|
||||||
<meta charset="utf-8">
|
<meta charset='utf-8'>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel='stylesheet' href='/css/style.css'>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
||||||
<link rel="icon" href="/favico.ico">
|
<link rel='icon' href='/favico.ico'>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root">
|
|
||||||
<header>
|
<header>
|
||||||
<a href="/">Johannes Olzem's Webspace</a>
|
<a href='/'>Johannes Olzem's Webspace</a>
|
||||||
</header>
|
</header>
|
||||||
<nav>
|
<nav>
|
||||||
<a href="/blog/">Blog</a>
|
<a href='/blog/'>Blog</a>
|
||||||
<a href="/about/">About Me</a>
|
<a href='/about/'>About Me</a>
|
||||||
<a href="/contact/">Contact</a>
|
<a href='/contact/'>Contact</a>
|
||||||
</nav>
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
<h1>The current state of software is utterly ridiculous</h1>
|
<h1>The current state of software is utterly ridiculous</h1>
|
||||||
<div class="author">Johannes Olzem</div>
|
<div class='author'>Johannes Olzem</div>
|
||||||
<div class="date">May 15, 2023</div>
|
<div class='date'>May 15, 2023</div>
|
||||||
<p>
|
<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.
|
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>
|
</p>
|
||||||
@ -61,6 +60,5 @@
|
|||||||
<footer>
|
<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>
|
</footer>
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,33 +1,31 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang='en'>
|
||||||
<head>
|
<head>
|
||||||
<title>Contact - Johannes Olzem</title>
|
<title>Contact - Johannes Olzem</title>
|
||||||
<meta name="description" content="Johannes Olzem's Webspace.">
|
<meta name='description' content="Johannes Olzem's Webspace.">
|
||||||
<meta charset="utf-8">
|
<meta charset='utf-8'>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel='stylesheet' href='/css/style.css'>
|
||||||
<link rel="icon" href="/favico.ico">
|
<link rel='icon' href='/favico.ico'>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root">
|
|
||||||
<header>
|
<header>
|
||||||
<a href="/">Johannes Olzem's Webspace</a>
|
<a href='/'>Johannes Olzem's Webspace</a>
|
||||||
</header>
|
</header>
|
||||||
<nav>
|
<nav>
|
||||||
<a href="/blog/">Blog</a>
|
<a href='/blog/'>Blog</a>
|
||||||
<a href="/about/">About Me</a>
|
<a href='/about/'>About Me</a>
|
||||||
<a href="#">Contact</a>
|
<a href='#'>Contact</a>
|
||||||
</nav>
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
<h2>Contact</h2>
|
<h2>Contact</h2>
|
||||||
<p>
|
<p>
|
||||||
Email me:
|
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>
|
</p>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<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>
|
</footer>
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -33,11 +33,7 @@ body {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: var(--body-bg);
|
background-color: var(--body-bg);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
|
||||||
|
|
||||||
#root {
|
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
min-height: 100vh;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,33 +1,31 @@
|
|||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang='en'>
|
||||||
<head>
|
<head>
|
||||||
<title>Donate - Johannes Olzem</title>
|
<title>Donate - Johannes Olzem</title>
|
||||||
<meta name="description" content="Johannes Olzem's Webspace.">
|
<meta name='description' content="Johannes Olzem's Webspace.">
|
||||||
<meta charset="utf-8">
|
<meta charset='utf-8'>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel='stylesheet' href='/css/style.css'>
|
||||||
<link rel="icon" href="/favico.ico">
|
<link rel='icon' href='/favico.ico'>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root">
|
|
||||||
<header>
|
<header>
|
||||||
<a href="/">Johannes Olzem's Webspace</a>
|
<a href='/'>Johannes Olzem's Webspace</a>
|
||||||
</header>
|
</header>
|
||||||
<nav>
|
<nav>
|
||||||
<a href="/blog/">Blog</a>
|
<a href='/blog/'>Blog</a>
|
||||||
<a href="/about/">About Me</a>
|
<a href='/about/'>About Me</a>
|
||||||
<a href="/contact/">Contact</a>
|
<a href='/contact/'>Contact</a>
|
||||||
<a href="#">Donate</a>
|
<a href='#'>Donate</a>
|
||||||
</nav>
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
<h2>Donate</h2>
|
<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>
|
<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>
|
<br>
|
||||||
<p style="overflow-wrap: anywhere;">4BK7poh4kom8tti2HReRjQFbooWNiCiYj6sYfq4jdqBBhfN1FWn3an4ZRb1fytH5363vzyvTxBKzd5UphnexhJ7t1kjzTzP</p>
|
<p style='overflow-wrap: anywhere;'>4BK7poh4kom8tti2HReRjQFbooWNiCiYj6sYfq4jdqBBhfN1FWn3an4ZRb1fytH5363vzyvTxBKzd5UphnexhJ7t1kjzTzP</p>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<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>
|
</footer>
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
26
index.html
26
index.html
@ -1,29 +1,28 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang='en'>
|
||||||
<head>
|
<head>
|
||||||
<title>Johannes Olzem</title>
|
<title>Johannes Olzem</title>
|
||||||
<meta name="description" content="Johannes Olzem's Webspace.">
|
<meta name='description' content="Johannes Olzem's Webspace.">
|
||||||
<meta charset="utf-8">
|
<meta charset='utf-8'>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel='stylesheet' href='/css/style.css'>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
||||||
<link rel="icon" href="/favico.ico">
|
<link rel='icon' href='/favico.ico'>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root">
|
|
||||||
<header>
|
<header>
|
||||||
<a href="/">Johannes Olzem's Webspace</a>
|
<a href='/'>Johannes Olzem's Webspace</a>
|
||||||
</header>
|
</header>
|
||||||
<nav>
|
<nav>
|
||||||
<a href="/blog/">Blog</a>
|
<a href='/blog/'>Blog</a>
|
||||||
<a href="/about/">About Me</a>
|
<a href='/about/'>About Me</a>
|
||||||
<a href="/contact/">Contact</a>
|
<a href='/contact/'>Contact</a>
|
||||||
</nav>
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
<h2>Welcome to my Webspace!</h2>
|
<h2>Welcome to my Webspace!</h2>
|
||||||
<p>
|
<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 />
|
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>
|
</p>
|
||||||
<h2>Why run this website?</h2>
|
<h2>Why run this website?</h2>
|
||||||
<p>
|
<p>
|
||||||
@ -50,6 +49,5 @@ _____________________________
|
|||||||
<footer>
|
<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>
|
</footer>
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user