#voice-chat-text-0
1 messages · Page 696 of 1
its a 3x2 matrices
cant we add those
yeah
@whole bear ```py
matrix_list = []
matrix = input("Enter 12 numbers on this line: ")
# Program to add two matrices using nested loop
X = [[1,2,3],
[4 ,5,6],
[7 ,8,9]]
Y = [[9,8,7],
[6,5,4],
[3,2,1]]
result = [[0,0,0],
[0,0,0],
[0,0,0]]
# iterate through rows
for i in range(len(X)):
# iterate through columns
for j in range(len(X[0])):
result[i][j] = X[i][j] + Y[i][j]
for r in result:
print(r)
do i use modulus?
Just an example, change the dimensions
And use append
how do i change this [[2, 4, 6, 8, 10, 12]] to [[2, 4], [6, 8], [10, 12]]```
[[2, 4], [6, 8], [10, 12]]```
split?
But you can add that to the program
Like when it appends it, you put it into those pieces
Uhhh I already forgot
I can't hear you for some reason again
@hidden cove Can you type in chat until whatever's going on is fixed
Big numbers make it look weird since it reaches asymp faster
!eval
You could do:
old = [2, 4, 6, 8, 10, 12]
new = list(zip(old[0::2], old[1::2]))
print(new)
@stuck furnace :white_check_mark: Your eval job has completed with return code 0.
[(2, 4), (6, 8), (10, 12)]
thats a tuple
if i am not wrong
@whole bear what are you using to visualise?
You have to do something like (x(t), y(t))
Then you set the range of t.
I did a Bezier curve thing in Desmos a while ago.
Not sure if I remember how it works 😄
Yeah, Desmos is cool.
Have you made art in it?
I talked to a guy in this server that discovered how to make any image using only 1 line (without summing trig funcs)
This is the most advanced thing I've done: https://www.desmos.com/calculator/q7mepotqp7
That's cool. I think 3blue1brown did something similar?
Drawing pictures with Fourier series.
me in math class
@stuck furnace Surely we can work on it
hi guys how is it going?
Nah I just found it on Wikipedia
I was doing a class that involved voronoi cells though.
I think it was machine learning or something 😄
As you can tell, I didn't do well that semester.
Erm, like clustering.
Can SymPy integrate?
Like, have you heard of k-means clustering?
Ah right. It's an algorithm for clustering points.
I think so 🤔
It's a cool library, just downloaded it
@stuck furnace Have you done an ML course?
Erm, I've done parts of several ML courses
But never one complete course.
Erm, not really to be honest.
It's like watching movies on TV. I've seen 50% of 100 films.
I just found out python has a cool little statistics module.
built in?
Yep
It has random variables:
!eval ```python
from statistics import NormalDist
X = NormalDist(mu=10, sigma=2)
Y = NormalDist(mu=5, sigma=1)
print(X + Y)
@stuck furnace :white_check_mark: Your eval job has completed with return code 0.
NormalDist(mu=15.0, sigma=2.23606797749979)
But can you explain why 2 * X != X + X? 😄
!eval ```python
from statistics import NormalDist
X = NormalDist()
print(2 * X, X + X)
@stuck furnace :white_check_mark: Your eval job has completed with return code 0.
NormalDist(mu=0.0, sigma=2.0) NormalDist(mu=0.0, sigma=1.4142135623730951)
When you add two NormalDist objects together, it assumes they are independent.
Independence is kind of a subtle thing that trips up every statistics student.
Thought Cauchy would appreciate that 
Thanks
Erm, that's specific
Are you from the UK LXNN?
Yep
GCSEs?
Erm, I wouldn't have thought it matters too much as long as you have standard subjects like english, maths, and science.
I think in the UK you need an undergraduate degree?
They're fighting really hard to keep the Welsh language alive.
All the road signs are in English and Welsh.
Use this service to apply for a postgraduate teacher training course.
Routes into teaching
All candidates for teacher training need English and Mathematics GCSE grade B or equivalent. Candidates for primary teaching need science GCSE grade C or equivalent.
What's 'microwave'? 😄
Cacha bant
No u
I thought it was 'popty ping' 😄
It isn’t
Is that just an urban legend?
"“Popty ping” is not the Welsh term for the microwave oven, sorry. A literal translation would be “the oven that goes ping”, which, while being very Pythonesque, and incredibly funny, isn't actually true."
The popty ping and wibbly wobbly is fake
Ah
Words that should see you able to kick start a conversation somewhere in Wales.
"LLANFAIRPWLLGWYNGYLLGOGERYCHWYRNDROBWLLLLANTYSILIOGOGOGOCH" village
@stuck furnace Do you have mic?
Erm, I do have a mic. But I tend not to speak.
{'a': [1, 2]} | {'a': [3, 4]}```
Should this give {'a': [1, 2, 3, 4]} or {'a': [[1, 2], [3, 4]]}?
You guys never sleep or what?
!e python d = {'spam': 1, 'eggs': 2, 'cheese': 3} e = {'cheese': 'cheddar', 'aardvark': 'Ethel'} print(d | e)
@graceful grail :white_check_mark: Your eval job has completed with return code 0.
{'spam': 1, 'eggs': 2, 'cheese': 'cheddar', 'aardvark': 'Ethel'}
!e python d = {'spam': 1, 'eggs': 2, 'cheese': 3} e = {'cheese': 'cheddar', 'aardvark': 'Ethel'} print(e.update(d))
!e python print(sys.version_info)
!e python import sys print(sys.version_info)
@graceful grail :white_check_mark: Your eval job has completed with return code 0.
sys.version_info(major=3, minor=9, micro=0, releaselevel='final', serial=0)
!e ```python
import platform
print(platform.python_version())```
@graceful grail :white_check_mark: Your eval job has completed with return code 0.
3.9.0
!e ```python
import sys
print(sys.version)```
@graceful grail :white_check_mark: Your eval job has completed with return code 0.
001 | 3.9.0 (default, Nov 25 2020, 02:26:32)
002 | [GCC 8.3.0]
Wrapper.py is a Minecraft server wrapper that adds additional features to a vanilla server, including backups, dashboard access, plugins, and more. - benbaptist/wrapper.py
Hey everyone.
Wanted to try out coding. Anyone have any suggestions or links that can lead me to starting out.
!e
#include <stdio.h>
void main(){
printf("Hello OpalMist\n");
}
So it just runs python
I'm at a wedding right now 😁
!e python print("Hello @OpalMist")
@graceful grail :white_check_mark: Your eval job has completed with return code 0.
Hello @OpalMist
50-60 people are allowed, and 200 showed up
Also this typing space is super small on phones, in discord
I'll take that as a no 
Wanna hear what it sounds like, just for 10 seconds ?
That's indian weddings 😂
Noisy stuff
@wicked urchin There is what I consider to be the Python bible. There's the Python documentation on the python.org website. However, it also comes with downloadable versions of it. The downloadable pdfs of it have one of them called library.pdf. Everyother Python tutorial is pretty much derivative of the information in that file. Other good tutorials, however, are on Youtube. Tech with Tim, sentdex, Corey Schafer.
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
@somber heath I really appreciate it man.
@wicked urchin Pick your IDE. Write a Hello World.
Start with the tutorials that are for complete beginners.
Does it matter which kind of IDE is selected?
And sounds good man, I'm definitely starting up as we speak.
@wicked urchin Try a few. See which one feels good for you.
{% static 'app/img/img.png' %}
@wicked urchin While an IDE may be written in C++, C++ is not an IDE in itself.
Understood.
Ok guys I gtg, haven't eaten since breakfast
@whole bear How recent was breakfast?
heya dude bros
Hey Macro
heya
Change your name huh.
no
Hey there
heya
@whole bear sup! Are you Turkish?
Where did I go wrong using this URL for method?
yes
How have you been @hushed elm ?
last one was the wrong img
Cool cool
I see
u?
i think u too
well u gotta stop the prograstination
haha
@quartz lynx Internet Explorer will give you headaches in web dev, try not to use it
I tent to get stuck on problems that I end up not being able to solve
did you do your daily pushups? @cloud stratus
leave them do something else for a bit
then return
Yup!
I mean, it's stll hella hard
im gonna be a big boi
11AM
byee
thats poggers bro
do as i say not as i do - every person in power eh
!important !important !important !important !important !important
!importantine
shahsunga
!importante
what ya doin ther alone, mate @graceful grail
haha
Thats what an assasin would say
WTH
lol
Hey @hexed crow
You know really annoys me?
the fact that i cant talk
because i havent sent enough messages
reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
oh no
an no, this is not a joke
i am js python and material ui
no css?
the weirdest thing about css is that you can import an image for background, and you can actually code something in css that reads the exact same thing in html-- an quine.
ok...
css is not hard my dude
ik
reee
why can't i get it to work
its google time
agin...
again
i did it, yesssssssssssssssssssssssssssss
@cloud root go back to roblox
lol
swift?
jimmie rustling?
are you using google translate?
oh wait
it's actually a term
wow
A term used in many different occasions when strong emotional needs are met. These emotions can range from sexual emotions to hateful emotions.
@gentle flint lol yeah
never heard of this before
1st definition for sugoi is please kick me in the balls
Big oof
@severe elm just signed up for treehacks
i want to make a guild
prt scn then go in paint
easy
ctrl-v in paint
maybe you're using the wrong command.
no its right command
It says you dont have python.
i'll explain a bit
make a scratch too
Our comprehensive guide to CSS flexbox layout. This complete guide explains everything about flexbox, focusing on all the different possible properties for the parent element (the flex container) and the child elements (the flex items). It also includes history, demos, patterns, and a browser support chart.
I had installed Node.js few days ago and it installed python 3.9 but i dont ant it so.... i uninstalled it 3.9 cause i wanted 3.8.3 which i already have
Then you gotta go and select python 3.8 in your system
How but?
You have to change your environment variable to python 3.8.3.
There are some great tutorials on it
any refference?
Just search it up on youtube
good
You should have joined this server atleast 3 days ago and should have sent more than 50 messages and a bunch of other rules...
@whole bear I think there's a channel named " voice-verification "? I'm not sure.
brb
hello
hey wsup guys
hey!!
Basically
Im trying to create a class
For my button
Im using python tkinter
Yess
I cant get it to work
Can i send it ?
I dont think i can send it here ?
opal now i have gained much basics about python do u think its the right time to go on for projects and automation??i mean only if it doesnt demotivates me or somethin
@whole bear Do as ye please.
cool to speak opal of u can
sorry?
Do what you want.
Join the challenge or watch the game here.
have you ever worked with discord py?
Ugh There are still many things I don't know about Discord
like, if I want to ban someone for a certain duration, how can I do it, without creating a database?
I'm thinking that can't unmute in this server because I'm new
is there some thing like user.ban(reason = reason, duration = duration)?
😭
I turned him up but still pretty quiet
@whole bear i can barely hear you (?)
@whole bear were u playing against me ?btw
what?
that was a programe?
XD
who was i play chess with ?
yea i made some mistakes
but eventually imma beat u one day XD
i had fun dude
thanks
again
that one day would probably come soon
by the way, i made a program which would join the online classes ;)
whoa
cool
even though i go to school...
join google meets, and be quiet the whole time
more feeble than before
i used selenium if u r wondering
@somber heath i do to school, but it would be nice to make a bot, do online classes :)
nah, i'm fine without it
L
F
@somber heath Do you work as a programmer?
where are you from, dude
@severe elm
probably japan (?)
prolly
any japanese person here?
why did you do bxe6 @sick cloud
you left your queen hanging
cuz Kimchi is Korean food iirc
bru
look carefully
you guys arent very good
what do u mean?
wdym
that's cool where were u born?
In Japan~
r
:incoming_envelope: :ok_hand: applied mute to @whole bear until 2020-12-07 14:04 (9 minutes and 58 seconds) (reason: burst rule: sent 8 messages in 10s).
hmmmmm
lmao
lol
xd
sure
Gotta be careful😰
You expected otherwise?
nah you cant write 8 mesagges in 10 sec unless you spam
-_-
I see
Fair enogh
enough*
lol north korea
I wanna talk
about what
oh so you are supressed
go to voce verify and type !voiceverify
well you will talk after 3 days
:/
wdym by grzybek ?
😮
thor
-_-
🙂
they are bullying an Asian for not being able to pronounce r and l correctly
heres to 48 messages left, oh my.
don't spam
Oh nvm he left
Look, when someone says three like they're saying free, I'm going to get confused.
haha
yea
I am Japanese and I mix them up sometimes too, don't worry
I think
I'm almost there
I should be able to unmute soon
good look
is this our morning scrum?
I thought I joined two days ago
guys i have to go i have online classes
but appareantly it was yeaterday
i am currently in one lol
yesterday*
F
okay!
we cant hear you
yea he's quiet
Lmao
u said u were born in japan doe XD
is that a question ? -_-
my blood is consist of pure jap blood
or does it ?
<a href= {% url 'url path' %}></a>
lo
nope
yo what;s that?
speak english bro XD
jk jk
huh
Do you think I'm a weeb or something?
@severe elm never heard of those things
broo being a weeb and being born in japan are complitely diffrent think
i've seen <a href="https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/&ss=1&scc=1<mpl=default<mplcache=2&emr=1&osid=1#"> </a>
of course?
why exactly japanese
@cloud stratus hello
Hey
yea
How you doing?
If you want me to prove I can talk in Japanese
i'm gud, hbu ?
what i saw: InMotion,
how i said: nmotion```
nO I don't add someone who calls me a weeb
i didn't call u a weeb dumbass XD
wdym by weeb ?
I ignored your request, get rekt
has anyone done Dmarc dkim1 or spf before?
Search weaboo
having trouble configuring it
wow
yess, microsoft edge, bing, i'm incognito
smh
Use google chrome
i prefer edge
go with firefox
accept my friend request broo i ddin't call u a weeabo bro
bing is og
Btw can people in China use Discord?
probably not
they can't evne use ig they gotta have vpn
F
I thoght so too
@meager crow what grade you in ?
thought*
i have friends from all around the world on facebook
pretty aesthetic XD
noooo, facebook
@meager crow ||same||
||but i'm probably younger||
how old are you
9th grade in the US is...
ummm, 14 you ?
13
ah
14
very interesting
I feel old
what if we were liying
to keep it offline (?)
hmm
@meager crow rObLOx
You don't have wifi at home?
i do.... -_-
I bet you are 35 years old
lol
Joe is using a fake name
that's why he didn't recognise
hehe
._.
:<
Stay at home then
You don't need them offline
Ew
someone burped
why ???????????????????????????????????
i don't watch any :P
so fucked up
F
hentai?
why do you hate sip so much
@whole bear Not even as a joke
what do u mean bro
I mean this
@rugged root hello
Hey Jag
how u doing ?
I'm alright. Back in a sec, have to change a light bulb
u deleted this?
I did
alr, xD
F
But you still need to understand that it's not appropriate, even as a joke
If you're confused as to why, Sip, then I advise you to look over in the #code-of-conduct channel.
okay!
-_-
Once you start, you are done
nah, it's cool
You will die early
rly
waranty void
@high ingot u thought about accepting my request?
pov : i didn't call u a weeb
i am just tryna be your freinds cuz i think you're japanese?
lol
who are you?
just a sec....
@hushed elm hello
broo that's really cool!!
i'm making a bot which could theoretically join my online google meets
let me know what happens XD
rAciSt
You laugh like my grandma
@sick cloud
i just a need a way, so that the bot could leave the call,
well in zoom it ends auto after 40 mins
idk about google meetings
wooow
which module are u using
bad kid
google meet doesn;t end i guess
XDDD
F
lol
bro, i thought that was garou from one punch man on your profile picture
haha it is not. it is frey from fisheye placebo
cool homie
thx
G'evening
KDE performs about the same as XFCE, believe it or not
it;s 9:02 pm here XD
Keep it SFW @high ingot
5 o clock
33 maybe
Also im suprised that these kids know about hentai
.wa s 79 feet in meters
about 24.1 meters
Good bot
||i'm getting an award tmr||
Oh awesome! What for?
How old?
cuz i got 75% and above an an average for my exams :)
30
I assume Feast of the Immaculate Conception? @meager crow
espanól
I'm Filipino so I'm like 1/8 Spanish already
espana
I don't know Spanish
hola but pronouced as ola
não
buenos dias
thats spanish
ikkkkk
What's the equivilent of a Dragon Ball Z fan getting Dragon ball replicas for christmas for a D&D player?
idk
@rugged root hey yo
Suuuuuup
jstris
what is jstris ?
hey guys
@meager crow GOOGLE classroom
Some obscure LMS 
what does LMS mean ?
Learning management system
thx
@hushed elm I use Manjaro
manjaro
My school uses LMS
OpalMist reminds me of my Canadian friend
Not really, the Manjaro repositories are pretty stable; you'd want to get used to the command syntax though
GParted came with my Manjaro install
I used ubuntu, parrot, debian and kali but never tried manjaro
Cuz he is also calm, stable, and helpful
I was never a fan of Ubuntu's GUI
Canadians are good ppl in general imo
@whole notch there are a lot of themes out there. You can customize the way you want
ubuntu>debian
Oh, wish I knew that 3 years ago.
@somber heath Are you actually Canadian? Faking accent? lol
Ubuntu <= debian
mm
Lmyo
Lmao
😂
Bye bye
:)
@somber heath This person
from: Daaammmnnn#2962
friğvolous
A few ideas: Beholder, per Hemlock's suggestion, Demogorgon, Tiamat, The Lady of Pain or her face, Minsc with Boo, illithid, otyugh, krenshar, kobold, a holy symbol neck pendant of one the various deities (Forgotten Realms pantheon, probably), a metal d20 as a neck pendant, a DM screen. @fickle fossil
@fickle fossil If you want to make your friend die a little inside, get them a stone Lim Lim.
How long did it take to write the code
how to enter dark web in 2020 FREE (credit card needed)
where is the second page of google
I play angry birds
@fickle fossil Modron, cube form. Nordom, more specifically.
Admin aboos 
If it's moving quickly, you want to watch where it wanders off to. @hollow haven
If Velociraptors were house pets, they'd behave just like cats.
print("Do you wish to email?")
emailoption = input("\nY OR N\n"
">")
while emailoption == ["Y", "y"]:
if emailoption == ["Y", "y"]:
targetemail = input("Enter target's email: ")
EmailSubject = input("Email Subject: ")
emailmessage = input("Email Body: \n")
with smtplib.SMTP_SSL('smtp.gmail.com', 465) as smtp :
smtp.login(GMAILADD, GMAILPASS)
msg = emailmessage()
msg['Subject'] = EmailSubject
msg['from'] = GMAILADD
msg.set_content(emailmessage)
smtp.send_message(msg)
break
elif emailoption == ["N", "n"]:
break
emailoption in ["Y", "y"]
program time = num instructions * cycles per instruction * time per cycle
AMG AMD BBQ!!1
!voiceverify
Lyrebird
@rugged root how many gb should i allocate for the manjaro installation? I'll work on web dev but also android dev probably
Are you going to be using the HDD for anything else? Other OS or something?
yes i have a windows installation
I used to use light theme during the day, and dark at night.
But now I just stick to dark.
i have 100gb free, wanna do 50gb for os installation and 50gb for home
I mean it all is useable by the machine even if it's dedicated to the OS
I'm confused
@somber heath u use ext4?
for your partitions?
k
luv u ty
what?
okok
ty
i have used ext4 in the past, on this drive and it worked fine
I don't even know what it is lol
yess i have done that
yes, on a partition yep
can't wait for hemlock to make me admin
uuuu yesss
yeyuuuh
is dualboot good
I don't have a good pc, so I use dual boot right now 😞
sometimes you need MS-Office stuff, when you're in college or school
do we need to pay for it?
cloud one
@meager crow no u
its good but partition stuff is risky and messy
use a usb instead
the bootable usb drive
Or try to get a copy of Win10 Pro and use HyperV
i get u now
told upon my experience lost a whole lot of data probab due to my mistake

My partition which have windows in it is encrypted, and isn't accessible through linux
at least that's what windows tell me
If Bitlocker is engaged, TPM won’t open Windows partition to Linux
can you install linux on a usb c? and get good speed, like it was installed in the internal drive?
yupp
i installed kali linux in 32gb and its super smooth
quite a ssd speed
i would say
yuppp
but no one does it
coz it will keep asking for activation
so its doable with the type of windows, if we talk about here, we would be breaking rule 5
Windows won’t install to USB drive as far as I know
quite a anti feminst sorry!!
"Here's the pizza, here's the beer, so this doesn't take a year."
Opalmist, here is 900 USD so I don’t have to do any of it
Yo, what's up?
And Windows to USB is allowed with Windows to Go
Never mind they are removing the feature
Not too late to join in!
yes the fuchin secure boot sucks
they have teamed up against it
i think the high specs hype is gonna fall very soon due to cloud processing and gaming
all i need is internet
good internet
and a good wifi card, what's the newest? Intel6 maybe?
Not great
But they pay
So whoever
Also stadia isn’t happening
Stop trying to make it happen Google
look at the face of a cow maaan the eyes its like they spread love with the moist eyes!!!!!!!!!!1
i bet you would have been born in india yyou would have worshiped cow!!!!! @somber heath
yeah
well im quite proud of this ancientness
coz it makes me kind towards them
not slaughter
😄
As I've said. We are, in no small part, a product of where we are raised.
uhmm agree to it
and I'm implying something by that
But I think, for myself, it may be in poor taste for me to elaborate.
no like whats the purpose of this discussion
so far i see this is mostly opinionated
not so much
hey @somber heath talking of politics hows it in australia?? dirty like india or useless like usa!!!
corruption????
oh
python spelling is wrong
awesome
from india
ive already takin it
python no more sucks, make opal say your name now 😂
hahahhah
say my name sounds too sexual
i have some questions @severe pulsar
yeah what up
yeah
I am here to learn English lol. You guys got amazing accents
inspired by you
Not here
alright
can i message you?
sure gimme a second
Iceman just added me too 😄
@amber raptor you sound like a RJ 😄
the guy on radio @amber raptor
@amber raptor
Are conspiracy theories more prevalent in America than elsewhere?

