This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import ssl | |
| import socket | |
| import time | |
| from dotenv import load_dotenv | |
| # Load configuration | |
| load_dotenv("/home/rocc/kirby/.env") | |
| SERVER = os.getenv("KIRBY_SERVER", "irc.oftc.net") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import socket | |
| import ssl | |
| import os | |
| import time | |
| from dotenv import load_dotenv | |
| # Load environment | |
| load_dotenv("/home/rocc/kirby/.env") | |
| server = os.getenv("KIRBY_SERVER", "irc.freenode.net") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import socket | |
| import ssl | |
| import os | |
| import time | |
| from dotenv import load_dotenv | |
| # Load Kirby environment | |
| load_dotenv("/home/rocc/kirby/.env") | |
| server = os.getenv("KIRBY_SERVER", "irc.freenode.net") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import socket | |
| import os | |
| import time | |
| from dotenv import load_dotenv | |
| # Load Kirby environment | |
| load_dotenv("/home/rocc/kirby/.env") | |
| server = os.getenv("KIRBY_SERVER", "irc.freenode.net") | |
| port = int(os.getenv("KIRBY_PORT", 6667)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import socket | |
| import os | |
| import time | |
| from dotenv import load_dotenv | |
| # Load environment | |
| load_dotenv("/home/rocc/kirby/.env") | |
| SERVER = os.getenv("KIRBY_SERVER", "irc.freenode.net") | |
| PORT = int(os.getenv("KIRBY_PORT", "6667")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import socket | |
| import os | |
| import time | |
| from dotenv import load_dotenv | |
| # Load environment | |
| load_dotenv("/home/rocc/kirby/.env") | |
| SERVER = os.getenv("KIRBY_SERVER", "irc.freenode.net") | |
| PORT = int(os.getenv("KIRBY_PORT", "6667")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import socket | |
| import os | |
| import time | |
| import subprocess | |
| from dotenv import load_dotenv | |
| # Load environment variables | |
| load_dotenv("/home/rocc/kirby/.env") | |
| server = os.getenv("KIRBY_SERVER", "irc.freenode.net") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import socket | |
| import os | |
| import time | |
| from dotenv import load_dotenv | |
| # Load Kirby environment | |
| load_dotenv("/home/rocc/kirby/.env") | |
| server = os.getenv("KIRBY_SERVER", "irc.freenode.net") | |
| port = int(os.getenv("KIRBY_PORT", 6667)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import socket | |
| import os | |
| import time | |
| from dotenv import load_dotenv | |
| # Load Kirby environment | |
| load_dotenv("/home/rocc/kirby/.env") | |
| server = os.getenv("KIRBY_SERVER", "irc.freenode.net") | |
| port = int(os.getenv("KIRBY_PORT", 6667)) |