Improve back-end code. Revert to relative paths to ease development. Add section Software I Use.
@ -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>
|
||||||
|
78
about.html
@ -2,16 +2,16 @@
|
|||||||
<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>
|
||||||
@ -33,5 +33,73 @@ 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>
|
||||||
|
10
blog.html
@ -2,16 +2,16 @@
|
|||||||
<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>
|
||||||
|
@ -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,
|
||||||
|
@ -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>
|
||||||
|
@ -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>
|
||||||
|
26
contact.html
@ -2,21 +2,21 @@
|
|||||||
<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;
|
||||||
@ -27,9 +27,9 @@ have solid security, and reasonable privacy.<br>
|
|||||||
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" src="img/logo-signal.png" width="30px" height="30px"/> <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" src="img/logo-xmpp.png" width="30px" height="30px"/> <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" src="img/logo-threema.png" width="30px" height="30px"/> <a class="body-link" href="contact/threema.html">Threema</a></p>
|
||||||
<br>
|
<br>
|
||||||
<h3>Metadata-free</h3>
|
<h3>Metadata-free</h3>
|
||||||
<p>If metadata leakage is an issue for you, you can use the following
|
<p>If metadata leakage is an issue for you, you can use the following
|
||||||
@ -37,8 +37,8 @@ contact methods. Note that these services do not have verification
|
|||||||
functionality, and will be treated as less secure; unless you really
|
functionality, and will be treated as less secure; unless you really
|
||||||
need to use these services, use a preferred method instead.</p>
|
need to use these services, use a preferred method instead.</p>
|
||||||
<br>
|
<br>
|
||||||
<p><img class="logo" src="contact/briar.png" width="30px" height="30px"/> <a class="body-link" href="contact/briar.html">Briar</a></p>
|
<p><img class="logo" src="img/logo-briar.png" width="30px" height="30px"/> <a class="body-link" href="contact/briar.html">Briar</a></p>
|
||||||
<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" src="img/logo-session.png" width="30px" height="30px"/> <a class="body-link" href="contact/session.html">Session</a></p>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
@ -48,8 +48,8 @@ or I do not use such functionality; they are suitable for public contact
|
|||||||
only, including directly and groups. Do not use these methods if
|
only, including directly and groups. Do not use these methods if
|
||||||
confidentiality and/or privacy is required.</p>
|
confidentiality and/or privacy is required.</p>
|
||||||
<br>
|
<br>
|
||||||
<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>
|
<p><img class="logo" src="img/logo-pleroma.png" width="30px" height="30px"/> <a class="body-link" href="https://plr.inferencium.net/inference/">Fediverse</a></p>
|
||||||
<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" src="img/logo-twitter.png" width="30px" height="30px"/> <a class="body-link" href="https://twitter.com/inferenceus/">Twitter</a></p>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
</body>
|
</body>
|
||||||
|
@ -2,16 +2,16 @@
|
|||||||
<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>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<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>
|
||||||
|
@ -2,16 +2,16 @@
|
|||||||
<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>
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<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>
|
||||||
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 9.9 KiB |
BIN
img/logo-gentoo_linux.png
Normal file
After Width: | Height: | Size: 313 KiB |
BIN
img/logo-grapheneos.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
10
index.html
@ -2,16 +2,16 @@
|
|||||||
<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>
|
||||||
|
19
infnet.css
@ -28,7 +28,14 @@
|
|||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.table-link {
|
||||||
|
font-family: Roboto, sans-serif;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo-small {
|
||||||
transform: translate(0px, 8px);
|
transform: translate(0px, 8px);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,3 +93,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: 16px;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
19
source.html
@ -2,16 +2,16 @@
|
|||||||
<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>
|
||||||
@ -19,19 +19,20 @@
|
|||||||
<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>
|
||||||
|
<p>- <a class="body-link" href="https://git.inferencium.net/inference/graphenechan/">Graphene-chan</a></p>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
</body>
|
</body>
|
||||||
|