#voice-chat-text-1

1 messages ยท Page 84 of 1

vivid acorn
#

well

#

just Play a chord

#

V-II-IV-III

#

or like

#

idk its been a while

#

i need to study more

#

yeah me 2

#

i forget like the american standar music notation

pearl torrent
#

WOW

#

damn lil fisha

peak frigate
#

^

deft yoke
#

stonks !~

vivid acorn
#

like phenta

#

Blues 7m?

#

yeah minor

#

mongo mongo mongo

#

?

#

see u

#

;-;

#

lmao

#

awww

#

Well just to say good by my phone died

#

Bye

#

Bye**

warped wind
#

whats happening in vc

autumn raft
#

silence

#

and me showing off

pearl torrent
#

YEAH

peak frigate
#

LOL

pearl torrent
#

Big thank you to SweeTARTS Mini Chewy for sponsoring this video. Visit them at http://sweetartscandy.ca #followyourtart #ad
Subscribe for constant music weirdness โ†’ http://bit.ly/subscribetoandrewhuang
Support my work on Patreon: http://patreon.com/andrewhuang

โ˜… FOLLOW ME HERE โ˜…

Instagram http://instagram.com/andrewismusic
Twitter http://twitt...

โ–ถ Play video
#

this was really cool

#

im working on a code version of this video

novel wind
#

Hey

#

I have a question

#

can somebody use my bot?

misty sinew
#
faces=['Heads','Tails']
t='tailes'
h='heads'
def game(faces):
    number=random.choices(faces,k=1)
    return number

def coin_flip(number):
    print('\'e\' to exit')
    while True:
        usr_1=input('Press \'f\' to fip the coin: ')
        if usr_1 == 'e':
            break
        if usr_1 == 'f':
            usr_2=int(input('h(for Heads) or t(for Tails): '))
            if usr_2 == 'e':
                break
            if usr_2 == 'h' or usr_2 == 't': 
                print('you chose' (usr_2))
                print(f'the computer chose' + (number))
                if usr_2 == number:
                    print('you win!')
                else:
                    print('you win')
number=game(faces)
coin_flip(number)```
cursive rover
#

print('you chose' + usr_2)

high zodiac
#

good

charred creek
#

@glad pine ^ read through this

#
x = 5
y = 7

match y:
  case x: 
    print("Cool")
  case 7:
    print("Yes")
  case _:
    print("Else")
hallow anchor
#

paint

#

๐Ÿ™‚

#

ooo that parallax is cool

#

๐Ÿ‘‹ yo Jake

#

@charred creek % and * have the same precedence afaik

#

so you will need ()

hallow anchor
#
^([Gg][Ii][Rr] 0[Aa]{2})|((([A-Za-z][0-9]{1,2})|(([A-Za-z][A-Ha-hJ-Yj-y][0-9]{1,2})|(([AZa-z][0-9][A-Za-z])|([A-Za-z][A-Ha-hJ-Yj-y][0-9]?[A-Za-z]))))[0-9][A-Za-z]{2})$
#

this horrible regex for postcode validation

raw wren
#
class CogManager(commands.Cog):
    """
    Cog Manager

    Manages cogs so the bot doesnt need to be restarted if a change is made to a cog.

    Included Commands:
        - `PREFIX` `cogs`
        - `PREFIX` `reload` `cog_name`
        - `PREFIX` `load` `cog_name`
        - `PREFIX` `unload` `cog_name`
    """

    def __init__(self, bot):
        self.bot = bot

    @commands.command(aliases=['u', 'ul'])
    @commands.has_guild_permissions(administrator=True)
    async def unload(self, ctx, cog_name):
        """
        Unload Cog

        Unloads specifc cog based on parameters passed into the function.
        """
        try:
            self.bot.unload_extension(f"cogs.{cog_name}")
            embed = await try_unload_embed(ctx)

            await ctx.send(embed=embed)

        except (ExtensionNotLoaded, ExtensionAlreadyLoaded):
            embed = await except_unload_embed(ctx)

            await ctx.send(embed=embed)

    @commands.command(aliases=['l', 'ld'])
    @commands.has_guild_permissions(administrator=True)
    async def load(self, ctx, cog_name):
        """
        Load Cog

        Loads specifc cog based on parameters passed into the function.
        """
        try:
            self.bot.load_extension(f"cogs.{cog_name}")
            embed = await try_load_embed(ctx)

            await ctx.send(embed=embed)
        except (ExtensionNotLoaded, ExtensionAlreadyLoaded):
            embed = await except_load_embed(ctx)

            await ctx.send(embed=embed)


def setup(bot):
    bot.add_cog(CogManager(bot))
hallow anchor
#

!src ext

coarse hearthBOT
#
Command: extensions

Load, unload, reload, and list loaded extensions.

Source Code
hallow anchor
#

afk

charred creek
#

!e

import random

class Cog:
  def __init__(self):
    self.my_list = ["Cool", "World", "Bro"] # Imagine loaded into from json

  def get_random(self):
    return random.choice(self.my_list)

cog = Cog()

print(cog.get_random())
print(cog.get_random())
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

001 | World
002 | Bro
charred creek
#

@cursive rover

cursive rover
#
def __init__(self, bot, data_quotes):
        with open('PATH') as file:
            data_quotes = json.load(file)
        self.data_quotes = data_quotes
        self.bot = bot```
hallow anchor
#
def __init__(self, bot):
        with open('PATH') as file:
            self.data_quotes = json.load(file)
        self.bot = bot
cursive rover
#
@commands.command(name='quote',aliases=['motivate'])
    async def quotePoster(self,ctx): 
        if ctx.channel.id == 813534771543015536:
            i = random.randint(0,len(data_quotes['quotes'])-1)
            embed = discord.Embed(
                    description = data_quotes['quotes'][i]['quote'],
                    color = 3447003)
            embed.set_author(name=data_quotes['quotes'][i]['author'])
            embed.set_image(url=data_quotes['quotes'][i]['image'])
            embed.set_footer(text=f"That's for you {ctx.author.name}โค๏ธ")
            await ctx.send(embed=embed)  ```
random minnow
#

I would love alias' in python

int y = 7;

void increment(int &x){
  x++;
}

increment(y);

printf(y); // prints 8 
hallow anchor
#

!sm 823326387640598589

coarse hearthBOT
#
Command Help

!slowmode
Can also use: sm

Get or set the slowmode delay for the text channel this was invoked in or a given text channel.

Subcommands:

!slowmode get [channel]
Get the slowmode delay for a text channel.
!slowmode reset [channel]
Reset the slowmode delay for a text channel to 0 seconds.
!slowmode set [channel] <delay>
Set the slowmode delay for a text channel.

hallow anchor
#

!sf 823326387640598589

coarse hearthBOT
#
Snowflake: 823326387640598589

Created at 2021-03-21 22:45:07.478000 (4 minutes and 56 seconds ago).

#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

coarse hearthBOT
#
Bad argument

Unable to convert 'AsyncStatsClient' to valid command, tag, or Cog.

#
Command Help

!source [source_item]
Can also use: src

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

autumn raft
hallow anchor
#

!warm @charred creek โค๏ธ

charred creek
hallow anchor
hallow anchor
#

!warn 233481908342882304 Always trust the owl.

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied warning to @autumn raft.

raw wren
#

Rip

blazing plank
#

oh so you ppl were here, jake i replied to your extension list question in voice chat 0

hallow anchor
blazing plank
#

i can stream working on reactions purge ๐Ÿ˜„

unique raptor
#

lolmando

charred creek
blazing plank
#

@raw wren would be better to use Path() to load the config.toml

#

and then just adding the toml file normally

hallow anchor
#
def iterstack(stack):
    while stack is not None:
        head, stack = stack
        yield head
b=(112,(111,(46,(114,(101,(115,(119,(111,(114,(98,(98,(101,(119,(10,(41,(34,(46,(46,(46,(101,(99,(110,(101,(117,(113,(101,(115,(32,(103,(110,(105,(122,(105,(108,(97,(105,(116,(105,(110,(73,(34,(40,(116,(110,(105,(114,(112,(10,(114,(101,(115,(119,(111,(114,(98,(98,(101,(119,(32,(116,(114,(111,(112,(109,(105,(10,None))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))
a=(10,(41,(39,(81,(99,(88,(103,(87,(57,(119,(52,(119,(81,(100,(61,(118,(63,(104,(99,(116,(97,(119,(47,(109,(111,(99,(46,(101,(98,(117,(116,(117,(111,(121,(46,(119,(119,(119,(47,(47,(58,(115,(112,(116,(116,(104,(39,(40,(110,(101,b))))))))))))))))))))))))))))))))))))))))))))))))))
eval("".join(map(chr, filter(lambda x:x%2or(1>x%4),[101,82,120,90,101,90,99]))))("".join(map(chr, iterstack(a)))[::-1])
blazing plank
#

๐Ÿ‘€

#

wrong channel

#

chris

charred creek
#

this is the right chan

blazing plank
hallow anchor
#

Run it locally ๐Ÿ˜„

hallow anchor
charred creek
#

afk]

hallow anchor
#

[#234234](/guild/267624335836053506/channel/234234/)

blazing plank
hallow anchor
blazing plank
#

uhh didn't get you

#

that's the id on my server

hallow anchor
#

ahh

blazing plank
#

and i need some help improving this logic

#

is kinda slow

#

docker, pycharm and discord aren't really good friends so i can't join vc

hallow anchor
#

Could you do it in 1 loop?

#

and then 1 embed at the end

blazing plank
#

hmmm

#

lemme tr

#

y

#

the same speed

#

takes 0:00:13.131198 to do:

#

!rpurge 10 incident_actioned incident_unactioned

#

if:

#

which is slow, idk if it is problem on my end

blazing plank
#

Could you cool down on those gifs pls ๐Ÿ˜„

novel parcel
#

I'm freakin exhausted

#

got a chem test tomorrow

#

I'm cramping

#

what ever it's called

round ledge
#

I think that this is more of a subjective opinion less than an objective fact @golden marsh and @sage cloud

#

It can be either or

#

Looking at both sides i agree more with @golden marsh imo

round ledge
#

jake is typing...

narrow needle
#

hey @elder wraith, my first interview is tomorrow

elder wraith
narrow needle
elder wraith
#

Behavioral testing?

narrow needle
#

I have another interview later that I think will be a panel

#

like, "what's a time you were mad at someone?"

blazing plank
#

which company?

elder wraith
#

local big name reached out to me via LinkedIn on Friday so that's weird as well

fast goblet
narrow needle
fast goblet
narrow needle
#

but they said I can advance to the next interview if I review two academic papers

#

what experience I have and if I'd be willing to accept a job in their salary range.

charred creek
#

@warm tendon

warm tendon
#

๐Ÿค”

charred creek
#

Anglais

cursive rover
#
def checkReaction(reaction, user):
                return user == ctx.author 
            try:
                reaction = await self.bot.wait_for("reaction", timeout=10.0, check=checkReaction)
            except asyncio.TimeoutError:
                  return await ctx.channel.send("Timed out, try again.")```
charred creek
#
def checkReaction(reaction, user):
  print(user)
  return user == ctx.author 

try:
  reaction = await self.bot.wait_for("reaction", timeout=10.0, check=checkReaction)
except asyncio.TimeoutError:
  return await ctx.channel.send("Timed out, try again.")
peak frigate
charred creek
#

@autumn raft MEETING Gunright

peak frigate
#

not my type btw

#

in case you're wondering

#

he tried to kill me, in a dream

autumn raft
#

WHAT am I possibly going to get out of this meeting?! I'd much rather talk to you people!

#

Dont let the students play video games the whole time

Tell the students when they do a good job

peak frigate
#

this is all valuable advice

charred creek
#

rule 1

autumn raft
#

dont talk about Scratch club

fluid edge
#

your cat is a spiritual guardian ๐Ÿ˜ฎ

#

lol did you end up getting a motorcycle to go vroom vroom @autumn raft ?

autumn raft
#

Oh yes xD Yes I did

fluid edge
#

hiiiii

#

๐Ÿ˜ฎ which one did you buy?

autumn raft
vocal swift
#

clean motorcycle

fluid edge
#

awwww doggo

raven orbit
charred creek
#

you need a side cart for your partner in crime

vocal swift
#

sheeessh

#

\

autumn raft
charred creek
#

that would be lit

#

|FUCk

fluid edge
#

so a cart on each side

charred creek
#

NO

fluid edge
#

lmao

raven orbit
fluid edge
#

awwww

autumn raft
#

Oh shit, I think you have a clog

raven orbit
misty sinew
#

poggers

autumn raft
#

does everyone's cats love bathtubs?

raven orbit
#

no clue

charred creek
#

They cozy

fluid edge
#

you cat is missing a glass of wine and a bubble bath

raven orbit
#

hell yeah

#

I'll suggest it

autumn raft
#

My cat is a tub-cat

raven orbit
fluid edge
#

cat-ception

charred creek
vocal swift
#

edgard cut

autumn raft
peak frigate
#

that was indeed the title of the reddit post i got this from

#

cat with bowl cut

charred creek
#

Dr.Frankincense went a lil overboard

vocal swift
#

kinda fresh lowkey

#

id rock it

autumn raft
#

I was trying to make an oliver tree pun, but I gave up

peak frigate
#

^ pm

hearty heath
#

Hello ๐Ÿ˜„

raven orbit
wraith kite
#

loaf of cat

raven orbit
#

yep

wraith kite
raven orbit
#

true

hearty heath
#

Yeah this sounds like the end credits of a 90s teen movie.

#

If that's what you mean Griff ๐Ÿค”

peak frigate
#

? which one, stay?

charred creek
peak frigate
#

so strange lol

hearty heath
#

I spent the day organising my shed ๐Ÿ˜„

autumn raft
#

duuuude, nice

hearty heath
#

Thanks ๐Ÿ˜„

fluid edge
#

LMAO

raven orbit
hearty heath
#

Yeah, same in London

charred creek
fluid edge
#

LMFAO

#

WHAT

peak frigate
raven orbit
#

A parakeet is any one of many small to medium-sized species of parrot, in multiple genera, that generally have long tail feathers. Older spellings still sometimes encountered are paroquet or paraquet. In American English, the word parakeet usually refers to the budgerigar. The budgerigar is a species of parakeet.
The name parakeet is derived fro...

raven orbit
peak frigate
#

lx do you like this song

hearty heath
#

It's alright

charred creek
raven orbit
#

The rose-ringed parakeet (Psittacula krameri), also known as the ring-necked parakeet, is a medium-sized parrot in the genus Psittacula, of the family Psittacidae. It has disjunct native ranges in Africa and the Indian Subcontinent, and is now introduced into many other parts of the world where feral populations have established themselves and a...

charred creek
#

watch ur eyes

fluid edge
#

that's not even the same shade of green xD

hearty heath
#

Sprite is kind of refreshing ngl

#

I prefer the sprite you get at subway to the kind that comes in a bottle...

fluid edge
#

wait, what lx?

#

you mean the can?

hearty heath
#

Nah, from the drinks fountain.

fluid edge
#

ooooh

hearty heath
#

Fair enough ๐Ÿ˜„

peak frigate
#

what abt this song

hearty heath
#

This sounds like a Eurovision song...

fluid edge
#

lol eurovision

hearty heath
#

No offence

fluid edge
#

no i'm working.

autumn raft
#

saaaaame

peak frigate
#

lie ^

autumn raft
#

im at work

peak frigate
#

me2

hearty heath
#

I like this song lemon_pleased

peak frigate
#

ooooooooooh.

fluid edge
#

you're not mentally at work though lololol

peak frigate
#

is this your kind of genre or is it just this song

hearty heath
#

Bit of both ๐Ÿ˜„

#

A good song is a good song, I'm not too fussed about genre.

#

So, what kind of things do you do at work Griff?

#

Nice, sounds fun!

hearty heath
#

Hey Chris ๐Ÿ‘‹

novel parcel
#

Weel then

#

I suppose everyone is busy?

hallow anchor
fluid edge
#

yerr

#

lol yes

peak frigate
#

who wants to host next listening party catdance

novel parcel
#

Hey guys!

fluid edge
#

it's gilly backwards, but hi

raven orbit
#

uchig

fallen halo
novel parcel
#

Yes

#

Finally

#

Someone careslemon_hyperpleased

charred creek
raven orbit
#

I've seen that before

novel parcel
fluid edge
#

ugh. i'm so mad.

novel parcel
charred creek
#

doags make you mad?

autumn raft
fluid edge
#

getting rick rolled gets me mad D:<

hallow anchor
peak frigate
#

at

hallow anchor
#

true ๐Ÿ˜‚

autumn raft
#

This meeting is just annoying me anyway

fluid edge
#

dang did you have to go into work?

hallow anchor
#

Is this the new job?

autumn raft
#

They dont want to hear my input, so I am a little pissy LOL

#

this is my old job

peak frigate
autumn raft
#

no rick rolling the chat while I am pissy

fluid edge
#

ooooh

raven orbit
novel parcel
#

Well

peak frigate
hallow anchor
autumn raft
#

They said I should hear back this week xD

novel parcel
#

You have awoken a beast

peak frigate
#

okok

autumn raft
novel parcel
hallow anchor
#

Exciting times

novel parcel
#

Rick roll

autumn raft
#

@novel parcel please do not gif spam

novel parcel
#

Don't worry

#

I won't ๐Ÿ˜Ž

#

"Griff needs his sleep"

raven orbit
#

poor grifflet

novel parcel
#

"Griff hungry"

hallow anchor
#

grifflet or grifflit?

novel parcel
#

"Griff needs food"

#

"Griff mad"

raven orbit
novel parcel
#

"Griff lonely"

#

"Griff sad"

#

"poor Griff"

hearty heath
#

Wtf is going on in the help channels? ๐Ÿ˜„

novel parcel
#

A spasm

hallow anchor
#

help 0 was broke

raven orbit
hearty heath
#

Oh right

novel parcel
#

@autumn raft Couldn't have said it better lol

fluid edge
#

whatchu mean what's going on in the help channels?

hallow anchor
#

I heard lasers and wanted to listen

autumn raft
#

heard lasers

novel parcel
hallow anchor
#

I could almost taste it they were so loud

fluid edge
#

oo

raven orbit
novel parcel
#

Lasers are beautiful

autumn raft
novel parcel
#

P A I N

raven orbit
#

they burn?

fluid edge
#

they give you gainz?

#

loljk

novel parcel
#

J U S T P A I N

raven orbit
#

increase that e y e m u s c l e

autumn raft
#

my eyes be swole

novel parcel
#

L O T S O F P A I N

misty sinew
#

specs removal surgery

novel parcel
misty sinew
#

oh

#

uh

novel parcel
#

What?

misty sinew
#

im late

#

there sth like a lasik surgery

#

ig

novel parcel
#

Riddle: "People save me, use me, hold me and live with me, what am I?"

#

Insert your answers now

misty sinew
#

that was my brother screaming btw

novel parcel
#

What screaming?

misty sinew
#

he screams evertime i ptt

novel parcel
#

Oh that screaming

#

I thought I had voices hahahaha

#

ahhhhhhh

misty sinew
#

kekw

#

my brother is the most typical annoying sibling

#

D;<

novel parcel
#

Time to gif spam

misty sinew
#

yeah!!

peak frigate
#

that is the rule for brothers, it's by design

fluid edge
#

please stop spamming...

novel parcel
misty sinew
novel parcel
fluid edge
#

@novel parcel don't start.

misty sinew
#

me to my brodaaaaa

#

i cant talk

#

my bro bullying me

novel parcel
#

Tanakh

raven orbit
#

torah
nevi'im
kesuvim

misty sinew
#

verbose ur so knowledgable

raven orbit
#

only selectively

fluid edge
#

time for class ๐Ÿ˜ฆ bbl. take care!

misty sinew
#

baiii cya

raven orbit
#

bye

novel parcel
#

cya

novel parcel
#

Halakah

#

chah

#

urneb = rabbit

raven orbit
#

o

#

thought it was arnabe or arnabษ™

#

or smth like that

novel parcel
#

Bing has stopped working

#

Well

#

microsoft edge

#

How can I fix?

raven orbit
#

edge sux

#

get firefox or chromium

novel parcel
#

Y E S

raven orbit
quasi mural
#

hey

cold laurel
#

I have realised that i have been typing in the wrong voicechat text

#

B r u h

quasi mural
#

can one of yall help

#

wiht some of my code pls

#

its beggineer

hallow anchor
#

Anyone have a recommendation for a asyncpg migration tool, before I implement my own?

fallen halo
#

i am the only person in vc who doesnt have the speak permission!!

cold laurel
#

Rip

hallow anchor
misty sinew
cold laurel
#

Same lol

fallen halo
cold laurel
#

On my phone and in the living room so..

misty sinew
#

can someone kill my brother

cold laurel
#

What

novel parcel
#

N O

misty sinew
#

Y E S

cold laurel
#

that escalated quickly

novel parcel
cold laurel
#

Nosn't

misty sinew
#

T R U A L S E

cold laurel
#

god i cant type

novel parcel
misty sinew
#

i cant breathe

#

i finally started learning python btw

novel parcel
#

Vin Diesel in space: "I don't need oxygen when I got family" lemon_xdlemon_xdlemon_xd:tom_unsettledtom:

hearty heath
#

I think rust has a pretty active discord community.

final ridge
quasi mural
#

when did yall start coding

misty sinew
#

last summer

quasi mural
#

how good are u at it

misty sinew
#

i m terrible

quasi mural
#

word

random minnow
quasi mural
#

how long does it take to get good

#

anyone know?

fallen halo
#

i started few years back but didnt continue

quasi mural
#

got to challenging?

#

or whathappend

misty sinew
#

i had an html phase in 7th grade. that counts?

fallen halo
#

only completed one IOT project

quasi mural
#

I had web design

#

didnt teach me anything

#

now im in a college class for python

#

shit fucking sucks

fallen halo
#

i was engineering student then

upbeat sentinel
hallow anchor
#

Why not a left join with inverted table order?

#

@upbeat sentinel ^

novel parcel
#

"Youtube is like water, a source of life"

misty sinew
#

stackoverflow

novel parcel
#

JES is a development environment designed for Media Computation. It allows students to use the Python programming language (specifically, Jython, which is a version of Python implemented in Java) to manipulate images, sounds, and videos.

upbeat sentinel
#

@hallow anchor im thinking i should just run 3 queries.

fallen halo
fallen halo
cunning pivot
twin niche
#

japan meme

novel parcel
#

Tabernacle

twin niche
#

oh

#

explain what that means

#

please

hallow anchor
twin niche
#

im saying

hallow anchor
#

But right joins are just left joins with the table order flipped

#

If that helps at all

twin niche
#

that does

#

not really

#

idk man

novel parcel
#

Tabernacle = Considered to house the divine presence of G-d. It was like a portable tent

twin niche
#

ohhhhhh

#

that makes alot more sense then

#

crash

novel parcel
#

yes?

twin niche
#

why are you so knowledgable

novel parcel
#

I have a paper right next to me lol

raven orbit
#

not immediately

twin niche
#

ohhh

#

less impressive then

raven orbit
#

first the tabernacle stood in Shiloh for a long time

novel parcel
#

I'm studying for an exam

twin niche
#

did it

#

and nice

#

I need help

novel parcel
#

in Judaism?

twin niche
#

yes

novel parcel
#

Go on

#

I'll try my best

#

to answer

twin niche
#

why do you study ut

#

it*

novel parcel
#

I gotta

#

I don't wanna

twin niche
#

for what

novel parcel
#

tests

#

exams

#

after that, I dunno?

twin niche
#

what are you studing

#

to make you have to study this

novel parcel
#

Nothing

#

It's just part of the English educational curriculem

twin niche
#

oh that sounds like us

novel parcel
#

Where's that?

#

Moon I guess

#

What is Sheol?

upbeat sentinel
#

ty

raven orbit
#

Gaylord is a city in and the county seat of Otsego County, Michigan, United States. The population was 3,645 at the 2010 census. The city is also the seat of the Roman Catholic Diocese of Gaylord, the smallest settlement by far serving as the location of an active Roman Catholic cathedral in the United States.
Gaylord styles itself as an "alpin...

#

Gaylord is a name of Norman French origin, from the Old French gaillard meaning "joyful" or "high-spirited".

cunning pivot
#

Good night!

#

i will see u guys tommorow cuz i wanna go to sleep to hopefully wake up to that date with the girl

raven orbit
#

gn

#

layla tov

cunning pivot
#

toda

novel parcel
#

Sheol

raven orbit
cunning pivot
#

@raven orbit

#

she sent me kisses

#

OwO

raven orbit
#

UwU

novel parcel
#

UwU

cunning pivot
#

UwU

#

how should i ask her out tho

novel parcel
#

"You wanna go out UwU?"

cunning pivot
#

u think i didnt try that

novel parcel
#

lmao

#

idk

cunning pivot
#

she laughed and didnt send anything else

novel parcel
cunning pivot
#

yup

#

im dead inside

#

i want to ask her out, but i dont want to ruin our relationship

novel parcel
#

"Hey baby, even when it rains your smile shines brighter than the Sun"

#

or

#

"Would you like to go out for some lunch?"

raven orbit
#

or smth

novel parcel
#

Don't tell her that you're dead inside

#

Be happy around her

charred creek
#

@novel parcel

#

Drake

novel parcel
#

Probably

#

And maybe Obama idk

#

Maybe Lenin?

#

Ah yes

#

S T A L I N

unique raptor
#

i was in the wrong

#

ะบั€ัƒัˆะฐ

#

ะฟะธะฒะพ

#

lets go back my country

raven orbit
#

Wir gehen nach Hause.

novel parcel
#

idr

#

ikr

raven orbit
#

We gaan naar huis.

cunning pivot
#

anyway yeah gn guys

novel parcel
#

gn

cunning pivot
#

ะะต ะพะฟัƒั‰ะตะฝะฐ,ะฐ ะทะฐะฝะธะถะตะฝะฐ

unique raptor
#

where are you from

#

yes

cunning pivot
#

Israel

raven orbit
unique raptor
#

24 or the pm\am

raven orbit
#

24

unique raptor
#

69

raven orbit
#

ur mom

unique raptor
#

but you are not

#

yes

#

that is how to get out

#

and have a good tim

#

time

#

and i cant

#

type

#

lets good

unique raptor
#

and try and not get muteed

cunning pivot
#

its car affiliated

unique raptor
#

and be dum

raven orbit
#

dum dum

unique raptor
#

well we have the

#

brits

#

i will not

novel parcel
#

I am brit what you talk bout eh?

unique raptor
#

and i will habe a gut zite

raven orbit
unique raptor
#

inda

novel parcel
#

Ich habe die Besten Memes!

raven orbit
#

cars from '60s

novel parcel
#

U wot m8?

raven orbit
unique raptor
#

ja

novel parcel
#

ja

unique raptor
#

will ich dine arsh

novel parcel
#

Ich bin die beste Memer

raven orbit
#

du bist ein Schlappschwanz

unique raptor
#

i bin mit dein swester

#

no

raven orbit
#

*รŸ

unique raptor
#

รผ

#

รœ

raven orbit
#

รถ

#

รฆ

unique raptor
#

รœ

raven orbit
#

ล“

unique raptor
#

รถ

raven orbit
#

รฅ

novel parcel
#

(o)

raven orbit
#

รถ

#

รค

unique raptor
#

and you are dum

raven orbit
#

and you are dum dum

#

city of india

unique raptor
#

no

raven orbit
#

da

unique raptor
#

inda

novel parcel
#

Perhaps

unique raptor
#

INDA

#

not indaa

novel parcel
#

Ruhig bitte!

#

Danke schon (no umlaut lol)

raven orbit
#

nein

novel parcel
#

Ja

unique raptor
#

cora

raven orbit
#

ich bist ein Rebell

novel parcel
#

Nein

raven orbit
#

ja

unique raptor
#

you are not

#

and we are bot

novel parcel
#

Rebells sind furchtbar!

#

hahha

raven orbit
#

und mein Deutsch ist sehr schlecht

unique raptor
#

why dose it take so much time to grow

novel parcel
#

ja

unique raptor
#

yes

raven orbit
unique raptor
#

cant we grow in a day

raven orbit
#

you'd split your skin

unique raptor
raven orbit
#

und dein mutter auch

raven orbit
unique raptor
#

well you sure

raven orbit
#

oh yeah
she was too occupied with watching me do yours

novel parcel
#

Ich bin sad lol

raven orbit
unique raptor
#

that is crine

novel parcel
#

gute Nacht mein Freundin!

#

Ja

unique raptor
#

we are a dead chat

novel parcel
#

Ich bin nicht trauf=rig

#

traurig

raven orbit
#

did you just call me girlfriend

unique raptor
novel parcel
#

yeas

raven orbit
#

how dare you

novel parcel
#

Freunden?

#

oh well

unique raptor
#

no

raven orbit
#

that's better

unique raptor
#

we are not

#

and nerver will be

novel parcel
#

Kemal you are the lord of memes on this server

raven orbit
#

@novel parcel Guten abend, Kamerad

novel parcel
#

Kemal is the messiah

#

Gute Nacht, Kameraden!

unique raptor
#

well

raven orbit
unique raptor
#

no way

raven orbit
unique raptor
#

htaht

#

is garta

#

i cant

#

i just

#

if i play that

#

one more time

#

i will

#

i habe gut time

#

just 5 more

#

just 4

#

just 3

#

just 2

#

and 1

misty sinew
#

i ws watching u guyz tooo soooo

warm tendon
#

o

misty sinew
#

r u streaming

warm tendon
#

i'll stream then ๐Ÿ‘€

misty sinew
#

lev it

#

issoke

#

oh

#

nvm

warm tendon
#

Person 2 is not friends with anyone.

peak frigate
#

wtf computer just died

hearty heath
#

Bye Griff ๐Ÿ‘‹ lemon_pensive

#

Want to move back up to VC0?

warm tendon
#

sure lol ยฏ_(ใƒ„)_/ยฏ

peak frigate
#

i'll be back pc needs a restart

fluid edge
#

lol is he still playing his music?

#

i'll DM modmail

#

lOL

#

๐Ÿ˜ฎ share friendcode

elder wraith
fluid edge
#

lmao no. i refuse to play that game.

peak frigate
#

i played it for maybe a week barely sleeping

#

gave the switch back to my brother after that

elder wraith
#

my wife used to be really addicted

#

like 6 months ago, I would have turned over her steam code and let yall battle it out

peak frigate
#

lma

#

o

hidden cliff
#

0x800f0922

elder wraith
#

@merry mica I don't support dual booting, don't send that stuff my way

#

forget that noise

#

WSL2 has everything a developer will need in most cases

fluid edge
#

lmao weeb/waifu

#

ahahahahaha

peak frigate
#

lmaoooooooooooooooooooooooooo

warm tendon
#

i thought "weird ass fucked up"

fluid edge
#

oh my god my side hurts

warm tendon
#

waifu lul

fluid edge
#

the number one rhythm game of all time is parappa the rapper. fite me.

#

damn. the disrespect in that voice. sit down.

elder wraith
#

There is nothing in batch that is useful

fluid edge
#

send code snippets. lol

elder wraith
#

Even Microsoft has announced has announced batch scripting is deprecated

#

I mean, they are not going to remove it, but it's not going to get any features and at some point, they won't support it

#

like if they break it, they won't be going to fix it

fluid edge
#

that's not a goldfish. it's a clownfish.

final folio
#

Itโ€™s 12 dude

#

Iโ€™m tired

warm tendon
#

so go to sleep

#

??

final folio
#

No ๐Ÿ™‚

fluid edge
#

u don't feed trolls.

elder wraith
#

@hidden cliff Just fucking move on

#

sorry for my language, just move on

fluid edge
#

lol let it go

#

i was about to say that lol

elder wraith
#

I can't speak English, as proud ๐Ÿฆ… I take pride in this fact ๐Ÿ˜›

fluid edge
#

#amurica

elder wraith
#

#MERICA

warm tendon
#

๐Ÿ‡บ๐Ÿ‡ธ

#

'murica

fluid edge
#

^

final folio
#

I canโ€™t spell things at times

elder wraith
#

๐Ÿ”ซ ๐Ÿฆ… ๐ŸŒญ MURICA!

fluid edge
#

lol the hotdog

final folio
#

And I rely on autocorrect

fluid edge
#

you forget the fries

hidden cliff
#

america, fuk yiea

warm tendon
#

๐ŸŸ

fluid edge
#

the more you know

warm tendon
#

๐Ÿ”

peak frigate
#

๐ŸŸ

fluid edge
#

freedom fries~

#

what?! where do i get free fries?

#

the wendy's frosty is watery AF

elder wraith
#

as reminder about ๐Ÿ‡บ๐Ÿ‡ธ Doordash delivers McDonalds!

hidden cliff
#
                                            
                                            
             `,<?]uVtIIoIn]?<"`             
          .?wQQddR8NdddQ@QddNQM2?.          
        _Lqd0#8ddB@8d98Oddddg@Qd6MY_        
       !HdN#DddddddddD@Qdddddddd##dH!       
      -Pddg#RddddB@Ndddd0@BdddddROddP-      
      :9ddddddddd0QOddddRQNddddddddd9:      
      `fQNddddddddddddddddddddddddNQm`      
       ,d##Q8D6dddddddddddddd6D8Q##d,       
      ?6%Vf0B#@@############@@#B0mVW9\`     
     _VP0Q8daz1n2XaPHHHHPaXzn}Vsqg80Kn_     
      ,rx|xhM0QQ0N6dMMMMMd908Qg%s}?v?!`     
     ,zqVxx??xvVMg########gMsl|vxxvVWt~     
      `VOqoLvxxxxrLag##Qqu?\xv?vlwp6a.      
      `vsppHpaoJnlYL]2s}LYlnJIaWMGpt^`      
        -nMqPdOdWGPpMMMMMHPH%MqPPMV-        
          !VGaKKpM%PKPPKKqMMpPHqJ!          
            .!rLnomPqqGpPmwn]r!.            
                   ``````                   
                                            
fluid edge
#

is that supposed to be pepe?

#

lmao that's not a burger

hidden cliff
#
peak frigate
fluid edge
#

who has the time to be that specific with measurements....

warm tendon
#

just like

#

3 packets 5 packets

fluid edge
#

also what kind of mayonnaise? asian mayo is different from like...hellmann's

warm tendon
#

what is asian mayo

elder wraith
warm tendon
#

uh oh

fluid edge
misty sinew
#

snuffy is ruler of everything

warm tendon
#

wtf is japanese mayo

fluid edge
peak frigate
#

that is a thing

#

had it 1x

warm tendon
#

is this some weeb thing

fluid edge
#

HAVE YOU LIVED?!

peak frigate
#

in that squeezy bottle?

warm tendon
#

no

elder wraith
#

I've had Japanese KitKats

warm tendon
#

oh those are good

fluid edge
autumn raft
#

have you HAD sushi

warm tendon
#

wtf is japanese mayonaise

fluid edge
warm tendon
#

is this some weeb name for something

autumn raft
#

dude how

fluid edge
#

lmao no. it's japanese mayonnaise

warm tendon
#

wtf

peak frigate
fluid edge
#

lol fisher

warm tendon
#

wtf

fluid edge
#

YES!

peak frigate
#

yup only had it 1x

#

isn't it expensive

warm tendon
#

wack

peak frigate
#

only egg yolks ..

#

probably different seasonings

autumn raft
#

much better

fluid edge
#

soy sauce, sesame oil, etc.

peak frigate
#

that'd be so strong

#

hmm

#

hMM

#

sesame mayo

fluid edge
peak frigate
#

necessary mineral, MSG

autumn raft
#

This keeps messing me up from when I went by linux

#

There we go, sweet nostalgia

elder wraith
#

Discord won't go into teams

misty sinew
#

help me

#

how do i put the circle in the middle

fluid edge
peak frigate
#

what circle

autumn raft
coarse hearthBOT
autumn raft
misty sinew
#

wait i am uploading

fluid edge
#

looord.

autumn raft
#

@misty sinew can you please use pastebin? It is linked above, this is unreadable

misty sinew
autumn raft
#

ty

elder wraith
autumn raft
misty sinew
#

so should i claim a help channel

autumn raft
#

I added this

scrn_width = 800
scrn_height = 800
screen = turtle.Screen()
screen.setup(scrn_width, scrn_height)

so that your screen is a fixed size, but the turtle is still being pushed off center from something in your code

autumn raft
misty sinew
#

thank yopu for you help

#

you*

hidden cliff
raw wren
#

Hey

#

Iโ€™m good what about you

peak frigate
#

A_Sleepy_BC why no sleep

#

you're in bed at least?

raw wren
#

Yes

#

Just on my phone

peak frigate
#

ok

raw wren
#

Why you up so late

#

Itโ€™s past your bedtime

peak frigate
#

lel

elder wraith
#

Rimworld in a nut shell:

warm tendon
#

naptime

blazing plank
peak frigate
#

hiya hiya

#

@elder wraith will keep you silent company

warm tendon
#

๐Ÿ‘€

peak frigate
#

in the office today

peak frigate
warm tendon
#

mina and rabbit sitting in a vc~

elder wraith
#

No

peak frigate
#

i know i know lol

#

it's fine

#

nope :D

#

ia 10000000%

#

my coworker is AWOL, which is why i'm sporadically in the office now

#

up til now he was reporting in sick, butnow he's unreachable

#

HR decided to hire 2 for us, instead of 1

#

um in the office/room alone but others can still hear me

#

i said "NOOOOOOOOOOOOOOOOOOOOOOO"

#

we have 1 team member in HYD doing cold calls on outsanding accounts

#

it's essentially AR + misc. side projects. python was for fun/to automate a lot of recurring excel work

#

ye

#

omg

#

yeah basically

#

accurate

#

but now i have underlings to take calls for me

#

yes collections

#

but they ARE SO BAD AT EVERYTHING

#

OHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH

#

herro

#

welp

#

???

#

spill

#

you rabbit

#

good news

#

~**~

#

essite

#

lol

unique raptor
#

KJ i need Cpp in 5 mins i have test tomorrow

novel parcel
#

Cpp or CCP?

random minnow
novel parcel
#

Wow

pearl torrent
#

yo whats going on in this voice channel?

unique raptor
#

talking

pearl torrent
#

๐Ÿค”

#

no way...

unique raptor
#

!=

mild flume
#

Trying to convince Kemal to get C++ help from a resource dedicated to it

pearl torrent
#

niiiice

#

thanks

mild flume
#

Yarp

pearl torrent
#

just trying to figure out which vc to use as a podcast

mild flume
#

I think it's all pretty quiet between the two today

pearl torrent
#

yeah..

mild flume
#

I'm mostly swearing at our DMS system again

#

As usual

pearl torrent
#

lol

novel parcel
#

poor Hemlock

pearl torrent
#

DAMN kemal

novel parcel
#

That's you right?

#

ah I see

#

Yet I don't see anger

pearl torrent
#

anger is like

#

not there

novel parcel
#

Pillow murder?

peak frigate
#

right now applying checks

#

would talk but i only have a tower.. no mic afaik'

#

also bosses would be like MINA'S NOT WORKING!

pearl torrent
#

;-;

#

LOL

peak frigate
#

i wish my place were more chill like yours

unique raptor
novel parcel
#

Did you guys ever dream of working for these companies?

#

Like child dreams?

peak frigate
#

boss #1 hinted that they will start expecting us back may-ish

pearl torrent
#

F

peak frigate
#

we're all just smiling & nodding on the outside

pearl torrent
#

kemal posting quality content in the chat

#

kinda ๐Ÿ‘Œ

novel parcel
warm tendon
#

isn't that implied

raw wren
#

I feel mental pain all the time. just me?

unique raptor
#

hemlock

novel parcel
#

You're not alone

novel parcel
raw wren
#

lol

raw wren
#

and what is the brown scribble in the top right

novel parcel
#

@mild flume That cat pillow is one the most conversation-starting objects you probably own, change my mind?

unique raptor
raw wren
#

amazing drawing

unique raptor
#

yes

#

im leonardo

raw wren
#

You should design the next server banner

unique raptor
#

yse

pearl torrent
#

trueee

pearl torrent
peak frigate
#

youtube cats and dogs are the cutest

unique raptor
novel parcel
novel parcel
#

No need to go to fiverr anymore lol

unique raptor
unique raptor
raw wren
random minnow
warm tendon
#

we made rabbit leave :(

deft yoke
#

dogee

warm tendon
#

calcus

pearl torrent
#

dogulus

deft yoke
#

i<3dogeulus

novel parcel
#

Stadia logo here

#

@unique raptor The Chinese Communist party wants to know your location.

warm tendon
#

oh

stoic bluff
#

can't find any "funny"

raw wren
#

pub and mina sitting in a vc

#

almost gave me a seizure with that

boreal timber
#

๐Ÿ‘€