#voice-chat-text-0
1 messages ยท Page 629 of 1
dayum
who dat lol
you guys trynna doxx me?
@sharp iron you can do USACO
cool
lol
we;re on the same page
how'd you find his name?
there's a lot of bronze
F
F
F
lol
F
F
that's sad
F
F
F
F
f
F
ig its fine
cause that's not my real identity
and its quite complicated to find out
yeah
Biraro?
hello , anyone help me with joining the voice chat
hi
hot ๐ฉ
๐
hi
yes
mods = [x,y for x in (-1,0,1) for y in (-1,0,1) if (x,y) !=(0,0)]
wow
๐ฉ ๐ฆ
add_dead_cells_to_result(x, y - 1, cell_color, life_matrix, result_before_random_chance)
add_dead_cells_to_result(x + 1, y - 1, cell_color, life_matrix, result_before_random_chance)
add_dead_cells_to_result(x + 1, y, cell_color, life_matrix, result_before_random_chance)
add_dead_cells_to_result(x + 1, y + 1, cell_color, life_matrix, result_before_random_chance)
add_dead_cells_to_result(x, y + 1, cell_color, life_matrix, result_before_random_chance)
add_dead_cells_to_result(x - 1, y + 1, cell_color, life_matrix, result_before_random_chance)
add_dead_cells_to_result(x - 1, y, cell_color, life_matrix, result_before_random_chance)
add_dead_cells_to_result(x - 1, y - 1, cell_color, life_matrix, result_before_random_chance)
im just making a shitty name generator
I'm a noob
for mod in mods:
print(pos[0]+mod[0], pos[1]+mod[1])```
any good https://hatebin.com/qpyryjaegd (just accidently posted in the unity discord server somehow)
i'm lazy so i don't annitate anythin
i need to see if this works on a computer without python (I've done an exe), because I'm making this for my moms work and i don't want to install python on her computer
How do I add an image in Tkinter?
This gave me a syntax error:
root = tk.Tk()
img = ImageTk.PhotoImage(Image.open(path))
panel = tk.Label(root, image = img)
panel.pack(side = "bottom", fill = "bo...
root.after(2000, task)
`
with open('Classes.dat', 'rb') as file:
try:
print("You Got Classes.dat :)")
except FileNotFoundError:
print("You Don't Got Classes.dat :(")
nothing = []
pickle.dump(nothing, open(file), "wb")
how do i fix this
i want it except that its not there
Classes.dat
file = open('myfile.dat', 'w+')
Modes 'r+', 'w+' and 'a+' open the file for updating (note that 'w+' truncates the file)
if os.path.exists("Classes.dat"):
print("You Got Classes.dat :)")
else:
print("You Don't Got Classes.dat :(")
nothing = []
pickle.dump(nothing, open("Classes.dat", "wb"))
print("Made It For You :)")
Hey @gloomy nova!
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:
when is scott going be telling his story again
we need a Scott Ted talk pls
lol
starring Scott, Scott and Scott
"Today we gonna be talking about dealing with psycho friends"
This video demonstrates how to convert .py to .exe with the project auto-py-to-exe so you can run a python script without python on the host computer. The interface is very simple and offers a lot of options.
๐ A faster way to install this is to execute "pip install auto-py-t...
lol
yes
Just a moderator
I know a bit, but I'm just a student
Yeah, somewhere around that
๐
๐
๐ถ
no mic
i have no money!
๐ฒ๐ฝ
yes
peso pesos very good
yeah
on fire
hardest ese eva
rapping on pause
i do not haev any friends on ddiscor
is this a meme
enchilada
nada nada
i just splshaed up with a chopstick
in my lada
spotted
stop sneaking around
๐
i need to go make some lunch now ๐
joe is a sleeper agent 
he takes vodka martini
it was very good to talk
shaken not stirred
we are all joe
we all are 
The user that thought it was okay to dump NSFW comments here has been banned
@agile sand #โ๏ฝhow-to-get-help
Hi scott
@Moderators
@moderator
def calling_moderator():
return 'Bann me'
print(calling_mo
derator())
๐
@agile sand U see me hanging out in web development , python-general , sometime in data-science
@whole bear ๐ Sorry for not saying Hi initially
it's ok
u can take ur time
I have no problem with that.
How are you?
I'm doing amazingly good , what about you.
hello scott
@gilded minnow ๐
how r u
I'm well. Working on a few things
nice keep progressing and coding
A short usage example:
import csv
with open('names.csv', newline='') as csvfile:
reader = csv.DictReader(csvfile)
for row in reader:
print(row['first_name'], row['last_name'])
will print:
Eric Idle
John Cleese
print(row)
{'first_name': 'John', 'last_name': 'Cleese'}
CodeTogether
import csv
data = {}
with open('names.csv', newline='') as csvfile:
reader = csv.DictReader(csvfile)
for k in reader.keys():
data['_'+str(i)] = reader[k]
data = type('data', (), data)
https://www.python.org/dev/peps/pep-0343/
This one gets more complicated, and you don't need the later stuff: https://book.pythontips.com/en/latest/context_managers.html
import csv
with open('names.csv', newline='') as csvfile:
reader = csv.DictReader(csvfile)
data = type('reader', (), reader)
sure
I want to be a Moderator in this server! Can I be?
We don't have an application process for moderators. All of our moderators have been helpers before they became a mod.
Introduction to Statistical Learning is a decent book if you're interested in statistics; it's a bit light on math, though. Elements of statistical learning is better for that part.
ISL uses R, though
Still, a great book
sys.platform.startswith()
!e
a = ['a', 'b', 'c', 'd', 'e', 'f']
print(a)
for each in a:
print(each)
@whole bear :white_check_mark: Your eval job has completed with return code 0.
001 | ['a', 'b', 'c', 'd', 'e', 'f']
002 | a
003 | b
004 | c
005 | d
006 | e
007 | f
!e
a = ['a', 'b', 'c', 'd', 'e', 'f']
print([x for x in a])
@whole bear :white_check_mark: Your eval job has completed with return code 0.
['a', 'b', 'c', 'd', 'e', 'f']
!e
a = [1, 2, 3, 4, 5, 6]
print([x*x for x in a])
@whole bear :white_check_mark: Your eval job has completed with return code 0.
[1, 4, 9, 16, 25, 36]
numpy is the a killer with array
!d
!e
a = [1,2,3,4,5,6]
for x in a:
x = x*x
print(x)
@whole bear :white_check_mark: Your eval job has completed with return code 0.
001 | 1
002 | 4
003 | 9
004 | 16
005 | 25
006 | 36
!e
a = [1,2,3,4,5,6]
b = []
for x in a:
x = x*x
b.append(x)
print(b)
@whole bear :white_check_mark: Your eval job has completed with return code 0.
[1, 4, 9, 16, 25, 36]
tokenized_sentences = [sentence for fragment in tokenized_sentences for sentence in fragment]
!e ```py
loaded = []
failed = {}
cog = "ts-token-mode"
def main():
try:
loaded.append(cog)
except Exception as risen:
failed.append(cog)
You are not allowed to use that command here. Please use the #bot-commands channel instead.
import numpy as np
a = [1,2,3,4,5,6]
x = np.multiply(a,a)
print(x)
Depends on how you're gonna encode the strings
astype()
import numpy as np
a = [1,2,3,4,5,6]
x = np.multiply(a,a)
print(x)
b = np.append(x,x,axis=0)
sup scott
import RPi.GPIO as GPIO # Import Raspberry Pi GPIO library
from time import sleep # Import the sleep function from the time module
# iterates between every number
# converts the number to 4 bit
# convert the formatted 4 bit into a list
# for every bit in the number it checks if it is a one it flashes on if it is a 0 it is off
led_pin = 14
GPIO.setwarnings(False) # Ignore warning for now
GPIO.setmode(GPIO.BOARD) # Use physical pin numbering
GPIO.setup(led_pin, GPIO.OUT, initial=GPIO.LOW) # Set pin 8 to be an output pin and set initial value to low (off)
mynum = int(input("Value to be displayed:"))
binarynum = "{0:04b}".format(mynum)
binarynumlist = list(str(binarynum)) #list = ['1', '0', '1', '1']
for i in binarynumlist:
if i == 0:
GPIO.output(led_pin, GPIO.LOW) # Turn off
sleep(1) # Sleep for 1 second
else:
GPIO.output(led_pin, GPIO.HIGH) # Turn on
Bit of a progress the code doesn't result in any error
but the problem is that the led light stays permanently on when I want it to blink based on a binary number. ie. input 10 - you get on off on off (1010)
I'm wondering if it has to do with how I declared the binary list of on and offs
Oof
@ashen river Can you mute yourself, it's very loud
I'm just trying to figure out the best places to get stuff at, since before I wasn't going to the store in Kakariko Town and getting bombs, so it makes it harder to get 500 rupees for the flippers
<@&267629731250176001>
@deep lava Could you not
@cerulean moth ๐ Sorry about not responding earlier. How goes it?
is it worth switching to vs code, i use Atom
@waxen finch Please try to keep this voice chat SFW
So that's a clear no @waxen finch
!tempmute 186674147143712768 1h Please follow out rules when using the voice channels.
:incoming_envelope: :ok_hand: applied mute to @waxen finch until 2020-09-10 19:31 (59 minutes and 59 seconds).
DMA = Direct Memory Access
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
im getting this error in cmd
What do the logs say?
@fickle orbit https://stackoverflow.com/questions/32841199/pkg-config-is-not-recognized-as-an-internal-or-external-command-when-installin
ty
I am trying to do it, but all I can get is some source code that I don't know how to do deal with I downloaded from http://pkgconfig.freedesktop.org/releases/ .
Any help?
The company Edgenuity sells AI systems for grading tests. Turns out that they just search for keywords without doing any actual semantic analysis.
https://www.theverge.com/2020/9/2/21419012/edgenuity-online-class-ai-grading-keyword-mashing-students-school-cheating-algorithm-glitch
ha ha ha ha ha ha ha ha ha ha
ai is a lie
i've just got these headphones
HD 598 - High-end Audio Headphones E.A.R. technology Surround sound - circumaural Headphones - Sennheiser Discover True Sound - Top-quality products and tailor made solutions - sennheiser.com
they sound awesome
AI/Machine Learning is very much a legit thing, this company is just incompetent not doing it right
that's hilarious
Well they still got payed, soo
I wish my tests were that easy to cheat
hi everyone in vc
yeah i agree; some companies do lie about using AI and just writing some algo to act like ai
hi ali in vc
watch here if you want
Join the challenge or watch the game here.
brainduck
Hey hey
eyy alex whaddap
what up
playing chess with my chess friend
GG well played
Want to play othello? ๐
I never learned to play chess
Erm, kind of. It's also known as reversi.
๐
I've not used this website before
Ah right, I just made one
So I should show up under online players
I'm not saying I'm good btw ๐
Alright, I think it's your turn
Games are pretty short.
576031?
one sec
It's hard to tell if you're winning ๐
Alright, you've lost marco ๐
I got the corner
It's all downhill from here
GG





Rookie mistake, giving away the corner
no u
Join the challenge or watch the game here.
you can watch if you want guys





hhhhh
same
Same for me. Maths = easy; languages = hard.
That's the thing they do nowadays...
maths & languages = easy
saying hi to the kid next to me = hard
tru very tru
Let's not go down that route... ๐
: `
Ohh, mlg means 'most likely grade'?
probabaly
probably
joe are you spying on us
probably
I have strong suspicions
MACRO = WINNNER
big macro
big boy macro
kjbhaulb gl
that was a macrogame
Created in 1990
๐ ฐ๏ธ ๐ณ ๐ณ ๐ฎ ๐ช , ๐ ฐ๏ธ ๐ท ๐ช ๐พ ๐ พ๏ธ ๐บ ๐ โ
You guys heard of Nim?
It's like low-level python.
I wonder if Guido knows about this discord server. ๐ค
Wtf. I remember that
stdout.write "Input positive integer number: "
n = stdin.readline.parseInt
doesn't seem like python to me
gg
a love song, with math puns!
https://tenor.com/bbUdZ.gif @alpine path
๐คฃ
i swear i do nothing and it random gains performance
im too scared to touch it now
what are you making Harry?
HTTP server
ah
With any luck might have the ability to finally dethrone uvicorn from being the fastest system for python among other advantages
@fossil pond Hey wassup
yo
Lol yeah
alright back to code
yeah database right
Are u using flask?
js
@solid atlas I'm up to my sunlight
@solid atlas What is itertool.count() function do?
๐ Doubt
what do you doubt?
@solid atlas's stance
ye same tbh
Confidence and ego are entirely different, what are you saying lol
Nice, No Route in voice call.
hey supersonic
@whole bear How are u doing rej , i haven't seen u for a while long time no see fam
Looking for upgrade or update information? Trying to find the names of components or programs? This document contains the technical details for this product.
im good man how about yourself
I'm having blast bro
i'm having fun with itertool
Looking for upgrade or update information? Trying to find the names of components or programs? This document contains the technical details for this product.
???
nvm
rej linux is good bro
yeah u can
@whole bear The Microsoft word office is alright bro like when u turn off ur computer , it should saving the file like vscode but it doesn't work like that and the fliping ram delete it because it temporary
advice don't forget to save the file
office 365 does have autosave
I mean the application
yeah, there's an application
we are on about uesing ms office with linux
but if he can submit as pdf
it is no issue
he can just install linux
and use libreoffice
mint or ubuntu is probably better for first-time user though

๐ป
๐ป
goฤฑn def type ฤฑt
unmute me plz
I really don't trust that you won't just make more noise
trust me anyway though
see god wants us to forgive people
and when we do
magical things happen @rugged root
!server
Server information
Created: 3 years, 8 months and 2 days ago
Voice region: europe
Features: PARTNERED, WELCOME_SCREEN_ENABLED, VIP_REGIONS, DISCOVERABLE, ANIMATED_ICON, INVITE_SPLASH, VANITY_URL, NEWS, RELAY_ENABLED, BANNER, COMMUNITY
Channel counts
Category channels: 29
News channels: 7
Text channels: 182
Voice channels: 62
Staff channels: 49
Member counts
Members: 99,694
Staff members: 78
Roles: 121
Member statuses
7,280
3,308
2,851
86,255
you can find it via searching through discord server search
unmute me MAN
common now
ok this is understood
i would shake thy hand if i could
!server
Server information
Created: 3 years, 8 months and 2 days ago
Voice region: europe
Features: PARTNERED, WELCOME_SCREEN_ENABLED, VIP_REGIONS, DISCOVERABLE, ANIMATED_ICON, INVITE_SPLASH, VANITY_URL, NEWS, RELAY_ENABLED, BANNER, COMMUNITY
Channel counts
Category channels: 29
News channels: 7
Text channels: 182
Voice channels: 62
Staff channels: 49
Member counts
Members: 99,693
Staff members: 78
Roles: 121
Member statuses
7,465
3,398
2,912
85,918
one person just left
WELP
lol
Gotta crunch some numbers, sec
you should make a bot to do it
Yeah, trying to find out how to get a speedrun going
Once I hit the second world, not sure what's the best route to get all the heart pieces
Link To The Past
Oh, speaking of
In regards to speedruns, wanna see something neat?
Trying to, yeah
Whoops
@rugged root Kakariko town, no crystals
I mean I got there
The Kakariko Town level is actually one of the easier ones to do
I keep dying
Online multiplayer puzzle game
4
Hi Scott
How are u doing
Doing well
Let's Tetris, folks
Ok What u doing on?
yeah back to coding
๐

looks ambiguous
@rugged root https://www.youtube.com/watch?v=bS5P_LAqiVg
www.instagram.com/laserunicorns
www.kungfury.com โ Exclusive blog updates!
https://kungfury.merchants.se/ โ Webshop featuring shirts, vinyl, poster, and "The Jacket"!
Kung Fury is an over-the-top 80โs action comedy that was crowd funded through Kickstarter. It features Kung ...
Kickstarter Sensation Kung Fury ready to #TakeHoff as 80โs icon David Hasselhoff performs the lead track โTRUE SURVIVORโ.
Watch official Kung Fury film: https://youtu.be/bS5P_LAqiVg
Download Davidโs song โTrue Survivorโ: http://smarturl.it/KungFury?IQid=YT.TS
Listen to โTr...
looking up "openssl forks" on DDG
What software is that?
OpenSSL is a software library for applications that secure communications over computer networks against eavesdropping or need to identify the party at the other end. It is widely used by Internet servers, including the majority of HTTPS websites.
OpenSSL contains an open-sour...
DDG or OpenSSL you mean?
@green bone the software I'm using? or someone/something else?
what's a good software to remap keyboard keys?
pynput
The scene in which Wesley smashes his keyboard in Barry's face from the movie Wanted (2008).
GIF
The panda doesn't care whether you're hungry or not. The panda will not be denied
oh, I know that one


Karabiner-elements
What you guys talking about?
I feel like the key to de-toxifying a game is just to give users a mechanism to choose who they play with...
Like put a thumbs-up/thumbs-down button on the other players. They wouldn't see if you vote them up or down, but you would tend to get put into games with people that you like and not with people that you dislike.
It's too big to matter
That way, there's social pressure on people to be nice. ๐
Sure but many games have sooo many players
You might be able to use some kind of algorithm to correlate the scoring across the network of all players.
Like a recommendation algorithm.
I find the text is really small in a lot of games today. Maybe I just need to buy a bigger TV ๐
I'm heading off guys
๐
cya
See ya
The instant someone misbehaves ping mods
Shouldn't have to worry about people being unpleasant just because no one is there to watch them
@rugged root maybe not right now - but is there any chance @whole bear can get voice mute permissions? For people with loud mics or whatever, Scott is often here when admins/mods aren't and could solve problems without the need for a mod ping
Gdude had it and proved non-mods could use it sensibly
Yeah, I get that
U guys listen to some old music
The world changed , so it is time to change Charlie and Scott
Do you guys agree yes or not?
No*
I haven't disagreed with Scott at all
I'm only joking , they can be whatever they want right
It's scummy if it's deceptive (or manipulative)*
Hemlock, maybe not right now - but is there any chance Scott can get voice mute permissions? For people with loud mics or whatever, Scott is often here when admins/mods aren't and could solve problems without the need for a mod ping
so, I get this and I think it'd be nice. however I don't think I want to grant voice mutes to helpers (I'm not even sure we grant it to moderators?) for the sole reason of it makes auditing the whole thing difficult. when someone is reported in voice now it's very unlikely we use voice mutes since it's a super irritating tool, you can't unmute people unless they are in voice and you can't attach reasons. when gdude had the permission it helped for the sessions ran but it was a nightmare for the moderation team because these voice muted people kept cropping up to us for reasons like having echoes which can be prevented through other means. I'd rather it go through the regular infraction process which is why we have moderator intervention today.
That's why not helpers, just possibly Scott
I don't see why granting one person the permission fixes the auditing issue
voice mutes are a tool we have never used within the moderation team, if a user is badly behaved in voice it's unlikely we want them in the server at all
If it's one person, and you get one report about them, it becomes very easy for you to say "huh, this risk wasn't worth it, bye bye mute permissions"
This should be #community-meta topic right
whereas with giving it to all helpers, it becomes more of an issue
because it's more individuals
Scott is just the person who is in voice the most often, something to let him deal with the guy playing the hoover down his mic would make voice a lot nicer
I don't see the logic behind that at all, but yes, it probably is more of a #community-meta topic. You're picking out one issue from the list I provided, voice mutes are not an effective form of moderation in the long term and cause us havoc.
Well - my point is more specific and unlikely to change. Scott isn't a mod - that's the real solution, but there's clearly a reason he isn't a mod
so yeah, giving him mute permissions is a pretty narrow/unhelpful solution
@hollow haven yeah, the graphics software
Affinity Designer
I'm using the lemojis to trial it against Illustrator
besides a few odd quirks, I'm so far very, very impressed
Affinity!
I guess I'm blissfully ignorant of the normal people vector software ๐
I drew some duckies in inkscape
oooh, which duckies?
nice
I think the issue is that it's hard to make moral decisions in a market economy because it's hard to know what the consequences of your decisions are.
I want to know the home addresses of people who wrote the Google API docs ๐
to the people watching my screen, does the new lemon_pika look okay?
is it the one on the bottom?
original on top
new on bottom
yea I like the new better
Tofu are u okay?
oi?
How are u doing 
Yeag
Falco

No need for that
Great
oof
No need for that
@stuck furnace ?
the cussing
Yeah
name-calling
Huh

Falco is bad?
I don't understand
What's wrong
The name is swearing?
What
You asking me?
Yes u
Ohh, I was talking about name-calling in the voice chat.
Ohhhhhhhh
๐
Got scared
@somber night yeah back to topic
Yeah I'm doing good , just learning itertool module
What's that
Ah, itertools is great.
Like for loop module with unbelievable functionality
Shremon
Wtf
oh wow. I hate and love that simultaneously
Btw: what is the story behind the lemon emojis?
lemon is an owner of the server. He has a great beard. So lemojis are lemon + beard emojis
Ohhh
@somber night what are you learning
Nothing rn, just more hw
@hollow haven Joe is the main owner
Nice
okay? I know?
Not nice, I'm just doing stuff and don't get anything about it (Fuck Online Classes)
U should make a emoji of Joe rathan than making of lemon
... what would be joe's defining features?
Oh Skylar, there's a great networking course online somewhere, from Stanford.
Hmmm white chicken
๐ง
Soon graduate without knowing a think lol

Erm, I think the actual class doesn't exist any more, but these are the lecture videos:
@somber night
@somber night I have 3 years left to graduate
@waxen finch Can we stray away from the sexual stuff?
yes we can
Lol
thanks
Wtd
yep snake aids
Quite often actually
@waxen finch no sexual related stuff in this server
Okay sir
we were raided before we were on discovery
Good lad
It's because we're on the discord explore page.
You watch me all the time? Weirdo
What u talking๐คฃ
@waxen finch last warning.
LMAOPOO
what are you talking about?
Zig IS a mod
Oh snap
fixed
a little too much
@dusk nest can you mute?
yo my bad forgot my mic was on
Then I'll be fine in the next morning
yep lemon
Any advice on how to get started on machine learning?
@trail flax i would recommend for u to use tensor flow. idk much but tensor flow is good and there's a lot of online tutorial of how to use it
Thank you!! Appreciate your response. I'll give it a try!
Yo
.
@woeful ermine i pinged ya
Kyle Bass sits down with infamous Chinese businessman Guo Wengui, also known as known as โMiles Kwok,โ to hear a series of shocking accusations and predictions revolving around the Chinese government. Kwok provides his perception of the backstory behind several recent high-pro...
C/C++ and python are good friends
Use the right tool for the job. Whatever language is suitable. Sometimes python is not the right choice. That goes for all languages.
@lilac ridge you got a bad connection there or something?
That was a lot of connect/disconnect
I think so. Sorry about that.
I mean mines terrible at times but usually it's "sticky" and it looks like I'm there when I'm not lol
nw
eyo
sup
yo
how's it goin'
bast u are server muted?
yo
AWS offers free for students
DigitalOcean is great, Heroku is great if you don't need persistence
The soutuon
is nginx proxying from 80 to 3000
Thank you @proud tangle
What does that mean
!warn 721460882026135594 Advertising/spamming dodgy-looking "nitro classic giveaways" is not appreciated in our community.
:ok_hand: applied warning to @whole bear.
!server
Server information
Created: 3 years, 8 months and 2 days ago
Voice region: europe
Features: PARTNERED, WELCOME_SCREEN_ENABLED, VIP_REGIONS, DISCOVERABLE, ANIMATED_ICON, INVITE_SPLASH, VANITY_URL, NEWS, RELAY_ENABLED, BANNER, COMMUNITY
Channel counts
Category channels: 29
News channels: 7
Text channels: 184
Voice channels: 62
Staff channels: 51
Member counts
Members: 99,318
Staff members: 78
Roles: 121
Member statuses
8,083
6,058
4,140
81,037
is there a future for python Django?
There sure is
curry puff
oh i see
!server
Server information
Created: 3 years, 8 months and 3 days ago
Voice region: europe
Features: PARTNERED, WELCOME_SCREEN_ENABLED, VIP_REGIONS, DISCOVERABLE, ANIMATED_ICON, INVITE_SPLASH, VANITY_URL, NEWS, RELAY_ENABLED, BANNER, COMMUNITY
Channel counts
Category channels: 29
News channels: 7
Text channels: 185
Voice channels: 62
Staff channels: 52
Member counts
Members: 93,227
Staff members: 78
Roles: 121
Member statuses
11,203
5,785
5,100
71,139
It'll either be a setting in Discord or your OS proper
Which do you use?
And you're sure it's looking at the right microphone? It's not a laptop with one built in for example?
Or webcam I guess
Ye, I'm sure. And it's a headset
Well beats head phones with a micrphone wire connected to it
u know
Sure sure
Thinking
In the Discord options, try turning off the automatic gain control and echo cancellation
I think I had to do that to get my sound to go through properly
Sounds good
!server
Server information
Created: 3 years, 8 months and 3 days ago
Voice region: europe
Features: PARTNERED, WELCOME_SCREEN_ENABLED, VIP_REGIONS, DISCOVERABLE, ANIMATED_ICON, INVITE_SPLASH, VANITY_URL, NEWS, RELAY_ENABLED, BANNER, COMMUNITY
Channel counts
Category channels: 29
News channels: 7
Text channels: 185
Voice channels: 62
Staff channels: 52
Member counts
Members: 90,251
Staff members: 78
Roles: 121
Member statuses
11,948
5,927
5,471
66,905
It'll be nice to have a more realistic count of our users
lmfao
def height(root):
count=0
helpFindHeight(root,count)
return count
def helpFindHeight(node,count):
if node is None:
return
if node.left is None and node.right is None:
count=count+1
return
helpFindHeight(node.left,count)
helpFindHeight(node.right,count)
Hey
Yes, count is an int, which is immutable.
Doing count = count + 1 only updates the local variable.
Specifically, in that call of helpFindHeight
It might help you to understand if you run your code through this tool: http://pythontutor.com/
Erm, tone your language down please
can anyone help with a while loop in code/help
There's a really intuitive recursive solution to this problem....
Alright, didn't want to give the game away
๐
class Node:
# Constructor to create a new node
def __init__(self, data):
self.data = data
self.left = None
self.right = None
# Compute the "maxDepth" of a tree -- the number of nodes
# along the longest path from the root node down to the
# farthest leaf node
def maxDepth(node):
if node is None:
return 0 ;
else :
# Compute the depth of each subtree
lDepth = maxDepth(node.left)
rDepth = maxDepth(node.right)
# Use the larger one
if (lDepth > rDepth):
return lDepth+1
else:
he's almost there
I would do it like this:
def maxDepth(node):
if node is None:
return 0
return 1 + max(maxDepth(node.left), maxDepth(node.right))
remember 1 +
Oh
๐
Laniakea
Superclusters โ regions of space that are densely packed with galaxies โ are the biggest structures in the Universe. But scientists have struggled to define exactly where one supercluster ends and another begins. Now, a team based in Hawaii has come up with a new technique tha...
I'm a drop-out ๐
Erm, I just wasn't very organised at uni.
Missed a lot of work then couldn't catch up.
Erm, I'm doing part-time distance learning at the moment.
Erm, so it depends, how many courses I take at a time.
def maxDepth(node):
if node is None:
return 0
return 1 + max(maxDepth(node.left), maxDepth(node.right))
@stuck furnace
its giving error
@fossil pond Yo YO YOY OYY MY BOI wassup
Doing great
What about u
u working with database right
mongoose
If you want it done the LeetCode way:
class Solution:
def maxDepth(self, node: TreeNode) -> int:
if node is None:
return 0
return 1 + max(self.maxDepth(node.left), self.maxDepth(node.right))
I don't like the way they format their problems at LeetCode.
def maxDepth(self, node: TreeNode) -> int:
typing
-> int:
Also, the type annotation they provide is wrong ๐
It should be Optional[TreeNode]
hmm
@fossil pond i stopped learning JavaScript because of the syntax
syntax is tough to understand but i know the concept
yeah but the syntax bro
I know programming concept
Definitely pick up the book Javascript: The Good Parts if you want to learn.
yeah
@stuck furnace Well Ik concept of javascript,python but i just give up learning syntax
but I'll start learning again but this time i won't give up
I understand the logic quickly
Developing a good mental execution model is often the hard part.
if () {
};
true
snap that looks easy
Shall I ping everyone? ๐๐๐
don't
Winking moustache man: };
Why i'm currently learning every python module rather than learning javascript because of silly reasons
๐
personal prefer..
Erm, coffee, btw
};;;
i do play chess
what! wanna play
yeah
@fossil pond Are u a IT student in college?
Oh i see
Huh
Oh i see
Well no
I'll send u a link
Alright
waiting
wait a sec
Wow, stalker... ๐
@gloomy nova ^
I'll dm u a another link.
Want to play othello? Chess is too complicated for me.
@fossil pond Chess require logical thinking
Yeah, love that game. But that site is overrun with trolls...
scribble, that is
Othello is pretty simple: place a token and your opponent's tokens between that token and your other tokens get flipped; you can only place a token if it will cause tokens to get flipped; the game ends when no one can move; the winner is the person with the most tokens.
Nope
Yep
The basic strategy is: don't give away the corners
and make 'quiet' moves that don't flip too many tokens, in the opening and middle-game
Erm, I think so
Sorry ๐
Yeah, don't enable automatic matchmaking, or you'll get a load of emails...
GoodMoaning?
Allo Allo reference
erm, I'll challenge you?
lxnn
^ for spectators ๐
Erm, the possible moves should be highlighted.
Horizontally and diagonally between
and vertically... ๐
Erm...
Yeah, you've pretty much lost already
I think there's a lag
Alright, gg? ๐
You did the one thing I told you not to do... ๐
Ohhh
Alright
x o x
x o x
Yep
x o x
x x x
- x o
gg
x o x
x x o
- o o
yeah
Oh, not sure I understand the logic there, but whatever
Alright, if you play a few games against the computer you'll get the rules pretty quickly.
I'm not actually any good really.
I could beat a novice pretty easily, but definitely not like a competitive player.
I just joined the site
Actually, there's one way I know of, to come back after giving away a corner:
โช โซ
oof
Yeah, that's not easy on the eyes.
Yeah, I generally prefer light-modes if I'm outside in the sun
Hey so I was wondering, how many active users does this server have?
!server
Server information
Created: 3 years, 8 months and 3 days ago
Voice region: europe
Features: PARTNERED, WELCOME_SCREEN_ENABLED, VIP_REGIONS, DISCOVERABLE, ANIMATED_ICON, INVITE_SPLASH, VANITY_URL, NEWS, RELAY_ENABLED, BANNER, COMMUNITY
Channel counts
Category channels: 29
News channels: 7
Text channels: 185
Voice channels: 62
Staff channels: 52
Member counts
Members: 85,685
Staff members: 78
Roles: 121
Member statuses
12,351
6,118
5,600
61,614
Like how many different people have posted in the last month?
Ok
I looked at the source for the Metricity bot, and I think you gather enough information to figure this out.
It's like a web-browser without an address bar.
@rugged root Hi, How is going?
I'm alright. 'bout yourself?
I'm doing good hemlock , i'm sherlock
Sherlock Bones?
Ah, thought you might have been an old clanmate I had back in my Team Fortress 2 days
I'm something , i don't even know
hello
what is it?
What is Counter in collections module
isn't that a generator function that takes steps?
idk u tell me ๐
well what is your problem?
yes.
I get the sense that Americans really value independence.
They're close by, but I gotta say, most indian parents in north america are overprotective
counter is a dictionary which has more functionality like elements,etc..
they literally don't want me to leave for uni
3 more years after that i'm in uni
But like, there's some shame associated with living with your parents as an adult.
World is moving fast
well the people that shame them can be stupid
Which is not the case in some other countries.
if you think about it differently, it means you exit college with less debt if any at all
because you didn't have to pay for living
Btw, I'm also a dropout Hemlock ๐
@gloomy nova you indian?
Are arranged marriages still common in India?
YES
Idk
HELL YES
"hell yes"
I marriage my best-friend
Yeah, like a class system?
@gloomy nova I will fight my family for my love
that was a bad part of our culture though @rugged root
no indian have caste system
Oh right right
@fossil pond everything is depends on something right
its not very prelevant but it happens
so the caste system is kind of embedded systematically in india
had been
like you won't see it on the surface in the big cities
its mostly out of practice though
The "Class System" sketch from 1966 with Ronnie Barker & Ronnie Corbett. #johncleese #class https://t.co/nAzdTN6Wlr
1644
9311
It honestly depends where you are in India
yeah I agree
yeah i agree too
I can say for a fact that uni admissions are much harder if you're in a lower caste
Yeah, classism is pretty ridiculous
There's even still a lot of classism in the UK
Uk is sick
uttar pradesh
Look at how many of our top politicians went to the same high-school ๐
@fossil pond What is uttar pradesh?
a state in india
really
i think I spelt it right
you did
dam , u good at spelling
oh the irony
we go again
@fossil pond Are u from uttar pradesh?
nope
NO im not


