#sir-lancebot-playground

1 messages · Page 217 of 1

frail stratus
#

l

wicked parrotBOT
#
You won!

The word was environmental.

frail stratus
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `e n t i r e` so far.

Guess the word by sending a message with a letter!

frail stratus
#

a

#

o

#

r

#

u

#

t

#

n

#

i

#

e

wicked parrotBOT
#
You won!

The word was entire.

frail stratus
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `s h o u l d e r` so far.

Guess the word by sending a message with a letter!

frail stratus
#

a

#

s

#

n

#

c

#

u

#

l

#

r

#

m

#

h

#

o

#

d

#

e

wicked parrotBOT
#
You won!

The word was shoulder.

frail stratus
#

.hangman 10

wicked parrotBOT
#
Hangman
You've guessed `e n _ _ _ o n m e n _` so far.

Guess the word by sending a message with a letter!

frail stratus
#

o

#

c

#

s

#

m

#

p

#

g

#

k

#

ex

#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `k e e p` so far.

Guess the word by sending a message with a letter!

frail stratus
#

e

#

n

#

k

#

p

wicked parrotBOT
#
You won!

The word was keep.

frail stratus
#

da

#

z

wicked parrotBOT
#
You lost.

The word was environment.

frail stratus
#

.hangman 10

wicked parrotBOT
#
Hangman
You've guessed `p a r t i c i p a n t` so far.

Guess the word by sending a message with a letter!

frail stratus
#

s

#

m

#

c

#

p

#

o

#

e

#

n

#

r

#

t

#

i

#

a

wicked parrotBOT
#
You won!

The word was participant.

pastel yoke
#

participant

#

.hangman 8

wicked parrotBOT
#
Hangman
You've guessed `_ r o _ e _ _ o r` so far.

Guess the word by sending a message with a letter!

pastel yoke
#

a

#

e

#

i

#

o

#

u

#

r

#

c

#

d

#

t

wicked parrotBOT
#
You lost.

The word was professor.

pastel yoke
#

ahh shucks

frail stratus
#

I thought protector

#

.hangman 7

wicked parrotBOT
#
Hangman
You've guessed `e v e r y t h i n g` so far.

Guess the word by sending a message with a letter!

frail stratus
#

o

#

n

#

m

#

s

#

a

#

v

#

d

pastel yoke
#

probably an i

frail stratus
#

e

#

r

#

y

#

t

#

h

#

i

#

g

wicked parrotBOT
#
You won!

The word was everything.

pastel yoke
#

no way

frail stratus
#

my bot needs some work

#

State is currently: ?v??????n?; Tried: {'s', 'd', 'a', 'm', 'o', 'n', 'v'}, failed: {'d', 's', 'a', 'o', 'm'}
2 possible words remain.
Some possible words are ['everything', 'everyhting'].
Attempt j.

#

no, attempting j would not be a good idea...

pastel yoke
#

lol

#

but can we really start a new game while one is in progress?

#

.hangman

wicked parrotBOT
#
Nuh-uh.

Looks like the bot timed out! You must send a letter within 60 seconds.

pastel yoke
#

a

#

.hangman

wicked parrotBOT
#
Nuh-uh.

Looks like the bot timed out! You must send a letter within 60 seconds.

pastel yoke
#

o

#

e

#

i

#

a

#

.hangman

wicked parrotBOT
#
I'm sorry Dave, I'm afraid I can't do that.

Looks like the bot timed out! You must send a letter within 60 seconds.

pastel yoke
#

d

#

f

#

o

#

huh

frail stratus
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `k n o w l e d g e` so far.

Guess the word by sending a message with a letter!

frail stratus
#

t

#

s

#

l

#

v

#

i

#

g

#

w

#

e

#

d

#

n

#

k

#

o

wicked parrotBOT
#
You won!

The word was knowledge.

marble schooner
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ a n _` so far.

Guess the word by sending a message with a letter!

marble schooner
#

e

#

a

#

u

#

m

#

n

#

g

#

i

#

d

wicked parrotBOT
#
You lost.

The word was plant.

marble schooner
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `p _ t _ _ _` so far.

Guess the word by sending a message with a letter!

marble schooner
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `a _ _ e e` so far.

Guess the word by sending a message with a letter!

marble schooner
#

a

#

e

#

f

#

p

#

t

#

d

#

l

#

d

#

u

wicked parrotBOT
#
You lost.

The word was agree.

#
You lost.

The word was python.

main scarab
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `d e v e l o p m e n t` so far.

Guess the word by sending a message with a letter!

main scarab
#

A

#

N

#

O

#

S

#

P

#

O

#

E

#

M

#

D

#

V

#

T

#

L

wicked parrotBOT
#
You won!

The word was development.

shut nebula
#

!string-formatting

rough gladeBOT
#

String Formatting Mini-Language
The String Formatting Language in Python is a powerful way to tailor the display of strings and other data structures. This string formatting mini language works for f-strings and .format().

Take a look at some of these examples!

>>> my_num = 2134234523
>>> print(f"{my_num:,}")
2,134,234,523

>>> my_smaller_num = -30.0532234
>>> print(f"{my_smaller_num:=09.2f}")
-00030.05

>>> my_str = "Center me!"
>>> print(f"{my_str:-^20}")
-----Center me!-----

>>> repr_str = "Spam \t Ham"
>>> print(f"{repr_str!r}")
'Spam \t Ham'

Full Specification & Resources
String Formatting Mini Language Specification
pyformat.info

idle pier
#

.tictactoe

wicked parrotBOT
#

It's time for the game! Let's begin.

#

It's a DRAW!

idle pier
#

.tictactoe

wicked parrotBOT
#

It's time for the game! Let's begin.

#

1️⃣ 2️⃣ 3️⃣
4️⃣ x_square 6️⃣
o_square 8️⃣ 9️⃣

#

@idle pier ran out of time. Canceling game.

bronze wyvern
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ a _` so far.

Guess the word by sending a message with a letter!

bronze wyvern
#

a

#

b

#

f

#

k

#

l

#

y

#

b

#

t

wicked parrotBOT
#
You lost.

The word was road.

bronze wyvern
#

.tictactoe

wicked parrotBOT
#

It's time for the game! Let's begin.

#

x_square o_square x_square
4️⃣ o_square x_square
o_square 8️⃣ x_square

#

:tada: @bronze wyvern won this game! :tada:

bronze wyvern
#

.tictactoe

wicked parrotBOT
#

It's time for the game! Let's begin.

#

x_square 2️⃣ o_square
o_square o_square 6️⃣
x_square x_square x_square

#

:tada: @bronze wyvern won this game! :tada:

deft kite
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ a _ a _ _ _ e` so far.

Guess the word by sending a message with a letter!

deft kite
#

e

#

s

#

r

#

t

#

a

#

b

#

c

#

d

wicked parrotBOT
#
You lost.

The word was magazine.

deft kite
#

bruh

#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ _ _ _ e` so far.

Guess the word by sending a message with a letter!

deft kite
#

e

#

s

#

r

#

t

#

d

#

zs

#

z

#

b

wicked parrotBOT
#
You lost.

The word was change.

deft kite
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `a r t i s t` so far.

Guess the word by sending a message with a letter!

deft kite
#

e

#

a

#

s

#

r

#

e

#

t

#

i

wicked parrotBOT
#
You won!

The word was artist.

deft kite
#

woooooooooo

austere coyote
#

.help

wicked parrotBOT
#
Command Help

Movie
.movies [genre] [amount=5]
Get random movies by specifying genre. Also support amount parameter, that define how much movies will be shown.

MyValenstate
.myvalenstate [name]
Find the vacation spot(s) with the most matching characters to the invoking user.

PickupLine
.pickupline
Gives you a random pickup line.

Ping
.ping
Ping the bot to see its latency and state.
.uptime
Get the current uptime of the bot.

austere coyote
#

.help savatar

#

.help avatar

idle pier
#

.help

wicked parrotBOT
#
Command Help

AdventOfCode
.adventofcode
All of the Advent of Code commands.

AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.

AvatarModify
.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.
.avatareasterify [colours...]
This "Easterifies" the user's avatar.
.mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.prideavatar [option=lgbt] [pixels=64]
This surrounds an avatar with a border of a specified LGBT flag.
.reverse <text>
Reverses the sent text.

austere coyote
#

.savatar 675937585624776717

wicked parrotBOT
#
Is this you or am I just really paranoid?
austere coyote
#

<_<

idle pier
#

.reverse RACECAR

wicked parrotBOT
#

RACECAR

austere coyote
#

.reverse lIfE

wicked parrotBOT
#

EfIl

idle pier
#

.adventofcode

wicked parrotBOT
#
Command Help

**```
.adventofcode

**Can also use:** `aoc`

*All of the Advent of Code commands.*

**Subcommands:**
**`about `**
*Learn about Advent of Code*
**`countdown `**
*Return time left until next day*
**`join `**
*Learn how to join the leaderboard (via DM)*
**`stats `**
*Get daily statistics for the Python Discord leaderboard*
**`subscribe `**
*Notifications for new days*
idle pier
#

.adventofcode stats

#

stats

#

.stats

#

??

#

.reverse

wicked parrotBOT
#
Your reversed avatar.

Here is your reversed avatar. I think it is a spitting image of you.

deft kite
#

.pickupline

wicked parrotBOT
#
:cheese: Your pickup line :cheese:

Did you swallow magnets? Cause you're attractive.

deft kite
#

bruh

#

how did it know

night coral
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `a _ _ a _ s` so far.

Guess the word by sending a message with a letter!

night coral
#

e

#

a

#

r

#

i

#

m

#

f

#

s

#

s

#

g

wicked parrotBOT
#
You lost.

The word was always.

night coral
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ i _ e` so far.

Guess the word by sending a message with a letter!

night coral
#

a

#

e

#

t

#

r

#

i

#

o

#

l

#

d

wicked parrotBOT
#
You lost.

The word was size.

night coral
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `s m i l e` so far.

Guess the word by sending a message with a letter!

night coral
#

e

#

i

#

a

#

s

#

c

#

m

#

smile

#

l

wicked parrotBOT
#
You won!

The word was smile.

lean sleet
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `s k i l l` so far.

Guess the word by sending a message with a letter!

lean sleet
#

s

#

m

#

'a

#

a

#

e

#

m

#

i

#

l

#

p

#

t

#

k

wicked parrotBOT
#
You won!

The word was skill.

lean sleet
#

.src hangman

wicked parrotBOT
#
Command: hangman

Play hangman against the bot, where you have to guess the word it has provided!

Source Code
idle pier
#

.tictactoe

wicked parrotBOT
#

It's time for the game! Let's begin.

#

It's a DRAW!

idle pier
#

.tictactoe

wicked parrotBOT
#

It's time for the game! Let's begin.

#

o_square o_square o_square
x_square x_square o_square
7️⃣ x_square x_square

#

:tada: AI won this game! :tada:

idle pier
#

._.

cinder maple
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `e n t e r` so far.

Guess the word by sending a message with a letter!

cinder maple
#

e

#

a

#

i

#

o

#

u

#

l

#

n

#

t

#

r

wicked parrotBOT
#
You won!

The word was enter.

lean sleet
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `r e a l l y` so far.

Guess the word by sending a message with a letter!

lean sleet
#

a

#

e

#

p

#

l

#

y

#

r

wicked parrotBOT
#
You won!

The word was really.

lean sleet
#

oof

#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `p a r t i c u l a r` so far.

Guess the word by sending a message with a letter!

lean sleet
#

a

#

e

#

l

#

n

#

s

#

p

#

r

#

i

#

u

#

t

#

c

wicked parrotBOT
#
You won!

The word was particular.

lean sleet
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `s _ _ _ e r` so far.

Guess the word by sending a message with a letter!

lean sleet
#

e

#

r

#

p

#

s

#

l

#

n

#

t

#

w

#

i

wicked parrotBOT
#
You lost.

The word was suffer.

lean sleet
#

bruh

#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `s t a t e m e n t` so far.

Guess the word by sending a message with a letter!

lean sleet
#

a

#

e

#

m

#

r

#

l

#

s

#

p

#

g

#

c

#

n

#

t

wicked parrotBOT
#
You won!

The word was statement.

lean sleet
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ i _ _` so far.

Guess the word by sending a message with a letter!

lean sleet
#

a

#

e

#

i

#

l

#

s

#

n

#

m

wicked parrotBOT
#
You lost.

The word was city.

daring swift
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ o a _ _` so far.

Guess the word by sending a message with a letter!

daring swift
#

k

#

a

#

i

#

o

#

l

#

m

#

s

#

e

wicked parrotBOT
#
You lost.

The word was coach.

swift sentinel
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `a b i l i t y` so far.

Guess the word by sending a message with a letter!

swift sentinel
#

A

#

e

#

p

#

o

#

i

#

d

#

b

#

l

#

t

#

y

wicked parrotBOT
#
You won!

The word was ability.

crimson forge
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `f _ _ _ r e` so far.

Guess the word by sending a message with a letter!

crimson forge
#

A

#

B

#

C

#

D

#

E

#

F

#

G

#

R

#

E

#

G

#

B

#

X

wicked parrotBOT
#
You lost.

The word was future.

crimson forge
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ o _ _ _` so far.

Guess the word by sending a message with a letter!

crimson forge
#

P

#

Y

#

T

#

H

#

O

#

N

#

G

wicked parrotBOT
#
You lost.

The word was focus.

#
Hangman
You've guessed `_ a _ c _` so far.

Guess the word by sending a message with a letter!

#
You lost.

The word was watch.

#
Hangman
You've guessed `_ _ o u g _ _` so far.

Guess the word by sending a message with a letter!

#
You lost.

The word was thought.

#
Hangman
You've guessed `l i _ e` so far.

Guess the word by sending a message with a letter!

#
You lost.

The word was live.

#
Hangman
You've guessed `u n i t` so far.

Guess the word by sending a message with a letter!

#
You won!

The word was unit.

#
Hangman
You've guessed `v a l u e` so far.

Guess the word by sending a message with a letter!

#
You won!

The word was value.

#
Hangman
You've guessed `_ _ u _ _ _` so far.

Guess the word by sending a message with a letter!

#
You lost.

The word was church.

#
Hangman
You've guessed `_ i _ _ _ e` so far.

Guess the word by sending a message with a letter!

#
You lost.

The word was middle.

#
Hangman
You've guessed `_ o _ _ a _ _` so far.

Guess the word by sending a message with a letter!

#
You lost.

The word was forward.

twin karma
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ o _ e` so far.

Guess the word by sending a message with a letter!

twin karma
#

e

#

k

#

i

#

l

#

a

#

r

#

o

#

m

wicked parrotBOT
#
You lost.

The word was note.

twin karma
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ e e _` so far.

Guess the word by sending a message with a letter!

twin karma
#

e

#

a

#

l

#

t

#

d

#

w

#

m

wicked parrotBOT
#
You lost.

The word was keep.

twin karma
#

.hangman

wicked parrotBOT
#
Naw.

Looks like the bot timed out! You must send a letter within 60 seconds.

twin karma
#

e

#

a

#

p

#

o

#

t

#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `a _ _ u e` so far.

Guess the word by sending a message with a letter!

twin karma
#

e

#

a

#

l

#

o

#

u

#

l

#

i

#

s

#

m

#

p

wicked parrotBOT
#
You lost.

The word was argue.

twin karma
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ s _` so far.

Guess the word by sending a message with a letter!

twin karma
#

e

#

s

#

a

#

o

#

y

#

p

#

t

wicked parrotBOT
#
You lost.

The word was wish.

twin karma
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ e _ g h _` so far.

Guess the word by sending a message with a letter!

twin karma
#

e

#

a

#

h

#

y

#

o

#

c

#

l

#

g

#

b

wicked parrotBOT
#
You lost.

The word was weight.

twin karma
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `a r o _ n _` so far.

Guess the word by sending a message with a letter!

twin karma
#

e

#

a

#

r

#

h

#

c

#

o

#

b

#

i

#

n

#

m

wicked parrotBOT
#
You lost.

The word was around.

twin karma
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ _ e r` so far.

Guess the word by sending a message with a letter!

twin karma
#

e

#

a

#

i

#

r

#

g

#

b

#

s

#

u

wicked parrotBOT
#
You lost.

The word was power.

twin karma
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ h o _ e` so far.

Guess the word by sending a message with a letter!

twin karma
#

e

#

o

#

r

#

h

#

s

#

c

#

w

#

v

#

t

wicked parrotBOT
#
You lost.

The word was phone.

twin karma
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `h o _ _` so far.

Guess the word by sending a message with a letter!

twin karma
#

e

#

a

#

o

#

h

#

p

#

l

#

m

#

h

#

rr

#

y

wicked parrotBOT
#
You lost.

The word was hour.

twin karma
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `e v e r y` so far.

Guess the word by sending a message with a letter!

twin karma
#

e

#

l

#

n

#

r

#

y

#

v

wicked parrotBOT
#
You won!

The word was every.

pastel edge
#

.HANGMAN

#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ e i _ _ _` so far.

Guess the word by sending a message with a letter!

pastel edge
#

E

#

S

#

A

#

I

#

U

#

O

#

Y

#

R

wicked parrotBOT
#
You lost.

The word was weight.

pastel edge
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ a _ _ _ a _ e` so far.

Guess the word by sending a message with a letter!

pastel edge
#

E

#

S

#

R

#

T

#

A

#

H

#

C

#

I

wicked parrotBOT
#
You lost.

The word was language.

azure wedge
#

.help

wicked parrotBOT
#
Command Help

AdventOfCode
.adventofcode
All of the Advent of Code commands.

AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.

AvatarModify
.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.
.avatareasterify [colours...]
This "Easterifies" the user's avatar.
.mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.prideavatar [option=lgbt] [pixels=64]
This surrounds an avatar with a border of a specified LGBT flag.
.reverse <text>
Reverses the sent text.

azure wedge
#

.avatar

#

.avatar_modify

wicked parrotBOT
#
Command Help

**```
.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:**
**`8bitify `**
*Pixelates your avatar and changes the palette to an 8bit one.*
**`avatareasterify [colours...]`**
*This "Easterifies" the user's avatar.*
**`mosaic [squares=16]`**
*Splits your avatar into x squares, randomizes them and stitches them back into a new image!*
**`prideavatar [option=lgbt] [pixels=64]`**
*This surrounds an avatar with a border of a specified LGBT flag.*
**`reverse <text>`**
*Reverses the sent text.*
**`spookyavatar `**
*Spookify an user's avatar.*
azure wedge
#

.reverse

wicked parrotBOT
#
Your reversed avatar.

Here is your reversed avatar. I think it is a spitting image of you.

azure wedge
#

.reverse

wicked parrotBOT
#
Your reversed avatar.

Here is your reversed avatar. I think it is a spitting image of you.

azure wedge
#

.src

wicked parrotBOT
azure wedge
#

oh wait

#

cache

#

.8bitify

wicked parrotBOT
#
Your 8-bit avatar

Here is your avatar. I think it looks all cool and 'retro'.

rough gladeBOT
#
Missing required argument

content

azure wedge
#

!remind 5M cache

rough gladeBOT
#
Fat chance.

Sorry, you can't do that here!

azure wedge
#

.mosaic

wicked parrotBOT
#
Your mosaic avatar

Here is your avatar. I think it looks a bit puzzling
Made with 16 squares.

azure wedge
#

.mosaic

wicked parrotBOT
#
Your mosaic avatar

Here is your avatar. I think it looks a bit puzzling
Made with 16 squares.

pastel edge
#

.mosaic

wicked parrotBOT
#
Your mosaic avatar

Here is your avatar. I think it looks a bit puzzling
Made with 16 squares.

pastel edge
#

Wut

#

.8bitify

wicked parrotBOT
#
Your 8-bit avatar

Here is your avatar. I think it looks all cool and 'retro'.

pastel edge
#

.mosaic

wicked parrotBOT
#
Your mosaic avatar

Here is your avatar. I think it looks a bit puzzling
Made with 16 squares.

wicked parrotBOT
#
Your 8-bit avatar

Here is your avatar. I think it looks all cool and 'retro'.

#
Is this you or am I just really paranoid?
#
Your mosaic avatar

Here is your avatar. I think it looks a bit puzzling
Made with 36 squares.

errant anchor
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `a g a i n s t` so far.

Guess the word by sending a message with a letter!

errant anchor
#

A

#

E

#

L

#

K

#

J

#

N

#

I

#

S

#

T

#

G

wicked parrotBOT
#
You won!

The word was against.

errant anchor
#

.source

wicked parrotBOT
pastel edge
#

.spookyavatar

wicked parrotBOT
#
Is this you or am I just really paranoid?
pastel edge
#

Cool

#

.spookyavatar

wicked parrotBOT
#
Is this you or am I just really paranoid?
pastel edge
#

.spookyavatar

wicked parrotBOT
#
Is this you or am I just really paranoid?
main scarab
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `t r i p` so far.

Guess the word by sending a message with a letter!

main scarab
#

a

#

p

#

o

#

r

#

e

#

m

#

n

#

t

#

i

wicked parrotBOT
#
You won!

The word was trip.

frail stratus
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `s e v e r a l` so far.

Guess the word by sending a message with a letter!

frail stratus
#

a

#

l

#

e

#

g

#

n

#

s

#

r

#

v

wicked parrotBOT
#
You won!

The word was several.

frail stratus
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ i _ e` so far.

Guess the word by sending a message with a letter!

frail stratus
#

e

#

a

#

o

#

i

#

t

#

l

#

s

#

n

wicked parrotBOT
#
You lost.

The word was five.

frail stratus
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `s u b j e c t` so far.

Guess the word by sending a message with a letter!

frail stratus
#

a

#

r

#

s

#

t

#

u

#

j

#

c

#

e

#

b

wicked parrotBOT
#
You won!

The word was subject.

frail stratus
#

.hangman 11

wicked parrotBOT
#
Hangman
You've guessed `r e s p o n s i b i l i t y` so far.

Guess the word by sending a message with a letter!

frail stratus
#

l

#

b

#

a

#

n

#

i

#

s

#

p

#

r

#

e

#

o

#

t

#

y

wicked parrotBOT
#
You won!

The word was responsibility.

frail stratus
#

.hangman 11

wicked parrotBOT
#
Hangman
You've guessed `p r o f e s s i o n a l` so far.

Guess the word by sending a message with a letter!

frail stratus
#

c

#

l

#

p

#

f

#

a

#

s

#

n

#

e

#

o

#

r

#

i

wicked parrotBOT
#
You won!

The word was professional.

frail stratus
#

.hangman 8

wicked parrotBOT
#
Hangman
You've guessed `f i n a n c i a l` so far.

Guess the word by sending a message with a letter!

frail stratus
#

t

#

s

#

l

#

c

#

f

#

n

#

a

#

i

wicked parrotBOT
#
You won!

The word was financial.

frail stratus
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `t e c h n o l o g y` so far.

Guess the word by sending a message with a letter!

frail stratus
#

o

#

h

#

y

#

t

#

n

#

g

#

l

#

c

#

e

wicked parrotBOT
#
You won!

The word was technology.

frail stratus
#

.hangman 8

wicked parrotBOT
#
Hangman
You've guessed `e n v i r o n m e n t` so far.

Guess the word by sending a message with a letter!

frail stratus
#

s

#

m

#

v

#

p

#

o

#

e

#

n

#

i

#

r

#

t

wicked parrotBOT
#
You won!

The word was environment.

twilit nimbus
#

.hangman 2

wicked parrotBOT
#
Hangman
You've guessed `_ a t u _ e` so far.

Guess the word by sending a message with a letter!

twilit nimbus
#

a

#

e

#

i

#

o

#

p

#

i

#

c

#

t

#

w

#

u

#

s

wicked parrotBOT
#
You lost.

The word was nature.

twilit nimbus
#

.hangman 8

wicked parrotBOT
#
Hangman
You've guessed `p a r a m e t e r s` so far.

Guess the word by sending a message with a letter!

twilit nimbus
#

a

#

e

#

i

#

o

#

p

#

t

#

r

#

parameters

#

m

#

s

wicked parrotBOT
#
You won!

The word was parameters.

heady kindle
#

.hangman 4

wicked parrotBOT
#
Hangman
You've guessed `c _ e a _` so far.

Guess the word by sending a message with a letter!

heady kindle
#

a

#

k

#

c

#

b

#

e

#

u

#

o

#

p

#

h

wicked parrotBOT
#
You lost.

The word was clear.

heady kindle
#

ah

main scarab
#

.spookyavatar

wicked parrotBOT
#
Is this you or am I just really paranoid?
autumn oriole
#

.hangman

wicked parrotBOT
#
Noooooo!!

Looks like the bot timed out! You must send a letter within 60 seconds.

autumn oriole
#

I

#

L

#

I'm not doing this

twin path
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ e _ _` so far.

Guess the word by sending a message with a letter!

twin path
#

a

#

3

#

e

#

o

#

u

#

h

#

q

wicked parrotBOT
#
You lost.

The word was yield.

twin path
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ s i t i _ _` so far.

Guess the word by sending a message with a letter!

twin path
#

a

#

e

#

i

#

s

#

t

#

k

#

g

#

u

#

d

wicked parrotBOT
#
You lost.

The word was position.

twin path
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `b a c k` so far.

Guess the word by sending a message with a letter!

twin path
#

a

#

m

#

e

#

b

#

s

#

b

#

r

#

c

#

k

wicked parrotBOT
#
You won!

The word was back.

twin path
#

😄

wicked parrotBOT
worldly vigil
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ e _` so far.

Guess the word by sending a message with a letter!

worldly vigil
#

p

#

a

#

l

#

e

#

q

#

s

#

g

wicked parrotBOT
#
You lost.

The word was then.

worldly vigil
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ _ _` so far.

Guess the word by sending a message with a letter!

worldly vigil
#

t

#

h

#

q

#

p

#

r

#

a

wicked parrotBOT
#
You lost.

The word was five.

worldly vigil
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ _ _` so far.

Guess the word by sending a message with a letter!

worldly vigil
#

f

#

o

#

u

#

r

#

a

#

q

wicked parrotBOT
#
You lost.

The word was sign.

main scarab
#

.reverse a man, a plan, panama

wicked parrotBOT
#

amanap ,nalp a ,nam a

main scarab
#

.reverse amanaplanpanama

wicked parrotBOT
#

amanapnalpanama

main scarab
#

.reverse aman aplan panama

wicked parrotBOT
#

amanap nalpa nama

main scarab
#

.reverse I’d just like to interject for a moment. What you’re refering to as Linux, is in fact, GNU/Linux, or as I’ve recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX.

Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called Linux, and many of its users are not aware that it is basically the GNU system, developed by the GNU Project.

There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine’s resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called Linux distributions are really distributions of GNU/Linux!

wicked parrotBOT
#

!xuniL/UNG fo snoitubirtsid yllaer era snoitubirtsid xuniL dellac-os eht llA .xuniL/UNG ro ,dedda xuniL htiw UNG yllacisab si metsys elohw eht :metsys gnitarepo UNG eht htiw noitanibmoc ni desu yllamron si xuniL .metsys gnitarepo etelpmoc a fo txetnoc eht ni noitcnuf ylno nac ti ;flesti yb sselesu tub ,metsys gnitarepo na fo trap laitnesse na si lenrek ehT .nur uoy taht smargorp rehto eht ot secruoser s’enihcam eht setacolla taht metsys eht ni margorp eht :lenrek eht si xuniL .esu yeht metsys eht fo trap a tsuj si ti tub ,ti gnisu era elpoep eseht dna ,xuniL a si yllaer erehT

.tcejorP UNG eht yb depoleved ,metsys UNG eht yllacisab si ti taht erawa ton era sresu sti fo ynam dna ,xuniL dellac netfo si yadot desu ylediw si hcihw UNG fo noisrev eht ,stneve fo nrut railucep a hguorhT .ti gnizilaer tuohtiw ,yad yreve metsys UNG eht fo noisrev deifidom a nur sresu retupmoc ynaM

.XISOP yb denifed sa SO lluf a gnisirpmoc stnenopmoc metsys lativ dna seitilitu llehs ,sbileroc UNG eht yb lufesu edam metsys UNG gninoitcnuf ylluf a fo tnenopmoc eerf rehtona rehtar tub ,flesti otnu metsys gnitarepo na ton si xuniL .xuniL sulp UNG ,ti gnillac ot nekat yltnecer ev’I sa ro ,xuniL/UNG ,tcaf ni si ,xuniL sa ot gnirefer er’uoy tahW .tnemom a rof tcejretni ot ekil tsuj d’I

main scarab
#

.uwu
!xuniL/UNG fo snoitubirtsid yllaer era snoitubirtsid xuniL dellac-os eht llA .xuniL/UNG ro ,dedda xuniL htiw UNG yllacisab si metsys elohw eht :metsys gnitarepo UNG eht htiw noitanibmoc ni desu yllamron si xuniL .metsys gnitarepo etelpmoc a fo txetnoc eht ni noitcnuf ylno nac ti ;flesti yb sselesu tub ,metsys gnitarepo na fo trap laitnesse na si lenrek ehT .nur uoy taht smargorp rehto eht ot secruoser s’enihcam eht setacolla taht metsys eht ni margorp eht :lenrek eht si xuniL .esu yeht metsys eht fo trap a tsuj si ti tub ,ti gnisu era elpoep eseht dna ,xuniL a si yllaer erehT

.tcejorP UNG eht yb depoleved ,metsys UNG eht yllacisab si ti taht erawa ton era sresu sti fo ynam dna ,xuniL dellac netfo si yadot desu ylediw si hcihw UNG fo noisrev eht ,stneve fo nrut railucep a hguorhT .ti gnizilaer tuohtiw ,yad yreve metsys UNG eht fo noisrev deifidom a nur sresu retupmoc ynaM

.XISOP yb denifed sa SO lluf a gnisirpmoc stnenopmoc metsys lativ dna seitilitu llehs ,sbileroc UNG eht yb lufesu edam metsys UNG gninoitcnuf ylluf a fo tnenopmoc eerf rehtona rehtar tub ,flesti otnu metsys gnitarepo na ton si xuniL .xuniL sulp UNG ,ti gnillac ot nekat yltnecer ev’I sa ro ,xuniL/UNG ,tcaf ni si ,xuniL sa ot gnirefer er’uoy tahW .tnemom a rof tcejretni ot ekil tsuj d’I

wicked parrotBOT
#

!xuniW/UNG fo snoitubiwtsid ywwaew ewa snoitubiwtsid xuniW dewwac-os eht wwA .xuniW/UNG wo ,dedda xuniW htiw UNG ywwacisab si metsys ewohw eht :metsys gnitawepo UNG eht htiw noitanibmoc ni desu ywwamwon si xuniW .metsys gnitawepo etewpmoc a fo txetnoc eht ni noitcnuf ywno nac ti ;fwesti yb ssewesu tub ,metsys gnitawepo na fo twap waitnesse na si wenwek ehT .nuw uoy taht smawgowp wehto eht ot secwuosew s’enihcam eht setacowwa taht metsys eht ni mawgowp eht :wenwek eht si xuniW .esu yeht metsys eht fo twap a tsuj si ti tub ,ti gnisu ewa ewpoep eseht dna ,xuniW a si ywwaew ewehT

.tcejowP UNG eht yb depoweved ,metsys UNG eht ywwacisab si ti taht ewawa ton ewa swesu sti fo ynam dna ,xuniW dewwac netfo si yadot desu ywediw si hcihw UNG fo noiswev eht ,stneve fo nwut waiwucep a hguowhT .ti gniziwaew tuohtiw ,yad yweve metsys UNG eht fo noiswev deifwidom a nuw swesu wetupmoc ynaM

.XISOP yb denifed sa SO wwuf a gnisiwpmoc stnenopmoc metsys wativ dna seitiwitu wwehs ,sbiwewoc UNG eht yb wufesu edam metsys UNG gninoitcnuf ywwuf a fo tnenopmoc eewf wehtona wehtaw tub ,fwesti otnu metsys gnitawepo na ton si xuniW .xuniW suwp UNG ,ti gniwwac ot nekat ywtnecew ev’I sa wo ,xuniW/UNG ,tcaf ni si ,xuniW sa ot gniwefew ew’uoy tahW .tnemom a wof tcejwetni ot ekiw tsuj d’I

main scarab
#

.catify
!xuniW/UNG fo snoitubiwtsid ywwaew ewa snoitubiwtsid xuniW dewwac-os eht wwA .xuniW/UNG wo ,dedda xuniW htiw UNG ywwacisab si metsys ewohw eht :metsys gnitawepo UNG eht htiw noitanibmoc ni desu ywwamwon si xuniW .metsys gnitawepo etewpmoc a fo txetnoc eht ni noitcnuf ywno nac ti ;fwesti yb ssewesu tub ,metsys gnitawepo na fo twap waitnesse na si wenwek ehT .nuw uoy taht smawgowp wehto eht ot secwuosew s’enihcam eht setacowwa taht metsys eht ni mawgowp eht :wenwek eht si xuniW .esu yeht metsys eht fo twap a tsuj si ti tub ,ti gnisu ewa ewpoep eseht dna ,xuniW a si ywwaew ewehT

.tcejowP UNG eht yb depoweved ,metsys UNG eht ywwacisab si ti taht ewawa ton ewa swesu sti fo ynam dna ,xuniW dewwac netfo si yadot desu ywediw si hcihw UNG fo noiswev eht ,stneve fo nwut waiwucep a hguowhT .ti gniziwaew tuohtiw ,yad yweve metsys UNG eht fo noiswev deifwidom a nuw swesu wetupmoc ynaM

.XISOP yb denifed sa SO wwuf a gnisiwpmoc stnenopmoc metsys wativ dna seitiwitu wwehs ,sbiwewoc UNG eht yb wufesu edam metsys UNG gninoitcnuf ywwuf a fo tnenopmoc eewf wehtona wehtaw tub ,fwesti otnu metsys gnitawepo na ton si xuniW .xuniW suwp UNG ,ti gniwwac ot nekat ywtnecew ev’I sa wo ,xuniW/UNG ,tcaf ni si ,xuniW sa ot gniwefew ew’uoy tahW .tnemom a wof tcejwetni ot ekiw tsuj d’I

wicked parrotBOT
#

!xuniW/UNG fo snoitubiwtsid ᕂᘏᗢ ywwaew ewa ᘡᘏᗢ ᕂᘏᗢ snoitubiwtsid xuniW dewwac-os ᓂᘏᗢ eht wwA .xuniW/UNG wo ,dedda xuniW htiw UNG 🐈 ywwacisab si metsys ewohw eht :metsys gnitawepo UNG eht htiw noitanibmoc ni ᘣᘏᗢ desu ywwamwon si ᓚᘏᗢ xuniW .metsys gnitawepo etewpmoc a fo txetnoc ᕦᘏᗢ eht ni ᓇᘏᗢ noitcnuf ywno ᓇᘏᗢ nac ti ;fwesti yb ssewesu tub ,metsys gnitawepo na fo twap waitnesse na ᕂᘏᗢ si wenwek ehT .nuw uoy taht smawgowp wehto eht ot secwuosew s’enihcam eht ᓇᘏᗢ setacowwa taht metsys eht ᓇᘏᗢ ni mawgowp eht ᕦᘏᗢ :wenwek ᘡᘏᗢ eht si ᓚᘏᗢ xuniW .esu yeht metsys eht ᘡᘏᗢ fo ᘣᘏᗢ twap a tsuj ᕦᘏᗢ si ti ᓕᘏᗢ ᘣᘏᗢ tub ,ti gnisu ᕦᘏᗢ ewa ewpoep eseht ᓇᘏᗢ dna ,xuniW ᘡᘏᗢ a ᓕᘏᗢ si ywwaew ewehT .tcejowP UNG eht ᓕᘏᗢ yb depoweved ,metsys ᓇᘏᗢ UNG eht ywwacisab si ti ᓚᘏᗢ ᓚᘏᗢ taht ewawa ᓕᘏᗢ ton ᓂᘏᗢ ewa ᘡᘏᗢ ᕦᘏᗢ ᘡᘏᗢ swesu sti fo ᘣᘏᗢ ynam dna ,xuniW ᕂᘏᗢ dewwac netfo si yadot 🐈 desu ywediw ᕦᘏᗢ si hcihw UNG ᕦᘏᗢ fo noiswev ᓇᘏᗢ eht ᓚᘏᗢ ᕂᘏᗢ ,stneve fo ᕦᘏᗢ nwut waiwucep a hguowhT .ti gniziwaew tuohtiw ,yad ᘡᘏᗢ yweve metsys UNG eht ᓚᘏᗢ fo noiswev deifwidom a nuw swesu wetupmoc ynaM ᕦᘏᗢ .XISOP 🐈 yb denifed sa ᓕᘏᗢ ᘣᘏᗢ SO ᕦᘏᗢ wwuf a gnisiwpmoc stnenopmoc metsys wativ dna seitiwitu wwehs ,sbiwewoc UNG eht yb wufesu edam ᓕᘏᗢ metsys ᓂᘏᗢ UNG ᓇᘏᗢ gninoitcnuf ywwuf a ᘡᘏᗢ fo ᘡᘏᗢ tnenopmoc eewf wehtona wehtaw ᘡᘏᗢ ᘣᘏᗢ tub ᓂᘏᗢ ,fwesti otnu ᕦᘏᗢ metsys gnitawepo ᘡᘏᗢ na ton ᓇᘏᗢ si ᕂᘏᗢ xuniW .xuniW suwp UNG ,ti ᓇᘏᗢ gniwwac ot nekat ywtnecew ev’I sa wo ᓕᘏᗢ ,xuniW/UNG ,tcaf ni si ,xuniW ᓚᘏᗢ sa ᘣᘏᗢ ot gniwefew ew’uoy tahW .tnemom a wof tcejwetni ᘡᘏᗢ ᓇᘏᗢ 🐈 ot ekiw ᘣᘏᗢ tsuj d’I

main scarab
#

.catify I’d just like to interject for a moment. What you’re refering to as Linux, is in fact, GNU/Linux, or as I’ve recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX.

Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called Linux, and many of its users are not aware that it is basically the GNU system, developed by the GNU Project.

There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine’s resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called Linux distributions are really distributions of GNU/Linux!

wicked parrotBOT
#

I’d just ᘡᘏᗢ like to ᕦᘏᗢ interject ᘡᘏᗢ for a moment. What you’re refering to as Linux, is in fact, GNU/Linux, or ᓚᘏᗢ as I’ve recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another ᓚᘏᗢ ᕂᘏᗢ free component of a fully functioning GNU ᓇᘏᗢ system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by ᘣᘏᗢ POSIX. ᓚᘏᗢ Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called Linux, ᓚᘏᗢ and many of its users are not aware that it is basically the GNU system, developed by the GNU Project. There ᓚᘏᗢ really ᓇᘏᗢ is a Linux, and these ᓇᘏᗢ people are using it, but it is just a part of the system they use. Linux is the kernel: the program ᓂᘏᗢ ᘡᘏᗢ in the system that alloᕦᘏᗢes the machine’s resources to the other programs that you ᓚᘏᗢ run. The kernel is ᕦᘏᗢ an essential part of an 🐈 operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally 🐈 used in combination ᓇᘏᗢ with the GNU operating system: the whole system is basically GNU with Linux added, ᓇᘏᗢ or GNU/Linux. All the so-called Linux distributions ᘣᘏᗢ are really distributions of GNU/Linux!

main scarab
#

.uwu
I’d just ᘡᘏᗢ like to ᕦᘏᗢ interject ᘡᘏᗢ for a moment. What you’re refering to as Linux, is in fact, GNU/Linux, or ᓚᘏᗢ as I’ve recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another ᓚᘏᗢ ᕂᘏᗢ free component of a fully functioning GNU ᓇᘏᗢ system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by ᘣᘏᗢ POSIX. ᓚᘏᗢ Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called Linux, ᓚᘏᗢ and many of its users are not aware that it is basically the GNU system, developed by the GNU Project. There ᓚᘏᗢ really ᓇᘏᗢ is a Linux, and these ᓇᘏᗢ people are using it, but it is just a part of the system they use. Linux is the kernel: the program ᓂᘏᗢ ᘡᘏᗢ in the system that alloᕦᘏᗢes the machine’s resources to the other programs that you ᓚᘏᗢ run. The kernel is ᕦᘏᗢ an essential part of an cat2 operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally cat2 used in combination ᓇᘏᗢ with the GNU operating system: the whole system is basically GNU with Linux added, ᓇᘏᗢ or GNU/Linux. All the so-called Linux distributions ᘣᘏᗢ are really distributions of GNU/Linux!

wicked parrotBOT
#

I’d just ᘡᘏᗢ wike to ᕦᘏᗢ intewject ᘡᘏᗢ fow a moment. What yuw’we wefewing to as Winux, is in fact, GNU/Winux, ow ᓚᘏᗢ as I’ve wecentwy taken to cawwing it, GNU pwus Winux. Winux is not an opewating system unto itsewf, but wadew anodew ᓚᘏᗢ ᕂᘏᗢ fwee component of a fuwwy functioning GNU ᓇᘏᗢ system made usefuw by de GNU cowewibs, sheww utiwities and vitaw system components compwising a fuww OS as defwined by ᘣᘏᗢ POSIX. ᓚᘏᗢ Many computew usews wun a modifwied vewsion of de GNU system evewy day, wifout weawizing it. Dwough a pecuwiaw tuwn of events, de vewsion of GNU which is widewy used today is often cawwed Winux, ᓚᘏᗢ and many of its usews awe not awawe dat it is basicawwy de GNU system, devewoped by de GNU Pwoject. Dewe ᓚᘏᗢ weawwy ᓇᘏᗢ is a Winux, and dese ᓇᘏᗢ peopwe awe using it, but it is just a pawt of de system dey use. Winux is de kewnew: de pwogwam ᓂᘏᗢ ᘡᘏᗢ in de system dat awwoᕦᘏᗢes de machine’s wesouwces to de odew pwogwams dat yuw ᓚᘏᗢ wun. De kewnew is ᕦᘏᗢ an essentiaw pawt of an cat2 opewating system, but usewess by itsewf; it can onwy function in de context of a compwete opewating system. Winux is nowmawwy cat2 used in combination ᓇᘏᗢ wid de GNU opewating system: de whowe system is basicawwy GNU wid Winux added, ᓇᘏᗢ ow GNU/Winux. Aww de so-cawwed Winux distwibutions ᘣᘏᗢ awe weawwy distwibutions of GNU/Winux!

main scarab
#

.reverse
I’d just ᘡᘏᗢ wike to ᕦᘏᗢ intewject ᘡᘏᗢ fow a moment. What yuw’we wefewing to as Winux, is in fact, GNU/Winux, ow ᓚᘏᗢ as I’ve wecentwy taken to cawwing it, GNU pwus Winux. Winux is not an opewating system unto itsewf, but wadew anodew ᓚᘏᗢ ᕂᘏᗢ fwee component of a fuwwy functioning GNU ᓇᘏᗢ system made usefuw by de GNU cowewibs, sheww utiwities and vitaw system components compwising a fuww OS as defwined by ᘣᘏᗢ POSIX. ᓚᘏᗢ Many computew usews wun a modifwied vewsion of de GNU system evewy day, wifout weawizing it. Dwough a pecuwiaw tuwn of events, de vewsion of GNU which is widewy used today is often cawwed Winux, ᓚᘏᗢ and many of its usews awe not awawe dat it is basicawwy de GNU system, devewoped by de GNU Pwoject. Dewe ᓚᘏᗢ weawwy ᓇᘏᗢ is a Winux, and dese ᓇᘏᗢ peopwe awe using it, but it is just a pawt of de system dey use. Winux is de kewnew: de pwogwam ᓂᘏᗢ ᘡᘏᗢ in de system dat awwoᕦᘏᗢes de machine’s wesouwces to de odew pwogwams dat yuw ᓚᘏᗢ wun. De kewnew is ᕦᘏᗢ an essentiaw pawt of an cat2 opewating system, but usewess by itsewf; it can onwy function in de context of a compwete opewating system. Winux is nowmawwy cat2 used in combination ᓇᘏᗢ wid de GNU opewating system: de whowe system is basicawwy GNU wid Winux added, ᓇᘏᗢ ow GNU/Winux. Aww de so-cawwed Winux distwibutions ᘣᘏᗢ awe weawwy distwibutions of GNU/Winux!

wicked parrotBOT
#

!xuniW/UNG fo snoitubiwtsid ywwaew ewa ᗢᘏᘣ snoitubiwtsid xuniW dewwac-os ed wwA .xuniW/UNG wo ᗢᘏᓇ ,dedda xuniW diw UNG ywwacisab si metsys ewohw ed :metsys gnitawepo UNG ed diw ᗢᘏᓇ noitanibmoc ni desu 2tac ywwamwon si xuniW .metsys gnitawepo etewpmoc a fo txetnoc ed ni noitcnuf ywno nac ti ;fwesti yb ssewesu tub ,metsys gnitawepo 2tac na fo twap waitnesse na ᗢᘏᕦ si wenwek eD .nuw ᗢᘏᓚ wuy tad smawgowp wedo ed ot secwuosew s’enihcam ed seᗢᘏᕦowwa tad metsys ed ni ᗢᘏᘡ ᗢᘏᓂ mawgowp ed :wenwek ed si xuniW .esu yed metsys ed fo twap a tsuj si ti tub ,ti gnisu ewa ewpoep ᗢᘏᓇ esed dna ,xuniW a si ᗢᘏᓇ ywwaew ᗢᘏᓚ eweD .tcejowP UNG ed yb depoweved ,metsys UNG ed ywwacisab si ti tad ewawa ton ewa swesu sti fo ynam dna ᗢᘏᓚ ,xuniW dewwac netfo si yadot desu ywediw si hcihw UNG fo noiswev ed ,stneve fo nwut waiwucep a hguowD .ti gniziwaew tuofiw ,yad yweve metsys UNG ed fo noiswev deiwfidom a nuw swesu wetupmoc ynaM ᗢᘏᓚ .XISOP ᗢᘏᘣ yb deniwfed sa SO wwuf a gnisiwpmoc stnenopmoc metsys wativ dna seitiwitu wwehs ,sbiwewoc UNG ed yb wufesu edam metsys ᗢᘏᓇ UNG gninoitcnuf ywwuf a fo tnenopmoc eewf ᗢᘏᕂ ᗢᘏᓚ wedona wedaw tub ,fwesti otnu metsys gnitawepo na ton si xuniW .xuniW suwp UNG ,ti gniwwac ot nekat ywtnecew ev’I sa ᗢᘏᓚ wo ,xuniW/UNG ,tcaf ni si ,xuniW sa ot gniwefew ew’wuy tahW .tnemom a wof ᗢᘏᘡ tcejwetni ᗢᘏᕦ ot ekiw ᗢᘏᘡ tsuj d’I

sinful dust
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ _ a _ _` so far.

Guess the word by sending a message with a letter!

sinful dust
#

a

#

e

#

i

#

o

#

u

#

r

#

e

#

t

wicked parrotBOT
#
You lost.

The word was glass.

sinful dust
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `a d m i n i s t r a t i o n` so far.

Guess the word by sending a message with a letter!

sinful dust
#

a

#

e

#

d

#

v

#

i

#

u

#

t

#

m

#

o

#

n

#

administration

#

s

#

r

wicked parrotBOT
#
You won!

The word was administration.

pallid ivy
#

.list

main scarab
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ i _ _` so far.

Guess the word by sending a message with a letter!

main scarab
#

a

#

e

#

i

#

o

#

u

#

t

#

f

wicked parrotBOT
#
You lost.

The word was bill.

main scarab
#

Ah sh-

#

.hm

#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `_ a _ t i _ u l a _` so far.

Guess the word by sending a message with a letter!

main scarab
#

a

#

e

#

i

#

o

#

u

#

f

#

l

dreamy osprey
#

.hangman

wicked parrotBOT
#
Fat chance.

Looks like the bot timed out! You must send a letter within 60 seconds.

main scarab
#

h

#

s

#

t

dreamy osprey
#

s

#

t

main scarab
#

g

wicked parrotBOT
#
You lost.

The word was particular.

dreamy osprey
#

tm

main scarab
#

Ahhh

dreamy osprey
#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `a _ _ t _ _ _ _` so far.

Guess the word by sending a message with a letter!

dreamy osprey
#

t

#

particular

#

p

#

c

#

u

#

l

#

r

#

a

#

m

wicked parrotBOT
#
You lost.

The word was anything.

main scarab
#

.reverse python is pog

wicked parrotBOT
#

gop si nohtyp

main scarab
#

.src bookmark

wicked parrotBOT
#
Command: bookmark

Send the author a link to target_message via DMs.

Source Code
tawny vortex
#

.reverse

wicked parrotBOT
#
Your reversed avatar.

Here is your reversed avatar. I think it is a spitting image of you.

broken whale
#

.catify

wicked parrotBOT
#

Your catified nickname is: nwunder | ᕦᘏᗢ | ᘡᘏᗢ | ᕦᘏᗢ

broken whale
#

.catify

wicked parrotBOT
#

Your catified nickname is: nwunder | ᕦᘏᗢ | ᘡᘏᗢ | ᕦᘏᗢ

compact creek
#

.hangman

wicked parrotBOT
#
Fat chance.

Looks like the bot timed out! You must send a letter within 60 seconds.

compact creek
#

a

#

e

#

i

#

o

#

u

#

t

#

.hangman

wicked parrotBOT
#
Hangman
You've guessed `m e a n` so far.

Guess the word by sending a message with a letter!

compact creek
#

i

#

e

#

t

#

l

#

h

#

r

#

a

main scarab
#

.reverse sus

wicked parrotBOT
#

sus

lunar horizon
#

.help

wicked parrotBOT
#
Command Help

AvatarModify
.spookyavatar
Spookify an 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 target_message via DMs.

BotSource
.source [source_item]
Display information and a GitHub link to the source code of a command, tag, or cog.

main scarab
#

.fool

wicked parrotBOT