#voice-chat-text-0

1 messages ยท Page 671 of 1

mellow flower
#

i wanna dig my grave

rigid nest
#

6

#

3

mellow flower
#

for(var i = 0; i < input; i++){
for (var j = 0; j < i; j++){
print('#')
}
}

rigid nest
#

NaN

NaN

NaN

NaN

NaN

NaN

undefined

mellow flower
#

NaN

NaNNaN

NaNNaNNaN

rigid nest
#
NaN
NaN
NaN
NaN
NaN
NaN
undefined
subtle depot
#

NaNi?

rigid nest
#

__repr__

severe elm
#

classs something(Something):

#

how do i write that

#

give some code man

#

@rigid nest

#

@rigid nest

#

@rigid nest

rigid nest
#

def __init__ in sometthing

#

what is it?

#

__repr__ in something that tells you what the representation of this object is

#

then your super() in to your subclass

#
print('Is manager object an instance of the class Manager?')
print(isinstance(mgr_1, Manager))
print('Is manager object an instance of the class Employee?')
print(isinstance(mgr_1, Employee))
print('Is manager object an instance of the class Developer?')
print(isinstance(mgr_1, Developer))
print('Is Developer a subclass of Employee?')
print(issubclass(Developer, Employee))
print('Is Manager a subclass of Developer?')
print(issubclass(Manager, Developer))
mellow flower
#

dont trust him

#

im a better developer

#

i can code hello world in 5 mins

rigid nest
#
print(help(Something))
hallow warren
rigid nest
#

Input (stdin)
Download

6

Your Output (stdout)

#

##

###

####

#####

######

Expected Output
Download

     #

    ##

   ###

  ####

 #####

######
#

##
#

urgh dw

iron idol
#

:v

severe elm
#

@hallow warren

rigid nest
hallow warren
stuck furnace
#

Yo

rigid nest
#

hey

hushed elm
#

eyyy @stuck furnace is a helper

#

big boss police

severe elm
#

@hallow warren i've looked up the first link and it's for organic chemistry
do you know any for technical mineralogy or anorganic chemistry?

#

coz you know, rocks arent living things ^^

hallow warren
lyric tartan
indigo geode
#

@somber heath is it this one?

somber heath
#

Yes.

indigo geode
#

yeah do you do web development with django?

somber heath
#

This channel serves as an adjunct to the voice channel.

#

I do not.

indigo geode
#

can you ask the other guys if they do?

somber heath
#

You may like to hit up the folk in the web development room.

indigo geode
#

no one answers

#

it is also ergent

#

i just did it

#

it is not running it

#

it is just opening it

#

@somber heath

#

sorry

#

no

#

you just write in the cmd

#

django-admin startproject "name of the projec"

#

yeah

#

yeah the .py file

#

alright

#

yeah it is

#

i am

indigo geode
#

i did this

#

python django-admin startproject mySite

#

and i got this

#

python: can't open file 'django-admin': [Errno 2] No such file or directory

#

i got this when i wrote py instead of python

#

C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.8_3.8.1776.0_x64__qbz5n2kfra8p0\python3.8.exe: can't open file 'django-admin': [Errno 2] No such file or directory

#

yes i did

#

bruh

#

@somber heath how do i know how messages i have sent in this server?

#

many*

#

cyo later

#

gtg bye

earnest hollow
#

whatszup

#

hello

#

do you actually use pytest when coding ?

#

๐Ÿ˜„

#

hehe

#

brb

whole bear
#

hi

whole bear
#

i would need some help to install stack overflow

#

no

#

if anyone is free then please come and help me in code/help 1

gentle flint
cloud rover
#

;o

leaden comet
#

machiavellian

#

James, while John had had "had had", had had "had"; "had had" had had a better effect on the teacher.

frigid panther
#

o/

#

the python tricks book is the one by realpython.com website author?

leaden comet
#

that's right

#

by dan bader

frigid panther
#

cool, how is it? is it worth the money?

leaden comet
#

very good book

#

teaches essential fundamentals

frigid panther
#

oh, I should get it then

#

I really want to get a job already, but I am not even in uni, lol
Maybe I should try freelance

#

how are you learning devops, I mean how did you get started, @leaden comet ? any perticular path, just curious, maybe I could use that when I am learning devops

leaden comet
#

@frigid panther as with everything, just self-taught.

crimson dew
#

I gtg, see ya guys

leaden comet
#

later @crimson dew

frigid panther
#

sorry for popin in and off, my internet is extremely unstable today

past elk
#

hello everyone ๐Ÿ˜„

pure path
#

why do u think that u don't deserve the job? @leaden comet

past elk
#

hey can i ask a question? (to anyone)

#
def parseCsv(file,regex):
      if(not os.path.exists(file)): raise Exception(f'No file, {file}')
      data = open(file,'r').readlines()
      columns = [
          data[row].strip().split(',') for row in range(len(data))
      ]
      columnNames = columns[0]
      columns = {
          columnNames[column] : [
              data[row].strip().split(regex)[column] for row in range(1,len(data))
              ] for column in range(len(columnNames))
      }  
      return columns```

```py
def parseCsv(file,regex):
        if(not os.path.exists(file)): raise Exception(f'No file, {file}')
        data = open(file,'r').readlines()
        columnTitles = data[0].strip().split(regex)
        columns = {
            columnTitles[column] : [
                data[row].strip().split(regex)[column] for row in range(1,len(data))
                ] for column in range(len(columnTitles))
            }
        return columns```
leaden comet
#
  1. Use snake_case, not camelCase.
  2. don't use os.path.exists, use pathlib.
  3. Don't put the expression inside the condition on the same line as the condition itself.
  4. don't use open(file, 'r'), use context processors (like with open(file, 'r') as file..)
  5. don't raise generic Exceptions, raise specific exceptions or let standard library modules raise their own exceptions..
  6. only put spaces after a colon, not before.
  7. don't use list comprehensions that require multiple layers. It's better to just break this into multiple lines.
  8. range(len is an anti-pattern. IF you see range(len(. examine your code and find a better way.
past elk
#

thanks @leaden comet

#

@leaden comet what would be an alternative to range(len(...?

tidal salmon
#

@past elk could you describe what data[row].strip().split(regex)[column] is meant to do?

#

there's a lot going on there.

#

if data is a list, then you can iterate over data itself instead of its indices.

#
# iterating over a list
for item in list:
    print(item)

# iterating over indices even though you wanted to iterate over the list
for num in range(len(list)):
    print(list[num])
past elk
#

3 blue 1 brown*

whole bear
#

i just started with python what should i do first

tidal salmon
#

!resources @whole bear

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

whole bear
#

ohhh thanks

#

import random

#

python

#

jumble

#

easy

#

hello

#

50 words

#

I need

#

lol

#

not spam

tidal salmon
#

@whole bear are you just throwing out random words? spoopy doopy.

#

@whole bear your 50 messages need to be obtained legitimately. Try engaging in some text conversations or answering some questions in help channels if you're able to.

#

I'm going to have to delete the messages you've said in this channel to take those from your count.

#

!clean user 777396310093070356

wise cargoBOT
tidal salmon
#

!clean user 777396310093070356 10

wise cargoBOT
#
Bad argument

User "777396310093070356" not found.

#
Command Help

!clean user <user> [amount=10] [channels]
Can also use: clean users

Delete messages posted by the provided user, stop cleaning after traversing amount messages.

past elk
#

hey guys is this better? py def parseCsv(file,regex): data = open(file,'r').readlines() columnTitles = data[0].strip().split(regex) columns = {} for column in range(len(columnTitles)): row = [] for Row in data: row.append(Row.strip().split(regex)[column]) columns.update({columnTitles[column]:row}) return columns

tidal salmon
#

I've failed profoundly

#

anyway

whole bear
#

wbu codecademy guys

tidal salmon
#

@past elk that's certainly easier to wrap ones head around.

whole bear
#

@past elk Are you working with Manim?

#

Codeacademy is great

#

codecademy offer free coding classes

#

Yes you should do it

#

ok

#

Make sure to work on problems and not just watch videos

past elk
#

@past elk Are you working with Manim?
@whole bear no

whole bear
#

@brisk current @ruby wind Have you guys seen Matlab?

brisk current
#

I have

#

Why

whole bear
#

It costs your life savings just to use a programming language

#

And same for Mathematica

#

Matlab can be used for physics animation ๐Ÿ™‚

#

matplotlib is the Python library

#

@brisk current What animations do you want?

#

Math?

#

Manim!

#

Theorem of Beethoven

#

Good channel to learn Manim

#

And the Manim Discord

#

@brisk current Do you study maths at uni?

#

a^b = 10^(b*log(a))

#

This is a life hack

#

Or a^b = x^(b*log_x(a))

#

Slither Manim is nice for that too

#

The number line tool etc

#

log(a) is easy

brisk current
#

20^20

whole bear
#

10^20*log(20)

brisk current
#

160k^5

whole bear
#

log(20) is like 1.2?

#

1.3, with calc

#

So then just use the decimal by doing a^b*a^c = a^(b+c)

#

And you can get the non 10^x part to get a nice number

#

@brisk current Are you a teacher

#

Nice

#

Have you already imported Manim?

#

Read the documentation

#

Yes there is

#

GitHub lol

#

Are you guys in college?

brisk current
#

25^25

whole bear
#

Just use my a^b = x^(b*log_x(a))

#

And let x=5

#

5^2^(25)

#

And then 2^x is easy operation, kinda

#

Are you guys interested in algorithmics?

#

Study that to get better at Python

#
  • use Project Euler
#

Do you have algorithm lessons in America?

#

I'm the same age as you and we have to study algorithmics

#

Are you doing AP or whatever it's called?

#

What part of USA are you from?

#

What is the smartest state?

#

Texas?

#

I love Texas Instruments lol

#

TI nSpire supports Python

#

NASA is from Texas?

#

Ok guys I'll brb in 10 mins and hopefully I'll be able to VC soon as well

brisk current
#

256^2567

whole bear
#

Lambert W function

#

Easy peasy

#

Just use Lambert W

#

Wait a sec gonna be back soon

brisk current
#

i+4i^7i + 3

whole bear
#

K I'm back

#

i^i = e^-pi/2

#

Just use e^ix = cis(x)

#

e^ix = cos(x)+isin(x)

#

lmao slither you can do that

#

You can raise complex to complex

#

@brisk current No

#

You can't find a general eqn

#

Exactly

#

The proof for that is hard though

#

It needs Galois theory

#

Uni stuff

brisk current
#

2i+5,3i+2

whole bear
#

Why do you need this in 4D?

#

Is this 2 complex numbers, like (x,y)?

#

Ah ok

#

Quaternions

#

Don't use Re and Im in the same plane like that though

#

Use 2j+5 and 3i+2

#

Yes you can do it in 3D though

#

@ruby wind ????

#

No....

#

Both of them

#

Integral and antideriv are the same thing

#

Antiderivative is specifically the opposite of a derivative and always +c

#

Integral could be definite and be the area under a curve

#

@brisk current Use a matrix

brisk current
#

x,y,z,w

whole bear
#

It's easy with a matrix

#

Ok then

#

Do you want polar form

#

I know what you want

#

Yes I did a research on that this year

#

I have a paper on it

#

Let me find it for you

#

It's called spherical coords

#

My paper on it is on my other PC

#

I wrote it on k-dimensional n-pendulums

#

Multi-dimensional pendulum with multiple balls attached

#

Yes

#

The equation isn't actually that hard

#

Yep

#

In 2D it's different

#

In 3D is impossible to solve basically

#

The differential equation is super hard to solve

#

Guys I'm the same age as you I think

#

Search up "double pendulum"

#

You'll see how chaotic it is

#

Laggy voice anyone?

#

Lemme reconnect

#

Are you guys still speaking?

ruby wind
#

yes

brisk current
#

Yes we are

whole bear
#

My PC I'm using rn is from 2010

brisk current
#

Loll

#

๐Ÿ˜‚

whole bear
#

Damn the audio on it just died

#

Lemme try to fix it

brisk current
#

Dude

whole bear
#

Wtf it's just for your voices that I can't hear

ruby wind
#

check discord audio out

whole bear
#

Might be cause I'm far away since I'm not American

ruby wind
#

try re-selecting your device

#

it sometimes just quits for me

whole bear
#

I can hear!!!

#

Omg

#

idk what happened

#

I'm in 10th grade

#

I'm not in uni!

#

Ok then whatever..

#

When my VC is verified you'll see

brisk current
#

11

whole bear
#

I'll send you the paper I just need to remove personal details

#

K I'll send in DMs

#

Yeah and the teacher didn't even like it

#

Tell me what you guys think about what I wrote

#

is it bad to use alot of external libraries?

#

@ruby wind

#

@brisk current

#

No @whole bear

#

Guys the equations are the most important part

#

wym depends

#

Look at the "Conclusion" where I derive the equation of motion

#

Open it in Word

#

what about internal libraries

ruby wind
whole bear
#

Lyapunov exponent

#

I have a Google Slides presentation on how to use the equation

#

Yes it's absolute value

#

Lambda is the Lyapunov exponent

#

It's not Lambda from eigen-stuff

#

It's in chaos theory

#

It shows the level of chaoticity in an object

#

How crazy it is

#

Yep

#

t is time, and it measures variation from initial result

#

Omg the guy who asked about 4D use the spherical coord system

#

Omg bro just use the equations I sent

#

Page 3

#

It was a while ago

#

I need to send you the sources I had on it

#

^Use this eqn for the 4D thing

#

^This is how to get Lambda

#

I forgot what Z was for lol

#

I'll need to get back on that

#

For 4D just use up to x_4 mate

#

For your 4D thing just use the 4 variables in the formula I gave you

#

It goes up to k, so you can do as many as you want

#

x_i is usually in a "for loop" or sum or product

#

It doesn't mean the imaginary number

#

Think back to Python

#

It just means on the ith iteration

#

^^^^^^^this

#

Yes

#

It means the 2nd x value

#

Nooooo

#

It means the 2nd value of x

#

If you do AP calc you'll see similar formulas

#

Like Riemann sum representation for Integrals

#

Where did the other guy go?

#

@tidal salmon How long until I get verified btw?

#

So I can use voice

#

Bot isn't telling me why

#

It says "user not found"

#

Yes @ruby wind

#

Well, depending on the form cause you can purposely make it go up by any number

#

Ah ok thanks Stelercus

#

Ok cool

#

@ruby wind What is school like in America? When do you start your day and end it?

#

9-3:30?

#

Wow

#

What state gets the best results in SAT etc?

#

I'm not Canadian

#

I wake up at that time, wow

#

What extracurriculars do you have in America?

#

I heard that NFL is big

#

In my school we do cadets

#

It's like army for kids

#

Only time I had to wake at 6 was when we were on base

#

Australia

#

It's not compulsory btw

#

I already left that organisation

vocal coyote
#

Hey

whole bear
#

Do you guys know what capsicum is?

vocal coyote
#

Good morning

whole bear
#

And biscuits?

#

Biscuit -> cookie in America?

vocal coyote
#

Who are u talking to?

whole bear
#

I'm talking to the guys in VC

vocal coyote
#

Oh

#

I can't join vc

whole bear
#

Do you call 7/11 a 'sevo'?

vocal coyote
#

Why we are limited?

whole bear
#

We need to get verified

#

Maccas

vocal coyote
#

Only for 50 message?

#

How to verify?

#

.

whole bear
#

Chuck a you-eee to the Maccas on Sundee

#

Only Aussies understand

vocal coyote
#

.

whole bear
#

What do Americans think about Australia?

#

I want to go to America someday

#

Yeah basically

#

The South?

#

The South sounds fun

#

Guns and stuff

#

Our gov banned BB guns and now gel guns

#

I'm also libertarian ๐Ÿ™‚

#

Yeah ok

#

Yeah sure

pure path
#

damn @tidal salmon u are all alone

tidal salmon
#

@pure path I will be okay

pure path
#

gl

grave osprey
#

@unborn ridge @crude cove u used double quotes I noticed

#

U need single quotes

#

For raw strings

#

The help channel closed

#

Before I cud say that aha

unborn ridge
#

ok

crude cove
#

no, double works fine

unborn ridge
#

yes

crude cove
#

double and single are the same in python

unborn ridge
#

worked

crude cove
#

only used so you can have strings in strings

grave osprey
#

I thought double didnโ€™t work with r(?

crude cove
#

"hey look at this 'string'!"

grave osprey
#

Sweet ty

rigid nest
#

Sample Input 0

5 6 7
3 6 10
Sample Output 0

1 1

#
    const n = a.length;
    let j = 0;
    let k = 0;
    let result = [0, 0];
    let i;

    for (i = 0; i < n; i++) {
        if (a[i] > b[i]) {
            j += 1;
            result[0] = j;
        } else if (a[i] == b[i]) {
            continue
        } else {
            k += 1;
            result[1] = k;
        }
    }
#
    var scoreA = 0;
    var scoreB = 0;
    if(a0 > b0) scoreA++;
    if(a0 < b0) scoreB++;
    if(a1 > b1) scoreA++;
    if(a1 < b1) scoreB++;
    if(a2 > b2) scoreA++;
    if(a2 < b2) scoreB++;

    console.log(scoreA + " " + scoreB);
#
    var a=0, b=0;
    
    if(a0>b0){
      a+=1;  
    }
    else if(a0<b0){
      b+=1;  
    }
    
    if(a1>b1){
      a+=1;  
    }
    else if(a1<b1){
      b+=1;  
    }
    
    if(a2>b2){
      a+=1;  
    }
    else if(a2<b2){
      b+=1;  
    }
    
    console.log(a+" "+b)
#

juuuhvaka lukadaduh

frozen oasis
rigid nest
#

juhs

#

juhsh

#

const

#

let

#
"18" == 18

True

#

EUHSH6 JUHSH

#
array.forEach((value) => (
  console.log(value)
))
frozen oasis
#
rigid nest
#
arr = [1,2,3,4,5]

arr.forEach((x,i) => {
    console.log(x + " " + i)
});
shy wing
#

@rigid nest is it js??

rigid nest
supple marsh
rigid nest
#
>>> quit
Use quit() or Ctrl-D (i.e. EOF) to exit
#

can someone explain

gentle flint
#

print "hello"

#

print("hello", "hi", sep=",")

rigid nest
#
>>> a = [1,2,3,4]
>>> b = [5,6,7,8]
>>> print(a, b, sep="/")
[1, 2, 3, 4]/[5, 6, 7, 8]
gentle flint
#

\a

supple marsh
#
Get-LocalUser | Where-Object {$_.Name -eq "user"} | Disable-Localuser
gentle flint
#

just like the UK

rigid nest
#

electron

gentle flint
#

my lamp is an Acer V223W

#

it's an RGB lamp

#

with a VGA connector

rigid nest
#
arr = [1,1,0,-1,-1]

void function plusMinus() {
    arr.sort();

    arr.reverse().forEach((x, i) => {
        console.log(`${x} - ${i}`);
    })
}();

console.log(plusMinus(arr));

`1 - 0
1 - 1
0 - 2
-1 - 3
-1 - 4
/home/e/code/hackerrank/js/plusminus.js:11
console.log(plusMinus(arr));
^

ReferenceError: plusMinus is not defined
at Object.<anonymous> (/home/e/code/hackerrank/js/plusminus.js:11:9)
at Module._compile (node:internal/modules/cjs/loader:1102:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1131:10)
at Module.load (node:internal/modules/cjs/loader:967:32)
at Function.Module._load (node:internal/modules/cjs/loader:807:14)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:76:12)
at node:internal/main/run_main_module:17:47`

restive garden
#

why is this so funny

gentle flint
#
function plusMinus(): void {
    arr.sort();

    arr.reverse().forEach((x, i) => {
        console.log(`${x} - ${i}`);
    })
}();
restive garden
#

}()

gentle flint
#

ยฐvยฐ

restive garden
#

*v*

gentle flint
#

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

#

| | //

restive garden
#

| | / /

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @gentle flint until 2020-11-15 13:40 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

rigid nest
#

Scheme

swift valley
#

!unmute 473859714162360320

wise cargoBOT
#

:incoming_envelope: :ok_hand: pardoned infraction mute for @gentle flint.

gentle flint
#

o

#

oops

#

thanks pure

restive garden
#

thanks pure

swift valley
#

๐Ÿ‘Œ

restive garden
#

๐Ÿ‘บ

rigid nest
gentle flint
minor drum
#

@supple marsh hello

gentle flint
#

@restive garden you should change your name to Lรถss

restive garden
#

neh

gentle flint
#

or Lล“ss

restive garden
#

it is that

#

but i couldnt use that with the messletters

gentle flint
#

mydict["location"]

#

[9, 4, 7, 8, 227, -28]

#

[-28, 4, 7, 8, 9, 227]

gentle flint
tall gust
#

any one know telethon

stoic ore
#

@all Hฤฐฤฐ

somber heath
stoic ore
#

choir

hushed elm
#

Romania -> Iasi

stoic ore
#

Turkey -> Mersin

#

@mortal ocean hi there

mortal ocean
#

hi

somber heath
#

o/

stoic ore
#

scraping app

#

like google asistant

#

or phone calls servise @somber heath

#

With kivy ?

somber heath
#

Not certain. Investigate, I think, pyjnius.

stoic ore
#

Hmm

somber heath
#

Pretty sure that's the Python/Java api library.

#

It's what Kivy uses, I think.

#

So when you're building your Kivy app in Buildozer, you'll also need to assign the appropriate android permissions.

stoic ore
#

yeah Root'ing phone

gentle flint
lethal ingot
#

5 mins

#

and I'll join voice channel

gentle flint
#

you already did

#

lol

lethal ingot
#

I mean I'll speak

#

lol

gentle flint
#

o

#

ok

stoic ore
#

Where are u from ?

lethal ingot
#

just getting my microphone

#

Iraq

stoic ore
#

Hmm

lethal ingot
#

and I live in Australia

stoic ore
#

Me turkey are u Kurdฤฑsh ?

lethal ingot
#

I'm Chaldean

stoic ore
#

hmm

#

but you may have known few kurdฤฑsh ?

lethal ingot
#

yeah

#

a lot

#

lol

stoic ore
#

kjgnhn

#

you have one too ๐Ÿ˜„ Mee

lethal ingot
#

I lived in Kurdistan for 2 months

stoic ore
#

Hmm u liked ?

#

Where ?

lethal ingot
#

Yeah

#

It's pretty developed region

#

Sulaymaniyah

#

It tells me I need at least 50 messages

#

I

#

will

#

send

#

messages

#

here

#

so

#

that

#

I

#

have

#

50

#

messages

#

lol

#

Is

#

this

#

legal ?

wise cargoBOT
#

:x: There was an error adding the infraction: status 500.

#

:incoming_envelope: :ok_hand: applied mute to @lethal ingot until 2020-11-15 16:30 (9 minutes and 59 seconds) (reason: burst rule: sent 10 messages in 10s).

scarlet plume
#

!tvban 730204883877232665 2w Do not spam to get 50 messages.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @lethal ingot until 2020-11-29 16:21 (13 days and 23 hours).

lethal ingot
#

Hey guys, does anyone know how to dynamically change the labels positions and front size when maximizing the window in tkinter ?

#

imperialistic country he means

gentle flint
somber heath
#

Ouideaux.

gentle flint
lethal ingot
#

Australia is multicultural, so food is very diverse

#

Demographically speaking, Indian and Chinese food is more common because of more population living in Australia

#

what language ?

#

don't bully him guys

#

pydroid 3

#

๐Ÿ“ฑ

#

It's the most used one

#

I believe there are more

#

but require thorough research

#

How can we know how many messages we sent in the server ?

#

It would've been handy if there was like messages counter

tall gust
#

dont use pydroid i tell you

gentle flint
#

oh look
another dhruv

lethal ingot
#

I'm losing my enthusiasm while waiting

tall gust
#

you use quick edit+ for edit codes

gentle flint
#

ouf

tall gust
#

and eun the code use termux for mobile use i prefer ok

lethal ingot
#

Like LMS ?

#

tkinter

#

the GUI

#

I'm making my first one

#

for maths

#

What is best AI based transcription software ?

gentle flint
#

google voice, I guess

#

or maybe Siri or Alexa

#

google has the largest sample set, I believe

lethal ingot
#

I don't think that google voice can transcribe media files

#

All software I searched for were expensive

gentle flint
#

see what works best for you

lethal ingot
#

are these for Windows ?

gentle flint
#

idk
I'm sure some of them are

lethal ingot
#

ok

#

thx

tall gust
#

what about talking about

#

can any ne know telethon

viscid swift
#

hi

wise cargoBOT
#

Hey @viscid swift!

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

whole bear
#

i am nerveous sorry

#

AHH

red swan
#

Hey @somber heath

#

How you doing?

small sedge
#
print('Hello world!')
cunning lake
#

@rigid nest it is could be good depend on the person

#

@rigid nest "Percy Jackson AND THE OLYMPIANS"

#

yes @restive geyser

#

@restive geyser i speak about your mice to close to your mouth

#

@restive geyser bat now it is ok ๐Ÿ˜…

gentle flint
#

he learns juice

#

react juice

cunning lake
rigid nest
#

es6

#

es6 juhsh

#
[e@arch hackerrank]$ scheme
Chez Scheme Version 9.5.4
Copyright 1984-2020 Cisco Systems, Inc.

> (load "test.scm")
Hello, World!
> 

gentle flint
cloud rover
#

for i in range(5):
  stop = pyautogui.alert(text='', title='', button='STOP')
  if stop == "STOP":
      break

how can i not wait for pyautogui to get a button press

cunning lake
#

@restive geyser bless you

foggy tulip
#

bless you @restive geyser

restive geyser
#

thank you โค๏ธ

foggy tulip
#

@restive geyser is a full grown man

cunning lake
#

@cloud rover yes ....

foggy tulip
#

@gentle flint btw, Jamsyn was in another channel yesterday

restive geyser
#

yes, i'm a full grown man. bald, with tattoos all over my back

#

xD

foggy tulip
#

oh god no

cunning lake
#

yes, i'm a full grown man. bald, with tattoos all over my back
@restive geyser what a description ๐Ÿ˜…

restive geyser
#

you think i'm kidding

#

lmao

cunning lake
#

nice

foggy tulip
#

she looks like a vase

limpid umbra
#

super tatoo

cloud rover
#

it looks like the gates of asguard

cunning lake
#

right

foggy tulip
#

They could be giant abs @rigid nest

#

you never know

#

Yes, I have, and it will be last time I ever code in C++ ever again

cunning lake
#

C++ it is not so hard dont say it hahhah

cloud rover
#

for i in range(5):
  stop = pyautogui.alert(text='', title='', button='STOP')
  if stop == "STOP":
      break

how can i not wait for pyautogui to get a button press

foggy tulip
#

you can take more time waiting for an answer here than an answer in the video @cloud rover

cloud rover
#

time to watch the vid i guess

gentle flint
#

old

cloud rover
#

and ur old too

#

C:

restive geyser
#

xD

foggy tulip
#

what the hell @gentle flint

cloud rover
#

XD

gentle flint
#

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

signal raven
gentle flint
#

it's in the style of the server

cloud rover
#

Who got a wich in the background

gentle flint
#

me

#

she is currently resting on her broomstick

signal raven
cunning lake
#

you have mechanical keyboard ?

gentle flint
#

yez

foggy tulip
#

stop

gentle flint
#

k

foggy tulip
#

You're murdering your keyboard

gentle flint
#

yeah true

#

lol

#

but hey

cloud rover
gentle flint
#

it will murder my wrists back

foggy tulip
#

expendable huh?

#

lol

gentle flint
#

so whatever

cloud rover
#

idk how to spell which

#

;c

signal raven
foggy tulip
#

Is that a shell? @signal raven

signal raven
#

yea

cloud rover
#

!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.

cloud rover
#

this is a wallpaper changer C:

#

wait its broken

#

leme fix it real quicl

stuck furnace
#

Hey, yeah all the mods/admins are in a staff meeting right now @cloud rover

#

Also, best not to ping people directly for help...

cloud rover
#

;c kk

foggy tulip
#

It happens every sunday

stuck furnace
#

Erm, just an hour I think ๐Ÿ˜„

#

No idea what they're discussing.

gentle flint
#

pizza

foggy tulip
#

aren't you part of the staff?

cloud rover
stuck furnace
#

Erm, there's a separate meeting for helpers Arven.

foggy tulip
#

oh wait, I just realised

stuck furnace
#

I'm not a mod ๐Ÿ˜„

restive geyser
#

๐Ÿ˜ฎ hi lxnn

stuck furnace
#

Hey ๐Ÿ‘‹

#

Constraint notation?

signal raven
#

"It's writing to hexChar and because it needs to write exactly 3 bytes (including null terminator), and isLastEven takes exactly one byte, the compiler's alignment is putting minVal right next to them unless you enable optimization, and it just happens to be close enough to overlap witht he 3 bytes sprintf is writing"

cunning lake
#

๐Ÿฅฑ

stuck furnace
#

You want to skip an iteration of the for loop?

#

If a condition is met?

cloud rover
#
for i in range(5):
  stop = pyautogui.alert(text='', title='', button='STOP')
  if stop == "STOP":
      break
gentle flint
#

here's something because you wanted to hear me type something for you

foggy tulip
#

You guys flexing by keyboards

gentle flint
#

I can also type like this if you prefer

restive geyser
#

mash mash

restive geyser
#

lol

signal raven
#

I can also types like this if you perfer

foggy tulip
#

holy shit

gentle flint
#

but it's a bit louder for your poor little ears

gentle flint
#

they must be practically bleeding at this point with all this banging on the keyboard

#

hmmm?

foggy tulip
#

Yes they are, thank you very much for asking @gentle flint

gentle flint
#

I thought you'd appreciate my solicitous concern.

lethal ingot
#

๐Ÿ˜†

foggy tulip
#

ctrl + Z

#

you can always undo anything

gentle flint
#

ye

stuck furnace
#

You need a certain amount of activity before you can voice verify.

lethal ingot
#

minimum amount of 50 messages

#

what's the purpose of () after creating function for example -------> def compare(): <----------

stuck furnace
#

Erm, it is where you specify the arguments of the function. If it is just () then you are defining a function that takes no arguments.

#

Arguments are just names given to information that you pass into the function for it to processes.

lethal ingot
#

thanks @stuck furnace

foggy tulip
stuck furnace
#

QR code?

foggy tulip
#

yup

#

Version 40

stuck furnace
#

Oh yeah, I saw that video

#

Pretty cool

foggy tulip
#

yeah

foggy tulip
#

That's a very sus review @willow light

#

hahaha

lethal ingot
#

๐Ÿ˜ฎ

willow light
foggy tulip
#

oh

#

ooohh

#

@willow light cucumbers are fruits

lethal ingot
#

history

#

colonized

foggy tulip
#

cross breeding

lethal ingot
#

cucumbers are colonized by fruits

foggy tulip
#

cucumbers are all fruits lol

#

Cocunut oil

#

@gentle flint Cacti or Cactuses?

gentle flint
#

cactรฆ

foggy tulip
#

both of them are right lol

#

haha

gentle flint
#

kek

foggy tulip
#

don't look it up

willow light
#

polykek

gentle flint
#

kektoos

foggy tulip
#

lol

willow light
foggy tulip
#

It never does for me @willow light

gentle flint
#

I am disgusted at myself

result_decoded = result.stdout.decode()
result_parsed = xmltodict.parse(result_decoded)
result_json = json.dumps(result_parsed)
result_python = json.loads(result_json)
result_list = result_python["nmaprun"]["host"]
foggy tulip
#

This code has no issue

willow light
#

yes it does, you're using xml.

#

that's a major issue

#

what is wrong with you?

gentle flint
#

that's why it ended up like it did

#

lol

#

trust me, if I could do anything else, I would

foggy tulip
#

what's wrong with xml?

gentle flint
#

everything

foggy tulip
#

but I use it all the time

willow light
#

Doesn't work with REST very well

#

and forget about gRPC or GraphQL

gentle flint
#

@foggy tulip It's kinda a pain to work with in Python

#

gimme JSON over XML any time

foggy tulip
#

I have made people suffer with my code

#

I want more to suffer

willow light
#

the official best practices for using XML in Python is "get that Java shit outta here"

gentle flint
#

^

willow light
#

We live in the age of REST APIs

gentle flint
#

but yeah, nmap doesn't export any JSON so I'm kinda stuck

foggy tulip
#

oh

gentle flint
#

it saddens me deeply

lethal ingot
#

Where are VM files stored in the host computer ?

#

what is their directory ?

#

I need to get them from an old HDD and transfer them to my current SSD

willow light
foggy tulip
#

holy shit

willow light
foggy tulip
willow light
foggy tulip
#

@willow light There are websites that have a randomly generated class name

#

These are impossible to web scrape

willow light
#

KASH 151856Z 15004KT 10SM FEW120 07/M03 A3010 RMK AO2 SLP199 T00671028

#

Thankfully METARs are easy to webscrape, the US National Weather Service has an API

gentle flint
#

Renรฉ-Antoine Ferchault de Rรฉaumur

foggy tulip
#

@gentle flint

gentle flint
#

@foggy tulip

stuck furnace
#

Yep ๐Ÿ˜„

#

Have you on in the background...

willow light
#

I am so sorry I'm so impulsive

stuck furnace
gentle flint
#

@stuck furnace hey, you're popular
everyone's been pinging you

lethal ingot
#

Echo

gentle flint
lethal ingot
#

What if there was no USA ? Who would discover the internet ?

gentle flint
#

the swiss

lethal ingot
#

Or China

willow light
#

Discover?

gentle flint
#

at CERN

#

yes

#

we are all connected

#

just nobody found out

#

see also quantum tunneling

lethal ingot
#

What if there was no mesopotamia ? Who would discover writing ?

gentle flint
#

authors

willow light
#

Indus Valley civilization?

gentle flint
#

Nucleaire Bouton

lethal ingot
#

Donald Trump is comedian

#

USA was built by refugees, not original people

gentle flint
#

not only refugees

willow light
#

And vikings.

#

And unpaid interns

gentle flint
#

alias indentured servants

lethal ingot
#

And UK colonization as well

willow light
#

Dear potential employers: Sure, this is good experience, but experience doesn't pay rent.

lethal ingot
#

That's why the internet is English

gentle flint
#

employers' response:
you get to kill people
why are you complaining

lethal ingot
#

And all programming languages as well

willow light
#

I thought it was English because Americans are too lazy to learn a second language.

gentle flint
#

like French

willow light
#

Case in point: we're all fat.

#

And not just from DoorDash deep-fried sushi due to the pandemic

gentle flint
#

interesting how the Americans complain the French don't speak English
but never think of the fact that the Americans don't speak French

willow light
#

I went to Quebeck and they said "bonjour hi" I think that's good enough

lethal ingot
#

Or Americans don't know any country in Africa

#

They just call it Africa

#

Or think that Africa is a country

#

My books collection

gentle flint
#

American: "you have egypt, and then you have africa somewhere"
any random non-American: "Egypt is a country in Africa"
biased right-wing American: "wait, so terrorists come from africa?"

willow light
#

right-wing american: "you have slightly brown skin so you aren't a real person"

gentle flint
#

right-wing american with german grandparents:
"immigrants sus"

willow light
stuck furnace
#

Mine is mostly a huge stack of OU books.

gentle flint
#

I have those on one shelf

#

lol

stuck furnace
#

Oh nice

#

I've been meaning to buy Harold McGee's book.

#

On Food and Cooking

gentle flint
lethal ingot
#

A a aa a

gentle flint
stuck furnace
#

Famously...

#

๐Ÿ˜„

lethal ingot
#

Where is Burj Khalifa ?

#

Dubai or UAE

gentle flint
#

dubai

#

is in uae

lethal ingot
#

Good Google search

gentle flint
#

I knew it already tho
someone from Dubai told me

stuck furnace
#

Erm

willow light
#

DO they have a DataDog dashboard that highlights swear words?

stuck furnace
#

Not really staff per-se

gentle flint
lethal ingot
#

Why chat is getting raunchy ?

gentle flint
willow light
lethal ingot
#

This is a military area

willow light
gentle flint
lethal ingot
#

Shout out to old days as kid when I thought movies are real

gentle flint
willow light
stuck furnace
#

Yeah my cats are not having a good time right now lemon_pensive

#

Fireworks every night from November to January.

lethal ingot
#

๐Ÿ™€

gentle flint
#

we're getting a national fireworks prohibition this year

#

hurrah

willow light
stuck furnace
#

You seen Twister ClariNerd? ๐Ÿ˜„

#

That's what I imagine when people talk about storm chasing ๐Ÿ˜„

willow light
stuck furnace
#

Aliens...

lethal ingot
#

Aliens don't exist

gentle flint
#

yes they do

#

we have one in this server

#

or did

#

he left

willow light
stuck furnace
#

Accurate ๐Ÿ˜„

cloud rover
#

lol

stuck furnace
#

As a Vim user... lemon_smug

willow light
#

I use nvim. It's much better.

gentle flint
willow light
#

Pure vim is a little too basic for me. I might as well be using sed.

#

(jk)

lethal ingot
willow light
stuck furnace
#

That's a nice map ๐Ÿ‘

willow light
#

I have a climatologist friend who makes these maps that have interesting but not very useful information

stuck furnace
#

Good moaning

gentle flint
#

renรฏ artua ferrrchรถ de rรฏomewrrr

foggy tulip
#

๐Ÿ‘

foggy tulip
#

Guten morning @stuck furnace

stuck furnace
#

If you say "butter" with a new-york accent

#

The "tt" is like the short "r" in Spanish.

gentle flint
#

I need to learn it for words like
Gรถteborg

lethal ingot
stuck furnace
#

Try Welsh ๐Ÿ˜„

lethal ingot
#

Try Chaldean

gentle flint
#

Sju sjรถsjuka sjรถmรคn pรฅ skeppet skรถljde sju skjortor i sjรถn

lethal ingot
#

It sounds like an AI voice

gentle flint
#

seven seasick seamen on a ship washed seven shirts in the sea

lethal ingot
#

That's Aussie

#

Doo et agen

#

The african pronounciation of do it again

stuck furnace
#

gtg

lethal ingot
whole bear
#

Hi, Everybody.
I have one question with python selenium.
When I click button, Can I create new webdriver.

lethal ingot
#

I speak English 50 50

#

But

gentle flint
#

wth

#

ik vind je omschrijving van het Nederlands zรฉรฉr beledigend

#

@willow light

#

my actually disgusting program to find the current dynamic IP address belonging to my server

import os
import datetime
import subprocess
import xmltodict
import json

wanted_addrs = ["mac address goes here"]

print("Initialising network scan at")
print(datetime.datetime.now().strftime("%H:%M:%S"))
result = subprocess.run(['nmap', '-sn', '-oX', '-', 'LAN_IP_address/24'], stdout=subprocess.PIPE)
print("scan completed, parsing output")
result_decoded = result.stdout.decode()
result_parsed = xmltodict.parse(result_decoded)
result_json = json.dumps(result_parsed)
result_python = json.loads(result_json)
result_list = result_python["nmaprun"]["host"]

print("output parsed, printing results \n \n")
for i in result_list:
    if i["status"]["@reason"] != "localhost-response":
        if i["address"][1]["@addr"] in wanted_addrs:
            print("MAC address:")
            print(i["address"][1]["@addr"])
            print("IP address")
            print(i["address"][0]["@addr"])
            print("\n \n")
#

I'm too lazy to fix my prints

#

or anything else

#

ha

willow light
#

I would've just had it be

print(f"MAC Address: {i['address'][1]['@addr']}")
print(f"IP Address: {i['address'][0]['@addr']}")
gentle flint
#

true, would've been better

#

but w/e

gentle flint
foggy tulip
#

Didon dรฎna, dit-on, du dos dโ€™un dodu dindon.

#
#

Before was was was, was was is.

willow light
#

James while John had had had had had had had had had had had a better effect on the teacher

#

James, while John had had "had had", had had "had"; "had had" had had a better effect on the teacher.

#

That that is is that that is not is not is that it it is

#

Colorless green ideas sleep furiously.

stuck furnace
#

@willow light if police-police police police, who police police-police?

willow light
#

ffs

stuck furnace
#

police-police-police police police-police

#

I clearly joined at a bad time. I'm out of here ๐Ÿ˜„

foggy tulip
#

@stuck furnace vinegar-vinegar-vinegar vinegar vinegar-vinegar

fleet kettle
#

hello

willow light
#

hallo

#

guten tag

fleet kettle
#

it won't let me get verified yet ๐Ÿ˜ฆ

willow light
#

sorry, guten abend

fleet kettle
#

just because I don't send enough messages cause I don't want to be annoying

willow light
#

entschuldigung i haven't used duolingo in weeks

wise cargoBOT
#

Hey @willow light!

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

willow light
#
      ! The following urban canyon geometry parameters are following Macdonald's (1998) formulations
      
      ! Lambda_P :: Plan areal fraction, which corresponds to R for a 2-d canyon.
      ! Lambda_F :: Frontal area index, which corresponds to HGT for a 2-d canyon
      ! Cd       :: Drag coefficient ( 1.2 from Grimmond and Oke, 1998 )
      ! Alpha_macd :: Emperical coefficient ( 4.43 from Macdonald et al., 1998 )
      ! Beta_macd  :: Correction factor for the drag coefficient ( 1.0 from Macdonald et al., 1998 )

      Lambda_P = R_TBL(LC)
      Lambda_F = HGT_TBL(LC)
      Cd         = 1.2
      alpha_macd = 4.43 
      beta_macd  = 1.0


      ZDC_TBL(LC) = ZR_TBL(LC) * ( 1.0 + ( alpha_macd ** ( -Lambda_P ) )  * ( Lambda_P - 1.0 ) )

      Z0C_TBL(LC) = ZR_TBL(LC) * ( 1.0 - ZDC_TBL(LC)/ZR_TBL(LC) ) * &
           exp (-(0.5 * beta_macd * Cd / (VonK**2) * ( 1.0-ZDC_TBL(LC)/ZR_TBL(LC) ) * Lambda_F )**(-0.5))

      IF (SF_URBAN_PHYSICS == 1) THEN
         ! Include roof height variability in Macdonald
         ! to parameterize Z0R as a function of ZR_SD (Standard Deviation)
         Lambda_FR  = SIGMA_ZED_TBL(LC) / ( ROAD_WIDTH(LC) + ROOF_WIDTH(LC) )
         Z0R_TBL(LC) = ZR_TBL(LC) * ( 1.0 - ZDC_TBL(LC)/ZR_TBL(LC) ) &
              * exp ( -(0.5 * beta_macd * Cd / (VonK**2) &
              * ( 1.0-ZDC_TBL(LC)/ZR_TBL(LC) ) * Lambda_FR )**(-0.5))
      ENDIF
#

is what I'm working on

#

This is Fortran 1977

#

This is part of the code for modelling the effects of city streets on local wind patterns

uneven yarrow
#

!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.

willow light
#

No

#

I'll use Gist instead

#

I'm trying to figure out how to use NCAR VAPOR program for some projects. It lets you use stuff like this.

fleet kettle
#

sorry I'm back

#

so can I spam a few messages to get verified?

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @fleet kettle until 2020-11-16 00:51 (9 minutes and 59 seconds) (reason: burst rule: sent 8 messages in 10s).

fleet kettle
#

my bad

green bone
#

@fleet kettleThe message in #voice-verification is pretty clear:

Spamming to meet any criteria will get you temporarily or permanently banned from voice, and potentially the community

#

!tvban @fleet kettle 1w spamming to pass voice gate

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @fleet kettle until 2020-11-23 01:35 (6 days and 23 hours).

tidal salmon
#

@meager badge try asking here

fleet kettle
#

@fleet kettleThe message in #voice-verification is pretty clear:
@green bone I hadn't read that, my bad.

past elk
#
def methoud():
  return "jio"
methoud()

output : ''

somber heath
#
def func():
    pass
a = [func]
a[0]()```
past elk
#
def func():
    pass
a = {'func':func}
a['func']()```
fiery hearth
#
def buying (quantity, rate):
    amt = quantity * rate
    sebon_fee = amt * (0.015 / 100)
    demat_fee = 25
    broker_comm = brokercomm (amt)
    tot_cost = amt + sebon_fee + demat_fee + broker_comm
    return tot_cost
past elk
#
tot_cost = buying(quan,rate)