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 collections.abc | |
| import typing | |
| import itertools | |
| import asyncio | |
| import discord | |
| from discord.ext import commands | |
| class Paginator: |
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 discord | |
| import asyncio | |
| import win32com.client | |
| class MyClient(discord.Client): | |
| lastSongTitle = None | |
| iTunesCOM = None | |
| async def checkStatus(self): |
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
| --prefix=/etc/nginx \ | |
| --conf-path=/etc/nginx/nginx.conf \ | |
| --sbin-path=/usr/sbin/nginx \ | |
| --pid-path=/var/run/nginx.pid \ | |
| --error-log-path=/var/log/nginx/error.log \ | |
| --user=www-data \ | |
| --group=www-data \ | |
| --with-http_ssl_module \ | |
| --with-http_v2_module \ | |
| --with-threads \ |