thgtoa/_site/chatrooms-rules.html
nopeitsnothing 34a718db77
v1.1.8
Signed-off-by: nopeitsnothing <no@anonymousplanet.org>
2023-07-10 06:14:33 -04:00

316 lines
13 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Offline -->
<!-- <meta http-equiv="onion-location" content="/chatrooms-rules.html" /> -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline'; base-uri 'self'; form-action 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'">
<meta http-equiv=”X-XSS-Protection” content=”1">
<meta http-equiv="Permissions-Policy" content="interest-cohort=()"/>
<meta name="referrer" content="no-referrer">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/style.css" id="dark">
<link rel="stylesheet" href="assets/css/light_style.css" media="none" id="light">
<link rel="shortcut icon" type="image/x-icon" href="media/favicon.ico">
<script>
function SetDark() {
document.getElementById('dark').media = "";
document.getElementById('light').media = "none";
themeicon.innerHTML = '<svg height="24px" viewBox="0 0 24 24" width="24px" fill="#FFF"><path d="M0 0h24v24H0z" fill="none"/><path d="M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z"/></svg>';
}
function SetLight() {
document.getElementById('light').media = "";
document.getElementById('dark').media = "none";
themeicon.innerHTML = '<svg enable-background="new 0 0 24 24" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><rect fill="none" height="24" width="24"/><path d="M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36c-0.98,1.37-2.58,2.26-4.4,2.26 c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z"/></svg>';
}
window.addEventListener('load',
function() {
if (window.matchMedia("(prefers-color-scheme: dark)").matches) {
if (localStorage.getItem("theme") == "light") {
SetLight();
document.getElementById('switch').checked = true;
} else {
SetDark();
document.getElementById('switch').checked = false;
}
} else if (window.matchMedia("(prefers-color-scheme: light)").matches) {
if (localStorage.getItem("theme") == "dark") {
SetDark();
document.getElementById('switch').checked = false;
} else {
SetLight();
document.getElementById('switch').checked = true;
}
} else {
SetDark();
document.getElementById('switch').checked = false;
}
}, false);
function switch_theme(state) {
if (state) {
SetLight();
localStorage.setItem("theme", "light");
} else {
SetDark();
localStorage.setItem("theme", "dark");
}
};
</script>
<style>
.theme-switch-wrapper {
display: inline-block;
z-index: 100;
position: absolute;
right: 0;
top: -10px;
}
.jswarning {
display: inline-block;
border: 1px solid green;
}
.theme-switch-wrapper span {
margin-right: 2px;
}
.theme-switch {
display: inline-block;
height: 25px;
position: relative;
width: 40px;
}
.theme-switch input {
display: none;
}
.slider {
background: #696969;
cursor: pointer;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
transition: 0.5s;
}
.slider::before {
background: #fff;
bottom: 4px;
content: '';
height: 17px;
left: 4px;
position: absolute;
transition: 0.5s;
width: 17px;
}
input:checked + .slider {
background: #151515;
}
input:checked + .slider::before {
transform: translateX(15px);
}
.slider.round {
border-radius: 34px;
}
.slider.round::before {
border-radius: 50%;
}
.fas {
font-size: 30px;
}
</style>
<noscript>
<style>.theme-switch-wrapper {display:none;}</style>
</noscript>
<!-- Begin Jekyll SEO tag v2.8.0 -->
<title>PSA Community Matrix | The Hitchhikers Guide to Online Anonymity</title>
<meta name="generator" content="Jekyll v3.9.3" />
<meta property="og:title" content="PSA Community Matrix" />
<meta name="author" content="AnonymousPlanet" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="The Hitchhikers Guide to Online Anonymity" />
<meta property="og:description" content="The Hitchhikers Guide to Online Anonymity" />
<link rel="canonical" href="http://localhost:4000/chatrooms-rules.html" />
<meta property="og:url" content="http://localhost:4000/chatrooms-rules.html" />
<meta property="og:site_name" content="The Hitchhikers Guide to Online Anonymity" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="PSA Community Matrix" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebPage","author":{"@type":"Person","name":"AnonymousPlanet"},"description":"The Hitchhikers Guide to Online Anonymity","headline":"PSA Community Matrix","url":"http://localhost:4000/chatrooms-rules.html"}</script>
<!-- End Jekyll SEO tag -->
</head>
<body style="transition: all 0.5s ease;">
<header>
<div class="container" style="position: relative;">
<div class="theme-switch-wrapper">
<!-- Icon -->
<span id="toggle-icon">
<i id="themeicon" class="fas fa-sun"></i>
</span>
<!-- Switch -->
<label class="theme-switch">
<input type="checkbox" id="switch" onclick="switch_theme(this.checked)">
<div class="slider round"></div>
</label>
</div>
<a id="a-title">
<h1>The Hitchhikers Guide to Online Anonymity</h1>
</a>
<h2>How I learned to start worrying and love <del>privacy</del> anonymity</h2>
<h4 class="project-version">The latest Version is v1.1.8. See the <a href="CHANGELOG.html" style="color:#ff4700">changelog.</a></h4>
<section id="downloads">
<a href="index.html" class="btn_small">Home</a>
<a href="guide.html" class="btn_small" style="color:#FF0000">View Online</a>
<a href="export/guide.pdf" class="btn_small">PDF</a>
<!--<a href="" class="btn_small">PDF (Dark)</a>-->
<a href="export/guide.odt" class="btn_small">OpenDocument</a>
<a href="donations.html" class="btn_small">Donate</a>
<a href="constitution.html" class="btn_small">Constitution</a>
<a href="https://github.com/nopeitsnothing/thgtoa-dev" target="_blank" class="btn_small">Repository</a>
<!--<a href="" target="_blank" class="btn_small">Keyoxide</a>-->
<a rel="me" href="https://mastodon.social/@anonymousplanet" target="_blank" class="btn_small">Mastodon</a>
<a rel="me" href="https://anonymousplanet.org/twitter.html" target="_blank" class="btn_small">Twitter</a>
<!--<a rel="me" href="https://mastodon.social/@anonymousplanet" target="_blank" class="btn_small">Mastodon</a>-->
<a href="links.html" class="btn_small">Links</a>
<a href="about.html" class="btn_small">About</a>
</section>
<h5>GPG Key Fingerprint: 9EA9 8278 639F 1CD8 53E0 96CB FF94 5075 87A6 A9B9 / Minisign public key: <a href="minisign.pub" style="color:#ff4700">minisign.pub</a></h5>
<noscript><p class="jswarning">JavaScript is required to toggle light mode. JavaScript is not used for any other purpose.</p></noscript>
</div>
</header>
<div class="container">
<section id="main_content">
<h3 id="psa-community-matrix">PSA Community Matrix</h3>
<p>You will find here the rules for the community.</p>
<p><strong>Note:</strong> Rooms which are part of the community keep their sovereignty and can apply their own local rules, each with their own local moderation. Some of the rooms are following the general rules, but some are not.</p>
<ul>
<li><a href="#general">General Rules</a></li>
<li><a href="#nth">Nothing To Hide Privacy Room Rules</a></li>
<li><a href="#moderncrypto">Modern Cryprography Room Rules</a></li>
<li><a href="#ossecurity">OS Security Room Rules</a></li>
<li><a href="#bnonymity">Bnonymity Room Rules</a></li>
<li><a href="#exceptions">Exceptions</a></li>
<li><a href="#bans">Bans</a></li>
<li><a href="#appeals">Ban Appeals</a></li>
</ul>
<h4 id="general-default-rules-for-psa-rooms-unless-specific-rules-are-mentioned-below">General default rules for PSA rooms <strong>unless specific rules are mentioned below</strong><a name="general"></a></h4>
<p>These are currently enforced on <strong><code class="language-plaintext highlighter-rouge">#anonymity</code></strong>, <strong><code class="language-plaintext highlighter-rouge">#security</code></strong>, <strong><code class="language-plaintext highlighter-rouge">#OSINT</code></strong>, and are NOT applied in rooms with their own rules below.</p>
<ul>
<li>Keep it legal</li>
<li>English only</li>
<li>Be respectful to each other</li>
<li>Avoid FUD and/or disinformation</li>
<li>Avoid gatekeeping and try to remain welcoming to new users</li>
<li>No hate speech (no racism, no homophobia, no transphobia…)</li>
<li>No spam</li>
<li>No doxxing unless you have express permission and you move to <code class="language-plaintext highlighter-rouge">#bnonymity</code></li>
<li>No trolling (this doesnt mean sarcasm is forbidden)</li>
<li>No NSFW content (no Porn, no Gore, no Hentai…)</li>
<li>No upload of any non-media files (binaries, executables, compressed files…)</li>
<li>No voice messages (these will be auto-deleted by the bots)</li>
<li><strong>Avoid drifting too much off-topic or move to an off-topic room like #bnonymity</strong></li>
</ul>
<p>Just because the bot is down temporarily doesnt mean shit.Some exceptions can apply, see the <a href="#exceptions">exceptions</a> section at the bottom of this page. Violations will be handled at the discretion of the acting moderator.</p>
<h4 id="rules-for-nothing-to-hide-privacy-privacymatrixorg">Rules for Nothing To Hide Privacy (<code class="language-plaintext highlighter-rouge">#privacy:matrix.org</code>)<a name="nth"></a></h4>
<ul>
<li>Zero tolerance for discussion of how to commit illicit acts</li>
<li>Limit political discussion to privacy-related topics <strong>only</strong></li>
<li>No suspicious links or uploading of non-image binary files</li>
<li>Be respectful</li>
</ul>
<h5 id="mods">Mods:</h5>
<ul>
<li>Lucas: <a href="https://matrix.to/#/@lucas:coinfundit.com">@lucas:coinfundit.com</a></li>
<li>Prox: <a href="https://matrix.to/#/@the_proxster:midov.pl">@the_proxster:midov.pl</a> (basically God)</li>
</ul>
<h4 id="rules-for-modern-cryptography-moderncryptognuradioorg">Rules for Modern Cryptography (<code class="language-plaintext highlighter-rouge">#moderncrypto:gnuradio.org</code>)<a name="moderncrypto"></a></h4>
<p>See <a href="https://anonymousplanet.org/moderncrypto-rules.html">https://anonymousplanet.org/moderncrypto-rules.html</a></p>
<h4 id="rules-for-os-security">Rules for OS Security<a name="ossecurity"></a></h4>
<p>See <a href="https://artemislena.eu/coc.html">https://artemislena.eu/coc.html</a></p>
<h4 id="rules-for-bnonymity-bnonymitymatrixorg">Rules for Bnonymity (<code class="language-plaintext highlighter-rouge">#bnonymity:matrix.org</code>)<a name="bnonymity"></a></h4>
<ul>
<li>Keep it legal (seriously)</li>
<li>English only</li>
<li>Be “somewhat” respectful to each other</li>
<li>No hate speech (e.g., no racism, homophobia, or transphobia)</li>
<li>No spammerino (e.g., no scams, ads, or bots/flooding)</li>
<li>No NSFW content (e.g., no porn, gore, and hentai)</li>
</ul>
<p>All of the above can result in an insta-ban depending on the severity.</p>
<h5 id="mods-1">Mods:</h5>
<ul>
<li>Fractal: <a href="https://matrix.to/#/@fractal:matrix.org">@fractal:matrix.org</a></li>
</ul>
<h4 id="exceptions">Exceptions<a name="exceptions"></a></h4>
<h5 id="exceptions-for-anonymity-security-and-bnonymity-rooms">Exceptions for #Anonymity, #Security, and #Bnonymity rooms</h5>
<ul>
<li>Talks about Sci-Hub and/or LibGen are allowed.</li>
<li>Talks about torrenting anonymously are allowed unless the purpose is blatantly illegal.</li>
</ul>
<h4 id="bans">Bans<a name="bans"></a></h4>
<p>Currently, the following rooms are sharing a common PSA ban list for serious offenders:</p>
<ul>
<li><a href="https://matrix.to/#/#anonymity:matrix.anonymousplanet.org">#Anonymity</a></li>
<li><a href="https://matrix.to/#/#thgtoa-translation:matrix.anonymousplanet.org">#Translations</a></li>
<li><a href="https://matrix.to/#/#security:matrix.anonymousplanet.org">#Security</a></li>
<li><a href="https://matrix.to/#/#bnonymity:matrix.anonymousplanet.org">#Bnonymity</a></li>
<li><a href="https://matrix.to/#/#moderncrypto:matrix.anonymousplanet.org">#ModernCrypto</a></li>
<li><a href="https://matrix.to/#/#OSINT:matrix.anonymousplanet.org">#OSINT</a></li>
<li><a href="https://matrix.to/#/#thgtoa-collab:matrix.anonymousplanet.org">#Collab</a></li>
</ul>
<p>This means that those PSA bans are effectively applied on all those rooms and can be issued by admins of these rooms. See the next section for information about appeals.</p>
<h4 id="ban-appeals">Ban Appeals<a name="appeals"></a></h4>
<ul>
<li><strong>Please contact the mods or admins of the room in question to state your case for appealing.</strong></li>
</ul>
</section>
</div>
</body>
</html>