#voice-chat-text-0
1 messages ยท Page 671 of 1
for(var i = 0; i < input; i++){
for (var j = 0; j < i; j++){
print('#')
}
}
NaN
NaN
NaN
NaN
NaN
NaN
undefined
NaN
NaNNaN
NaNNaNNaN
NaN
NaN
NaN
NaN
NaN
NaN
undefined
NaNi?
__repr__
classs something(Something):
how do i write that
give some code man
@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))
print(help(Something))
Input (stdin)
Download
6
Your Output (stdout)
#
##
###
####
#####
######
Expected Output
Download
#
##
###
####
#####
######
##
urgh dw
:v
@severe elm https://caos.readthedocs.io/en/latest/
Yo
hey
@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 ^^
@severe elm https://github.com/cimm-kzn/CGRtools
so im trying to send a whatsapp message if rolos_de_papel < 7 and its not working pls help
@somber heath is it this one?
Yes.
yeah do you do web development with django?
can you ask the other guys if they do?
You may like to hit up the folk in the web development room.
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
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
hi
i would need some help to install stack overflow
no
if anyone is free then please come and help me in code/help 1
;o
machiavellian
James, while John had had "had had", had had "had"; "had had" had had a better effect on the teacher.
cool, how is it? is it worth the money?
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
@frigid panther as with everything, just self-taught.
I gtg, see ya guys
later @crimson dew
sorry for popin in and off, my internet is extremely unstable today
hello everyone ๐
why do u think that u don't deserve the job? @leaden comet
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```
- Use snake_case, not camelCase.
- don't use os.path.exists, use
pathlib. - Don't put the expression inside the condition on the same line as the condition itself.
- don't use
open(file, 'r'),use context processors (likewith open(file, 'r') as file..) - don't raise generic Exceptions, raise specific exceptions or let standard library modules raise their own exceptions..
- only put spaces after a colon, not before.
- don't use list comprehensions that require multiple layers. It's better to just break this into multiple lines.
- range(len is an anti-pattern. IF you see
range(len(. examine your code and find a better way.
@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])
3 blue 1 brown*
i just started with python what should i do first
!resources @whole bear
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
ohhh thanks
import random
python
jumble
easy
hello
50 words
I need
lol
not spam
@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
!clean user 777396310093070356 10
User "777396310093070356" not found.
!clean user <user> [amount=10] [channels]
Can also use: clean users
Delete messages posted by the provided user, stop cleaning after traversing amount messages.
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
wbu codecademy guys
@past elk that's certainly easier to wrap ones head around.
@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 Are you working with Manim?
@whole bear no
@brisk current @ruby wind Have you guys seen Matlab?
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
20^20
10^20*log(20)
160k^5
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?
25^25
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
256^2567
i+4i^7i + 3
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
2i+5,3i+2
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
x,y,z,w
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?
yes
Yes we are
My PC I'm using rn is from 2010
Dude
Wtf it's just for your voices that I can't hear
check discord audio out
Might be cause I'm far away since I'm not American
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
11
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
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
Hey
Do you guys know what capsicum is?
Good morning
Who are u talking to?
I'm talking to the guys in VC
Do you call 7/11 a 'sevo'?
Why we are limited?
.
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
damn @tidal salmon u are all alone
@pure path I will be okay
gl
@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
ok
no, double works fine
yes
double and single are the same in python
worked
only used so you can have strings in strings
I thought double didnโt work with r(?
"hey look at this 'string'!"
Sweet ty
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)
Hello yes, I want one Joovc Doovdeฬ and I want one Joovc LucDe TV ready for dรฉ HD.
Subscribe for more: http://bit.ly/hattricksub
Visit Our Website: https://www.hattrick.co.uk/
Follow Hat Trick: https://twitter.com/HatTrickProd
Like Hat Trick: https://www.facebook.com/pages/H...
juuuhvaka lukadaduh
When you go to a restaurant there are Do's, there are Don'ts and there's "Ahhh Hell No!!"
Here are a bunch of things not to do at a restaurant.
Featuring Under 25 -https://www.youtube.com/user/U25StartupSummit
For more videos be sure to subscribe to our channel Jordindian.
H...
juhs
juhsh
const
let
"18" == 18
True
EUHSH6 JUHSH
array.forEach((value) => (
console.log(value)
))
p5.js a JS client-side library for creating graphic and interactive experiences, based on the core principles of Processing.
arr = [1,2,3,4,5]
arr.forEach((x,i) => {
console.log(x + " " + i)
});
@rigid nest is it js??
>>> a = [1,2,3,4]
>>> b = [5,6,7,8]
>>> print(a, b, sep="/")
[1, 2, 3, 4]/[5, 6, 7, 8]
\a
Get-LocalUser | Where-Object {$_.Name -eq "user"} | Disable-Localuser
electron
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`
function plusMinus(): void {
arr.sort();
arr.reverse().forEach((x, i) => {
console.log(`${x} - ${i}`);
})
}();
}()
ยฐvยฐ
*v*
| | / /
: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).
Scheme
!unmute 473859714162360320
:incoming_envelope: :ok_hand: pardoned infraction mute for @gentle flint.
thanks pure
๐
๐บ

@supple marsh hello
neh
or Lลss
mydict["location"]
[9, 4, 7, 8, 227, -28]
[-28, 4, 7, 8, 9, 227]
any one know telethon
@all Hฤฐฤฐ
Piotr Illitch Tchaikovsky (25/04/1840 - 25/10/1893)
Orchestra : The USSR Ministry Of Culture Chamber Choir
Conductor : Valery Polyansky
Album : V/A - Sacred Treasures - Choral Masterworks From Russia
Label : Hearts Of Space - 1998
choir
hi
o/
scraping app
like google asistant
or phone calls servise @somber heath
With kivy ?
Not certain. Investigate, I think, pyjnius.
Hmm
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.
yeah Root'ing phone
Where are u from ?
Hmm
and I live in Australia
Me turkey are u Kurdฤฑsh ?
I'm Chaldean
I lived in Kurdistan for 2 months
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 ?
: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).
!tvban 730204883877232665 2w Do not spam to get 50 messages.
:incoming_envelope: :ok_hand: applied voice ban to @lethal ingot until 2020-11-29 16:21 (13 days and 23 hours).
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
Ouideaux.
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
dont use pydroid i tell you
oh look
another dhruv
I'm losing my enthusiasm while waiting
you use quick edit+ for edit codes
ouf
and eun the code use termux for mobile use i prefer ok
Like LMS ?
tkinter
the GUI
I'm making my first one
for maths
What is best AI based transcription software ?
google voice, I guess
or maybe Siri or Alexa
google has the largest sample set, I believe
I don't think that google voice can transcribe media files
All software I searched for were expensive
see what works best for you
are these for Windows ?
idk
I'm sure some of them are
hi
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:
print('Hello world!')
@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 ๐

es6
es6 juhsh
[e@arch hackerrank]$ scheme
Chez Scheme Version 9.5.4
Copyright 1984-2020 Cisco Systems, Inc.
> (load "test.scm")
Hello, World!
>
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
@restive geyser bless you
bless you @restive geyser
thank you โค๏ธ
@restive geyser is a full grown man
@cloud rover yes ....
@gentle flint btw, Jamsyn was in another channel yesterday
oh god no
yes, i'm a full grown man. bald, with tattoos all over my back
@restive geyser what a description ๐
nice
she looks like a vase
super tatoo
it looks like the gates of asguard
right
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
C++ it is not so hard dont say it hahhah
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
you can take more time waiting for an answer here than an answer in the video @cloud rover
old
xD
what the hell @gentle flint
XD
ยฏ_(ใ)_/ยฏ
it's in the style of the server
Who got a wich in the background
you have mechanical keyboard ?
yez
stop
k
You're murdering your keyboard
LOL IT WASNT A WHICH I HAD YOUTUBE OPEN IN THE BACKGROUND AND THIS WAS PLAYING https://www.youtube.com/watch?v=n9SOS_U-ii8
I needed to make this even more annoying.
it will murder my wrists back
so whatever
Is that a shell? @signal raven
yea
!paste
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.
Hey, yeah all the mods/admins are in a staff meeting right now @cloud rover
Also, best not to ping people directly for help...
;c kk
It happens every sunday
pizza
aren't you part of the staff?
if anyone want a wallpaper changer for windows C: ```py
https://paste.pythondiscord.com/hemupatusu.py
Erm, there's a separate meeting for helpers Arven.
oh wait, I just realised
I'm not a mod ๐
๐ฎ hi lxnn
"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"
๐ฅฑ
for i in range(5):
stop = pyautogui.alert(text='', title='', button='STOP')
if stop == "STOP":
break
here's something because you wanted to hear me type something for you
You guys flexing by keyboards
I can also type like this if you prefer
mash mash
lol
I can also types like this if you perfer
holy shit
but it's a bit louder for your poor little ears
they must be practically bleeding at this point with all this banging on the keyboard
hmmm?
Yes they are, thank you very much for asking @gentle flint
I thought you'd appreciate my solicitous concern.
๐
ye
@whole bear #voice-verification
You need a certain amount of activity before you can voice verify.
minimum amount of 50 messages
what's the purpose of () after creating function for example -------> def compare(): <----------
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.
thanks @stuck furnace
Apparently, you can code Snake inside this
QR code?
yeah
๐ฎ
cross breeding
cucumbers are colonized by fruits
cactรฆ
kek
don't look it up
polykek
kektoos
lol
It never does for me @willow light
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"]
This code has no issue
that's why it ended up like it did
lol
trust me, if I could do anything else, I would
what's wrong with xml?
everything
but I use it all the time
the official best practices for using XML in Python is "get that Java shit outta here"
^
We live in the age of REST APIs
but yeah, nmap doesn't export any JSON so I'm kinda stuck
oh
it saddens me deeply

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
view-source:https://www.weather.gov/mdl/mos_getbull#selectsta
starting at line 283 is the mess
It gets worse
This is the output
@willow light There are websites that have a randomly generated class name
These are impossible to web scrape
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
https://api.weather.gov/stations/Kash/observations/latest?require_qc=true (filter .properties.rawMessage)
Renรฉ-Antoine Ferchault de Rรฉaumur
@gentle flint
@foggy tulip
I am so sorry I'm so impulsive

@stuck furnace hey, you're popular
everyone's been pinging you
Echo
What if there was no USA ? Who would discover the internet ?
the swiss
Or China
Discover?
at CERN
yes
we are all connected
just nobody found out
see also quantum tunneling
What if there was no mesopotamia ? Who would discover writing ?
authors
North Korean Leader Kim Jong Un just stated that the โNuclear Button is on his desk at all times.โ Will someone from his depleted and food starved regime please inform him that I too have a Nuclear Button, but it is a much bigger & more powerful one than his, and my Button wo...
152820
427457
Indus Valley civilization?
Nucleaire Bouton
not only refugees
alias indentured servants
And UK colonization as well
Dear potential employers: Sure, this is good experience, but experience doesn't pay rent.
That's why the internet is English
employers' response:
you get to kill people
why are you complaining
And all programming languages as well
I thought it was English because Americans are too lazy to learn a second language.
like French
Case in point: we're all fat.
And not just from DoorDash deep-fried sushi due to the pandemic
interesting how the Americans complain the French don't speak English
but never think of the fact that the Americans don't speak French
I went to Quebeck and they said "bonjour hi" I think that's good enough
Or Americans don't know any country in Africa
They just call it Africa
Or think that Africa is a country
My books collection
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?"
right-wing american: "you have slightly brown skin so you aren't a real person"
right-wing american with german grandparents:
"immigrants sus"
My book collection part 1 of 5
Mine is mostly a huge stack of OU books.
A a aa a
Good Google search
I knew it already tho
someone from Dubai told me
Erm
DO they have a DataDog dashboard that highlights swear words?
Not really staff per-se
Why chat is getting raunchy ?
weather a few weeks ago
Weather last week
This is a military area
last year's New Year's Eve fireworks haze
Shout out to old days as kid when I thought movies are real
my cat whenever someone lights fireworks
Weather on a normal Spring day
Yeah my cats are not having a good time right now 
Fireworks every night from November to January.
๐
You seen Twister ClariNerd? ๐
That's what I imagine when people talk about storm chasing ๐
Aliens...
Aliens don't exist
Accurate ๐
lol
As a Vim user... 
I use nvim. It's much better.
@willow light reminds me of
https://www.youtube.com/watch?v=Y1XhAltoTXE
**** Driver is okay **** A tractor trailer driver made it out safely after being struck by a Ferromex train. As you can see in the video, the grade crossing was NOT working. Interestingly enough, here is what Wikipedia says about Mexico's grade crossings: "These devices are e...
That's a nice map ๐
I have a climatologist friend who makes these maps that have interesting but not very useful information
Good moaning
renรฏ artua ferrrchรถ de rรฏomewrrr
๐
Guten morning @stuck furnace
If you say "butter" with a new-york accent
The "tt" is like the short "r" in Spanish.
I need to learn it for words like
Gรถteborg
Try Welsh ๐
Try Chaldean
Sju sjรถsjuka sjรถmรคn pรฅ skeppet skรถljde sju skjortor i sjรถn
It sounds like an AI voice
seven seasick seamen on a ship washed seven shirts in the sea
gtg
OS platforms market share usage on desktop computers and laptops.
I am a first year PhD student, data geek and I love visualizations.
As always your feedback is welcome.
Please support my channel. It can buy me another cup of coffee :)
Data source: W3S log files since 2003
Hi, Everybody.
I have one question with python selenium.
When I click button, Can I create new webdriver.
United States v. Microsoft was a court case filed against Microsoft by the United States Department of Justice. The plaintiffs alleged that Microsoft abused monopoly power in its handling of operating system sales and web browser sales. The issue central to the case was whethe...
I speak English 50 50
But
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
not so ha
I would've just had it be
print(f"MAC Address: {i['address'][1]['@addr']}")
print(f"IP Address: {i['address'][0]['@addr']}")
Didon dรฎna, dit-on, du dos dโun dodu dindon.
Kalaam is the first-ever programming language in Hindi and has all the basic
functionalities of a modern programming language. From for loops to while loops and from functions to conditional statements.
Before was was was, was was is.
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.
@willow light if police-police police police, who police police-police?
ffs
police-police-police police police-police
I clearly joined at a bad time. I'm out of here ๐
@stuck furnace vinegar-vinegar-vinegar vinegar vinegar-vinegar
hello
it won't let me get verified yet ๐ฆ
sorry, guten abend
just because I don't send enough messages cause I don't want to be annoying
entschuldigung i haven't used duolingo in weeks
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:
! 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
!paste
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.
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.
: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).
my bad
@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
:incoming_envelope: :ok_hand: applied voice ban to @fleet kettle until 2020-11-23 01:35 (6 days and 23 hours).
@meager badge try asking here
@fleet kettleThe message in #voice-verification is pretty clear:
@green bone I hadn't read that, my bad.
def methoud():
return "jio"
methoud()
output : ''
def func():
pass
a = [func]
a[0]()```
def func():
pass
a = {'func':func}
a['func']()```
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
tot_cost = buying(quan,rate)






