#voice-chat-text-0

1 messages · Page 712 of 1

stoic ore
#

what is BOİ mean ?

severe pulsar
#

boy

#

but

#

for cool kidz 😎

proper jacinth
#

ma boi

severe pulsar
#

oh gosh i cringed typing that

stoic ore
#

😄

uncut meteor
#

boi == boy == bro == dude

severe pulsar
#

True

stoic ore
#

ok get it

proper jacinth
#

cats vs dogs

#

cats are smarter

#

by far

#

dog or dough

#

😄

sick cloud
stoic ore
#

noh

#

nah

proper jacinth
#

ac dc

#

😄

stoic ore
#

it was before now they are same lazy home kid

proper jacinth
#

guys javascript vs python

severe pulsar
#

depends on the use case

#

pre-rabbit vc is so laid back oh man

#

vc can usually be separated into 2 phases

proper jacinth
#

gin tonic

severe pulsar
#

pre-rabbit

proper jacinth
#

😄

severe pulsar
#

and post-rabbit

proper jacinth
#

same

#

It is a meess

#

mess

#

linear algebra

rugged root
#

I only got as far as college algebra

proper jacinth
#

hihi

#

@stoic ore It happens to me also

stoic ore
#

😄

proper jacinth
#

😄

severe pulsar
#

BRO KUTIEKAJ WROTE DOWN NOTES

#

NOW SHES GIVING

#

full lecture

stoic ore
#

ı thınk ıts auto voice activity

severe pulsar
#

lets GO

#

free vc education

#

time to get notebook one second

#

bruh these words are flying over my head

proper jacinth
#

earthquake wave

#

involves integration

rugged root
#

I have such a weird love hate relationship with 311

#

Like there are some songs of theirs that are just great

#

And others where it makes me hate myself for listening to them

proper jacinth
#

yes

severe pulsar
#

bro full lecture she gave

proper jacinth
#

polar coordinates

severe pulsar
#

and now

#

"nothing i got"

#

niiiice

#

kinda awesome

gentle flint
severe pulsar
#

shes looking through her notes

#

broooooo

#

this is full dedication

rugged root
#

It's moments like this that remind me just how uneducated I am

severe pulsar
#

i feel like its because she empathizes with the pain

sick cloud
#

@severe pulsar btw, do u wanna see the most complex for loop i have ever created in my entire life ?

severe pulsar
#

FEAR

#

guys dart can compile to js meaning that im never writing nodejs again unless i need to write a web server in express or something

#

LETS GO DART

sick cloud
# severe pulsar im scared 👀 but sure

this is a programming marvel:```py

e: integer/number, i: string/calls the function

for e, i in zip(list(range(1, 6)), ["login()", "new_people()", "add_friend()", "show_friend()", "exit_()"]):
if repr(e) == choice:
return eval(i)

else:
print("\nPlease enter the correct number !!\n")
return menu()

and it is probably the first and last time u r gonna see a for loop being used in this way
rugged root
#

Why would you not define those two lists ahead of time

#

To make things cleaner

sick cloud
#

i was too lazy

severe pulsar
#

clean code represent

#

also

#

what linters do you recommend

mystic marlin
uncut meteor
#

bruh

sick cloud
rugged root
#

enumerate()

hollow haven
#

I like flake8

severe pulsar
#

oh right yeah you mentioned earlier, thanks

#

i dont use any besides vscode default python extension stuff currently

#

its enough for my purposes but... i want best practices

#

bruh

#

this entire time

#

i thought she was saying

#

LAPLASS

#

and i read the meme

#

'laplace'

severe pulsar
#

like boiiiii

#

thats how you pronounce it?

sick cloud
severe pulsar
#

damn

mystic marlin
gentle flint
mystic marlin
#

or it will c o n s u m e you in the void

uncut meteor
#
# e: integer/number, i: string/calls the function
funcs = [login, new_people, add_friend, show_friend, exit_]

for i, func in enumerate(funcs, 1):
    if repr(i) == choice:
        return func()
else:
    print("\nPlease enter the correct number !!\n")
    return menu()
sick cloud
severe pulsar
#

kinda c l e a n

#

laplass moment

rugged root
#

Also

#

Oh no wait, you did what I was going to suggest

mystic marlin
#

I assure this happens in bad code, and I've read a lot of it

uncut meteor
#

dunno what repr or choice

severe pulsar
#

people are too fast for hemmy

#

¯_(ツ)_/¯

uncut meteor
#

but shrug

mystic marlin
#

I mean it's best not to use it when you can avoid it

hollow haven
sick cloud
#

jk

mystic marlin
#

I see but generally

mystic marlin
# sick cloud i'm in trouble lol

The eval() language construct is very dangerous because it allows execution of arbitrary code. Its use thus is discouraged. If you have carefully verified that there is no other option than to use this construct, pay special attention not to pass any user provided data into it without properly validating it beforehand.
And because things naturally go wrong, avoid it if you can

sick cloud
mystic marlin
#

O k

uncut meteor
#

use a dict switch

hollow haven
#

Patma PEP!

sick cloud
stoic ore
#

@somber heath Did u checked google colab for tensor flow ?, İt could solve your hardware problem though

uncut meteor
#

!e

def fun1():
  print("fun1")

def fun2():
  print("fun2")

def fun3():
  print("fun3")

dict_switch = {
  1: [fun1, fun3],
  2: [fun2],
  3: [fun3, fun2, fun1],
}

choice = 2
map((), dict_switch[choice])
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

fun2
rugged root
#

Yeah fair

mystic marlin
#

I've seen it

uncut meteor
#

!e

def fun1():
  print("fun1")

def fun2():
  print("fun2")

def fun3():
  print("fun3")

dict_switch = {
  1: [fun1, fun3],
  2: [fun2],
  3: [fun3, fun2, fun1],
}

choice = 3
for func in dict_switch[choice]:
  func()
wise cargoBOT
#

Hey @sick cloud!

It looks like you tried to attach file type(s) that we do not allow (.pdf). We currently allow the following file types: .3gp, .3g2, .avi, .bmp, .gif, .h264, .jpg, .jpeg, .mkv, .mov, .mp4, .mpeg, .mpg, .png, .tiff, .wmv, .svg, .psd, .ai, .aep, .xcf, .mp3, .wav, .ogg, .webm, .webp, .flac, .afdesign, .m4a, .csv.

Feel free to ask in #community-meta if you think this is a mistake.

wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

001 | fun3
002 | fun2
003 | fun1
severe pulsar
#

WHAT

#

WAS THAT

#

NO

#

OH MY GOODNESS

mystic marlin
severe pulsar
#

hmm im surprised rabbit hasnt joined vc yet

#

its almost time for the post rabbit era to start

gentle flint
#

he's eating hats

severe pulsar
#

👀

rugged root
#

Probably busy with work

#

Or sleeping

uncut meteor
#

or both

rugged root
#

Wouldn't put it past him

uncut meteor
#

dreaming about work sucks

amber raptor
#

was sleeping

rugged root
#

Called it

amber raptor
#

I'm off work

gentle flint
#

were you dreaming of work

amber raptor
#

I don't work again till after New Year

uncut meteor
rugged root
#

Damn, how'd you swing that?

amber raptor
#

I get 17 days of Vacation and it's use or lose, even in this year

#

so I used 7 for PAX East and Beach, 3 for getting cut into and burning the last 7 at end of this year

stoic ore
#

I should be afk

#

see u guys later

amber raptor
#

I'm actually with family

#

which is why I"m not joining VC

rugged root
#

No worries

#

Have fun (or at least try)

amber raptor
#

I'm also in Central TZ

uncut meteor
gentle flint
#

ha

#

opalmist

somber heath
uncut meteor
#

its a SPIKEBALL

mystic marlin
#

His serene excellency the platypus

rugged root
high ingot
#

You can use him as a weapon

#

Send it anyway

#

It’s okay

uncut meteor
high ingot
#

¯_(ツ)_/¯

uncut meteor
#

^ me if I goto Australia

#

i don't wanna see what there could be

high ingot
#

Lol

high ingot
uncut meteor
mystic marlin
# high ingot

[David Attenborough voice]
This lovely creature is a marvel of nature
[Holds it in his hand]
It amazes me how I have not died yet
[cut scene on the c r e a t u r e]

high ingot
#

Lol

#

California is a nice placepithink

#

Why blueberry muffins from McDonald’s >:(

rugged root
mystic marlin
#

Sorry, cannot speak rn

frigid panther
#

o/

mystic marlin
#

Burger kind did this ad campaign in my country
Where they said
"we need your help to keep our business running, visit us"

#

for the pandemic

#

and so the memes started rolling

#

Like "We need your votes" for some small parties

#

"We need your money" for banks

#

etc

rugged root
#

Interesting

mystic marlin
#

yeah

rugged root
#

@high ingot Yeah McDonalds now has blueberry muffins, apple fritters, and cinnamon rolls.

#

Honestly they're surprisingly good

high ingot
#

Well

#

Why

mystic marlin
#

can somebody help me list the main differences between json and xml?
it's for a presentation

high ingot
#

Aren’t you getting hamburgers

rugged root
#

Not for breakfast

high ingot
mystic marlin
#

it's for a good cause

high ingot
#

It’s 100% perfect for breakfast

uncut meteor
#

mhm

high ingot
#

I heard sausage egg muffins are even better but we don’t have them in Japan

#

:/

uncut meteor
#

they are

#

amazing

#

i used to get two every day

#

in the mornin

high ingot
#

Lol

#

Healthy

uncut meteor
#

i'm lucky

#

don't need to care about healf

high ingot
#

Gib

#

Ha

severe pulsar
#

lel

high ingot
#

Why is everyone on mute?

severe pulsar
#

once hemlock mutes

#

ITS OVER

uncut meteor
#

im eating cheese and crackers

#

thats why i'm muted

severe pulsar
#

the vc literally goes on hibernation

#

this is the influence he has

high ingot
#

I’m on mute cuz I just woke up and I sound sleepy

high ingot
uncut meteor
wide terrace
#

I'm muted cuz I'm not voice verifeyed

#

I can't spell XD

high ingot
#

I can’t English

uncut meteor
#

I can't

mystic marlin
#

You don't need to talk

#

just spit xml in front of others

high ingot
#

Cheddar

wide terrace
#

lol

high ingot
#

And mozzarella

#

Cheeeeeeseeee

#

Mozzarella doesn’t really have any taste tho

#

It’s just fun to eat

wide terrace
#

how old are you all?

mystic marlin
#

ever tried Bufala? @somber heath

#

d o i t

uncut meteor
#

@wide terrace feel free to try to guess my age

mystic marlin
high ingot
rugged root
#

Like

#

Legit?

severe pulsar
#

thats because hemmy undeafened

#

so naturally

#

it got busy

#

AWESOME

mystic marlin
#

Unity_project_01

#

I can hand you the z i p

#

I made one for a course a year ago

#

it sucks

#

essentially you get dots thrown in your direction and if you do not stop it it sticks to your tower

#

until you are submerged in balls

#

and then it crashes

high ingot
uncut meteor
mystic marlin
#

being able to use flexboxes is a good flex

rugged root
#

Har dee har

severe pulsar
#

we are in the post rabbit era ----------------------------------------------

amber raptor
#

I'm ok with that

mystic marlin
#

you guys do css?
raster graphics in assembly are the way

severe pulsar
wide terrace
uncut meteor
#

this spicy cheese is sooooo goooood

severe pulsar
#

its just that it usually marks a change in the vc mood and quite a big change in topic

high ingot
severe pulsar
#

noooooooooooooooooooooooooooooooooooooo

#

i have been impersonated

#

sadnes

wide terrace
#

stop impersonating me fake

uncut meteor
#

BroDude

high ingot
#

Meme hunting

uncut meteor
wide terrace
high ingot
#

Wtf

amber raptor
#

!e ```python
class One:
class Two:
def init(self):
self.person = "Rabbit"

def init(self):
self.hello = "Hello"
self.two = Two()
class Two:
def init(self):
self.person = "Rabbit"
a = One()
print(f"{a.hello} {a.two.person}")```

wise cargoBOT
#

@amber raptor :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 8, in <module>
003 |   File "<string>", line 4, in __init__
004 | NameError: name 'Two' is not defined
high ingot
#

Imagine being a dude

uncut meteor
#

!e

class One:
  class Two:
    def __init__(self):
      self.person = "Rabbit"

  def __init__(self):
    self.hello = "Hello"
    self.two = Two()

a = One()
print(f"{a.hello} {a.two.person}")
wise cargoBOT
#

@uncut meteor :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 10, in <module>
003 |   File "<string>", line 8, in __init__
004 | NameError: name 'Two' is not defined
amber raptor
#

!e python class One: class Two: def __init__(self): self.person = "Rabbit" def __init__(self): self.hello = "Hello" self.two = Two() a = One() print(f"{a.hello} {a.two.person}")

wise cargoBOT
#

@amber raptor :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 8, in <module>
003 |   File "<string>", line 7, in __init__
004 | NameError: name 'Two' is not defined
high ingot
amber raptor
#
class Commands:
  class register:
  class info:```
severe pulsar
uncut meteor
#

!e

class One:
  class Two:
    def __init__(self):
      self.person = "Rabbit"
  def __init__(self):
    self.hello = "Hello"
    self.two = One.Two()
a = One()
print(f"{a.hello} {a.two.person}")
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

Hello Rabbit
uncut meteor
#

!e

class One:
  class Two:
    def __init__(self):
      self.person = "Rabbit"
  def __init__(self):
    self.hello = "Hello"
    self.two = self.Two()
a = One()
print(f"{a.hello} {a.two.person}")
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

Hello Rabbit
somber heath
#

"It can't hurt." It's still 2020.

uncut meteor
amber raptor
#

!e python class One: class Two: def __init__(self): self.person = "Rabbit" def __init__(self): self.hello = "Hello" self.two = One.Two() a = One() b = One() print(f"{a.hello} {a.two.person}") b.two.person = "Hemlock" print(f"{a.hello} {a.two.person}") print(f"{b.hello} {b.two.person}")

wise cargoBOT
#

@amber raptor :white_check_mark: Your eval job has completed with return code 0.

001 | Hello Rabbit
002 | Hello Rabbit
003 | Hello Rabbit
amber raptor
#

!e ```python
class One:
class Two:
def init(self):
self.person = "Rabbit"
def init(self):
self.hello = "Hello"
self.two = One.Two()
a = One()
b = One()
print(f"{a.hello} {a.two.person}")
b.two.person = "Hemlock"
print(f"{a.hello} {a.two.person}")
print(f"{b.hello} {b.two.person}")
b.init
print(f"{b.hello} {b.two.person}")

wise cargoBOT
#

@amber raptor :white_check_mark: Your eval job has completed with return code 0.

001 | Hello Rabbit
002 | Hello Rabbit
003 | Hello Hemlock
004 | Hello Hemlock
uncut meteor
#

!e

class One:
  class Two:
    def __init__(self):
      self.person = "Rabbit"
  def __init__(self):
    self.hello = "Hello"
    self.two = One.Two()
a = One()
b = One()
print(f"{a.hello} {a.two.person}")
b.Two.person = "Hemlock"
print(f"{a.hello} {a.two.person}")
print(f"{b.hello} {b.two.person}")
b.__init__()
print(f"{b.hello} {b.two.person}")
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

001 | Hello Rabbit
002 | Hello Rabbit
003 | Hello Rabbit
004 | Hello Rabbit
rugged root
#

!e

class One:
  class Two:
    def __init__(self):
      self.person = "Rabbit"
  def __init__(self):
    self.hello = "Hello"
    self.two = One.Two()
a = One()
b = One()
print(f"{a.hello} {a.two.person}")
b.two.person = "Hemlock"
print(f"{a.hello} {a.two.person}")
print(f"{b.hello} {b.two.person}")
b.two.__init__()
print(f"{b.hello} {b.two.person}")
wise cargoBOT
#

@rugged root :white_check_mark: Your eval job has completed with return code 0.

001 | Hello Rabbit
002 | Hello Rabbit
003 | Hello Hemlock
004 | Hello Rabbit
amber raptor
#

!e python class One: class Two: def __init__(self): self.person = "Rabbit" def __init__(self): self.hello = "Hello" self.two = One.Two() a = One() b = One() print(f"{a.hello} {a.two.person}") b.two.person = "Hemlock" print(f"{a.hello} {a.two.person}") print(f"{b.hello} {b.two.person}") b.__init__() print(f"{b.hello} {b.two.person}")

wise cargoBOT
#

@amber raptor :white_check_mark: Your eval job has completed with return code 0.

001 | Hello Rabbit
002 | Hello Rabbit
003 | Hello Hemlock
004 | Hello Rabbit
rugged root
#

@hard wyvern

hard wyvern
#

hello

#

yes

#

but i want to add it to task scheduler automaticaly

amber raptor
#

Yes

rugged root
hard wyvern
#

yaa

#

I'm trying to automate zoom

amber raptor
#

automate how?

hard wyvern
#

yes

#

pyautogui is also used

#

what

rugged root
hard wyvern
#

zoom meeting software

#

for online classes

#

I'm trying automate

#

that

#

😂

high ingot
#

I hate zoom

#

And google meet

hard wyvern
rugged root
#
super().ham_sandwich()
uncut meteor
#

whats so super about it? does it wear a cape?

hard wyvern
#

yes thats what i wanted to do

#

but it should run automatically by task sheduler

#

and I wanted to share this script to my frnds

high ingot
amber raptor
#
class Sandwich:
  class Meat:
    pass
  def __init__(self):
    self.topping = "Mayo"
    self.bread = "Wheat"```
hard wyvern
#

I can add it to task scheduler manually but I cannot do add it into my frns computer task sheduler

amber raptor
#

write Powershell script

hard wyvern
#

ok

high ingot
amber raptor
#

!e ```python
class Sandwich:
class Meat:
def init(self):
print(Sandwich.topping)
def init(self):
self.topping = "Mayo"
self.bread = "Wheat"
self.topping = Meat()

high ingot
high ingot
#

No

wise cargoBOT
#

@amber raptor :warning: Your eval job has completed with return code 0.

[No output]
high ingot
#

This

hard wyvern
uncut meteor
#

!e

class Sandwich:
  class Meat:
    def __init__(self, parent):
      self.parent = parent
    def topping(self):
      return self.parent.topping

  def __init__(self):
    self.topping = "Mayo"
    self.bread = "Wheat"
    self.meat = self.Meat(self)


s = Sandwich()
print(s.meat.topping())
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

Mayo
somber heath
#
class MyClass:
    def __init__(self):
        print('Hello')

class MySubClass(MyClass):
    def __init__(self):
        super().__init__()```
high ingot
#

I heard it’s pretty good

amber raptor
#

!e ```python
class Sandwich:
class Meat:
def init(self, parent):
self.parent = parent
def topping(self):
return self.parent.topping

def init(self):
self.topping = "Mayo"
self.bread = "Wheat"
self.meat = self.Meat(self)

s = Sandwich()
print(s.meat.topping())
s.topping = "Ketchup"
print(s.meat.topping())```

wise cargoBOT
#

@amber raptor :white_check_mark: Your eval job has completed with return code 0.

001 | Mayo
002 | Ketchup
hard wyvern
#

no I haven't used it

#

yet

#

@high ingot

high ingot
#

Maybe you should use it.

hard wyvern
#

why

high ingot
#

Ya

hard wyvern
#

lol

uncut meteor
hard wyvern
#

😂

uncut meteor
#

bonk @high ingot

high ingot
#

Lol

#

Nooooo

#

I deleted it

hard wyvern
#

thats good

#

its like zoom

high ingot
#

Ya

hard wyvern
#

I think

hard wyvern
#

yeah

#

I think zoom is good

high ingot
#

`U.S. Department of Justice prosecutors on Friday charged Zoom, a 39-year-old former employee of videoconferencing software company Jinjiang Jin in China, with disrupting and interfering with a videoconference held to commemorate the 30th anniversary of the June 4 Incident by sending IP addresses, emails, meeting passwords and other sensitive internal data directly to Chinese law enforcement. The FBI also disclosed emails related to the case alleging that the former employee monitored meetings for China, including those related to the "Hong Kong protests," and that the former employee is now wanted by the FBI.

Translated with www.DeepL.com/Translator `

#

Zoom is bad

hard wyvern
#

yeah in terms of security its bad

#

i agree

#

but companies like fb can leak our data then whats zoom

amber raptor
#

Hachi, this is all companies

hard wyvern
#

hmmm

amber raptor
#

this is what happens when companies outsource a ton

hard wyvern
#

one the source of income

amber raptor
#

see SolarWinds

high ingot
#

:/

amber raptor
#

see Equifax

hard wyvern
#

@rugged root @amber raptor @somber heath thank u guys for ur help

amber raptor
#

it's a known problem but since corporations wants to make pools of money, the solution is very difficult

somber heath
#

"If it ain't broken, don't fix it." How else am I supposed to break things accidentally by taking them apart to play with?

amber raptor
#

BTW, other countries on this list of very hostile include: Israel, many Eastern European COunties, China, Russia and India

hard wyvern
#

ok

normal hinge
somber heath
normal hinge
#

Both

#

Looks like shark

amber raptor
#

CyberDead, countries with heavy government sponsored industrial espionage

normal hinge
#

How u foregineers deal with cold 24/7, damn it is cold and I got cold

high ingot
#

Have some cat pics

uncut meteor
high ingot
#

My apologies

rugged root
high ingot
#

Lol

#

Cute emote

#

I don’t speak Chinese

eternal bough
#
>>> res = requests.get('http://nostarch.com')
>>> res.raise_for_status()
>>> noStarchSoup = bs4.BeautifulSoup(res.text)
>>> type(noStarchSoup)
<class 'bs4.BeautifulSoup'>

https://automatetheboringstuff.com/chapter11/ search 'beautiful soup' @near niche

frigid shard
rugged root
gilded locust
#

mr.hemlock i have a prob but i dont understand the error

rugged root
#

Toss the error my way

wise cargoBOT
#

Hey @gilded locust!

Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:

• If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)

• If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:

https://paste.pythondiscord.com

rugged root
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

amber raptor
gilded locust
amber raptor
#

aka, we got ultrapopular and ignored basic security rules

gilded locust
#

i send my error

#

do you want i send you my code + my error in MP ?

#

with all ( token )

#

u want my code ?

rugged root
high ingot
#

Oh no

#

My phone’s dying

rugged root
#

@livid yacht I have no idea why, but every time I see your icon it looks like a dude with crazed eyes, and it's only when I click to see your profile that I see it for what it is

livid yacht
#

@rugged root haha

rugged root
#

Like a weird Salad Fingers face or something

livid yacht
#

its a game ss "that level again"

amber raptor
#
class MessageHandler:
    class Info:
        def __init__(self,parent):
            self.parent = parent

        def get_user_info():
            pass
    
    def __init__(self,message:dict):
        self.message = message
        self.splitmessage = self.__split_message(message)
        self.info = MessageHandler.Info()

    def __split_message(message:str) -> List(str):
        return message.split(" ")```
rugged root
#

@faint magnet Would you mind changing your nickname to something that doesn't use Zalgo characters? Currently it violates our nickname policy. See #rules for details

faint magnet
#

Ok

rugged root
#

I appreciate it

faint magnet
#

Done

rugged root
#

I really do appreciate it

faint magnet
#

Ok

rugged root
#

!otn a held at snekpoint

wise cargoBOT
#

:ok_hand: Added held-at-snekpoint to the names list.

rugged root
#

!server

wise cargoBOT
#

Server information
Created: 3 years, 11 months and 13 days ago
Voice region: europe
Features: NEWS, PARTNERED, MEMBER_VERIFICATION_GATE_ENABLED, RELAY_ENABLED, DISCOVERABLE, INVITE_SPLASH, VIP_REGIONS, ANIMATED_ICON, COMMUNITY, PREVIEW_ENABLED, WELCOME_SCREEN_ENABLED, VANITY_URL, BANNER

Channel counts
Category channels: 26
News channels: 8
Text channels: 146
Voice channels: 11
Staff channels: 62

Member counts
Members: 121,546
Staff members: 86
Roles: 79

Member statuses
status_online 37,050
status_offline 84,499

near niche
#

<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="297d4c5a5d694c51484459454c074a4644">[email&#160;protected]</a>

#
def decodeEmail(e):
    de = ""
    k = int(e[:2], 16)

    for i in range(2, len(e)-1, 2):
        de += chr(int(e[i:i+2], 16)^k)

    return de
rugged root
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

near niche
#

<img src="https://www.emailsanta.com/img3/Sig-FatherChristmas.png" alt="Father Christmas" title="Father Christmas" class="santaSig">

scenic geyser
#

That image didn't load

#

Is it pastebin or hastebin?

rugged root
#
soup.img['alt']
solar scaffold
#

R u guys familiar with Cambridge exams?

scenic geyser
#

No but we can help

valid adder
#

hi there

#

I just started python coding like 7 months ago

#

its actually super interesting

scenic geyser
#

I did just 2 months ago

valid adder
#

im 13 btw

#

hbu?

scenic geyser
#

Nice I won't tell

valid adder
#

ah ok

#

no worries lol

#

where is general chat?

scenic geyser
#

Thanks

uncut meteor
scenic geyser
#

This is the vc chat

valid adder
#

there are so many chats i cant find it

solar scaffold
#

Ur not 13

proper jacinth
#

hello

#

guys

#

@rugged root what's up

#

@uncut meteor hey

#

good luck

#

I am still

#

muted

#

It says I need 50 message

#

ye

#

is it or

#

oh

#

:d

uncut meteor
#

f

proper jacinth
#

😄

#

thanks

#

strawberry juice

scenic geyser
#

I had guava juice last time

proper jacinth
#

smootie

scenic geyser
#

Hey Gediz

#

What's up buddy?

#

Apple juice in my fridge btw

proper jacinth
#

the banana smoothi

scenic geyser
#

Haha we don't get smoothies here

proper jacinth
#

why

scenic geyser
#

We do in MacDonalds only

#

And KFC

proper jacinth
#

Where are you from

scenic geyser
#

India bro

#

I've been in US for 4 years

#

Lol

proper jacinth
#

Five guys is amazing though

#

Have you ever tried it

scenic geyser
#

Nope

#

I've heard Five Little Indians

#

It's a band lol

proper jacinth
#

Guys did you see the new marvel serie

#

Loki

weary zephyr
#

ye trailer dropped recently

proper jacinth
#

black widow

#

I guess

weary zephyr
#

cancelled

proper jacinth
#

guys what is the best ide for python

#

😄

#

yes

uncut meteor
livid yacht
#

spyder

proper jacinth
#

I use vim

#

love the hotkeys

uncut meteor
scenic geyser
#

Vim is text editor ain't so?

proper jacinth
#

yep

scenic geyser
#

How can you run .py?

proper jacinth
#

but I dont use ide most of the time

tough sleet
#

Hey what's up

proper jacinth
#

I execute it

tough sleet
#

VSCode + Vim add-on

proper jacinth
#

in terminal

#

@uncut meteor are you in lockdown now

scenic geyser
tough sleet
#

I'm not verified

gusty fjord
#

I would've prefered pycharm but vscode is just lighter , also I don't have a great PC so doesn't make sense to use pycharm.

tough sleet
#

Lol

proper jacinth
#

😄

#

I thought 50 messages were enough

#

OR

#

django

whole bear
#

any moderator here?

rugged root
#

Sup

proper jacinth
#

pro

rugged root
#

@whole bear Did you need something?

whole bear
proper jacinth
#

3 days

scenic geyser
#

😂

proper jacinth
#

python

livid yacht
#

can we discuss about / "windows" and \ "linux" in path , i m always confused

whole bear
#

oh ok thankyou

rugged root
scenic geyser
livid yacht
#

plus my vscode while installing removes \ this from path and then there is installation error in windows

rugged root
#

That's really bizarre

vapid seal
#

ile "d:\Anwender\Documents\TierBot.py", line 3, in <module>
import pandas as pd
File "C:\Users\Anwender\AppData\Local\Programs\Python\Python39\lib\site-packages\pandas_init_.py", line 11, in <module>
import(dependency)
File "C:\Users\Anwender\AppData\Local\Programs\Python\Python39\lib\site-packages\numpy_init_.py", line 305, in <module>
win_os_check()
File "C:\Users\Anwender\AppData\Local\Programs\Python\Python39\lib\site-packages\numpy_init
.py", line 302, in _win_os_check
raise RuntimeError(msg.format(file)) from None
RuntimeError: The current Numpy installation ('C:\Users\Anwender\AppData\Local\Programs\Python\Python39\lib\site-packages\numpy\init.py') fails to pass a sanity check due to a bug in the windows runtime. See this issue for more information: https://tinyurl.com/y3dm3h86

#

I got this error but i dont understand it

weary zephyr
#

You have to use an older version of numpy I think

vapid seal
#

aaaand how do i get the older versoin

livid yacht
#

yes

tough sleet
#

Change your python path to the older version maybe

echo eagle
#

@coarse mortar they use pattern matching. https://github.com/VirusTotal/yara
so more like glorified if-else stmnts 😛

rugged root
#

py -m pip uninstall numpy
py -m pip install numpy==1.19.3

proper jacinth
#

our assignments

#

we have 100 if else

echo eagle
proper jacinth
#

no

#

😄

#

we are not allowed to use list

#

or other fancy stuff

tough sleet
#

It's due to us being freshmen in uni

#

Even though we know about classes and stuff, we can't use most of the features that the lectures haven't gone over

#

It's annoying

proper jacinth
#

depends on where you save it

vapid seal
tough sleet
#

If you create a folder in wherever you want to work in and choose the folder in VSC, that'll be your project folder

proper jacinth
#

what were you doing

vapid seal
#

And how do i chose the folder in vsc

proper jacinth
#

@near niche

rugged root
tough sleet
oak dew
#

Hey guys, are you talking about IDE??

vapid seal
#

so it is not in the vsc settings

echo eagle
tough sleet
#

No just on the top left corner

livid yacht
#

In this Python Programming Tutorial, we will be learning how to set up a Python development environment in VSCode on Windows. VSCode is a very nice free editor for writing Python applications and many developers are now switching over to this editor. In this video, we will learn how to install VSCode, get the Python extension installed, how to c...

▶ Play video
echo eagle
#

@near niche AGPL-v3 is the most restrictive OSS license u can get. MIT/BSD are quite lenient.
One thing u could do is a "dual license" thing for people using ur code for profit by adding a secondary LICENSE.commercial file. Here's an example of such a project (https://github.com/rednaga/APKiD)

near niche
#

i want to use AGPL since it makes people share the source code even when used over the internet

scenic geyser
#

Yeah for modules I think

echo eagle
scenic geyser
#

It becomes a package if you have the init file in it

#

The folder becomes a package

echo eagle
#

__init__.py can be empty, it just needs to be there in the folder

scenic geyser
#

Ok share

echo eagle
#

unpopular opinion: need a channel for cryptocurrency/Bitcoin discussion under "Topical chat/help"

near niche
echo eagle
#

there must be.

scenic geyser
#

Bitcoin is a myth

echo eagle
near niche
#

@scenic geyser look at the google meet

scenic geyser
#

Yeah installing Google meet

echo eagle
#

yeah, i tend to agree. I have mostly seen people use javascript/solidity for blockchain/BTC stuff

rugged root
#

Makes sense. node.js and the V8 engine make JS significantly faster than Python

near niche
#

@scenic geyser can you see and hear me?

rugged root
#

And when it comes to those transactions, that's what you'd want.

scenic geyser
#

Yes but I'm on phone

#

I've done file read write using modules

#

It basically allows me to access .py files from other directories. I can get back to you tomorrow just need to recheck

echo eagle
#

anybody tried https://github.com/h2oai/wave yet? it was in my google feed, looks quite interesting

GitHub

Realtime Web Apps and Dashboards for Python. Contribute to h2oai/wave development by creating an account on GitHub.

scenic geyser
#

I still haven't learnt GitHub. I've Git installed

weary zephyr
#

@near niche well I found this:

This is what Kenneth Reitz recommended in 2013.

README.rst
LICENSE
setup.py
requirements.txt
sample/init.py
sample/core.py
sample/helpers.py
docs/conf.py
docs/index.rst
tests/test_basic.py
tests/test_advanced.py

scenic geyser
#

👍🏻

weary zephyr
scenic geyser
#

.rst for reStructuredText

#

Interesting

echo eagle
#

or just not verified to unmute xD

eternal bough
glossy blaze
#

hmm

scenic geyser
#

Psychology of selling by?

glossy blaze
#

got any clue what this is?

scenic geyser
#

Yes peanut

glossy blaze
#

Postulated new slash commands for bots. Performing actions with bots is easier than ever. Now, developers can have a list of commands available for their bots accessible by the slash key (/). You won’t have to remember bot commands anymore and get laughed at when you get the command wrong 😦 !help…..!help….please

scenic geyser
#

Ok

glass vector
#

brian tracy

glossy blaze
#

been confused with them for sometime rn

#

can you uhh explain it to me the concept 🤔

echo eagle
#

do u mean negotiating salary, @eternal bough ? 😛

rugged root
#

Pretty sure, she does, yeah

somber heath
#

Are cats purposeful?

rugged root
#

@shadow trout I really hope that you're not here only to use a text to speech program in voice chat

shadow trout
#

no

#

i came here because people usually talk about interesting topics and it's nice to hear about them while working on other projects

rugged root
#

@eternal bough What'd you say?

echo eagle
#

by that logic, is cannibalism equivalent to biology ?

shadow trout
#

Well it really depends on what goal someone's trying to achieve from this type of research.

digital jackal
#

hey guys!

shadow trout
#

hello

scenic geyser
#

24000 a year is very less in USA

#

2000 per month lol

willow light
#

24000 is considered poverty in usa

scenic geyser
#

Actually still I can survive

shadow trout
#

Kernal Units?

scenic geyser
#

I can pay rent and food but no luxuries

willow light
#

I'm used to more than twice that income, no way am I giving it up even though I hate every second of being stuck in a cubicle staring at a screen.

#

I'd much prefer doing field research in, say, Kansas, or Antarctica

rugged root
#

He says hunched over a keyboard staring at a screen

willow light
#

I'm not hunched over my keyboard lol

rugged root
#

Sorry, with perfect posture at your keyboard

willow light
#

My back is straight

uncut meteor
#

are we talking about army ranks? ||colonel ||

shadow trout
#

heh

rugged root
#

Nope

#

Ears of corn

uncut meteor
#

ah

digital jackal
#

dilated = cv.dilate(canny, (3,3))

willow light
#

I keep having issues with Cartopy, anyone else used that library before?

scenic geyser
uncut meteor
#

dilate(src, dst, kernel)

This method accepts the following parameters −

src − A Mat object representing the source (input image) for this operation.

dst − A Mat object representing the destination (output image) for this operation.

kernel − A Mat object representing the kernel.
rugged root
#

Name doesn't ring a bell

digital jackal
#

the hell is a Mat object

echo eagle
#

https://github.com/mitmproxy/mitmproxy is a proxy in python and it supports key based events and all from the command line GUI. U can look at how they do it. @unkempt quail

whole bear
#

why rather use gpu?

echo eagle
shadow trout
#

GPU is more efficient i think.

#

yeah

rugged root
#

Sort of

whole bear
#

oh its like deep learning?

rugged root
#

There's more specifically designed cards for this

whole bear
#

how is it going to make profit

#

and how much profit does it make?

#

what happens if everybody stops mining

#

like no one mine anymore?

uncut meteor
#

@rugged root it seems like your mic ducks when somebody else talks

shadow trout
#

Priority Speaking is nice.

willow light
#

I vote we all go push-to-talk when we have more than 10 in the chat

shadow trout
#

Neppkin i mean

echo eagle
#

im 20 and that hurt

#

jk

shadow trout
#

Uh introduce a new topic?

rugged root
#

15

echo eagle
#

im currently pursuing my bachelors in CS/IT

shadow trout
#

Ah that's cool.

#

👋

rugged root
#

Again, sorry for getting snappish

shadow trout
#

It's okay, everyone has their moments sometimes.

rugged root
#

True enough

somber heath
#

Like me.

echo eagle
#

old people guarantee >>> Social security / Pension / retirement plan

shadow trout
#

@digital jackal It'd be nice until you see the rent prices.

echo eagle
#

roughly minimum wage,
8$ x 40 hours x 4 weeks x 12 months == $15360/year

simple math 💩

#

In India, u can get a minors bank account at age of 14. It's a proper bank account with net banking, cheque book, debit card. The catch is: strict limits on how much money can u have in it and how much u can spend monthly
I guess, it's more or less same as @unkempt quail hase

shadow trout
#

I'm pretty sure some places you can start working when your 14

scenic geyser
#

@unkempt quail Do you have net banking in your card?

unkempt quail
#

wym

uncut meteor
#

online banking

scenic geyser
#

Can you purchase stuff online?

unkempt quail
#

yes

#

it's valid everywhere

scenic geyser
#

Nice. You should talk to your bank asap if it got lost

unkempt quail
#

it got no money in it

scenic geyser
#

Lol 😂

unkempt quail
#

I can cancel it from the phone app

scenic geyser
#

Nice

echo eagle
#

@uncut meteor where u from. no exams ? xD

shadow trout
#

Here we have a couple mandatory tests that we have to pass

uncut meteor
#

uk

shadow trout
#

And some that don't really matter that much

#

US situation is still kind of bad
(covid)

scenic geyser
#

Hmm

shadow trout
#

Hello

uncut meteor
#

hej

shadow trout
#

Jeez 25

uncut meteor
#

whats 25?

shadow trout
#

Prayers or something for the religion he's required to study.

#

@somber heath They might reuse it i think?

#

Do you know if there's any practice tests online?

#

No like mock practice tests

somber heath
#

Mock tests? Pfff. Can't have those. Banned.

shadow trout
#

...

somber heath
#

Illegal.

#

Criminal.

shadow trout
#

Jeez i feel bad.

somber heath
#

You want to look at relevant research material to pass studied subjects? Enjoy prison.

shadow trout
#

Jesues

vestal badge
#

message n out of n

#

50*

shadow trout
#

@unkempt quail I'd try finding something you'd like doing and putting your effort into doing it

#

Wow situation there must be bad

#

I'm not really that good with conversations, sorry.

uncut meteor
errant folio
#

So hows it going.

shadow trout
#

I'm pretty sure most banks give an option to stop you from overdrawing

#

no?

uncut meteor
#

As part of the all-new DEATH STRANDING x Cyberpunk 2077 PC update, we've introduced a new Hacking function that Sam Bridges can use in combat to target enemy machines. Porters will have the ability to stop Mule sensor poles from activating for a limited time, stun enemy Odradeks and hack Mule trucks to stop them in their tracks.

There has never...

▶ Play video
shadow trout
#

half life is a interesting game

uncut meteor
#

20/10

rugged root
#

Okay, NOW I'm gone

uncut meteor
shadow trout
#

silence

#

fun

vestal mason
#

why is everyone so quiet?

uncut meteor
#

cos burrr

near niche
halcyon flare
shadow trout
#

ah

#

looks pretty neat

errant folio
#

OH BOY.
ARCH USER

#

REEEEE

willow light
#

literally did a </sarcam> tag in my laugh

#

arch is nice and all, but I can't let go of ubuntu.

#

(says the guy working on learning powershell)

errant folio
#

"AcHtUaLlY aRcH pRoViDeS mOrE fReEdOm"

#

God I despise Arch elitist more than C++ workers.

somber heath
#

@Félix An#6550 ```python
class ClassA:
pass

a = ClassA()

a[0] #This will raise an AttributeError.

class ClassB:
def getitem(self, key):
return key

b = ClassB()

b[0] #This will return 0, or whatever you feed the square brackets.```

errant folio
#

@near niche Santa > Jesus

willow light
#

Santa is supposed to be indigenous swedish, but the romans co-opted him with saint nicholas, the patron saint of prostitute (LOOK IT UP)

errant folio
#

I also love wholesome arabic carpenters.

#

inb4 Jesus was just some chill dude who was good at making chairs.

willow light
#

Speaking of rabbit holes, who else watches VTubers?

errant folio
#

I dont, because I socialize.

shadow trout
somber heath
#

@near niche It's one of the methods behind dictionary-like or list-like square bracket stuff.

willow light
#

socializing is overrated. let's keep the covid out of my relationships, okay?

errant folio
#

You're more afraid of the virus of Love, admit it.

#

</3

willow light
#

Nope, love is just an excuse to sell chocolates in the middle of February

errant folio
#

I can't be me via text. I must reach that 50 message reqiurement
My facetious personality cannot be expressed properly.

willow light
#

Love is overrated. The euphoric rush you get when you move all your stories to done a week before end-of-year break starts is far better.

shadow trout
#

I would post something but i don't think im allowed to post it

errant folio
#

Thank GOD I can't verbally reply to @near niche .

shadow trout
#

Why not?

errant folio
#

Too new. DD:

#

@willow light so the Saint of Capitalism?

willow light
#

Basically yes

errant folio
#

:DDD

willow light
#

patron saint of broadcasters lol

errant folio
#

Please, keep this convo going. I must reach the 50 message count within the rules.

willow light
#

This chat is basically "Which religion is the best one, and why is it the giant spaghetti monster?"

#

</sarcasm>

shadow trout
#

It's okay

errant folio
#

If only I knew enough about coding to make a whitty reply.

shadow trout
#

Interesting conversation nothingless

willow light
#

Scrolling super duper far now

near niche
errant folio
#

No.

#

install

near niche
errant folio
#

inb4 malware, it was all a ploy.

willow light
#

it's basically gitlab ci but in github instead

uncut meteor
#

!e

x = 2
assert x != 1, "X is one!"
assert x != 2, "X is two!"
wise cargoBOT
#

@uncut meteor :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 3, in <module>
003 | AssertionError: X is two!
uncut meteor
#

@near niche

somber heath
#

!zen

wise cargoBOT
#
The Zen of Python, by Tim Peters

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!

willow light
#

!e import this

#
Dear Santa,
\tI can explain.
errant folio
#

zozzle

#

make a platform, to talk to santa
clearly state he's not real
wat?

willow light
#

Dear Santa,

Trust me, I have a perfectly good explanation for what I did.

#

"Dear Santa,

Do you care about local laws? Because if you do, then I was legally nice this year."

errant folio
#

Santa's criteria falls within the legal jurisdiction of Amsterdam.

#

You're good.

willow light
#

The MITTENS LICENSE

errant folio
#

Calico?

willow light
#

UMass Lowell (pronounced "Lull")

errant folio
#

Can you express that in Ladder Logic for me?
I cannot comprehend.

willow light
#

worcester == "wistah"

#

ASSert

uncut meteor
#

Azuret

willow light
#

Azure

errant folio
#

If you pronounce it with a Z, sounds finnish.

uncut meteor
#

WokeySlush

errant folio
#

Azzert :DD

#

@uncut meteor Ladder Logic is designed for analogue electrical systems.

#

A method of describing logic layouts using mechanical based switches like relays.

uncut meteor
#

------[ ]--------------[ ]----------------( )
Key switch 1 Key switch 2 Door motor

errant folio
#

Think of it like logic gate systems, but expressed differently with an AC source and Ground as the sides.
And the rungs in the middle are components that communicate.

#

Hence "Ladder" logic.

#

Allow me to draw an example. Can I post that here?

#

Switch B controls current to the Relay, which governs the power to the Lamp.

#

Ladder Logic is just a method of visually describing the logic of analogue electrical systems.

#

Lets say the lamp is a heater, and draws a LARGE amount of current.

#

A manual switch would be "dangerous" so you'd control it with a Relay.
But the Relay draws a low current, which is safer to control with a manual switch.

#

I was making a joke, asking you to explain something in a useless method of logic.

#

But hey, you learned something new though.

#

You also fell into my trap. I have reached the 50 message requirement.

#

Yes.

#

tiiimme.

uncut meteor
errant folio
#

At 2:20PM Est, tomorrow. My voice shall be set free.

uncut meteor
coarse mortar
#

XD

uncut meteor
coarse mortar
#
gentle flint
#

*// setup views

shadow trout
#

we just vibin

coarse mortar
warm axle
#
pkill -9 python
#

to kill all pid that run python

#

in linux

rich cloud
#

python just looked alot neat.

#

nice

#

wait, you using js?

#

im new here, server is not allowing me to unmute

#

yupp

#

i see

#

scared the shit outta me lmaoo

#

xD

#

i had my volume maxed hahahha

#

all good

near niche
rich cloud
#

overlay?

halcyon flare
#

test

rich cloud
#

z/embed

#

WillyWonka

shadow trout
#

Hmm

rich cloud
#

lmaoo

rich cloud
#

seems like fun

#

ahh

scenic geyser
near niche
#

es!emailsanta

#

Letter making start!

#

Prompt: What is your name?

#

Felix

scenic geyser
#

CSV is comma separated value

rich cloud
#

bye

#

lmao

#

are you guys interested in machine learning at all?

whole bear
#

Hello

scenic geyser
#

@rich cloud You were not in vc?

idle oxide
#

hi

scenic geyser
rich cloud
#

im still learning

#

will look into those

scenic geyser
#

Yeah same

#

👍🏻

idle oxide
#

numpy seems good imo

scenic geyser
#

I struggle

errant folio
#

Here, Take this

#

Its dangerous to render alone.

rich cloud
#

i also started watching andrew ng's lectures

scenic geyser
#

I've Intel built in graphics

rich cloud
#

idk if its helpful

scenic geyser
#

Idk but lectures are always good ngl

rich cloud
#

is this cyberpunk?

scenic geyser
#

Hell yeah I wanna buy this game. So bad

#

Brb

rich cloud
#

the essentails xD

whole bear
#

who*

#

i need to send 50msgs to verify

rich cloud
rich cloud
whole bear
#

@rich cloud lets have a short conversation which might complete 50 msgs

#

he has a youtube chanal

#

???

scenic geyser
#

Cyberpunk has explicit sexual activity

rich cloud
scenic geyser
#

Should I buy it?

rich cloud
whole bear
#

ok

rich cloud
rich cloud
scenic geyser
whole bear
scenic geyser
#

Is there a child mode or something?

rich cloud
rich cloud
scenic geyser
rich cloud
scenic geyser
#

Can't buy it

idle oxide
#

can't talk kappa

rich cloud
scenic geyser
#

@rich cloud You're in the US?

rich cloud
#

ide = dev c++

scenic geyser
#

Dev C++

scenic geyser
rich cloud
rich cloud
scenic geyser
#

I have the same IDE for C++

scenic geyser
rich cloud
main fjord
#

dude i need some help

#

;-;

scenic geyser
rich cloud
idle oxide
#

geany owo

scenic geyser
idle oxide
#

indeed interesting haha

whole bear
rich cloud
halcyon flare
graceful grail
#
whole bear
#

can someone recommend me a python ide for a beginner?

rich cloud
#

pycharm

whole bear
#

can i know what lang are u learning ???? @rich cloud

errant folio
#

Oh ffs @near niche

#

Santa is real, you're just mad you didn't get that bike you wanted.

#

@near niche
Santa is real.
You're just salty.

:(

#

I live alone too, and yet I get gifts too.

#

How dare this man come into the chat and disgrace Santa....

#

@graceful grail This is why I need voice priv.
To defend Santa's honor.

#

Haha, not freedom units.

#

@near niche You can't divide a centimeter into thirds.

#

Evenly?

#

I think NOT

near niche
#

1/3 cm

errant folio
#

Imagine not being able to divide your measurement system into thirds equally.

#

So can we.

#

Eighths.

#

I'm drunk, no bully.

#

4 pints in

#

1 pint is 16 oz