Improve CSS. Improve HTML.

This commit is contained in:
inference 2022-10-29 23:04:58 +00:00
commit 0f9235f5a4
25 changed files with 383 additions and 290 deletions

View File

@ -5,6 +5,10 @@
<h2>Licensing</h2> <h2>Licensing</h2>
<p>All content is licensed under BSD 3-Clause Clear License.</p> <p>All content is licensed under BSD 3-Clause Clear License.</p>
<br> <br>
<p>Exceptions: All content outside of code, including personal content<br>
such as blog posts, is copyrighted and cannot be distributed or modified<br>
without explicit consent from myself.</p>
<br>
<br> <br>
<h2>Security</h2> <h2>Security</h2>
<p>All files are checked for security issues; however, it is always the<br> <p>All files are checked for security issues; however, it is always the<br>

View File

@ -1,37 +1,105 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Inferencium Network - About</title> <title>Inferencium Network - About</title>
<link rel="stylesheet" href=/infnet.css> <link rel="stylesheet" href=infnet.css>
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>About</h1> <h1>About</h1>
<br> <br>
<h3>About Me</h3> <h3>About Me</h3>
<p>I am Inference, a cybersecurity researcher based in United Kingdom.<br> <p>I am Inference, a cybersecurity researcher based in United Kingdom.<br>
<br> <br>
<p>I write about my research and experience in cybersecurity and also physical <p>I write about my research and experience in cybersecurity and also physical
security. Most of my postings are security-related, but I occasionally post security. Most of my postings are security-related, but I occasionally post
about other aspects of my life.</p> about other aspects of my life.</p>
<br> <br>
<p>I am an open source advocate for the preservation and modifiability of <p>I am an open source advocate for the preservation and modifiability of
source code. I believe source code should be considered human knowledge as source code. I believe source code should be considered human knowledge as
much as past knowledge and teachings were; it is how modern humanity much as past knowledge and teachings were; it is how modern humanity
survives and runs.<br> survives and runs.<br>
Source code being modifiable allows it to be adapted Source code being modifiable allows it to be adapted
for use by anyone, whether to add features, harden it for increased security for use by anyone, whether to add features, harden it for increased security
and/or privacy, or provide accessibility for disabled users.<br> and/or privacy, or provide accessibility for disabled users.<br>
I am also a modular design advocate for the ability to securely and I am also a modular design advocate for the ability to securely and
robustly make changes to hardware and software without the entire system robustly make changes to hardware and software without the entire system
being affected.</p> being affected.</p>
<br>
<br>
<h3>Software I Use</h3>
<h4>Desktop</h4>
<table>
<tr>
<td>Type</td>
<td>Software</td>
<td>Description</td>
<td>Source model (License)</td>
</tr>
<tr>
<td>Operating system</td>
<td><img src="img/logo-gentoo_linux.png" width="100px" height="100px"/><br>
<br>
Gentoo Linux</td>
<td>Gentoo Linux is a highly modular, source-based Linux-based operating system
which allows vast customisation to tailor the operating system to suit your specific
needs. There are many advantages to such an operating system, with the most notable
being the ability to optimise the software for security, privacy, performance,
power usage; however, there are effectively unlimited other use cases, or a
combination of multiple use cases.<br>
I have focused on security hardening and privacy hardening, placing performance below
those aspects, although my system is still very performant. Some of the hardening I
apply includes stack protection, signed integer overflow wrapping, and GrapheneOS'
hardened_malloc memory allocator.<br>
You can find my personal Gentoo Linux hardening configuration
<a class="table-link" href="https://git.inferencium.net/inference/cfg/">here</a>.</td>
<td>Open source<br>
<br>
(GPLv2)</td>
</tr>
</tr>
</table>
<h4>Smartphone</h4>
<table>
<tr>
<td>Type</td>
<td>Software</td>
<td>Description</td>
<td>Source model (License)</td>
</tr>
<tr>
<td>Operating system</td>
<td><img src="img/logo-grapheneos.png" width="100px" height="100px"/><br>
<br>
GrapheneOS</td>
<td>GrapheneOS is a security-hardened, privacy-hardened, secure-by-default
Android-based operating system which implements extensive, systemic security
and privacy hardening to the Android Open Source Project used as its base
codebase. Its hardening includes closing gaps for apps to access sensitive
system information, a secure app spawning feature which avoids sharing address
space layout and other secrets AOSP's default Zygote app spawning model would
share, GrapheneOS' own hardened memory allocator (hardened_malloc) to protect
against common memory corruption vulnerabilties, hardened Bionic standard C library,
and local and remote hardware-backed attestation (Auditor) to ensure the OS has
not been corrupted or tampered with. GrapheneOS only supports devices which receive
full support from their manufacturers, including firmware updates and device-specific
updates, long support lifecycles, secure hardware, and overall high security practices.<br>
For an extensive list of features GrapheneOS provides, visit its
<a class="table-link" href="https://grapheneos.org/">official website</a>.</td>
<td>Open source<br>
<br>
(MIT)</td>
</tr>
</table>
<br>
<br>
</body> </body>
</html> </html>

View File

@ -1,32 +1,32 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Inferencium Network - Blog</title> <title>Inferencium Network - Blog</title>
<link rel="stylesheet" href="/infnet.css"> <link rel="stylesheet" href="infnet.css">
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Blog</h1> <h1>Blog</h1>
<br> <br>
<h3>2022-06-30</h3> <h3>2022-06-30</h3>
<p>#2 - <a class="body-link" href="blog/untrusted-the-issue-with-decentralisation.html">Untrusted: The Issue with Decentralisation</a></p> <p>#2 - <a class="body-link" href="blog/untrusted-the-issue-with-decentralisation.html">Untrusted: The Issue with Decentralisation</a></p>
<br> <br>
<br> <br>
<h3>2022-01-29</h3> <h3>2022-01-29</h3>
<p>#1 - <a class="body-link" href="blog/systemd-insecurity.html">systemd Insecurity</a></p> <p>#1 - <a class="body-link" href="blog/systemd-insecurity.html">systemd Insecurity</a></p>
<br> <br>
<br> <br>
<h3>2022-01-27</h3> <h3>2022-01-27</h3>
<p>#0 - <a class="body-link" href="blog/foss-is-working-against-itself.html">FOSS is Working Against Itself</a></p> <p>#0 - <a class="body-link" href="blog/foss-is-working-against-itself.html">FOSS is Working Against Itself</a></p>
<br> <br>
<br> <br>
</body> </body>
</html> </html>

View File

@ -2,23 +2,24 @@
<html> <html>
<head> <head>
<title>Inferencium Network - Blog - FOSS is Working Against Itself</title> <title>Inferencium Network - Blog - FOSS is Working Against Itself</title>
<link rel="stylesheet" href="/infnet.css"> <link rel="stylesheet" href="../infnet.css">
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="../about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="../contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="../blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="../source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Blog - #0</h1> <h1>Blog - #0</h1>
<br> <br>
<h2>FOSS is Working Against Itself</h2> <h2>FOSS is Working Against Itself</h2>
<br> <br>
<h3>2022-01-27 (UTC+00:00)</h3> <p>Posted: 2022-01-27 (UTC+00:00)</p>
<p>Updated: 2022-10-29 (UTC+00:00)</p>
<br> <br>
<h4>Introduction</h4> <h4>Introduction</h4>
<p>The world has become a dangerous, privacy invading, human rights stripping, <p>The world has become a dangerous, privacy invading, human rights stripping,

View File

@ -2,16 +2,16 @@
<html> <html>
<head> <head>
<title>Inferencium Network - Blog - systemd Insecurity</title> <title>Inferencium Network - Blog - systemd Insecurity</title>
<link rel="stylesheet" href="/infnet.css"> <link rel="stylesheet" href="../infnet.css">
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="../about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="../contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="../blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="../source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Blog - #1</h1> <h1>Blog - #1</h1>

View File

@ -2,16 +2,16 @@
<html> <html>
<head> <head>
<title>Inferencium Network - Blog - Untrusted: The Issue with Decentralisation</title> <title>Inferencium Network - Blog - Untrusted: The Issue with Decentralisation</title>
<link rel="stylesheet" href="/infnet.css"> <link rel="stylesheet" href="../infnet.css">
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="../about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="../contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="../blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="../source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Blog - #2</h1> <h1>Blog - #2</h1>

View File

@ -1,56 +1,57 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Inferencium Network - Contact</title> <title>Inferencium Network - Contact</title>
<link rel="stylesheet" href="/infnet.css"> <link rel="stylesheet" href="infnet.css">
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Contact</h1> <h1>Contact</h1>
<br> <br>
<h2>E2EE Contact Methods</h2> <h2>End-to-end Encrypted Contact Methods</h2>
<br> <br>
<h3>Preferred</h3> <h3>Preferred</h3>
<p>Whenever possible, use the following contact methods; <p>Whenever possible, use the following contact methods;
they allow verification to mitigate man-in-the-middle attacks, they allow verification to mitigate man-in-the-middle attacks,
have solid security, and reasonable privacy.<br> have solid security, and reasonable privacy.<br>
<br> <br>
<p>Use the keys for each contact method to verify my devices. <p>Use the keys for each contact method to verify my devices.
Note that verification does not verify a person, only their devices, Note that verification does not verify a person, only their devices,
and can be defeated via coercion or other force.</p> and can be defeated via coercion or other force.</p>
<br> <br>
<p><img class="logo" src="contact/signal.png" width="30px" height="30px"/> <a class="body-link" href="contact/signal.html">Signal</a><p> <p><img class="logo-small" src="img/logo-signal.png" width="40px" height="40px"/> <a class="body-link" href="contact/signal.html">Signal</a><p>
<p><img class="logo" src="contact/xmpp.png" width="30px" height="30px"/> <a class="body-link" href="contact/xmpp.html">XMPP</a><p> <p><img class="logo-small" src="img/logo-xmpp.png" width="40px" height="40px"/> <a class="body-link" href="contact/xmpp.html">XMPP</a><p>
<p><img class="logo" src="contact/threema.png" width="30px" height="30px"/> <a class="body-link" href="contact/threema.html">Threema</a></p> <p><img class="logo-small" src="img/logo-threema.png" width="40px" height="40px"/> <a class="body-link" href="contact/threema.html">Threema</a></p>
<br> <br>
<h3>Metadata-free</h3> <br>
<p>If metadata leakage is an issue for you, you can use the following <h3>Metadata-free</h3>
contact methods. Note that these services do not have verification <p>If metadata leakage is an issue for you, you can use the following
functionality, and will be treated as less secure; unless you really contact methods. Note that these services do not have verification
need to use these services, use a preferred method instead.</p> functionality, and will be treated as less secure; unless you really
<br> need to use these services, use a preferred method instead.</p>
<p><img class="logo" src="contact/briar.png" width="30px" height="30px"/> <a class="body-link" href="contact/briar.html">Briar</a></p> <br>
<p><img class="logo" src="contact/session.png" width="30px" height="30px"/> <a class="body-link" href="contact/session.html">Session</a></p> <p><img class="logo-small" src="img/logo-briar.png" width="40px" height="40px"/> <a class="body-link" href="contact/briar.html">Briar</a></p>
<br> <p><img class="logo-small" src="img/logo-session.png" width="40px" height="40px"/> <a class="body-link" href="contact/session.html">Session</a></p>
<br> <br>
<br> <br>
<h2>Non-private Methods</h2> <br>
<p>The following contact methods do not utilise end-to-end encryption, <h2>Non-private Contact Methods</h2>
or I do not use such functionality; they are suitable for public contact <p>The following contact methods do not utilise end-to-end encryption,
only, including directly and groups. Do not use these methods if or I do not use such functionality; they are suitable for public contact
confidentiality and/or privacy is required.</p> only, including directly and groups. Do not use these methods if
<br> confidentiality and/or privacy is required.</p>
<p><img class="logo" src="contact/pleroma.png" width="30px" height="30px"/> <a class="body-link" href="https://plr.inferencium.net/inference/">Fediverse</a></p> <br>
<p><img class="logo" src="contact/twitter.png" width="30px" height="30px"/> <a class="body-link" href="https://twitter.com/inferenceus/">Twitter</a></p> <p><img class="logo-small" src="img/logo-pleroma.png" width="40px" height="40px"/> <a class="body-link" href="https://plr.inferencium.net/inference/">Fediverse</a></p>
<br> <p><img class="logo-small" src="img/logo-twitter.png" width="40px" height="40px"/> <a class="body-link" href="https://twitter.com/inferenceus/">Twitter</a></p>
<br> <br>
<br>
</body> </body>
</html> </html>

View File

@ -1,31 +1,31 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Inferencium Network - Contact - Briar</title> <title>Inferencium Network - Contact - Briar</title>
<link rel="stylesheet" href="/infnet.css"> <link rel="stylesheet" href="../infnet.css">
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="../about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="../contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="../blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="../source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Contact</h1> <h1>Contact</h1>
<br> <br>
<h2>Briar</h2> <h2>Briar</h2>
<br> <br>
<p>Updated: 2022-08-03 (UTC+00:00)</p> <p>Updated: 2022-08-03 (UTC+00:00)</p>
<br> <br>
<pre> <pre>
<code> <code>
Unavailable Unavailable
</code> </code>
</pre> </pre>
<br> <br>
<br> <br>
</body> </body>
</html> </html>

View File

@ -1,31 +1,31 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Inferencium Network - Contact - Session</title> <title>Inferencium Network - Contact - Session</title>
<link rel="stylesheet" href="/infnet.css"> <link rel="stylesheet" href="../infnet.css">
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="/about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="/contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="/blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="/source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Contact</h1> <h1>Contact</h1>
<br> <br>
<h2>Session</h2> <h2>Session</h2>
<br> <br>
<p>Updated: 2022-08-03 (UTC+00:00)</p> <p>Updated: 2022-08-03 (UTC+00:00)</p>
<br> <br>
<pre> <pre>
<code> <code>
0538eec32cf00661270afc186a40fefe771d1c39c91d79d02be6b95359eb171a42 0538eec32cf00661270afc186a40fefe771d1c39c91d79d02be6b95359eb171a42
</code> </code>
</pre> </pre>
<br> <br>
<br> <br>
</body> </body>
</html> </html>

View File

@ -1,31 +1,31 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Inferencium Network - Contact - Signal</title> <title>Inferencium Network - Contact - Signal</title>
<link rel="stylesheet" href="/infnet.css"> <link rel="stylesheet" href="../infnet.css">
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="../about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="../contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="../blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="../source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Contact</h1> <h1>Contact</h1>
<br> <br>
<h2>Signal</h2> <h2>Signal</h2>
<br> <br>
<p>Updated: 2022-06-23 (UTC+00:00)</p> <p>Updated: 2022-06-23 (UTC+00:00)</p>
<br> <br>
<pre> <pre>
<code> <code>
+447549902964 +447549902964
</code> </code>
</pre> </pre>
<br> <br>
<br> <br>
</body> </body>
</html> </html>

View File

@ -1,29 +1,29 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Inferencium Network - Contact - Threema</title> <title>Inferencium Network - Contact - Threema</title>
<link rel="stylesheet" href="/infnet.css"> <link rel="stylesheet" href="/infnet.css">
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="/about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="/contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="/blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="/source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Contact</h1> <h1>Contact</h1>
<br> <br>
<h2>Threema</h2> <h2>Threema</h2>
<br> <br>
<p>Updated: 2022-01-28 (UTC+00:00)</p> <p>Updated: 2022-01-28 (UTC+00:00)</p>
<br> <br>
<h3>MD649ERN</h3> <h3>MD649ERN</h3>
<h4>Key</h4> <h4>Key</h4>
<img src="key-threema.png"> <img src="../img/key-threema.png">
<br> <br>
<br> <br>
</body> </body>
</html> </html>

View File

@ -1,58 +1,58 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Inferencium Network - Contact - XMPP</title> <title>Inferencium Network - Contact - XMPP</title>
<link rel="stylesheet" href="/infnet.css"> <link rel="stylesheet" href="/infnet.css">
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="/about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="/contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="/blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="/source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Contact</h1> <h1>Contact</h1>
<br> <br>
<h2>XMPP</h2> <h2>XMPP</h2>
<br> <br>
<p>Updated: 2022-10-13 (UTC+00:00)</p> <p>Updated: 2022-10-13 (UTC+00:00)</p>
<br> <br>
<p>Whenever possible, open the links to pin the fingerprint directly from this <p>Whenever possible, open the links to pin the fingerprint directly from this
webpage. If that is not possible, manually verify the fingerprints.</p> webpage. If that is not possible, manually verify the fingerprints.</p>
<br> <br>
<h3>inference@inferencium.net</h3> <h3>inference@inferencium.net</h3>
<h4>Key</h4> <h4>Key</h4>
<h5>Smartphone</h5> <h5>Smartphone</h5>
<pre> <pre>
<code> <code>
1bd03c6a 5e011655 2fafd697 da4fce70 63de5a83 a264a34a fcce78fe 6b06820c 1bd03c6a 5e011655 2fafd697 da4fce70 63de5a83 a264a34a fcce78fe 6b06820c
</code> </code>
</pre> </pre>
<a class="body-link" href="xmpp:inference@inferencium.net?omemo-sid-1586888206=1bd03c6a5e0116552fafd697da4fce7063de5a83a264a34afcce78fe6b06820c">xmpp:inference@inferencium.net?omemo-sid-1586888206=1bd03c6a5e0116552fafd697da4fce7063de5a83a264a34afcce78fe6b06820c</a> <a class="body-link" href="xmpp:inference@inferencium.net?omemo-sid-1586888206=1bd03c6a5e0116552fafd697da4fce7063de5a83a264a34afcce78fe6b06820c">xmpp:inference@inferencium.net?omemo-sid-1586888206=1bd03c6a5e0116552fafd697da4fce7063de5a83a264a34afcce78fe6b06820c</a>
<br> <br>
<br> <br>
<h5>Desktop</h5> <h5>Desktop</h5>
<pre> <pre>
<code> <code>
87ffbf5a 40f271c7 4615d84c 5816ef07 b7e7a90a 5406edb1 b2b8378f 0439551d 87ffbf5a 40f271c7 4615d84c 5816ef07 b7e7a90a 5406edb1 b2b8378f 0439551d
</code> </code>
</pre> </pre>
<br> <br>
<br> <br>
<h3>inference@plus.st</h3> <h3>inference@plus.st</h3>
<h4>Key</h4> <h4>Key</h4>
<h5>Smartphone</h5> <h5>Smartphone</h5>
<pre> <pre>
<code> <code>
9f9b50e4 3bb5ae5d 886213ad 43015719 7c40aa99 e436445d e0e360a9 24076015 9f9b50e4 3bb5ae5d 886213ad 43015719 7c40aa99 e436445d e0e360a9 24076015
</code> </code>
</pre> </pre>
<a class="body-link" href="xmpp:inference@plus.st?omemo-sid-1890454018=9f9b50e43bb5ae5d886213ad430157197c40aa99e436445de0e360a924076015">xmpp:inference@plus.st?omemo-sid-1890454018=9f9b50e43bb5ae5d886213ad430157197c40aa99e436445de0e360a924076015</a> <a class="body-link" href="xmpp:inference@plus.st?omemo-sid-1890454018=9f9b50e43bb5ae5d886213ad430157197c40aa99e436445de0e360a924076015">xmpp:inference@plus.st?omemo-sid-1890454018=9f9b50e43bb5ae5d886213ad430157197c40aa99e436445de0e360a924076015</a>
<br> <br>
<br> <br>
<br> <br>
</body> </body>
</html> </html>

View File

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

View File

Before

Width:  |  Height:  |  Size: 9.9 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB

BIN
img/logo-gentoo_linux.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

BIN
img/logo-grapheneos.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -1,17 +1,17 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Inferencium Network</title> <title>Inferencium Network</title>
<link rel="stylesheet" href=/infnet.css> <link rel="stylesheet" href=infnet.css>
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="source.html">Source</a></div>
</div> </div>
<body> <body>
</body> </body>

View File

@ -28,8 +28,15 @@
color: #ffffff; color: #ffffff;
} }
.logo { .table-link {
transform: translate(0px, 8px); font-family: Roboto, sans-serif;
font-size: 18px;
color: #ffffff;
text-decoration: underline;
}
.logo-small {
transform: translate(0px, 13px);
} }
body { body {
@ -37,6 +44,7 @@ body {
margin-left: 400px; margin-left: 400px;
margin-right: 150px; margin-right: 150px;
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 18px;
background-color: #262626; background-color: #262626;
} }
@ -72,7 +80,7 @@ h5 {
p { p {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 16px; font-size: 18px;
color: #ffffff; color: #ffffff;
} }
@ -86,3 +94,13 @@ a {
color: #000000; color: #000000;
text-decoration: none; text-decoration: none;
} }
table, th, td {
border: 2px solid;
border-collapse: collapse;
border-color: #ffffff;
padding: 15px;
font-family: Roboto, sans-serif;
font-size: 18px;
color: #ffffff;
}

View File

@ -1,38 +1,39 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Inferencium Network - Source</title> <title>Inferencium Network - Source</title>
<link rel="stylesheet" href=/infnet.css> <link rel="stylesheet" href=infnet.css>
</head> </head>
<div class="sidebar"> <div class="sidebar">
<a class="title">Inferencium Network</a><br> <a class="title">Inferencium Network</a><br>
<br> <br>
<br> <br>
<div><a href="/about.html">About</a></div> <div><a href="about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div> <div><a href="contact.html">Contact</a></div>
<div><a href="/blog.html">Blog</a></div> <div><a href="blog.html">Blog</a></div>
<div><a href="/source.html">Source</a></div> <div><a href="source.html">Source</a></div>
</div> </div>
<body> <body>
<h1>Source</h1> <h1>Source</h1>
<br> <br>
<h3>My Personal Source Code Repositories</h3> <h3>My Personal Source Code Repositories</h3>
<p>These repositories contain source code which is used on my personal <p>These repositories contain source code which is used on my personal
systems.<br> systems.<br>
No guarantees are made that they will work correctly on your systems, and are No guarantees are made that they will work correctly on your systems, and they
not targeted towards a public release.<br> are not targeted towards a public release.<br>
Usage of these repositories is at your own risk.</p> Usage of these repositories is at your own risk.</p>
<br> <br>
<p>- <a class="body-link" href="https://git.inferencium.net/inference/cfg/">Configuration files</a></p> <p>- <a class="body-link" href="https://git.inferencium.net/inference/cfg/">Configuration files</a></p>
<p>- <a class="body-link" href="https://git.inferencium.net/inference/scr/">Script files</a></p> <p>- <a class="body-link" href="https://git.inferencium.net/inference/scr/">Script files</a></p>
<br> <br>
<h3>Inferencium Network Source Code Repositories</h3> <h3>Inferencium Network Source Code Repositories</h3>
<p>These repositories contain source code targeted at a public release and are <p>These repositories contain source code targeted towards a public release and
suitable for a wide range of systems.</p> are suitable for a wide range of systems.</p>
<br> <br>
<p>- <a class="body-link" href="https://git.inferencium.net/inference/inf-www/">Website</a></p> <p>- <a class="body-link" href="https://git.inferencium.net/inference/inf-www/">Website</a></p>
<p>- <a class="body-link" href="https://git.inferencium.net/inference/mmd/">Gentoo - Multimedia</a></p> <p>- <a class="body-link" href="https://git.inferencium.net/inference/mmd/">Gentoo - Multimedia</a></p>
<br> <p>- <a class="body-link" href="https://git.inferencium.net/inference/graphenechan/">Graphene-chan</a></p>
<br> <br>
<br>
</body> </body>
</html> </html>