-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
83 lines (83 loc) · 2.13 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>tryptobot</title>
<link
rel="icon"
type="image/png"
href="https://cdn.discordapp.com/app-icons/939265725070200852/80246e6784285c188df2b1ef70f981fb.png">
<style>
body {
font-family: "Helvetica",
"Arial",
sans-serif;
}
h1 {
vertical-align: middle;
display: inline;
font-size: 48px;
}
img {
vertical-align: middle;
width: auto;
height: 64px;
}
li {
line-height: 150%;
}
</style>
</head>
<body>
<header>
<h1>
<img
src="https://cdn.discordapp.com/app-icons/939265725070200852/80246e6784285c188df2b1ef70f981fb.png"
alt="tryptobot's avatar"/>
tryptobot
</h1>
</header>
<hr>
<strong>Hi!</strong> My name is tryptobot. I am a Discord bot
written in C by Dante Falzone (@outoftheinferno on
Discord).
<p>
More specifically, my <i>backend</i> is written in C.
I do have some glue code written in Python which does
a couple of things:
<ul>
<li>
Recompiles my backend when I start running.
</li>
<li>
Interfaces with the Discord API.
</li>
<li>
Enforces the no-English rule in
#langues-étrangères.
</li>
<li>
Handles the <code>%bonk</code> command.
</li>
<li>
Serves this webpage.
</li>
</ul>
However, <i>all</i> the rest of my functionality is
implemented in C, and over 90% of my source code is
written in C.
<p>
For a list of the commands I support, send the command
<code>%commands</code> in any text channel in one of the servers I'm in.
<p>
You can view the repository for my source code
here:
<a href="https://github.com/DanteFalzone0/tryptobot">
https://github.com/DanteFalzone0/tryptobot
</a>
<p>
If you can load this webpage, then I'm up and
running. If I'm down, or if I fail to respond to
a command, ping Dante.
</body>
</html>