-
mobibot
-
The #mobitopia bot
-
The latest version of mobibot is always available via CVS.
-
About mobibot
-
mobibot is the #mobitopia IRC channel bot. It is built on Paul Mutton's PircBot Java-based Framework.
-
mobibot is making extensive use of various open source libraries, including:
-
-
mobibot was written by Erik C. Thauvin as a replacement for the channel's original ChumpBot.
-
Features
-
mobibot's main functionality is to capture URLs posted on the channel. The URLs are automatically gathered into a publishable RSS feed.
-
Other features include:
-
- - Performing calculations
- - Converting between currencies
- - Rolling dice
- - Performing Google searches
- - Displaying the latest entries on Mobitopia
- - Performing DNS lookups
- - Recapping public channel messages
- - Retrieving stock quotes
- - Displaying the time in various time zones
- - Listing the users on the channel
- - Displaying weather information
- - Posting to identi.ca
- - Posting to Twitter
-
-
Some of the internal features include RSS feed backlogs, rolling logs, debugging toggle and much more.
-
If you have any feature suggestions, please post them to the mobibot wiki.
-
Using mobibot
-
To use mobibot, simply join #mobitopia on irc.freenode.net and type:
-
mobibot: help
-
mobibot will reply with a listing of the commands currently supported.
-
Licenses
-
There are various open source licenses attached to mobibot. Please refer to the licenses directory in the CVS tree for more details.
-
+
+
+
+
mobibot
+
+
The #mobitopia bot
+
+
The latest version of mobibot is always available via
+ GitHub.
+
+
+
About mobibot
+
+
mobibot is the
+ #mobitopia IRC channel bot written in Kotlin.
+
+
+
mobibot is making extensive use of various open source libraries, including:
+
+
mobibot was written by
+ Erik C. Thauvin as a replacement for the channel's
+ original
+ ChumpBot.
+
+
+
Features
+
+
mobibot's main functionality is to
+ capture URLs posted on the channel. The URLs are automatically gathered into a publishable
+ RSS feed and saved on Pinboard.
+
+
+
Other features include:
+
+ - Displaying the latest entries on Mobitopia
+
mobibot: view
+
+ - Performing calculations
+
mobibot: calc (floor(sqrt(3)) + π) * 3^2
+
+ - Crypto currencies prices
+
mobibot: cryto btc
+ mobibot: cryto eth eur
+
+ - Converting between currencies
+
mobibot: currency 17.54 USD to EUR
+
+ - Performing Google searches
+
mobibot: google mobitopia on irc
+
+ - Getting answers from Wolfram Alpha, ChatGPT and Google Gemini
+
mobibot: wolfram days until christmas
+ mobibot: chatgpt explain quantum computing in simple terms
+ mobibot: gemini what are all the colors in a rainbow?
+
+ - Displaying weather information
+
mobibot: weather san francisco
+ mobibot: weather 94123
+ mobibot: weather tokyo, jp
+
+ - Performing DNS lookups
+
mobibot: lookup www.apple.com
+
+ - Retrieving stock quotes from Alpha Avantage
+
mobibot: stock GOOG
+ mobibot: stock google
+
+ - Displaying the time in various time zones
+
mobibot: time UK
+ mobibot: time GMT
+
+ - Sending messages to people on join/activity
+
mobibot: tell nickname Give me a call when you see this.
+
+ - Recapping public channel messages
+
/msg mobibot recap
+
+ - Listing the users on the channel
+
/msg mobibot users
+
+ - Viewing when a nickname was last seen
+
/msg mobibot seen nickname
+
+ - Random jokes from Sv443's JokeAPI
+
mobibot: joke
+
+ - Playing dice, war or rock paper scissors
+
mobibot: dice
+ mobibot: war
+ mobibot: paper
+ mobibot: rock
+
+ - Automatic and manual posting to Mastodon
+
mobibot: toot hello mastodon
+
+
+
Some of the internal features include RSS feed backlogs, rolling logs, debugging toggle and much more.
+
+
If you have any feature suggestions, please post them to the
+ mobibot wiki.
+
+
+
Using mobibot
+
+
To use mobibot, simply join #mobitopia on
+ irc.libera.chat and type:
+
+
+
mobibot: help
+
+
mobibot will reply with a listing of the commands currently supported.
+
+
Licenses
+
+
There are various open source licenses attached to mobibot. Please refer to the
+ licenses directory
+ in the source tree for more details.
+
+
+
diff --git a/website/simple.css b/website/simple.css
new file mode 100644
index 0000000..e1204d6
--- /dev/null
+++ b/website/simple.css
@@ -0,0 +1,52 @@
+body {
+ background: #ffffff;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 16px;
+ color: #000000;
+ margin: 0;
+}
+
+h1 {
+ color: #333399;
+}
+
+h2 {
+ border-bottom: 2px solid #9999cc;
+}
+
+h3 {
+ padding-top: 25px;
+ border-bottom: 1px solid #9999cc;
+}
+
+code {
+ font-family: Courier New, Courier, mono, monospace;
+ color: #000066;
+ background-color: #ffeedd;
+ margin-left: 20px
+}
+
+a:hover {
+ color: #ff0000;
+ background: #eeeeff;
+}
+
+#content {
+ float: none;
+ position: relative;
+ margin: 0 10px 10px 10px;
+ padding: 0 10px 10px 10px;
+}
+
+#content p {
+ padding-left: 10px;
+}
+
+#content p.note {
+ padding: 5px;
+ border: 1px solid #9999cc;
+ border-right: 2px solid #666699;
+ border-bottom: 2px solid #666699;
+ background: #eeeeff;
+ margin: 20px 50px;
+}
\ No newline at end of file