The fifth installment in my lineage of IRC bots with varying intelligence.
- Swiggityspeare: a Java bot with exec wrappers around Karpathy's char-rnn LSTM neural network. It was incredibly fragile.
- Stupidspeare: a Python reimplementation with none of the neural network intelligence.
- Sequelspeare: Stupidspeare, but with a Tensorflow implementation of
char-rnn
. - gossip: a Golang reimplementation. No neural networks again, this incarnation focuses on implementing an IRC bot without an IRC framework library. sorcix/irc.v2 is used for protocol parsing.
- ircrab: a very basic Rust reimplementation focusing on as much of the stdlib as possible. Protocol parsing is done by hand.
- modify
main.rs
to the desired configuration parameters cargo run
- support SSL
- make the startup channel accessible to the
on_connect
trigger - look into removing the
once_cell::sync::Lazy
dependency - replace many of the String usages with
&str
- stop
unwrap
ing with reckless abandon - move the config to a dedicated file
- add support for reading HTML titles from hyperlinks
- respond to INVITE commands
- parse the prefix (name, user, host) into the
message
struct - add support for sending logs to splunk