This document is based on prior work of the following people:
- Kiyoshi Aman, 2012, [email protected]
- Attila Molnar, 2015-2016, [email protected]
- James Wheare, 2018. [email protected]
This version was put together by k4be (irc.pirc.pl) in 2020-2021.
This document is based on prior work of the following people:
This version was put together by k4be (irc.pirc.pl) in 2020-2021.
The past few weeks has not been fun on IRC, the drama based on false information and assumptions has been insane. I've almost entirely been silent on the drama because I know the fallout that would happen if I spoke up.
A quick TLDR - I'm quitting all IRC development. KiwiIRC project lead, IRCv3 technical board, supporting the multitude of IRC networks, the lot.
Many people seem to think that I am supporting one side in everything that is going on, so just to be clear: I am not supporting any side of the current freenode drama - there is so much false information going around from everywhere that it is impossible to support anybody.
It's come to my attention that some people have been spamming issue trackers with a link to this gist. While it's a good idea to inform people of the situation in principle, please do not do this. By all means spread the word in the communities that you are a part of, after verifying that they are not aware yet, but unsolicited spam is not helpful. It will just frustrate people.
A number of things have happened since the last update.
how to leverage oracle's temping offers
The limits of the free tier say that you can create up to 4 instances.
#!/usr/bin/env bash | |
#------------------------------------------------------# | |
# This script was tested on Ubuntu 20.04 and newer # | |
# # | |
# This script cleans up the SQLite database, plaintext # | |
# files and uploaded files # | |
#------------------------------------------------------# | |
#-------------------------------------------------------------------------------------# |
#!/usr/bin/env bash | |
# NOTE: | |
# This script was made to work with certbot. I don't guarantee it will | |
# work with other ACME clients. | |
# | |
# This was tested in Ubuntu 20.04 and higher. This should work as it is on | |
# any Debian/Ubuntu based distros. For other distros please check Certbot | |
# documentation. | |
# |
[Unit] | |
Description=KiwiIRC plugin fileuploader | |
After=network.target | |
[Service] | |
User=kiwiirc | |
Group=kiwiirc | |
ExecStart=/usr/bin/kiwiirc-fileuploader --config=/etc/kiwiirc/plugin-fileuploader.toml | |
ExecReload=/bin/kill -HUP $MAINPID | |
WorkingDirectory=/usr/local/kiwiirc/ |
/* eslint-disable no-unused-vars, no-var */ | |
var config = { | |
// Connection | |
// | |
hosts: { | |
// XMPP domain. | |
domain: 'apeunit.test', |
[Unit] | |
Description=Kiwi IRC webircgateway | |
After=network.target | |
[Service] | |
User=kiwiirc | |
Group=kiwiirc | |
ExecStart=/usr/bin/kiwiirc --config=/etc/kiwiirc/config.conf | |
ExecReload=/bin/kill -HUP $MAINPID | |
WorkingDirectory=/usr/local/kiwiirc/ |