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
# select menus with options that can go above 25 | |
# uses "previous" and "next" select options for scrolling | |
# tests are included in the file below | |
import discord | |
from discord.ui import Select, Item, View | |
from discord.components import SelectOption | |
from discord.utils import MISSING |
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
from typing import TYPE_CHECKING | |
from .blindtest import BlindTest | |
if TYPE_CHECKING: | |
from redbot.core.bot import Red | |
async def setup(bot: "Red"): | |
n = BlindTest(bot) |
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
" https://gist.github.com/laggron42/187570f694da4ae10eb3e5db6cf98205 | |
set nocompatible | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'Vundle/Vundle.vim' " package manager | |
Plugin 'tomasiser/vim-code-dark' " theme | |
Plugin 'vim-airline/vim-airline' " status bar style |
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
Laggrons-MBP:~ laggron$ cd Documents/ | |
Laggrons-MBP:Documents laggron$ cd RedDB-fork/ | |
Laggrons-MBP:RedDB-fork laggron$ pipenv install --dev | |
Traceback (most recent call last): | |
File "/usr/local/bin/pipenv", line 11, in <module> | |
sys.exit(cli()) | |
File "/usr/local/lib/python3.6/site-packages/pipenv/vendor/click/core.py", line 722, in __call__ | |
return self.main(*args, **kwargs) | |
File "/usr/local/lib/python3.6/site-packages/pipenv/vendor/click/core.py", line 697, in main | |
rv = self.invoke(ctx) |
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 json | |
import os | |
import datetime | |
import asyncio | |
import re | |
from discord.ext import commands | |
from .utils.dataIO import dataIO | |
from .utils import checks |