#voice-chat-text-0

1 messages · Page 696 of 1

whole bear
#

This?

echo glacier
#

its a 3x2 matrices

#

cant we add those

#

yeah

#

@whole bear ```py
matrix_list = []
matrix = input("Enter 12 numbers on this line: ")

whole bear
#
# 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) 
whole bear
#

And use append

echo glacier
#
 how do i change this [[2, 4, 6, 8, 10, 12]] to [[2, 4], [6, 8], [10, 12]]```
#
[[2, 4], [6, 8], [10, 12]]```
whole bear
#

There's a function for it

#

But I forgot

echo glacier
#

split?

whole bear
#

But you can add that to the program

#

Like when it appends it, you put it into those pieces

#

Uhhh I already forgot

hidden cove
whole bear
#

I can't hear you for some reason again

#

@hidden cove Can you type in chat until whatever's going on is fixed

stuck furnace
wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

[(2, 4), (6, 8), (10, 12)]
whole bear
echo glacier
#

if i am not wrong

fiery hearth
#

@whole bear what are you using to visualise?

whole bear
#

Desmos

stuck furnace
#

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.

whole bear
#

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)

stuck furnace
#

That's cool. I think 3blue1brown did something similar?

thin breach
stuck furnace
#

Drawing pictures with Fourier series.

thin breach
#

me in math class

stuck furnace
#

Music visualiser for mathematicians 😄

#

Yeah, don't ask me 😄

#

SymPy maybe?

whole bear
#

@stuck furnace Surely we can work on it

random rivet
#

hi guys how is it going?

stuck furnace
#

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.

whole bear
#

Can SymPy integrate?

stuck furnace
#

Like, have you heard of k-means clustering?

#

Ah right. It's an algorithm for clustering points.

stuck furnace
whole bear
#

It's a cool library, just downloaded it

stuck furnace
#

Erm, a bit like Mathematica in Python.

#

Yep

#

Nah, on my to-do list.

whole bear
#

@stuck furnace Have you done an ML course?

stuck furnace
#

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.

echo glacier
#

i tried print it

#

its incomplete

#

meaning

stuck furnace
#

I just found out python has a cool little statistics module.

amber raptor
#

built in?

stuck furnace
#

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)

wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

NormalDist(mu=15.0, sigma=2.23606797749979)
stuck furnace
#

But can you explain why 2 * X != X + X? 😄

#

!eval ```python
from statistics import NormalDist
X = NormalDist()
print(2 * X, X + X)

wise cargoBOT
#

@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)
stuck furnace
#

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 lemon_pensive

whole bear
#

Thanks

stuck furnace
#

Erm, that's specific

whole bear
#

Are you from the UK LXNN?

stuck furnace
#

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.

whole bear
#

Ymwelwyr

#

Nid wyf yn y swyddfa ar hyn o bryd.

stuck furnace
#

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.

whole bear
boreal herald
#

EI

#

True

#

Penis is pidyn

stuck furnace
#

What's 'microwave'? 😄

boreal herald
#

Cacha bant

whole bear
#

No u

stuck furnace
#

I thought it was 'popty ping' 😄

boreal herald
#

It isn’t

stuck furnace
#

Is that just an urban legend?

whole bear
#

"“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."

boreal herald
#

The popty ping and wibbly wobbly is fake

stuck furnace
#

Ah

whole bear
#

"LLANFAIRPWLLGWYNGYLLGOGERYCHWYRNDROBWLLLLANTYSILIOGOGOGOCH" village

#

@stuck furnace Do you have mic?

stuck furnace
#

Erm, I do have a mic. But I tend not to speak.

whole bear
#

Ok np

#

Ok I gtg

stuck furnace
#

Yeah me too. It's 4am here 😄

#

Cya 👋

graceful grail
#
{'a': [1, 2]} | {'a': [3, 4]}```
#

Should this give {'a': [1, 2, 3, 4]} or {'a': [[1, 2], [3, 4]]}?

whole notch
#

You guys never sleep or what?

graceful grail
#

!e python d = {'spam': 1, 'eggs': 2, 'cheese': 3} e = {'cheese': 'cheddar', 'aardvark': 'Ethel'} print(d | e)

wise cargoBOT
#

@graceful grail :white_check_mark: Your eval job has completed with return code 0.

{'spam': 1, 'eggs': 2, 'cheese': 'cheddar', 'aardvark': 'Ethel'}
graceful grail
#

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

wise cargoBOT
#

@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)
graceful grail
#

!e ```python
import platform

print(platform.python_version())```

wise cargoBOT
#

@graceful grail :white_check_mark: Your eval job has completed with return code 0.

3.9.0
graceful grail
#

!e ```python
import sys

print(sys.version)```

wise cargoBOT
#

@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]
whole bear
#

Hi guys

#

!e

graceful grail
wicked urchin
#

Hey everyone.

quartz lynx
wicked urchin
#

Wanted to try out coding. Anyone have any suggestions or links that can lead me to starting out.

wise glade
#

!e

#include <stdio.h>

void main(){
  printf("Hello OpalMist\n");
}
#

So it just runs python

quartz lynx
wise glade
#

I'm at a wedding right now 😁

graceful grail
#

!e python print("Hello @OpalMist")

wise cargoBOT
#

@graceful grail :white_check_mark: Your eval job has completed with return code 0.

Hello @OpalMist
wise glade
#

50-60 people are allowed, and 200 showed up

#

Also this typing space is super small on phones, in discord

wicked urchin
#

I'll take that as a no sadge

wise glade
#

Wanna hear what it sounds like, just for 10 seconds ?

#

That's indian weddings 😂

#

Noisy stuff

somber heath
#

@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

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.

wicked urchin
#

@somber heath I really appreciate it man.

somber heath
#

@wicked urchin Pick your IDE. Write a Hello World.

#

Start with the tutorials that are for complete beginners.

wicked urchin
#

Does it matter which kind of IDE is selected?

#

And sounds good man, I'm definitely starting up as we speak.

somber heath
#

@wicked urchin Try a few. See which one feels good for you.

hidden cove
#

{% static 'app/img/img.png' %}

wicked urchin
#

C++ an example of one?

#

This is something i used some years back.

somber heath
#

@wicked urchin While an IDE may be written in C++, C++ is not an IDE in itself.

wicked urchin
#

Understood.

whole bear
#

Ok guys I gtg, haven't eaten since breakfast

somber heath
#

@whole bear How recent was breakfast?

hushed elm
#

heya dude bros

whole notch
#

Hey Macro

hushed elm
#

heya

whole notch
#

Change your name huh.

hushed elm
#

no u, i don't remeber u

#

did you have another name?

whole notch
#

no

hushed elm
#

ah ok

cloud stratus
#

Hey there

hushed elm
#

heya

cloud stratus
#

@whole bear sup! Are you Turkish?

quartz lynx
cloud stratus
#

How have you been @hushed elm ?

quartz lynx
hushed elm
#

you don't need to use ../

#

maybe idk

cloud stratus
hushed elm
#

@cloud stratus I've been good, just woke up

#

gotta eat soon

cloud stratus
#

I see

hushed elm
#

u?

whole bear
#

i think u too

cloud stratus
#

Master procrastinator

hushed elm
#

well u gotta stop the prograstination

#

haha

#

@quartz lynx Internet Explorer will give you headaches in web dev, try not to use it

cloud stratus
hushed elm
#

did you do your daily pushups? @cloud stratus

hushed elm
#

then return

hushed elm
#

niiiice

#

it's gonna fix ur shoulder pain too

#

it fixed mine

cloud stratus
#

I mean, it's stll hella hard

hushed elm
#

what is?

#

i like fat adelle

#

slim adelle is boring

cloud stratus
#

But yeah, they ease the pain

hushed elm
#

ah yeah i guess

#

just make a few, don't force urself

#

you'll get stronger soon

cloud stratus
#

im gonna be a big boi

cloud stratus
#

Best time to have a breakfast is 2 pm

#

Bye macro

hushed elm
#

byee

whole bear
meager crow
#

thats poggers bro

hushed elm
#

do as i say not as i do - every person in power eh

meager crow
#

!important !important !important !important !important !important

#

!importantine

#

shahsunga

#

!importante

quartz lynx
frigid panther
#

what ya doin ther alone, mate @graceful grail

graceful grail
#

lol

#

Just chilling waiting for people to join :/

whole notch
#

haha

gentle flint
#

meh

#

wanna join

#

but I have class

#

w/e

whole notch
#

Thats what an assasin would say

whole bear
whole notch
#

WTH

graceful grail
#

lol

whole notch
#

Hey @hexed crow

hexed crow
#

heyo

#

i wish i could speak

meager crow
#

You know really annoys me?

#

the fact that i cant talk

#

because i havent sent enough messages

#

reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee

hexed crow
#

@meager crow I, too, express this concern.

#

It is rather jimmie rustling

meager crow
#

i need help with some css

#

pls

hexed crow
#

oh no

meager crow
#

an no, this is not a joke

hexed crow
#

i am js python and material ui

meager crow
#

no css?

hexed crow
#

like react

#

mat-ui is shorthand bootstrap

meager crow
#

ahh

#

ok so you cant help me

hexed crow
#

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.

meager crow
#

ok...

hexed crow
#

css is not hard my dude

meager crow
#

ik

hexed crow
#

@severe elm I want to be big chingus like u

#

how to get good?

meager crow
#

reee

#

why can't i get it to work

#

its google time

#

agin...

#

again

#

i did it, yesssssssssssssssssssssssssssss

hexed crow
#

@cloud root go back to roblox

cloud root
#

lol

hexed crow
#

congratulations gferia

#

i want to be big boi

#

have you used elixir

meager crow
hexed crow
#

swift?

severe elm
gentle flint
#

are you using google translate?

#

oh wait

#

it's actually a term

#

wow

meager crow
hexed crow
#

@gentle flint yes jimmie rustling

#

@gentle flint no im not using translate

gentle flint
hexed crow
#

@gentle flint lol yeah

gentle flint
#

never heard of this before

hexed crow
#

1st definition for sugoi is please kick me in the balls

meager crow
hexed crow
#

@severe elm just signed up for treehacks

#

i want to make a guild

#

prt scn then go in paint

#

easy

#

ctrl-v in paint

whole bear
#

Can someone tell why this is happening

whole notch
whole bear
#

no its right command

whole notch
#

It says you dont have python.

whole bear
#

i'll explain a bit

severe elm
hexed crow
#

make a scratch too

meager crow
whole bear
whole notch
#

Then you gotta go and select python 3.8 in your system

whole bear
#

How but?

whole notch
#

You have to change your environment variable to python 3.8.3.

whole bear
#

okay

#

could u just show me how can i do that in a dm call? Pls

meager crow
whole notch
#

There are some great tutorials on it

whole bear
#

any refference?

whole notch
#

Just search it up on youtube

whole bear
#

okay

#

hi

#

how u all are doing

meager crow
#

good

whole bear
#

hi bro

#

i am actually new on this discord server

#

how can i verify my voice

whole notch
#

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.

sick cloud
#

brb

whole bear
#

ok thanks bro @whole notch

#

Hi

sick cloud
scarlet drift
#

hey wsup guys

whole bear
#

hey!!

coral steeple
#

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 ?

whole bear
#

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

somber heath
#

@whole bear Do as ye please.

whole bear
#

cool to speak opal of u can

whole bear
indigo sapphire
#

imma go now

#

next time i'll come back with the voice verification i swear

somber heath
whole bear
#

uhmm

#

ok

#

@sick cloud @whole bear homies

#

what's up!!

whole bear
#

let's play something bro

#

im bored

sick cloud
#

wanna play chess ?

#

@whole bear

whole bear
#

ummm

#

u got anything else?

#

just chess? 😭

whole bear
#

okay then

#

chess it is

sick cloud
neon sleet
#

have you ever worked with discord py?

high ingot
#

Ugh There are still many things I don't know about Discord

neon sleet
#

like, if I want to ban someone for a certain duration, how can I do it, without creating a database?

high ingot
#

I'm thinking that can't unmute in this server because I'm new

neon sleet
#

is there some thing like user.ban(reason = reason, duration = duration)?

high ingot
#

yea sip sip is quiet

#

Lol

whole bear
#

😭

high ingot
#

I turned him up but still pretty quiet

sick cloud
#

@whole bear i can barely hear you (?)

whole bear
#

NOOO

#

F

#

u talk this time bro

sick cloud
#

@whole bear were u playing against me ?btw

whole bear
#

that was a programe?

#

XD

sick cloud
whole bear
#

it was me lol

sick cloud
#

u were literally winning

#

then what happened ?

whole bear
#

yea i made some mistakes

#

but eventually imma beat u one day XD

#

i had fun dude

#

thanks

#

again

sick cloud
#

by the way, i made a program which would join the online classes ;)

sick cloud
#

even though i go to school...

sick cloud
neon sleet
#

more feeble than before

sick cloud
#

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 :)

whole bear
#

ultra bullet

sick cloud
#

nah, i'm fine without it

whole bear
#

L

sick cloud
#

F

high ingot
#

@somber heath Do you work as a programmer?pithink

whole bear
#

where are you from, dude

high ingot
#

lol

#

south korea?

whole bear
#

@severe elm

sick cloud
whole bear
#

prolly

#

any japanese person here?

#

why did you do bxe6 @sick cloud

#

you left your queen hanging

high ingot
#

cuz Kimchi is Korean food iirc

whole bear
#

bru

sick cloud
high ingot
#

I am a jap

#

I live in Tokyo

whole bear
#

you guys arent very good

whole bear
sick cloud
whole bear
high ingot
whole bear
#

r

wise cargoBOT
#

: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).

sick cloud
#

hmmmmm

severe copper
#

lmao

high ingot
#

lol

sick cloud
#

xd

high ingot
#

oh wow

#

talking like that is a no no?

graceful lantern
#

sure

high ingot
#

Gotta be careful😰

somber heath
#

You expected otherwise?

high ingot
#

I sometimes talk like that with my friends

#

?

graceful lantern
#

nah you cant write 8 mesagges in 10 sec unless you spam

sick cloud
#

-_-

high ingot
#

Fair enogh

#

enough*

#

lol north korea

#

I wanna talk

graceful lantern
#

about what

high ingot
#

typing is meh

#

But i'm not allowed to unmute yet

graceful lantern
#

oh so you are supressed

high ingot
#

I am Japanese

high ingot
#

yup

graceful lantern
#

go to voce verify and type !voiceverify

graceful lantern
#

well you will talk after 3 days

high ingot
#

:/

sick cloud
#

|:

#

{:

high ingot
#

Oh is grzybek British?pithink

#

Lol

sick cloud
#

wdym by grzybek ?

trim night
#

😮

sick cloud
#

thor

sick cloud
trim night
#

🙂

high ingot
#

they are bullying an Asian for not being able to pronounce r and l correctly

trim night
#

heres to 48 messages left, oh my.

sick cloud
#

don't spam

high ingot
#

(kidding btw)

high ingot
somber heath
#

Look, when someone says three like they're saying free, I'm going to get confused.

high ingot
#

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

graceful lantern
#

good look

willow light
#

is this our morning scrum?

whole bear
#

holy shitt!!

#

I WANNA CRY RN

high ingot
#

ahhhhhh

#

oh nevermind

high ingot
#

I thought I joined two days ago

graceful lantern
#

guys i have to go i have online classes

whole bear
#

bro is this okay i if i add you?

#

@high ingot

high ingot
#

but appareantly it was yeaterday

whole bear
high ingot
#

yesterday*

whole bear
#

chem class

#

F

graceful lantern
#

F

high ingot
#

I barely know you

whole bear
#

okay!

high ingot
#

who's dumbass

#

?

whole bear
#

brooo

high ingot
#

someone said dumbass

#

oh

#

same

whole bear
#

homie

#

wassup

#

i am uchiha saitama

#

remember?

high ingot
#

who the heck is that lol

#

i know naruto

#

and one punch man tho

meager crow
#

we cant hear you

high ingot
#

yea he's quiet

whole bear
#

dude

#

so

#

you're japanese by blood?

high ingot
#

Lmao

whole bear
#

u said u were born in japan doe XD

sick cloud
high ingot
#

my blood is consist of pure jap blood

sick cloud
severe elm
#

<a href= {% url 'url path' %}></a>

high ingot
#

lo

sick cloud
whole bear
#

speak english bro XD

#

jk jk

high ingot
sick cloud
#

-_-

#

@severe elm idk

high ingot
#

Do you think I'm a weeb or something?

sick cloud
#

@severe elm never heard of those things

whole bear
sick cloud
#

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&ltmpl=default&ltmplcache=2&emr=1&osid=1#"> </a>

whole bear
#

i've been looking for a japanese friend

#

but no luck for me lol

graceful lantern
#

why exactly japanese

sick cloud
#

@cloud stratus hello

cloud stratus
#

Hey

whole bear
cloud stratus
#

How you doing?

high ingot
#

If you want me to prove I can talk in Japanese

sick cloud
high ingot
#

なんで疑うのかわんない

#

やなヤツ

#

ムカつく

#

ぼけ

#

あほ

sick cloud
#
what i saw: InMotion, 
how i said: nmotion```
whole bear
#

accept it

high ingot
sick cloud
whole bear
sick cloud
graceful lantern
#

for short

high ingot
#

I ignored your request, get rekt

compact crown
#

has anyone done Dmarc dkim1 or spf before?

high ingot
compact crown
#

having trouble configuring it

sick cloud
high ingot
#

wow

somber heath
high ingot
#

imagine

#

why are you using Bing

sick cloud
#

yess, microsoft edge, bing, i'm incognito

high ingot
#

smh

sick cloud
#

look at my task bar

#

which browser is open ?

#

@severe elm yesss

high ingot
#

Use google chrome

sick cloud
sick cloud
graceful lantern
#

go with firefox

whole bear
sick cloud
#

@meager crow edge is pre-installed in windows....

#

i also have chrome

whole bear
high ingot
#

Btw can people in China use Discord?

sick cloud
high ingot
#

Or they aren't allowed

#

yea

whole bear
#

F

high ingot
#

I thoght so too

sick cloud
#

@meager crow what grade you in ?

high ingot
#

thought*

whole bear
#

pretty aesthetic XD

sick cloud
#

@meager crow ||same||

#

||but i'm probably younger||

meager crow
#

how old are you

high ingot
#

9th grade in the US is...

sick cloud
high ingot
#

15

#

?

meager crow
#

13

high ingot
#

ah

graceful lantern
#

14

sick cloud
#

very interesting

high ingot
#

I see

#

Wow

#

Everyone is so young

sick cloud
high ingot
#

I feel old

graceful lantern
#

what if we were liying

high ingot
#

I use SurfShark and that VPN works on Spotify

#

Why download

sick cloud
high ingot
#

hmm

sick cloud
#

@meager crow rObLOx

high ingot
#

You don't have wifi at home?

sick cloud
high ingot
#

lol

#

Joe is using a fake name

#

that's why he didn't recognise

#

hehe

sick cloud
#

._.

high ingot
#

:<

high ingot
#

You don't need them offline

#

Ew

#

someone burped

sick cloud
high ingot
#

LMAO

#

RIP Ausies

#

banning hentai

#

and anime

sick cloud
#

i don't watch any :P

high ingot
#

so fucked up

graceful lantern
#

F

whole bear
high ingot
#

fuc off k thx

#

yeaaaaaa

#

agreed

graceful lantern
#

why do you hate sip so much

high ingot
#

?

#

I hate everyone

#

equally

rugged root
#

@whole bear Not even as a joke

whole bear
rugged root
#

I mean this

sick cloud
#

@rugged root hello

rugged root
#

Hey Jag

sick cloud
#

how u doing ?

rugged root
#

I'm alright. Back in a sec, have to change a light bulb

whole bear
rugged root
#

I did

whole bear
#

F

rugged root
#

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.

high ingot
#

Don't do drugs kiddos

#

or smoke cigarretes

whole bear
#

looks whos talking

#

u r only 15

sick cloud
#

-_-

high ingot
#

Once you start, you are done

high ingot
#

You will die early

sick cloud
graceful lantern
#

waranty void

whole bear
#

@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

high ingot
#

who are you?

whole bear
#

F

#

nvm

#

XD

#

@sick cloud bro let's play chess

high ingot
#

Speaking of

#

chess

sick cloud
#

@hushed elm hello

whole bear
high ingot
#

queen's gambit was good

#

You all should watch it

sick cloud
whole bear
high ingot
#

rAciSt

whole bear
#

i meant

#

if it works or not

stuck furnace
#

You laugh like my grandma

whole bear
#

@sick cloud

sick cloud
whole bear
#

idk about google meetings

high ingot
#

wooow

graceful lantern
#

which module are u using

high ingot
#

bad kid

sick cloud
high ingot
#

Focus

#

sip]

whole bear
#

XDDD

whole bear
high ingot
#

lol

whole bear
graceful lantern
whole bear
#

cool homie

graceful lantern
#

thx

swift valley
#

G'evening

stoic ore
#

gferia 😄

#

I'm readıng ıt now

swift valley
#

KDE performs about the same as XFCE, believe it or not

whole bear
swift valley
#

Keep it SFW @high ingot

high ingot
#

oh

#

sry

swift valley
#

what's 79 feet in meters

#

!wa s 79 feet in meters

sick cloud
#

5 o clock

graceful lantern
#

33 maybe

high ingot
#

Also im suprised that these kids know about hentai

swift valley
#

.wa s 79 feet in meters

viscid lagoonBOT
swift valley
#

Good bot

sick cloud
#

||i'm getting an award tmr||

rugged root
#

Oh awesome! What for?

high ingot
#

How old?

sick cloud
rugged root
#

30

swift valley
#

I assume Feast of the Immaculate Conception? @meager crow

high ingot
#

eh not that old

#

haha

swift valley
#

The holiday I mean

#

That's a lot

hushed elm
#

espanól

high ingot
#

I don't like how Americans say "happy holiday" instead of "merry christmas"

#

whoa

swift valley
#

I'm Filipino so I'm like 1/8 Spanish already

sick cloud
high ingot
#

I don't know Spanish

sick cloud
#

porque no ?

#

||why not ?||

meager crow
#

OLA

#

ola

high ingot
#

hola but pronouced as ola

meager crow
#

não

sick cloud
#

buenos dias

meager crow
#

thats spanish

sick cloud
#

ikkkkk

fickle fossil
#

What's the equivilent of a Dragon Ball Z fan getting Dragon ball replicas for christmas for a D&D player?

meager crow
stoic ore
#

@rugged root hey yo

rugged root
#

Suuuuuup

stoic ore
#

İts fine hbu

#

come to me

swift valley
#

jstris

sick cloud
#

what is jstris ?

scarlet drift
#

hey guys

sick cloud
#

@meager crow GOOGLE classroom

swift valley
#

Some obscure LMS lemon_fingerguns

sick cloud
swift valley
#

Learning management system

sick cloud
#

thx

swift valley
#

@hushed elm I use Manjaro

hushed elm
#

manjaro

whole notch
#

My school uses LMS

high ingot
#

OpalMist reminds me of my Canadian friend

swift valley
#

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

royal sphinx
#

I used ubuntu, parrot, debian and kali but never tried manjaro

high ingot
#

Cuz he is also calm, stable, and helpful

whole notch
#

I was never a fan of Ubuntu's GUI

high ingot
#

Canadians are good ppl in general imo

royal sphinx
#

@whole notch there are a lot of themes out there. You can customize the way you want

whole bear
#

ubuntu>debian

whole notch
high ingot
#

@somber heath Are you actually Canadian? Faking accent? lol

royal sphinx
#

Ubuntu <= debian

whole bear
#

mm

high ingot
#

Lol

#

Nvm

royal sphinx
#

Lmyo

high ingot
#

Lmao

whole notch
#

Now that's australian

#

Just twisting your toungue

royal sphinx
meager crow
#

😂

high ingot
#

lol

#

wow

#

I'm gonna come off now

#

bye

royal sphinx
#

Bye bye

high ingot
#

:)

whole bear
#

from: Daaammmnnn#2962

stoic ore
#

friğvolous

somber heath
#

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

royal sphinx
somber heath
#

@fickle fossil If you want to make your friend die a little inside, get them a stone Lim Lim.

graceful lantern
#

How long did it take to write the code

whole bear
#

how to enter dark web in 2020 FREE (credit card needed)

royal sphinx
graceful lantern
#

where is the second page of google

royal sphinx
#

I play angry birds

somber heath
#

@fickle fossil Modron, cube form. Nordom, more specifically.

swift valley
#

Admin aboos hyperlemon

somber heath
#

If it's moving quickly, you want to watch where it wanders off to. @hollow haven

rugged root
stuck furnace
#

Erm, what code?

#

Sure it was in the right channel?

whole bear
#
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
stuck furnace
#

emailoption in ["Y", "y"]

whole bear
#

oh

#

thanks

#

it didnt work

stuck furnace
#

program time = num instructions * cycles per instruction * time per cycle

somber heath
#

AMG AMD BBQ!!1

fast prairie
#

!voiceverify

stuck furnace
hollow haven
#

I do need more RAM though...

#

16GB just isn't cutting it anymore

stuck furnace
#

Lets now go there 😄

#

not*

somber heath
#

Lyrebird

hushed elm
#

@rugged root how many gb should i allocate for the manjaro installation? I'll work on web dev but also android dev probably

rugged root
#

Are you going to be using the HDD for anything else? Other OS or something?

hushed elm
#

yes i have a windows installation

stuck furnace
#

I used to use light theme during the day, and dark at night.

#

But now I just stick to dark.

hushed elm
#

i have 100gb free, wanna do 50gb for os installation and 50gb for home

rugged root
#

I mean it all is useable by the machine even if it's dedicated to the OS

#

I'm confused

wise glade
#

is chrome better or firefox on linux?

#

speed wise

hushed elm
#

@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

graceful lantern
#

is dualboot good

wise glade
#

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

hushed elm
#

@meager crow no u

whole bear
#

use a usb instead

#

the bootable usb drive

amber raptor
#

Or try to get a copy of Win10 Pro and use HyperV

graceful lantern
#

i get u now

whole bear
#

told upon my experience lost a whole lot of data probab due to my mistake

amber raptor
wise glade
#

My partition which have windows in it is encrypted, and isn't accessible through linux
at least that's what windows tell me

amber raptor
#

If Bitlocker is engaged, TPM won’t open Windows partition to Linux

whole bear
#

now i use abootable usb and no risk and it runs just smooth

#

@somber heath agreee

wise glade
#

can you install linux on a usb c? and get good speed, like it was installed in the internal drive?

whole bear
#

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

wise glade
#

so its doable with the type of windows, if we talk about here, we would be breaking rule 5

amber raptor
#

Windows won’t install to USB drive as far as I know

whole bear
#

quite a anti feminst sorry!!

somber heath
#

"Here's the pizza, here's the beer, so this doesn't take a year."

amber raptor
#

Opalmist, here is 900 USD so I don’t have to do any of it

stuck furnace
#

Yo, what's up?

amber raptor
#

And Windows to USB is allowed with Windows to Go

#

Never mind they are removing the feature

stuck furnace
#

Will be nice if the structural pattern matching PEP goes through 😄

whole bear
stuck furnace
#

Not too late to join in!

whole bear
#

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

wise glade
#

and a good wifi card, what's the newest? Intel6 maybe?

whole bear
#

how is the work environment there @amber raptor ?

#

they are cute

amber raptor
#

Not great

#

But they pay

#

So whoever

#

Also stadia isn’t happening

#

Stop trying to make it happen Google

whole bear
#

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

#

😄

somber heath
#

As I've said. We are, in no small part, a product of where we are raised.

whole bear
#

uhmm agree to it

somber heath
#

and I'm implying something by that

#

But I think, for myself, it may be in poor taste for me to elaborate.

whole bear
#

but yes the bg part u=is true

severe pulsar
#

no like whats the purpose of this discussion

#

so far i see this is mostly opinionated

wise glade
#

not so much

whole bear
#

its done with the traditional western excuse

#

of killing animals

severe pulsar
#

LETS GO

#

RUST GANG REPRESENT

whole bear
#

hey @somber heath talking of politics hows it in australia?? dirty like india or useless like usa!!!

#

corruption????

#

oh

normal hinge
#

it is everywhere

#

right

whole bear
#

a liitle difference is of science

#

sat has no science but act got it

normal hinge
#

python spelling is wrong

whole bear
#

"D

#

im gonna give it next year

#

the SAT

severe pulsar
#

awesome

whole bear
#

from india

dark finch
#

ive already takin it

wise glade
#

python no more sucks, make opal say your name now 😂

whole bear
#

hahahhah

severe pulsar
#

lmao

#

accelerator, planning on taking the sat?

whole bear
#

say my name sounds too sexual

severe pulsar
#

b r u h

#

BIGBASH

#

WHAT UP

craggy zephyr
#

hi

#

i am fine

#

wbu

severe pulsar
#

eyy

#

fastapi

#

lets gooo

craggy zephyr
#

i have some questions @severe pulsar

severe pulsar
#

yeah what up

craggy zephyr
whole bear
#

I am here to learn English lol. You guys got amazing accents

craggy zephyr
severe pulsar
#

awesome

#

thanks lol

#

yeah what was your question

craggy zephyr
severe pulsar
#

alright

craggy zephyr
#

can i message you?

severe pulsar
#

sure gimme a second

stuck furnace
#

Iceman just added me too 😄

normal hinge
#

any special celebration on 25dec

#

here

#

on server

#

?

whole bear
#

@amber raptor you sound like a RJ 😄

stuck furnace
normal hinge
#

why drugs

whole bear
#

i heard guys take weeds in highschool from a user himself

#

rj is radio jockey

stuck furnace
#

searching urban dictionary

#

Ah

whole bear
#

the guy on radio @amber raptor

whole bear
stuck furnace
#

Are conspiracy theories more prevalent in America than elsewhere?