tilde.chat/index.php

77 lines
3.0 KiB
PHP
Raw Permalink Normal View History

2018-06-20 14:15:52 +00:00
<?php include 'header.php'; ?>
2018-07-08 17:03:03 +00:00
<h1>tilde.chat <img src="/badges/badge.php"></h1>
2018-06-20 16:22:43 +00:00
<hr>
2018-06-20 13:29:52 +00:00
2018-06-20 16:22:43 +00:00
<p>hey hi</p>
2018-12-17 22:01:30 +00:00
<p>tilde.chat is the irc network of the <a href="https://tildeverse.org">tildeverse</a>, an association of social unix servers built as an intentional community for teaching, learning, and sharing.</p>
2018-07-12 23:14:59 +00:00
<p>tilde.chat is meant to be a space for all tilde members to hang out, share, teach, and learn.</p>
2019-01-30 03:57:24 +00:00
<p><a rel="me" href="https://tilde.zone/@tildeverse">!toot goes here: mastodon</a></p>
2018-07-12 23:14:59 +00:00
2018-12-17 22:01:30 +00:00
<!--
<p>feel free to contact a tilde.team admin (<?php
2018-11-16 17:00:34 +00:00
$members = json_decode(file_get_contents("https://tildeverse.org/members.json"))->members;
foreach ($members as $member)
if ($member->name == "tilde.team")
$team = $member;
$count = count($team->sysadmins);
foreach($team->sysadmins as $sysadmin) {
echo "<a href='{$sysadmin[1]}'>{$sysadmin[0]}</a>";
if ($count>1) {
echo ", ";
$count--;
}
}?>) for more info as we flesh out this site</p>
2018-12-17 22:01:30 +00:00
-->
2018-07-13 20:09:36 +00:00
2018-07-12 23:14:59 +00:00
<h3>connection info</h3>
<p>you can connect to <em>irc.</em>tilde.chat on port 6697 with ssl</p>
2018-12-17 22:01:30 +00:00
<p>irc.tilde.chat is a round-robin host that will return any of the <a href="wiki/?page=servers">available servers</a></p>
2018-07-13 20:10:23 +00:00
<p>or localhost 6667 from a shell on any of the member tildes :) (port 7766 on ~town)</p>
2018-06-20 13:29:52 +00:00
2018-08-19 17:51:35 +00:00
<h3>mumble server</h3>
2018-12-21 21:30:54 +00:00
<p>connect to mumble.tilde.chat on the default port and talk!</p>
2018-08-19 17:51:35 +00:00
<p>might not be anyone there. shout about it on irc first!</p>
2018-06-20 16:22:43 +00:00
<h3>member tildes</h3>
<ul>
2018-08-19 17:51:35 +00:00
<?php
foreach($members as $member) {
echo "\t\t<li><a href='{$member->link}'>{$member->name}</a> (sysadmin";
2018-11-16 17:03:54 +00:00
if (count($member->sysadmins) != 1) {
2018-08-19 17:51:35 +00:00
echo "s"; // plural
}
2018-08-19 17:51:35 +00:00
echo ": ";
$count = count($member->sysadmins);
2018-11-16 17:03:54 +00:00
foreach ($member->sysadmins as $sysadmin) {
2018-08-19 17:51:35 +00:00
echo "<a href='{$sysadmin[1]}'>{$sysadmin[0]}</a>";
2018-11-16 17:03:54 +00:00
if ($count > 1) {
2018-08-19 17:51:35 +00:00
echo ", ";
$count--;
}
}
2018-12-17 22:01:30 +00:00
echo ", channel: {$member->channel})</li>&nbsp;&nbsp;{$member->description}<br><br>\n";
}
2018-08-19 17:51:35 +00:00
?>
2018-06-20 16:22:43 +00:00
</ul>
<hr>
<!-- misc channel info -->
2019-03-04 02:45:20 +00:00
<h3><a href="/stats/">channel info and stats</a></h3>
2018-08-30 01:26:31 +00:00
<!-- closed. see: https://tilde.chat/discord/
2018-07-01 14:31:59 +00:00
<p>* = bridged to discord: tilde.chat private discord invites for tilde members <a href="/discord">here</a>. join and confirm that you're a tilde member to get access to the channels (including a private Discord channel for your tilde). bridging configuration can be adjusted per request.</p>
2018-08-30 01:26:31 +00:00
-->
2018-06-21 16:32:48 +00:00
<hr>
<h3>rules/guidelines</h3>
2018-12-17 22:01:30 +00:00
<p>please see the <a href="wiki/?page=etiquette">etiquette guide</a></p>
<p>chatting/using tilde.chat irc servers implies agreement with the <a href="https://tilde.wiki/?page=code-of-conduct">code of conduct</a>. the <a href="https://tilde.town/wiki/conduct.html">tilde.town code of conduct</a> applies as well.</p>
2019-03-04 02:45:20 +00:00
<p>if you have anything that needs oper attention, please send a mail to <a href="mailto:opers@tilde.chat">opers@tilde.chat</a>.</p>
2018-06-21 16:32:48 +00:00
<p>incidents will be handled according to the CoC as well as by admins of your home tilde</p>
2018-06-20 14:15:52 +00:00
<?php include 'footer.php'; ?>