#sir-lancebot-playground
1 messages Β· Page 40 of 1
.mosaic
.mosaic 1000
lol
!source
Hi
.latex $(\mathbb{Z}_{n}, +)$
!source
.mosaic
oh wait
.mosaic
.mosaic 36
.mosaic
.dragname
Freya Domme
.spookify
BotSource
.source [source_item]
Display information and a GitHub link to the source code of a command, tag, or cog.
BunnyNameGenerator
.bunnifyme
Gets your Discord username and bunnifies it.
.bunnyname
Picks a random bunny name from a JSON file.
Catify
.catify <text>
Convert the provided text into a cat themed sentence by interspercing cats throughout text.
Challenges
.challenge [language=python] [query]
The challenge command pulls a random kata (challenge) from codewars.com.
.bunnifyme
Cotton Balls
Velvetpaw Balls
.bunnifyme
Fluff Balls
.bunnifyme
Jiggly Bounce
.catify ham burger
ααα’ ham burger α£αα’
.help
Latex
.latex <query>
Renders the text in latex and sends the image.
Madlibs
.madlibs
Play Madlibs with the bot!
Magic8ball
.8ball <question>
Return a Magic 8ball answer from answers list.
Minesweeper
.minesweeper
Commands for Playing Minesweeper.
MonsterBio
.monsterbio
Sends your monster bio!
.duckduckduckgoose
.source help
.help duckduckduckgoose
**```
.duckduckduckgoose
**Can also use:** `dddg`, `ddg`, `duckduckgoose`, `duckgoose`
*Start a new Duck Duck Duck Goose game.*
**Subcommands:**
**`duckduckduckgoose help`**
*Explain the rules of the game.*
.duckduckduckgoose help
Each card has 4 features
Color, Number, Hat, and Accessory
A valid flight
3 cards where each feature is either all the same or all different
Call "GOOSE"
if you think there are no more flights
+1 for each valid flight
+2 for a correct "GOOSE" call
-1 for any wrong answer
The first flight below is invalid: the first card has swords while the other two have no accessory. It would be valid if the first card was empty-handed, or one of the other two had paintbrushes.
The second flight is valid because there are no 2:1 splits; each feature is either all the same or all different.
Final scores:
.catify
Your catified nickname is: # useradd hedy | ααα’
.catify
Your catified nickname is: # useradd hedy | ααα’ | ααα’
lmaoo
pwease, d-deepthwoat a-a 30mm autocannyon fow me π₯Ί
.8bitify
.uwu I am sorry
i am sowwy
.uwu Page not found
page nyot f-found
.8bitify
.help
AvatarModify
.avatar_modify spookyavatar
Spookify a user's avatar.
Battleship
.battleship
Play a game of Battleship with someone else!
BeMyValentine
.bemyvalentine <user> [valentine_type]
Send a valentine to a specified user with the lovefest role.
Bookmark
.bookmark <target_message> [title=Bookmark]
Send the author a link to the specified message via DMs.
.bookmark delete
Delete the Sir-Lancebot message that the command invocation is replying to.
.avatar_modify spookyavatar
:/
.avatar_modify mosaic 8192
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
.8bitify
.help
BotSource
.source [source_item]
Display information and a GitHub link to the source code of a command, tag, or cog.
BunnyNameGenerator
.bunnifyme
Gets your Discord username and bunnifies it.
.bunnyname
Picks a random bunny name from a JSON file.
Catify
.catify <text>
Convert the provided text into a cat themed sentence by interspercing cats throughout text.
Challenges
.challenge [language=python] [query]
The challenge command pulls a random kata (challenge) from codewars.com.
.challenge
You've just discovered a square (NxN) field and you notice a warning sign. The sign states that there's a single bomb in the 2D grid-like field in front of you.
Write a function mineLocation/MineLocation that accepts a 2D array, and returns the location of the mine. The mine is represented as the integer 1 in the 2D array. Areas in the 2D array that are not the mine will be represented as 0s.
The location returned should be an array (Tuple<int, int> in C#) where the first element is the row index, and the second element is the column index of the bomb location (both should be 0 based). All 2D arrays passed into your function will be square (NxN), and there will only be one mine in the array.
Examples:
mineLocation( [ [1, 0, 0], [0, 0, 0], [0, 0, 0] ] ) => returns [0, 0] <br/>
mineLocation( [ [0, 0, 0], [0, 1, 0], [0, 0, 0] ] ) => returns [1, 1] <br/>
mineLocation( [ [0, 0, 0], [0, 0, 0], [0, 1, 0] ] ) => returns [2, 1]
6 kyu
!e ```py
def mineLocation(arr):
for ridx, row in enumerate(arr):
if 1 in row:
row_idx = ridx
for cidx, col in row:
if col == 1:
col_idx = cidx
break
break
return [row_idx, col_idx]
print(mindLocation([[1, 0, 0], [0, 0, 0], [0, 0, 0]])```
@zealous dagger :x: Your 3.12 eval job has completed with return code 1.
001 | File "/home/main.py", line 12
002 | print(mindLocation([[1, 0, 0], [0, 0, 0], [0, 0, 0]])
003 | ^
004 | SyntaxError: '(' was never closed
!e ```py
def mineLocation(arr):
for ridx, row in enumerate(arr):
if 1 in row:
row_idx = ridx
for cidx, col in row:
if col == 1:
col_idx = cidx
break
break
return [row_idx, col_idx]
print(mineLocation([[1, 0, 0], [0, 0, 0], [0, 0, 0]]))```
@zealous dagger :x: Your 3.12 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 12, in <module>
003 | print(mindLocation([[1, 0, 0], [0, 0, 0], [0, 0, 0]]))
004 | ^^^^^^^^^^^^
005 | NameError: name 'mindLocation' is not defined. Did you mean: 'mineLocation'?
!e ```py
def mineLocation(arr):
for ridx, row in enumerate(arr):
if 1 in row:
row_idx = ridx
for cidx, col in row:
if col == 1:
col_idx = cidx
break
break
return [row_idx, col_idx]
print(mineLocation([[1, 0, 0], [0, 0, 0], [0, 0, 0]]))```
@zealous dagger :x: Your 3.12 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 12, in <module>
003 | print(mineLocation([[1, 0, 0], [0, 0, 0], [0, 0, 0]]))
004 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
005 | File "/home/main.py", line 5, in mineLocation
006 | for cidx, col in row:
007 | ^^^^^^^^^
008 | TypeError: cannot unpack non-iterable int object
!e ```py
def mineLocation(arr):
for ridx, row in enumerate(arr):
if 1 in row:
row_idx = ridx
for cidx, col in enumerate(row):
if col == 1:
col_idx = cidx
break
break
return [row_idx, col_idx]
print(mineLocation([[1, 0, 0], [0, 0, 0], [0, 0, 0]]))```
@zealous dagger :white_check_mark: Your 3.12 eval job has completed with return code 0.
[0, 0]
Snakes
.snakes
Commands from our first code jam.
Space
.space
Head command that contains commands about space.
Speedrun
.speedrun
Sends a link to a video of a random speedrun.
SpookyEightBall
.spookyeightball <question>
Responds with a random response to a question.
SpookyGif
.spookygif
Fetches a random gif from the GIPHY API and responds with it.
Your input was invalid: move is a required argument that is missing.
Usage:```
.rps <move>
Sir Lancebot played paper! @main scarab lost!
.8bitify
.rps paper
@violet birch You and Sir Lancebot played paper, it's a tie.
.rps rock
@violet birch You and Sir Lancebot played rock, it's a tie.
.rps r
@violet birch You and Sir Lancebot played rock, it's a tie.
.rps p
@violet birch You and Sir Lancebot played paper, it's a tie.
.rps s
@violet birch You and Sir Lancebot played scissors, it's a tie.
Sir Lancebot played paper! @violet birch won!
let's go
.rps s
Sir Lancebot played paper! @hybrid plaza won!
.rps p
@hybrid plaza You and Sir Lancebot played paper, it's a tie.
.rps r
@hybrid plaza You and Sir Lancebot played rock, it's a tie.
.rps r
@hybrid plaza You and Sir Lancebot played rock, it's a tie.
.rps r
Sir Lancebot played paper! @hybrid plaza lost!
.rps r
@hybrid plaza You and Sir Lancebot played rock, it's a tie.
.rps p
Sir Lancebot played rock! @hybrid plaza won!
.source color name
.color name Tenn
.color name Metallic Copper
.rps paper
@brittle plover You and Sir Lancebot played paper, it's a tie.
.rps rock
Sir Lancebot played scissors! @brittle plover won!
.rps paper
Sir Lancebot played scissors! @brittle plover lost!
.rps scissors
@brittle plover You and Sir Lancebot played scissors, it's a tie.
.rps scissors
Sir Lancebot played paper! @brittle plover won!
.rps paper
Sir Lancebot played rock! @brittle plover won!
.rp threading
Here are the top 5 results:
.color random
.color random
I'm hungry for mac and cheese now :( this was a mistake
.color random
.color random
.color random
.color random
noice thats my color theme now
σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ guys what is this??
its like empty
σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ
σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ σ σ £σ ’σ ΄σ ‘σ £σ ‘σ ΄σ ¬σ £σ Άσ ΅σ ΅σ €σ ΅σ Άσ
like huh??
.help
BotSource
.source [source_item]
Display information and a GitHub link to the source code of a command, tag, or cog.
BunnyNameGenerator
.bunnifyme
Gets your Discord username and bunnifies it.
.bunnyname
Picks a random bunny name from a JSON file.
Catify
.catify <text>
Convert the provided text into a cat themed sentence by interspercing cats throughout text.
Challenges
.challenge [language=python] [query]
The challenge command pulls a random kata (challenge) from codewars.com.
.bunnifyme
woofy
woofy
No colour found for: spirit
.8bitify
.help
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
.avatar_modify mosaic 16
.avatar_modify mosaic 100
going crazy
.avatar_modify mosaic 10000000
Your input was invalid: Squares must be a positive number less than or equal to 10,000.
Usage:```
.avatar_modify mosaic [squares=16]
.avatar_modify mosaic 10000
.avatar_modify mosaic 9999
.avatar_modify mosaic 10000
.avatar_modify mosaic 1
.avatar_modify mosaic 2
.avatar_modify mosaic 10
.avatar_modify mosaic 256
.avatar_modify mosaic e
Your input was invalid: Converting to "int" failed for parameter "squares".
Usage:```
.avatar_modify mosaic [squares=16]
.avatar_modify mosaic -1
Your input was invalid: Squares must be a positive number less than or equal to 10,000.
Usage:```
.avatar_modify mosaic [squares=16]
.avatar_modify mosaic 256
.avatar_modify mosaic 10000000000000
Your input was invalid: Squares must be a positive number less than or equal to 10,000.
Usage:```
.avatar_modify mosaic [squares=16]
.avatar_modify mosaic 1000
.avatar_modify mosaic 1080
.avatar_modify mosaic 44
.avatar_modify
**```
.avatar_modify
**Can also use:** `avatar_mod`, `avatarmod`, `pfp_mod`, `pfpmod`
*Groups all of the pfp modifying commands to allow a single concurrency limit.*
**Subcommands:**
**`avatar_modify 8bitify`**
*Pixelates your avatar and changes the palette to an 8bit one.*
**`avatar_modify avatareasterify [colours...]`**
*Easterify the user's avatar.*
**`avatar_modify mosaic [squares=16]`**
*Splits your avatar into x squares, randomizes them and stitches them back into a new image!*
**`avatar_modify prideavatar [option=lgbt] [pixels=64]`**
*Surround an avatar with a border of a specified LGBT flag.*
**`avatar_modify reverse <text>`**
*Reverses the sent text.*
**`avatar_modify spookyavatar`**
*Spookify a user's avatar.*
.avatar_modify 8bitify
.help
CheatSheet
.cheat [search_terms...]
Search cheat.sh.
CoinFlip
.coinflip [side]
Flips a coin.
Colour
.colour [colour_input]
Create an embed that displays colour information.
ConnectFour
.connect_four [board_size=7] [emoji1=π΅] [emoji2=π΄]
Play the classic game of Connect Four with someone!
ConvoStarters
.topic
Responds with a random topic to start a conversation.
.cheat rust
Result Of cht.sh
# Since there was no easy way of solving this issue (at least, I hadn't
# found), I converted my async method to sync one. And called it on
# Python side as,
#
# \`\`\`rust
# async fn my_method(s: &str) -> Result<String, Error> {
// do something
# }
#
# [pyfunction]
# fn my_sync_method(s: String) -> PyResult<String> {
let mut rt = tokio::runtime::Runtime::new().unwrap();
let mut contents = String::new();
rt.block_on(async {
result = format!("{}", my_sync_method(&s).await.unwrap()).to_string();
});
Ok((result))
# }
#
# [pymodule]
# fn MyModule(py: Python, m: &PyModule) -> PyResult<()> {
m.add_wrapped(wrap_pyfunction!(my_sync_method))?;
Ok(())
# }
# \`\`\`
#
# # Edited
#
# In the \`Cargo.toml\` file, I added the following dependencies,
#
# \`\`\`toml
#
# [dependencies.pyo3]
# git = "https://github.com/PyO3/pyo3"
# features = ["extension-module"]
# \`\`\`
#
# After running \`cargo build --release\`, \`target/release/libMyModule.so\`
# bina
... (truncated - too many lines)
Full results: https://cheat.sh/python/rust
.avatar_modify 8bitify
.avatar_modify reverse Wolf
floW
.pfpmod 8bitify 256
.pfpmod 8bitify 256
.pfpmod 8bitify 18
.pfpmod 16bitify 256
**```
.avatar_modify
**Can also use:** `avatar_mod`, `avatarmod`, `pfp_mod`, `pfpmod`
*Groups all of the pfp modifying commands to allow a single concurrency limit.*
**Subcommands:**
**`avatar_modify 8bitify`**
*Pixelates your avatar and changes the palette to an 8bit one.*
**`avatar_modify avatareasterify [colours...]`**
*Easterify the user's avatar.*
**`avatar_modify mosaic [squares=16]`**
*Splits your avatar into x squares, randomizes them and stitches them back into a new image!*
**`avatar_modify prideavatar [option=lgbt] [pixels=64]`**
*Surround an avatar with a border of a specified LGBT flag.*
**`avatar_modify reverse <text>`**
*Reverses the sent text.*
**`avatar_modify spookyavatar`**
*Spookify a user's avatar.*
avatar_modify spookyavatar
.avatar_modify 8bitify
.avatar_modify 16bitify
**```
.avatar_modify
**Can also use:** `avatar_mod`, `avatarmod`, `pfp_mod`, `pfpmod`
*Groups all of the pfp modifying commands to allow a single concurrency limit.*
**Subcommands:**
**`avatar_modify 8bitify`**
*Pixelates your avatar and changes the palette to an 8bit one.*
**`avatar_modify avatareasterify [colours...]`**
*Easterify the user's avatar.*
**`avatar_modify mosaic [squares=16]`**
*Splits your avatar into x squares, randomizes them and stitches them back into a new image!*
**`avatar_modify prideavatar [option=lgbt] [pixels=64]`**
*Surround an avatar with a border of a specified LGBT flag.*
**`avatar_modify reverse <text>`**
*Reverses the sent text.*
**`avatar_modify spookyavatar`**
*Spookify a user's avatar.*
.color random
.color random
.pfpmod 8bitify 16
.pfpmod 8bitify 32
.help
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
.avatar_modify reverse
.help
BotSource
.source [source_item]
Display information and a GitHub link to the source code of a command, tag, or cog.
BunnyNameGenerator
.bunnifyme
Gets your Discord username and bunnifies it.
.bunnyname
Picks a random bunny name from a JSON file.
Catify
.catify <text>
Convert the provided text into a cat themed sentence by interspercing cats throughout text.
Challenges
.challenge [language=python] [query]
The challenge command pulls a random kata (challenge) from codewars.com.
.bunnyname
Daisy
.bunnyname
Buttercup
Axwaizeetail
.bunnifyme
Axwaizeefoot
.challenge
Introduction
Not having to go to school or work on your birthday is always a treat, so when your birthday would have fallen on a weekend, it's really annoying if a leap year means you miss out. Some friends are discussing this and think they have missed out more than others, so they need your help.
The Challenge
Given a list of friends, their dates of birth and the date of their conversation, work out who has had the most birthdays fall on a Saturday or Sunday up to and including the date of the conversation. If more than one friend shares that number of weekend birthdays, return the youngest. If the youngest shares their birthday with other friends, then any of the youngest will be accepted.
When counting weekend days, don't include the day on which they were born - after all, they wouldn't have been familiar with the concept of a weekend right then! Friends born on 29th February celebrate their birthdays on 28th February in non-leap years.
Example... continue reading
6 kyu
.challenge
Write a program to determine if a string contains only unique characters.
Return true if it does and false otherwise.
The string may contain any of the 128 ASCII characters.
Characters are case-sensitive, e.g. 'a' and 'A' are considered different characters.
7 kyu
.help
HalloweenFacts
.spookyfact
Get the most recent Halloween fact
Halloweenify
.halloweenify
Change your nickname into a much spookier one!
Hangman
.hangman [min_length=0] [max_length=25] [min_unique_letters=0] [max_unique_letters=25]
Play hangman against the bot, where you have to guess the word it has provided!
Help
.help [commands...]
Shows Command Help.
Latex
.latex <query>
Renders the text in latex and sends the image.
.github
**```
.github
**Can also use:** `gh`, `git`
*Commands for finding information related to GitHub.*
**Subcommands:**
**`github repository [repo...]`**
*Fetches a repositories' GitHub information.*
**`github user <username>`**
*Fetches a user's GitHub information.*
.GitHub user Axwaizee
.rfc 1
1
1969-04-01
@weary sand
it's been fixed 10 hours ago :)
cool
.GitHub user alexanderthegreat96
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
!zen 2
Simple is better than complex.
Your input was invalid: Converting to "int" failed for parameter "squares".
Usage:```
.avatar_modify mosaic [squares=16]
Your input was invalid: Converting to "int" failed for parameter "squares".
Usage:```
.avatar_modify mosaic [squares=16]
.mosaic
.mosaic 256
!zen 50
Please provide an index between -19 and 18.
!zen [zen_rule_index] [search_value]
Show the Zen of Python.
Without any arguments, the full Zen will be produced. If zen_rule_index is provided, the line with that index will be produced. If only a string is provided, the line which matches best will be produced.
!zen 1 2
Explicit is better than implicit.
!zen 4 4
Flat is better than nested.
!zen 10 1000
Unless explicitly silenced.
!zen 50 50
Please provide an index between -19 and 18.
!zen 19 20
Please provide an index between -19 and 18.
!zen 18 18
Namespaces are one honking great idea -- let's do more of those!
!zen 19 18
Please provide an index between -19 and 18.
**```
.github
**Can also use:** `gh`, `git`
*Commands for finding information related to GitHub.*
**Subcommands:**
**`github repository [repo...]`**
*Fetches a repositories' GitHub information.*
**`github user <username>`**
*Fetches a user's GitHub information.*
@woven dragon Game cancelled.
@woven dragon Game cancelled.
Please provide an index between -19 and 18.
.joke
Number of days since I have encountered an off-by-one error: 0.
.joke
A diff between your code and Chuck Norris's is infinite.
.joke
Chuck Norris's unit tests don't run. They die.
Chick Norris solved the halting problem.
.joke
Chuck Norris can write multi-threaded applications with a single thread.
There are 2 types of people: those who can extrapolate from incomplete data sets...
Chuck Norris finished World of Warcraft.
.joke
Chuck Norris can install a 64-bit operating system on 32-bit machines.
A programmer was found dead in the shower. Next to their body was a bottle of shampoo with the instructions 'Lather, Rinse and Repeat'.
Why do sin and tan work? Just cos.
.joke
A QA engineer walks into a bar. Runs into a bar. Crawls into a bar. Dances into a bar. Tiptoes into a bar. Rams a bar. Jumps into a bar.
.joke
Chuck Norris's first program was kill -9.
.joke
Chuck Norris doesn't use web standards as the web will conform to him.
.joke
Chuck Norris can binary search unsorted data.
Chuck Norris hosting is 101% uptime guaranteed.
.joke
There are 10 types of people: those who understand hexadecimal and 15 others.
Chuck Norris only uses global variables. He has nothing to hide.
Complaining about the lack of smoking shelters, the nicotine addicted Python programmers said there ought to be 'spaces for tabs'.
.joke
The class object inherits from Chuck Norris.
.joke
How do you know whether a person is a Vim user? Don't worry, they'll tell you.
Chuck Norris can unit test entire applications with a single assertion, 'it works'.
.joke
Chuck Norris can delete the Recycling Bin.
A COBOL programmer makes millions with Y2K remediation and decides to get cryogenically frozen. "The year is 9999. You know COBOL, right?"
.joke
If you put a million monkeys at a million keyboards, one of them will eventually write a Java program. The rest of them will write Perl.
Chuck Norris can delete the Recycling Bin.
.joke
What does 'Emacs' stand for? 'Exclusively used by middle aged computer scientists.'
.joke
Chuck Norris can install a 64-bit operating system on 32-bit machines.
.joke
When your hammer is C++, everything begins to look like a thumb.
Pirates go 'arg!', computer pirates go 'argv!'
.joke
Chuck Norris's calculator has only 3 keys: 0, 1, and NAND.
.joke
Why don't jokes work in octal? Because 7 10 11.
.joke
Hardware: The part of a computer that you can kick.
Chuck Norris's keyboard doesn't have a Ctrl key because nothing controls Chuck Norris.
.joke
Chuck Norris can read from an input stream.
.help
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
.joke
Number of days since I have encountered an off-by-one error: 0.
.joke
A programmer crashes a car at the bottom of a hill, a bystander asks what happened, he says "No idea. Let's push it back up and try again".
.avatar_modify 8bitfy
**```
.avatar_modify
**Can also use:** `avatar_mod`, `avatarmod`, `pfp_mod`, `pfpmod`
*Groups all of the pfp modifying commands to allow a single concurrency limit.*
**Subcommands:**
**`avatar_modify 8bitify`**
*Pixelates your avatar and changes the palette to an 8bit one.*
**`avatar_modify avatareasterify [colours...]`**
*Easterify the user's avatar.*
**`avatar_modify mosaic [squares=16]`**
*Splits your avatar into x squares, randomizes them and stitches them back into a new image!*
**`avatar_modify prideavatar [option=lgbt] [pixels=64]`**
*Surround an avatar with a border of a specified LGBT flag.*
**`avatar_modify reverse <text>`**
*Reverses the sent text.*
**`avatar_modify spookyavatar`**
*Spookify a user's avatar.*
.avatar_modify 8bitify
.avatar_modify spookyavatar
.avatar_modify mosaic
.joke
Pirates go 'arg!', computer pirates go 'argv!'
.joke
Chuck Norris compresses his files by doing a flying round house kick to the hard drive.
.joke
Waiter: Would you like coffee or tea? Programmer: Yes.
.joke
Chuck Norris can solve the Towers of Hanoi in one move.
.joke
Chuck Norris only uses global variables. He has nothing to hide.
.joke
.NET was named .NET so that it wouldn't show up in a Unix directory listing.
they wrote net in capitals making me think it is actually an acronym 
.color random
.joke
Chuck Norris can write to an output stream.
.joke
You can't follow Chuck Norris on Twitter, because he follows you.
.joke
Number of days since I have encountered an array index error: -1.
.uwu
Your input was invalid: Your message must have content or you must reply to a message.
Usage:```
.uwu [text]
.uwuify watty
watty
.uwuify i hate bla
i h-hate bwa
wwwww
hewwo siww
.color ra
**```
.colour [colour_input]
**Can also use:** `color`
*Create an embed that displays colour information.
If no subcommand is called, a randomly selected colour will be shown.*
**Subcommands:**
**`colour cmyk <cyan> <magenta> <yellow> <key>`**
*Create an embed from a CMYK input.*
**`colour hex <hex_code>`**
*Create an embed from a HEX input.*
**`colour hsl <hue> <saturation> <lightness>`**
*Create an embed from an HSL input.*
**`colour hsv <hue> <saturation> <value>`**
*Create an embed from an HSV input.*
**`colour name <user_colour_name>`**
*Create an embed from a name input.*
**`colour random`**
*Create an embed from a randomly chosen colour.*
**`colour rgb <red> <green> <blue>`**
*Create an embed from an RGB input.*
.challenge
Task
A little boy is studying arithmetics. He has just learned how to add two integers, written one below another, column by column. But he always forgets about the important part - carrying.
Given two integers, find the result which the little boy will get.
Example
For param1 = 456 and param2 = 1734, the output should be 1180
456
1734
+ ____
1180
The little boy goes from right to left:
6 + 4 = 10 but the little boy forgets about 1 and just writes down 0 in the last column
5 + 3 = 8
4 + 7 = 11 but the little boy forgets about the leading 1 and just writes down 1 under 4 and 7.
There is no digit in the first number corresponding to the leading digit of the second one, so the little boy imagines that 0 is written before 456. Thus, he gets 0 + 1 = 1.
Input/Output
-
[input]integeraA non-negative integer.
Constraints: 0 β€ a β€ 99999.
-
[input]integerbA non-negative integer.
Constraints: 0 β€ b β€ 59999.
... continue reading
6 kyu
.uwu [I ate a bed for breakfast today.]
[i ate a bed fow bweakfast today.]
.help
DragNames
.dragname
Sends a message with a drag queen name.
DuckGamesDirector
.duckduckduckgoose
Start a new Duck Duck Duck Goose game.
EarthPhotos
.earth_photos
Returns a random photo of earth, sourced from Unsplash.
EasterFacts
.eggfact
Get easter egg facts.
EasterRiddle
.riddle
Gives a random riddle, then provides 2 hints at certain intervals before revealing the answer.
βNo Category:
help Shows this message
Type .help command for more info on a command.
You can also type .help category for more info on a category.
.help time
**```
.timed <command>
**Can also use:** `t`, `time`
*Time the command execution of a command.*
.timed
aq = {}
for iter in range(random.randint(1, 1000)):
aq[iter] = random.choice([random.randint(1,1000), None])
null_keys = []
for k,v in aq.items():
if v is None:
null_keys.append(k)
else:
pass
for k in null_keys:
aq.pop(k)
The command you are trying to time doesn't exist. Use .help for a list of commands.
.timed
aq = {}
for iter in range(random.randint(1, 1000)):
aq[iter] = random.choice([random.randint(1,1000), None])
start_time = time.time()
null_keys = []
for k,v in aq.items():
if v is None:
null_keys.append(k)
else:
pass
for k in null_keys:
aq.pop(k)
print(f"{time.time() - start_time} seconds")
The command you are trying to time doesn't exist. Use .help for a list of commands.
.t print(1+2)
The command you are trying to time doesn't exist. Use .help for a list of commands.
.t
print(1+2)
The command you are trying to time doesn't exist. Use .help for a list of commands.
.help gh
**```
.github
**Can also use:** `gh`, `git`
*Commands for finding information related to GitHub.*
**Subcommands:**
**`github repository [repo...]`**
*Fetches a repositories' GitHub information.*
**`github user <username>`**
*Fetches a user's GitHub information.*
No command called "gh" found.
.help wtf
**```
.wtf_python [query]
**Can also use:** `wtf`
*Search WTF Python repository.
Gets the link of the fuzzy matched query from https://github.com/satwikkansal/wtfpython.
Usage:
--> .wtf wild imports*
.help git
**```
.github
**Can also use:** `gh`, `git`
*Commands for finding information related to GitHub.*
**Subcommands:**
**`github repository [repo...]`**
*Fetches a repositories' GitHub information.*
**`github user <username>`**
*Fetches a user's GitHub information.*
.help gh
**```
.github
**Can also use:** `gh`, `git`
*Commands for finding information related to GitHub.*
**Subcommands:**
**`github repository [repo...]`**
*Fetches a repositories' GitHub information.*
**`github user <username>`**
*Fetches a user's GitHub information.*
.help gh
**```
.github
**Can also use:** `gh`, `git`
*Commands for finding information related to GitHub.*
**Subcommands:**
**`github repository [repo...]`**
*Fetches a repositories' GitHub information.*
**`github user <username>`**
*Fetches a user's GitHub information.*
.help issue
Did you mean:
hacktoberissues
bot#2875
.color random
.dragname
Diemme Monds
... that's a real thing?
.wolfram Integrate[x(3x^2-4)^5,x]
.challenge
Traditionally, all programming languages implement the 3 most common boolean operations: and, or, not. These three form the complete boolean algebra, i.e. every possible boolean function from N arguments can be decomposed into combination of arguments and and, or, not.
In the school we have learned, that only 2 operations (not and 1 of remaining) is enough to form a complete algebra, and the last one can be expressed as a combination of the former. A great kata to test that: https://www.codewars.com/kata/boolean-logic-from-scratch/python
Several other operations may form a complete boolean algebra, i.e. xor, 1 and and. However, we are interested in an operation, which forms boolean algebra all by itself: Sheffer stroke (another operation with such a property is Peirce's arrow).
Sheffer stroke is defined as follows:
sheffer(False, False) = True
sheffer(False, True) = True
sheffer(True, False) = True
sheffer(True, True) = False
The task:
... continue reading
7 kyu
.catify
Your catified nickname is: Brad90Four | α£αα’
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
βNo Category:
help Shows this message
Type .help command for more info on a command.
You can also type .help category for more info on a category.
.help
.help
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
.fool
Check out this April Fools' video by google.
Happy April Fools' 2013 day!
Google Fiber to the Pole provides ubiquitous gigabit connectivity to fiberhoods across Kansas City. This latest innovation in Google Fiber technology enables users to access Google Fiber's ultra fast gigabit speeds even when they are out and about. To learn more, visit http://www.google.com/fiber/poles
/help
.avatar_modify 8bitify
no idea
.help
BotSource
.source [source_item]
Display information and a GitHub link to the source code of a command, tag, or cog.
BunnyNameGenerator
.bunnifyme
Gets your Discord username and bunnifies it.
.bunnyname
Picks a random bunny name from a JSON file.
Catify
.catify <text>
Convert the provided text into a cat themed sentence by interspercing cats throughout text.
Challenges
.challenge [language=python] [query]
The challenge command pulls a random kata (challenge) from codewars.com.
.challenge easy
Your input was invalid: This is not a recognized language on codewars.com!
Usage:```
.challenge [language=python] [query]
.challenge python easy
In the drawing below we have a part of the Pascal's triangle, lines are numbered from zero (top).
The left diagonal in pale blue with only numbers equal to 1 is diagonal zero, then in dark green
(1, 2, 3, 4, 5, 6, 7) is diagonal 1, then in pale green (1, 3, 6, 10, 15, 21) is
diagonal 2 and so on.
We want to calculate the sum of the binomial coefficients on a given diagonal.
The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start,
0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
Can you write a program which calculate S(n, p) where n is the line where we start and p
is the number of the diagonal?
The function will take n and p (with always: n > 0, p >= 0, n > p) as parameters and will return the sum.
Examples:
diagonal(20, 3) => 5985
diagonal(20, 4) => 20349
Hint:
When following a diagonal from top to bottom have a look at the numbers on the diagonal at its right.
Ref:
... continue reading
6 kyu
.avatar_modify 8bitify
.help quack
**```
.quack [ducktype=duck] [seed]
**Can also use:** `ducky`
*Use the Quackstack API to generate a random duck.
If a seed is provided, a duck is generated based on the given seed.
Either "duck" or "manduck" can be provided to change the duck type generated.*
.quack
.quack
.quack
.quack
&blurpify
if __name__ == "__main__":
main()
# coding=UTF-8-NOBOM
if __name__ == ' __main__ ' :
main ( ) ;
.challenge python easy
<h1 id="heading">Debug the functions</h1>
<i>Should be easy, begin by looking at the code. Debug the code and the functions should work.</i>
<i>There are three functions: Multiplication (x) Addition (+) and Reverse (!esreveR)</i>
<style>
i {
font-size:16px;
}
#heading {
padding: 2em;
text-align: center;
background-color: #0033FF;
width: 100%;
height: 5em;
}
</style>
7 kyu
.avatar_modify 8bitify
.source
.challenge python easy
Unflatten a list (Harder than easy)
This is the harder version of Unflatten a list (Easy)
So you have again to build a method, that creates new arrays, that can be flattened!
Shorter: You have to unflatten a list/an array.
You get an array of integers and have to unflatten it by these rules:
- You have to do several runs. The depth is the number of runs, you have to do.
- In every run you have to switch the direction. First run from left, next run from right. Next left...
Every run has these rules:
- You start at the first number (from the direction).
- Take for every number x the remainder of the division by the number of still available elements (from
this position!) to have the number for the next decision.
- If the remainder-value is smaller than 3, take this number x (NOT the remainder-Value) direct
for the new array and continue with the next number.... [continue reading](https://codewars.com/kata/57e5aa1d7fbcc988800001ae)
4 kyu
.challenge python easy
Yet another easy kata!
Task:
- Let's write a sequence starting with
seq = [0, 1, 2, 2]in which- 0 and 1 occurs 1 time
- 2 occurs 2 time
and sequence advances with adding next natural number seq[natural number] times so now, 3 appears
2 times and so on.
Input
- You are given input
nand return nth(0-based) value of this list.
let;s take example:
seq = [0, 1, 2, 2]
i = 3 and as seq[i]=2, seq = [0, 1, 2, 2, 3, 3]
i = 4 and as seq[i]=3, seq = [0, 1, 2, 2, 3, 3, 4, 4, 4]
i = 5 and as seq[i]=3, seq = [0, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5]
and so on.
Some elements of list:
4 kyu
.challenge python easy
Description:
Groups of characters decided to make a battle. Help them to figure out which group is more powerful. Create a function that will accept 2 strings and return the one who's stronger.
Rules:
- Each character have its own power:
A = 1, B = 2, ... Y = 25, Z = 26 - Strings will consist of uppercase letters only
- Only two groups to a fight.
- Group whose total power (
A + B + C + ...) is bigger wins. - If the powers are equal, it's a tie.
Examples:
* "ONE", "TWO" -> "TWO"`
* "ONE", "NEO" -> "Tie!"
Related kata:
7 kyu
.help
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
.fool
Check out this April Fools' video by google.
Now you can browse the web with two mice at the same time. Try it out at http://google.com/chrome/multitask
.fool
Check out this April Fools' video by google.
Once and for all, remove all the bad jokes from your phone with Files Go.
https://gc23t.app.goo.gl/badjoke
.help
DragNames
.dragname
Sends a message with a drag queen name.
DuckGamesDirector
.duckduckduckgoose
Start a new Duck Duck Duck Goose game.
EarthPhotos
.earth_photos
Returns a random photo of earth, sourced from Unsplash.
EasterFacts
.eggfact
Get easter egg facts.
EasterRiddle
.riddle
Gives a random riddle, then provides 2 hints at certain intervals before revealing the answer.
.riddle
You have 10 seconds before the first hint.
carats
Well done @viscid star for getting it right!
.help
Madlibs
.madlibs
Play Madlibs with the bot!
Magic8ball
.8ball <question>
Return a Magic 8ball answer from answers list.
Minesweeper
.minesweeper
Commands for Playing Minesweeper.
MonsterBio
.monsterbio
Sends your monster bio!
MonsterSurvey
.monster
The base voting command. If nothing is called, then it will return an embed.
.joke
Chuck Norris types with one finger. He points it at the keyboard and the keyboard does the rest.
.madlibs
Part of speech: body part
Make sure not to spam, or you may get auto-muted!
whacks
throws
ear
arm
hand
tree
hairy
grape juice
eye
slice
warm
finger
toe
eye
spine
neck
ear
:0 it's not working anymore
.help
TriviaNightCog
.trivianight
The command group for the Python Discord Trivia Night.
TriviaQuiz
.quiz <category> <questions>
Start a quiz!
Twemoji
.twemoji [raw_emoji...]
Sends a preview of a given Twemoji, specified by codepoint or emoji.
Uwu
.uwu [text]
Echo an uwuified version the passed text.
ValentineFacts
.valentine_fact
Shows a random fact about Valentine's Day.
.uwu hello my name is Kermit and I like coding
hewwo my nyame i-is kewmit and i w-wike coding
.help
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
.color random
.color random
.help
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
.fool
Check out this April Fools' video by google.
Weβre extremely excited to share with you our latest Google Cloud groundbreaking technology: After enabling our customers to address senses through Speech & Vision API, we are now releasing a subset of Taste APIs started with a dish we all love - Hummus!
.anagram
You have 60 seconds to find correct words.
PAUL
Well done @ionic ferry for getting it right!
.riddle
You have 10 seconds before the first hint.
Nobody got it right...
.valentine_fact
There's a form of cryptological communication called 'Floriography', in which you communicate through flowers. Meaning has been attributed to flowers for thousands of years, and some form of floriography has been practiced in traditional cultures throughout Europe, Asia, and Africa. Here are some meanings for roses you might want to take a look at, if you plan on gifting your loved one a bouquet of roses on Valentine's Day:
β
Red: eternal love
Pink: young, developing love
White: innocence, fervor, loyalty
Orange: happiness, security
Violet: love at first sight
Blue: unfulfilled longing, quiet desire
Yellow: friendship, jealousy, envy, infidelity
Black: unfulfilled longing, quiet desire, grief, hatred, misfortune, death
.minesweeper
**```
.minesweeper
**Can also use:** `ms`
*Commands for Playing Minesweeper.*
**Subcommands:**
**`minesweeper end`**
*End your current game.*
**`minesweeper start [bomb_chance=0.2]`**
*Start a game of Minesweeper.*
Your input was invalid: Converting to "float" failed for parameter "bomb_chance".
Usage:```
.minesweeper start [bomb_chance=0.2]
.minesweeper start [0.2]
Your input was invalid: Converting to "float" failed for parameter "bomb_chance".
Usage:```
.minesweeper start [bomb_chance=0.2]
.minesweeper start [bomb_chance=0.2]
Your input was invalid: Converting to "float" failed for parameter "bomb_chance".
Usage:```
.minesweeper start [bomb_chance=0.2]
@ionic ferry is playing Minesweeper.
:no_entry: Game canceled. :no_entry:
Here's your board!
:stop_button: :regional_indicator_a: :regional_indicator_b: :regional_indicator_c: :regional_indicator_d: :regional_indicator_e: :regional_indicator_f: :regional_indicator_g: :regional_indicator_h: :regional_indicator_i: :regional_indicator_j:
:one: :bomb: :two: :one: :stop_button: :stop_button: :stop_button: :stop_button: :stop_button: :stop_button: :stop_button:
:two: :two: :bomb: :two: :one: :one: :stop_button: :stop_button: :stop_button: :one: :one:
:three: :one: :one: :three: :bomb: :four: :two: :one: :one: :three: :bomb:
:four: :one: :one: :two: :bomb: :bomb: :bomb: :one: :one: :bomb: :bomb:
:five: :bomb: :two: :one: :two: :three: :two: :two: :two: :three: :two:
:six: :bomb: :three: :two: :one: :one: :stop_button: :one: :bomb: :one: :stop_button:
:seven: :two: :bomb: :two: :bomb: :one: :stop_button: :one: :one: :one: :stop_button:
:eight: :one: :one: :three: :three: :three: :two: :one: :one: :stop_button: :stop_button:
:nine: :one: :one: :one: :bomb: :bomb: :three: :bomb: :two: :one: :stop_button:
:keycap_ten: :bomb: :one: :one: :three: :bomb: :three: :two: :bomb: :one: :stop_button:
.ms reveal xy [xy]
You are not authorized to use this command.
.ms reveal xy [A1]
You are not authorized to use this command.
.ms flag xy A1
You are not authorized to use this command.
.ms flagA1
**```
.minesweeper
**Can also use:** `ms`
*Commands for Playing Minesweeper.*
**Subcommands:**
**`minesweeper end`**
*End your current game.*
**`minesweeper start [bomb_chance=0.2]`**
*Start a game of Minesweeper.*
.ms flag A1
You are not authorized to use this command.
DragNames
.dragname
Sends a message with a drag queen name.
DuckGamesDirector
.duckduckduckgoose
Start a new Duck Duck Duck Goose game.
EarthPhotos
.earth_photos
Returns a random photo of earth, sourced from Unsplash.
EasterFacts
.eggfact
Get easter egg facts.
EasterRiddle
.riddle
Gives a random riddle, then provides 2 hints at certain intervals before revealing the answer.
.earth_photos
A photo of Earth π from Unsplash.
Photo by Massimiliano Morosinotto on Unsplash.
.earth_photos
.earth_photos
A photo of Earth π from Unsplash.
Photo by Massimiliano Morosinotto on Unsplash.
.source
.latex \frac{1}{2}mv^2 - G \frac{Mm}{R} = 0
Fortine, Montana
Fortine is a census-designated place (CDP) in Lincoln County, Montana, United States. The population was 206 at the 2021 census. Fortine is located in
Flurbiprofen
Flurbiprofeno, Flurflex, Flurofen, Fluroptic, Fo Bi Pu Luo Fun, Forphen, Fortine, Froben, Frolix, Fubifen, Fubiprofen, Fubofen, Fukon, Fulruban, Furofen
Roblox
Roblox (/ΛroΚblΙks/) is a 2006 online game platform and game creation system developed by Roblox Corporation that allows users to program games and play
List of Roblox games
system Roblox has numerous games (officially referred to as "experiences") created by users of their creation tool, Roblox Studio. Due to Roblox's popularity
Shared from Chess In The Park
.help
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
.help
WonderTwins
.formof
Command to send a Wonder Twins inspired phrase to the user invoking the command.
XKCD
.xkcd <comic>
Getting an xkcd comic's information along with the image.
.color random
.help
WonderTwins
.formof
Command to send a Wonder Twins inspired phrase to the user invoking the command.
XKCD
.xkcd <comic>
Getting an xkcd comic's information along with the image.
.ms reveal xy [zy[
You are not authorized to use this command.
.game
**```
.games [amount=5] <genre>
**Can also use:** `game`
*Get random game(s) by genre from IGDB. Use .games genres command to get all available genres.
Also support amount parameter, what max is 25 and min 1, default 5. Supported formats:
- .games <genre>
- .games <amount> <genre>*
**Subcommands:**
**`games company [amount=5]`**
*Get random Game Companies companies from IGDB API.*
**`games genres`**
*Get all available genres.*
**`games search <search_term>`**
*Find games by name.*
**`games top [amount=10]`**
*Get current Top games in IGDB.*
Invalid genre Genere.
.easterify
.spookify
.easterify
.spookify
.easterify
.spookify
.spookify
.spookify
almost lines up
.spookify
so spooky π
Testing if I can write a sentence and include a latex command .latex $\int_0^1 e^{-x^2} dx$
.latex $\int_0^1 e^{-x^2} dx$
.latex \begin{align*} x^{2} - 1 &= x^{2} - 1^{2}\ &= (x-1)(x+1)\end{align*}
.snakes
**```
.snakes
**Can also use:** `snake`
*Commands from our first code jam.*
**Subcommands:**
**`snakes about`**
*Show an embed with information about the event, its participants, and its winners.*
**`snakes antidote`**
*Antidote! Can you create the antivenom before the patient dies?*
**`snakes card [name]`**
*Create an interesting little card from a snake.*
**`snakes draw`**
*Draws a random snek using Perlin noise.*
**`snakes fact`**
*Gets a snake-related fact.*
**`snakes get [name]`**
*Fetches information about a snake from Wikipedia.*
**`snakes guess`**
*Snake identifying game.*
**`snakes hatch`**
*Hatches your personal snake.*
**`snakes movie`**
*Gets a random snake-related movie from TMDB.*
.snake antidote
.snake draw
.snake guess
.snake page 2
Subcommands:
snakes name [name]
Snakifies a username.
snakes quiz
Asks a snake-related question in the chat and validates the user's guess.
snakes sal
Play a game of Snakes and Ladders.
snakes snakify [message]
How would I talk if I were a snake?
snakes video [search]
Gets a YouTube video about snakes.
snakes zen
Gets a random quote from the Zen of Python, except as if spoken by a snake.
.snake sal
Snakes and Ladders: A new game is about to start!
Snakes and Ladders: The game is starting!
Players: @wind locust
Snakes and Ladders: A new round has started! Current board:
Current positions:
@wind locust: Tile 69
Use π² to roll the dice!
Snakes and Ladders: The game has been surrendered!
!gamers
@pastel yoke
Look at the computer keyboard, U and I were placed side by side. Thatβs how the alphabets should be arranged because my love will never cease to exist as long as itβs you and me.
:revolving_hearts:From shenanigansd:sparkling_heart:
@pastel yoke
If you were love's promise, then I would be time,
your constant companion till stars align.
And though we are mere mortals,
true love is divine,and my devotion eternal,
to my one valentine.
:heart:From ichard26:two_hearts:
.love @dusty silo @eager sorrel
Your input was invalid: This command can only be ran against members with the lovefest role! This role be can assigned by running !subscribe in #bot-commands.
Usage:```
.love <who> [whom]
@teal pecan
You are my everything, Valentine.
As a desert creature longs for water, my thirst for you can never be slaked.
In a ho-hum day dragging on, thoughts of you bring excitement, joy and pleasure.
As a child opens the birthday gift he most wanted,
I see everything I want in you.
You are my everything, Valentine.
:sparkling_heart:From hedyhli:gift_heart:
awwww a valentine π @royal sinew
Python#4329 β€ hedyhli scored 4%!
β
The chance of this relationship working out is really low. You can get it to work, but with high costs and no guarantee of working out. Do not sit back, spend as much time together as possible, talk a lot with each other to increase the chances of this relationship's survival.
ones who helped me at the times where it's most needed, I never forget π
.love @hexed ginkgo
Your input was invalid: This command can only be ran against members with the lovefest role! This role be can assigned by running !subscribe in #bot-commands.
Usage:```
.love <who> [whom]
Your input was invalid: This command can only be ran against members with the lovefest role! This role be can assigned by running !subscribe in #bot-commands.
Usage:```
.love <who> [whom]
.pickupline
.pickupline
.pickupline
.pickupline
.pickupline
.src pickupline
.snakes zen
Readability countss.
||do edits forward to mods as alerts...?||
@echo kestrel
When you kiss me, the world just melts away. When you hold me in your arms, I feel safe. Being in love with you has made me see how wonderful life can be. I love you.
:two_hearts:From hedyhli:heart:
King Arthur#6634 β€ hedyhli scored 42%!
β
The chance of this relationship working is not very high, but its not that low either. If you both want this relationship to work, and put time and effort into it, meaning spending time together, talking to each other etc., than nothing shall stand in your way.
Python#4329 β€ hedyhli scored 4%!
β
The chance of this relationship working out is really low. You can get it to work, but with high costs and no guarantee of working out. Do not sit back, spend as much time together as possible, talk a lot with each other to increase the chances of this relationship's survival.
.dddg
(2, 5, 11) - ~hedy
(8, 9, 11) - ~hedy
(0, 4, 6) - ~hedy
Flights everyone missed:
(1, 6, 10)
(2, 3, 7)
**```
.duckduckduckgoose
**Can also use:** `dddg`, `ddg`, `duckduckgoose`, `duckgoose`
*Start a new Duck Duck Duck Goose game.*
**Subcommands:**
**`duckduckduckgoose help`**
*Explain the rules of the game.*
.dddg help
Each card has 4 features
Color, Number, Hat, and Accessory
A valid flight
3 cards where each feature is either all the same or all different
Call "GOOSE"
if you think there are no more flights
+1 for each valid flight
+2 for a correct "GOOSE" call
-1 for any wrong answer
The first flight below is invalid: the first card has swords while the other two have no accessory. It would be valid if the first card was empty-handed, or one of the other two had paintbrushes.
The second flight is valid because there are no 2:1 splits; each feature is either all the same or all different.
Final scores:
~hedy: 1
.src dddg
.src love
cool
.ddg
(5, 7, 9) - thornily
(0, 3, 11) - thornily
Flights everyone missed:
(3, 6, 7)
(0, 7, 10)
(1, 5, 8)
(1, 2, 4)
Final scores:
thornily: 0
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
!help
Big Brother
!bigbrother
Monitors users by relaying their messages to the Big Brother watch channel.
!bigbrother unwatch <user> <reason>
Stop relaying messages by the given user.
!bigbrother watch <user> <reason>
Relay messages sent by the given user to the #big-brother channel.
Bot
!echo [channel] <text>
Repeat the given message in either a specified channel or the current channel.
!embed [channel] <text>
Send the input within an embed to either a specified channel or the current channel.
BotSource
!source [source_item]
Display information and a GitHub link to the source code of a command, tag, or cog.
Branding
!branding
Control the branding cog.
&help
AdventOfCode
&adventofcode
All of the Advent of Code commands.
BlurpleFormatter
&blurplify <code>
Format code in accordance with PEP 9001.
BotSource
&source [source_item]
Display information and a GitHub link to the source code of a command or cog.
CodeJams
&codejam
A Group of commands for managing Code Jams.
Help
&help [commands...]
Shows Command Help.
M-x help
&help
AdventOfCode
&adventofcode
All of the Advent of Code commands.
BlurpleFormatter
&blurplify <code>
Format code in accordance with PEP 9001.
BotSource
&source [source_item]
Display information and a GitHub link to the source code of a command or cog.
CodeJams
&codejam
A Group of commands for managing Code Jams.
Help
&help [commands...]
Shows Command Help.
&help
AdventOfCode
&adventofcode
All of the Advent of Code commands.
BlurpleFormatter
&blurplify <code>
Format code in accordance with PEP 9001.
BotSource
&source [source_item]
Display information and a GitHub link to the source code of a command or cog.
CodeJams
&codejam
A Group of commands for managing Code Jams.
Help
&help [commands...]
Shows Command Help.
&adventofcode
**```
&adventofcode
**Can also use:** `aoc`
*All of the Advent of Code commands.*
**Subcommands:**
**`adventofcode about`**
*Learn about Advent of Code*
**`adventofcode countdown`**
*Return time left until next day*
**`adventofcode dayandstar [maximum_scorers_day_and_star=10]`**
*Get a view that lets you filter the leaderboard by day and star*
**`adventofcode global`**
*Get a link to the global leaderboard*
**`adventofcode leaderboard [aoc_name]`**
*Get a snapshot of the PyDis private AoC leaderboard*
**`adventofcode link [aoc_name]`**
*Tie your Discord account with your Advent of Code name.*
**`adventofcode stats`**
*Get daily statistics for the Python Discord leaderboard*
**`adventofcode unlink`**
*Untie your Discord account from your Advent of Code name.*
&aoc about
Advent of Code (AoC) is a series of small programming puzzles for a variety of skill levels, run every year during the month of December.
They are self-contained and are just as appropriate for an expert who wants to stay sharp as they are for a beginner who is just learning to code. Each puzzle calls upon different skills and has two parts that build on a theme.
Sign up with one of these services:
GitHub
Google
Twitter
Reddit
For the global leaderboard, the first person to get a star first gets 100 points, the second person gets 99 points, and so on down to 1 point at 100th place.
For private leaderboards, the first person to get a star gets N points, where N is the number of people on the leaderboard. The second person to get the star gets N-1 points and so on and so forth.
Come join the Python Discord private leaderboard and compete against other people in the community! Get the join code using .aoc join and visit the private leaderboard page to join our leaderboard.
.aoc join
&adventofcode countdown
The Advent of Code event is not currently running. The next event will start <t:1733029200:R>.
&adventofcode
global
&adventofcode
status
**```
&adventofcode
**Can also use:** `aoc`
*All of the Advent of Code commands.*
**Subcommands:**
**`adventofcode about`**
*Learn about Advent of Code*
**`adventofcode countdown`**
*Return time left until next day*
**`adventofcode dayandstar [maximum_scorers_day_and_star=10]`**
*Get a view that lets you filter the leaderboard by day and star*
**`adventofcode global`**
*Get a link to the global leaderboard*
**`adventofcode leaderboard [aoc_name]`**
*Get a snapshot of the PyDis private AoC leaderboard*
**`adventofcode link [aoc_name]`**
*Tie your Discord account with your Advent of Code name.*
**`adventofcode stats`**
*Get daily statistics for the Python Discord leaderboard*
**`adventofcode unlink`**
*Untie your Discord account from your Advent of Code name.*

.help
Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.
AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.
AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.
.fool
Check out this April Fools' video by razer.
*** REFORMULATED FOR HUMAN CONSUMPTION - MEET RESPAWN BY RAZER: http://www.respawnbyrazer.com ***
Become the extension of the world's deadliest gaming hardware with Project Venom V2: http://rzr.to/venomv2
Formulated with Nano-mechanical bot technologies, achieve peak gaming performance and beyond. Be the machine.
Song Credit: ASCEND by Jay C...
Β» f-strings
Β» faq
Β» floats
Β» foo
Β» for-else
Β» fstring
Β» fstrings
Β» functions-are-objects
Β» global
Β» guilds
Β» identity
Β» if-name-main
Β» in-place
Β» indent
Β» inline
.help quiz
**```
.quiz <category> <questions>
**Can also use:** `trivia`, `triviaquiz`
*Start a quiz!
Questions for the quiz can be selected from the following categories:
- general: Test your general knowledge.
- retro: Questions related to retro gaming.
- math: General questions about mathematics ranging from grade 8 to grade 12.
- science: Put your understanding of science to the test!
- cs: A large variety of computer science questions.
- python: Trivia on our amazing language, Python!
- wikipedia: Guess the title of random wikipedia passages.
(More to come!)*
**Subcommands:**
**`quiz leaderboard`**
*View everyone's score for this bot session.*
**`quiz stop`**
*Stop a quiz game if its running in the channel.*
.quiz cs 10
Under what locale does making a string lowercase behave differently?
20s left!
locale?
10s left!
what format lol
No one answered correctly!
Let's move to the next question.
Remaining questions: 9
No one has made it onto the leaderboard yet.
What is computing capable of performing exaFLOPS called?
20s left!
what us computing?
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 8
No one has made it onto the leaderboard yet.
What does HTML stand for?
@royal sinew got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 7
Why is a DDoS attack different from a DoS attack?
(A. because the victim's server was indefinitely disrupted from the amount of traffic, B. because it also attacks the victim's confidentiality, C. because the attack had political purposes behind it, D. because the traffic flooding the victim originated from many different sources)
d
@royal sinew got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
Which of these languages is the oldest?
(Tcl, Smalltalk 80, Haskell, Standard ML, Java)
smalltalk 80
@royal sinew got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
Name a universal logic gate.
@royal sinew got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
What is the name for unicode codepoints that do not fit into 16 bits?
custom
Better luck next time...
Let's move to the next question.
Remaining questions: 3
In quantum computing, what is the full name of "qubit"?
20s left!
quantized bit
10s left!
quantised bit
No one answered correctly!
Let's move to the next question.
Remaining questions: 2
How many possible public IPv6 addresses are there (answer in 2^n)?
20s left!
2^64
10s left!
@royal sinew got the correct answer :tada: 50 points!
Let's move to the next question.
Remaining questions: 1
What is the most popular protocol (as of 2021) that handles communication between email servers?
20s left!
smtp
@royal sinew got the correct answer :tada: 75 points!
Remaining questions: 0
The round has ended.
@royal sinew Congratulations on winning this quiz game with a grand total of 525 points :tada:
.quiz science 10
Which vascular tissue transports water and minerals from the roots to the rest of a plant?
xylem
@royal sinew got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 9
In particle physics, the hypothetical isolated elementary particle with only one magnetic pole is termed as...
20s left!
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 8
What is the universal force discovered by Newton that causes objects with mass to attract each other called?
@royal sinew got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 7
How does one call the direct phase transition from gas to solid?
SMH
20s left!
deposition
@royal sinew got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 6
What is the intermolecular force caused by temporary and induced dipoles?
20s left!
10s left!
polar
Better luck next time...
Let's move to the next question.
Remaining questions: 5
wew
What is the process used to separate substances with different polarity in a mixture, using a stationary and mobile phase?
20s left!
spin thing
10s left!
Better luck next time...
Let's move to the next question.
Remaining questions: 4
What type of image is formed by a convex mirror?
20s left!
enlarged
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 3
Which particle is emitted during the beta decay of a radioactive element?
@royal sinew got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
The Heisenberg's Uncertainty Principle states that the position and ________ of a quantum object can't be both exactly measured at the same time.