mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-15 00:19:25 +01:00
pages/irc: add content.
This commit is contained in:
parent
465bd364c9
commit
e8518550d2
@ -1 +1,45 @@
|
|||||||
Coming soon.
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" /> <!-- <meta http-equiv="refresh" content="60" /> --> <meta name="description" content="How do you find me at IRC." /> <meta name="author" content="Mikaela Suomalainen" /> <link rel="canonical" href="https://">
|
||||||
|
<title>
|
||||||
|
Where to find me at IRC?
|
||||||
|
</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="css.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<p>I am not going to explain what IRC is.</p>
|
||||||
|
<h2 id="finding-me-at-irc">Finding me at IRC</h2>
|
||||||
|
<p>I am <code>umode -i</code> in all networks, so finding me should be easy, just run</p>
|
||||||
|
<pre><code>/whois NICKNAME NICKNAME</code></pre>
|
||||||
|
<p>in common network that you will find below.</p>
|
||||||
|
<p>I will use topics in format "name of the network / round robin if any <port>". With "+" in front of port, I mean SSL. The networks are in random order (or whatever order my clients display them in).</p>
|
||||||
|
<h3 id="freenode-chat.freenode.net-6697">freenode / chat.freenode.net +6697</h3>
|
||||||
|
<p>At freenode I am usually <code>Mikaela</code> with my primary connection and my mobile connection is <code>Ciblia</code> or <code>TDA_Anima</code> (The Dark Aeon Anima, do you know Final Fantasy X?) depending on my mood.</p>
|
||||||
|
<p>I also have channel <code>##Mkaysi</code> at freenode.</p>
|
||||||
|
<p>Oh, and my primary bots are <code>Yvzabevn</code> and <code>Tessu</code>.</p>
|
||||||
|
<h3 id="ircnet">ircnet</h3>
|
||||||
|
<p>At IRCnet I am <code>Mikaela</code> and <code>Ciblia</code> unless my nicks get stolen. IRCnet doesn't have services.</p>
|
||||||
|
<p>I have channel <code>#Mikaela</code> there which is relayed to <code>##Mkaysi@freenode</code>. It exists, because I wanted a reason to put <code>Yvzabevn</code> there as registering to <code>Tessu</code> is disabled.</p>
|
||||||
|
<p>As you probably understood, <code>Yvzabevn</code> and <code>Tessu</code> are there too. <code>Tessu</code> has more work at IRCnet than <code>Yvzabevn</code>.</p>
|
||||||
|
<h3 id="runehq-irc.runehq.com-6697">runehq / irc.runehq.com +6697</h3>
|
||||||
|
<p>I am Mikaela at RuneHQ.</p>
|
||||||
|
<h3 id="irccloud-irc.irccloud.com-6697">irccloud / irc.irccloud.com +6697</h3>
|
||||||
|
<p>I am Mikaela at IRCCloud.</p>
|
||||||
|
<h3 id="foreverchat-irc.foreverchat.net-7029">foreverchat / irc.foreverchat.net +7029</h3>
|
||||||
|
<p>I am Mikaela at foreverchat.</p>
|
||||||
|
<h3 id="oftc-irc.oftc.net-9999">oftc / irc.oftc.net +9999</h3>
|
||||||
|
<p>I am Mikaela at OFTC.</p>
|
||||||
|
<h2 id="bots">Bots</h2>
|
||||||
|
<p>My bots are usually <a href="https://github.com/ProgVal/Limnoria">Limnorias.</a> I am Limnoria's Finnish translator and have done some other contributions.</p>
|
||||||
|
<h3 id="yvzabevn">Yvzabevn</h3>
|
||||||
|
<p>Yvzabevn is my primary bot and it's using Python 3. You can find it's <a href="http://lakka.kapsi.fi:62291/">web interface here</a>.</p>
|
||||||
|
<h3 id="tessu">Tessu</h3>
|
||||||
|
<p>Tessu is my secondary bot (but you could call it as primary on IRCnet). It's named after our dog as some might know and it's configured to use Finnish.</p>
|
||||||
|
<p>Tessu doesn't have web interface at the moment.</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
<!-- vim : set ft=markdown-->
|
||||||
|
|
||||||
|
|
||||||
|
@ -0,0 +1,86 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<!-- <meta http-equiv="refresh" content="60" /> -->
|
||||||
|
<meta name="description" content="How do you find me at IRC." />
|
||||||
|
<meta name="author" content="Mikaela Suomalainen" />
|
||||||
|
<link rel="canonical" href="https://">
|
||||||
|
<title>Where to find me at IRC?</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="css.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
I am not going to explain what IRC is.
|
||||||
|
|
||||||
|
## Finding me at IRC
|
||||||
|
|
||||||
|
I am `umode -i` in all networks, so finding me should be easy, just run
|
||||||
|
|
||||||
|
```
|
||||||
|
/whois NICKNAME NICKNAME
|
||||||
|
```
|
||||||
|
|
||||||
|
in common network that you will find below.
|
||||||
|
|
||||||
|
I will use topics in format "name of the network / round robin if any <port>". With "+" in front of port, I mean SSL.
|
||||||
|
The networks are in random order (or whatever order my clients display them in).
|
||||||
|
|
||||||
|
### freenode / chat.freenode.net +6697
|
||||||
|
|
||||||
|
At freenode I am usually `Mikaela` with my primary connection and my mobile
|
||||||
|
connection is `Ciblia` or `TDA_Anima` (The Dark Aeon Anima, do you know
|
||||||
|
Final Fantasy X?) depending on my mood.
|
||||||
|
|
||||||
|
I also have channel `##Mkaysi` at freenode.
|
||||||
|
|
||||||
|
Oh, and my primary bots are `Yvzabevn` and `Tessu`.
|
||||||
|
|
||||||
|
### ircnet
|
||||||
|
|
||||||
|
At IRCnet I am `Mikaela` and `Ciblia` unless my nicks get stolen. IRCnet
|
||||||
|
doesn't have services.
|
||||||
|
|
||||||
|
I have channel `#Mikaela` there which is relayed to `##Mkaysi@freenode`.
|
||||||
|
It exists, because I wanted a reason to put `Yvzabevn` there as registering
|
||||||
|
to `Tessu` is disabled.
|
||||||
|
|
||||||
|
As you probably understood, `Yvzabevn` and `Tessu` are there too. `Tessu`
|
||||||
|
has more work at IRCnet than `Yvzabevn`.
|
||||||
|
|
||||||
|
### runehq / irc.runehq.com +6697
|
||||||
|
|
||||||
|
I am Mikaela at RuneHQ.
|
||||||
|
|
||||||
|
### irccloud / irc.irccloud.com +6697
|
||||||
|
|
||||||
|
I am Mikaela at IRCCloud.
|
||||||
|
|
||||||
|
### foreverchat / irc.foreverchat.net +7029
|
||||||
|
|
||||||
|
I am Mikaela at foreverchat.
|
||||||
|
|
||||||
|
### oftc / irc.oftc.net +9999
|
||||||
|
|
||||||
|
I am Mikaela at OFTC.
|
||||||
|
|
||||||
|
## Bots
|
||||||
|
|
||||||
|
My bots are usually [Limnorias.](https://github.com/ProgVal/Limnoria) I am
|
||||||
|
Limnoria's Finnish translator and have done some other contributions.
|
||||||
|
|
||||||
|
### Yvzabevn
|
||||||
|
|
||||||
|
Yvzabevn is my primary bot and it's using Python 3. You can find it's
|
||||||
|
[web interface here](http://lakka.kapsi.fi:62291/).
|
||||||
|
|
||||||
|
### Tessu
|
||||||
|
|
||||||
|
Tessu is my secondary bot (but you could call it as primary on IRCnet). It's
|
||||||
|
named after our dog as some might know and it's configured to use Finnish.
|
||||||
|
|
||||||
|
Tessu doesn't have web interface at the moment.
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
<!-- vim : set ft=markdown-->
|
Loading…
Reference in New Issue
Block a user