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

309 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="/constitution.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>A Constitution for an Anonymous Planet. | The Hitchhikers Guide to Online Anonymity</title>
<meta name="generator" content="Jekyll v3.9.3" />
<meta property="og:title" content="A Constitution for an Anonymous Planet." />
<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/constitution.html" />
<meta property="og:url" content="http://localhost:4000/constitution.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="A Constitution for an Anonymous Planet." />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebPage","author":{"@type":"Person","name":"AnonymousPlanet"},"description":"The Hitchhikers Guide to Online Anonymity","headline":"A Constitution for an Anonymous Planet.","url":"http://localhost:4000/constitution.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="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">
<h1 id="a-constitution-for-an-anonymous-planet">A Constitution for an Anonymous Planet.</h1>
<p>To amend the rules and regulations of the network and of the PSA community, this constitution is hereby set forth. It is applicable to all the projects of the initiative, especially the Hitchhikers Guide to Online Anonymity. All members/collaborators must abide by these lines when contributing within the context of the initiative.</p>
<h2 id="requirements">Requirements</h2>
<blockquote>
<p>Our content is licensed under <strong><a href="https://creativecommons.org/licenses/by-nc/3.0/">Creative Commons Attribution NonCommercial</a></strong> to prevent commercial usage.</p>
</blockquote>
<h3 id="1-anonymity-above-everything">1. Anonymity above everything</h3>
<p>Anonymity is necessary to maintain the balance of power, specifically to help journalists, whistleblowers, lawyers, scientists, and victims of oppression. Anonymity first, even if that means using non-free and/or proprietary means. Security and privacy are second, again, even if using non-free or non-open-source and/or proprietary means. In this sense, the ends may at times justify proprietary means.</p>
<h3 id="2-independence">2. Independence</h3>
<p>The Anonymous Planet initiative has no affiliation with the “Anonymous” collective and does not endorse their activities.<br />
Any overlap of their activities and our guide are purely coincidental.</p>
<h3 id="3-accessibility">3. Accessibility</h3>
<p>We will strive to always keep available the following methods of reading the Hitchhikers Guide:</p>
<ul>
<li>online;</li>
<li>offline (e.g., PDF, ODT, EPUB (in the future));</li>
<li>via the Tor network</li>
</ul>
<h3 id="4-freedom">4. Freedom</h3>
<p>Maintain free, open-source, and non-commercial nature of all our projects. This does not mean proprietary and/or closed-source tools wont be recommendeded. All scientific knowledge should be free for anyone and we support and encourage Sci-Hub and LibGen. Any attempt to erode the freedom of information and flow of knowledge of our projects, in any manner, is hostile.</p>
<h3 id="5-verifiability-falsifiability-and-reproducibility">5. Verifiability, falsifiability and reproducibility</h3>
<p>We will make every effort to be transparent about any and all bias we have.<br />
Anyone claiming to be unbiased is lying, therefore we will not falsely claim to be.</p>
<p>All our content shall be verifiable, reproducible and fact-checked:</p>
<ul>
<li>academic references (e.g., studies, papers, and peer reviewed publications);</li>
<li>reputable media references (e.g., articles, videos, and documentaries);</li>
<li>official documentation (e.g., manuals, field guides, and technical documents);</li>
<li>renowned and reputable expert review;</li>
<li>direct testing by our own collaborators for falsifiablity</li>
</ul>
<h3 id="6-innocence">6. Innocence</h3>
<p>Suspected offenders are innocent until proven guilty, with zero tolerance for abuse of power or position.</p>
<p>Any accusing/moderating member is:</p>
<ul>
<li>Subject to the burden of proving the wrong-doing of the offender.</li>
<li>Required to motivate any sanction.</li>
</ul>
<p>Any offender has the right to:</p>
<ul>
<li>Face their accuser (know who is accusing them).</li>
<li>Appeal sanctions to an uninvolved third party.</li>
<li>Participate in their own incrimination (the burden of proof lies with the accuser).</li>
<li>Due process of the above.</li>
</ul>
<h3 id="7-freedom-of-thought">7. Freedom of thought</h3>
<p>Open-minded and pragmatic - with no tolerance for gatekeeping.</p>
<p>Critical thinking and fact-checking are strongly encouraged; we welcome criticism including of a harsh nature (excluding ad-hominem and slurs).</p>
<h3 id="8-we-do-not-tolerate-intolerance">8. We do not tolerate intolerance</h3>
<p>See the <a href="https://en.wikipedia.org/wiki/Paradox_of_tolerance">Paradox of Tolerance</a>, which includes hate speech.</p>
<h3 id="9-no-analytics">9. No analytics</h3>
<p>Note that, while we will never use analytics, the (now free) platforms hosting our content might be gathering such analytics outside of our control, such as Github pages. As the initiative progresses, we will strive to avoid these as soon as possible.</p>
<h3 id="10-no-profit">10. No profit</h3>
<p>Any excess donations will only be used to support our main projects first and possibly support other intitiatives (like hosting Tor exit nodes). In all cases, we abide by the following principles:</p>
<ul>
<li>Funding transparency (i.e., all donations, spendings, source code, and future goals will be public).</li>
<li>Acceptance of donations from any entity anonymously or acknowledged (opt-in) will not have any influence on our content.</li>
<li>No sponsored content.</li>
<li>No affiliate links.</li>
<li>No product placements.</li>
<li>No advertising.</li>
</ul>
<p><strong>Disclaimer: it is possible that, coincidentally, a donation could correlate with a recommendation. It will then be clearly stated that while the donation was welcome, the donating entity will not be gaining visibility/coverage/endorsement/recommendations due to such a donation.</strong></p>
<h2 id="core-goals">Core Goals.</h2>
<ol>
<li>Help people in need of anonymity to maintain both their physical and digital safety.</li>
</ol>
<h2 id="non-goals">Non-Goals:</h2>
<ol>
<li>Help any people who are using this knowledge for bad purposes. Helping people takes precedence and we know our content can be used nefariously. Our initiative believes in having one good person given an anonymous voice, safely, is worth the risk of having several using our content for evil. As we do adhere to a fair “rule of law” system which, having 9 criminals and 1 innocent person free, is much better than having one innocent person in prison among 9 criminals.</li>
</ol>
<p><strong>Yours faithfully, Anonymous Planet</strong></p>
</section>
</div>
</body>
</html>