1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<!doctype html>
<meta charset="utf-8"/>
<title>apionet IRC network</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
max-width: 55ch;
min-width: 300px;
font-family: sans-serif;
color: #bee;
background-color: #121212;
margin-left: auto;
margin-right: auto;
font-size: 130%;
background-image: url("bees.jpg");
background-size: cover cover;
background-position: center center;
background-repeat: repeat;
background-attachment: fixed !important;
text-align: center;
min-height: 110vw;
}
@media not all and (min-width: 800px) {
body { font-size: 100% !important; }
main { padding: 10px !important; }
}
a, a:visited {
color: #beeaaa;
}
h1, h2 {
letter-spacing: 8px;
color: yellow;
}
h1 {
transform: rotate3d(-0.5, 1, -0.2, 30deg);
margin-bottom: 100px;
}
section {
border-radius: 50px;
border: none;
background-color: rgba(0, 0, 0, 75%);
padding: 50px;
margin-top: 50px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 50px;
}
ul,ol {
text-align: left;
margin-left: auto;
margin-right: auto;
width: max-content;
max-width: min(55ch, max(calc(100vw - 100px), 200px)); !important;
overflow-wrap: break-word !important;
}
</style>
<main>
<section>
<h1>apionet</h1>
<p>apionet is an <a href=#irc>IRC</a> network. it is bridged also to <a href=#xmpp>xmpp</a> and <a href=#discord>discord</a>.</p>
<h2>rules of apionet</h2>
<ol>
<li>do not be a bad person</li>
<li>do not do bad things</li>
</ol>
</section>
<section>
<h2 id=irc>irc</h2>
<p>apionet irc has 3 nodes:</p>
<ul>
<li><a href="irc://irc.osmarks.net">irc.osmarks.net</a></li>
<li><a href="irc://ubq323.website">ubq323.website</a></li>
<li><a href="irc://mondecitronne.com">mondecitronne.com</a></li>
</ul>
<h3>how to join apionet irc</h3>
<ol>
<li>access an IRC client, (e.g. <a href="https://hexchat.github.io/">hexchat</a>)</li>
<li>join one of three apionet irc nodes,<br> (e.g. mondecitronne.com)</li>
<li>join #a (the main channel)</li>
</ol>
</section>
<section>
<h2 id=xmpp>xmpp</h2>
<p>certain channels are bridged to xmpp. you will need an xmpp client and an xmpp account from somewhere</p>
<p>then, join <a href="xmpp://a@conference.ubq323.website">a@conference.ubq323.website.</a></p>
</section>
<section>
<h2 id=discord>discord</h2>
<p>all channels are bridged to discord. the invite link is <a href="https://discord.gg/dJ6PaEBHGt">https://discord.gg/dJ6PaEBHGt</a>.</p>
<p>note: due to recent spam, you will currently need to be manually approved to gain access to apionet channels.</p>
<p>when using discord, consider how much you want to be dependent on centralized proprietary communication platforms</p>
</section>
</main>
|