#voice-chat-text-0

1 messages Β· Page 652 of 1

molten widget
#

so tossicc

rugged root
#

!tempban 749403256333271071 5d Spamming our users and staff is not acceptable. Re-read our Rules and Code of Conduct. If this happens again when you return the ban will be permanent

wise cargoBOT
#

failmail :ok_hand: applied ban to @wet quail until 2020-10-24 17:05 (4 days and 23 hours).

zenith radish
#

No permission to talk?

icy axle
#

Look at the pins

amber raptor
#

See voice verification channel

rugged root
molten widget
#

How do you check how many messages you have sent?

whole bear
#

just to !voiceverify or look up your old message count.

rugged root
icy axle
#

However, in the verification, we only count messages sent after August 25th

desert citrus
#

whats the best way to get 50 messages

icy axle
#

Be social

#

Help out in help channels

somber heath
#

@desert citrus Rousing socialisation.

#

Loquacious exchange.

molten widget
#

those are some big words @somber heath

somber heath
#

I like words.

desert citrus
#

I just need some help with python programming lol and not having access to the mic does not help

#

haha

#

lol

somber heath
#

They're fun to play with. Like Lego.

#

@desert citrus Do you have a specific question?

desert citrus
#

no not really lol

#

its kinda hard to explain

#

are you good with python at all

somber heath
#

People seem to think so.

molten widget
#

What's your question @desert citrus

#

You shouldn't ask just to ask

#

man I been on the server since last year but I still don't have 50 messages lol

desert citrus
#

50 messages is a lot

rugged root
#

'bout a normal conversation's worth

desert citrus
#

yeah

molten widget
#

I think most of my messages were prior to april tho lol

#

I've been working with java and c++ so I have no reason to come here lol

pliant atlas
#

just go in ot channels and just talk

rugged root
#

Or here

#

I mean we're already talking

pliant atlas
#

yeah

molten widget
#

I think I'm at like 40 messages lol

#

kinda wanna just

#

spam

#

jk ❀️

desert citrus
#

u would probs get all of ur messages removed

#

for spammng

#

spamming* lol

molten widget
#

ik im jk

fierce summit
molten widget
#

wish there were more servers liek this one

#

I've been trying to search one for like c++, java, and javascript and they are all so tiny

#

This one is just so well made

fierce summit
#

Looking up things for my game. I only opened them. I didn't read them yet.
It's a lot

icy axle
#

this one started out just as tiny as any server

molten widget
#

thats true

#

but other one's seem super inactive

icy axle
#

there's only one way to change that

molten widget
#

like they don't try to get bigger like this one probably did

#

doing events and stuff

icy axle
#

i'm sure they would appreciate some ideas

molten widget
#

That's true

#

Maybe I should make one πŸ™‚

quasi condor
desert citrus
#

anyone wanna game

rugged root
#

@fierce summit Okay so I MAY have read the name of the spell and thought it was to cause a fart

molten widget
#

is web development worth getting into for jobs?
seems like an oversaturated market

rugged root
#

It's where most things are going

#

Web apps instead of desktop applications are really hot for businesses right now

#

Oh, Aurora. Feel free to friend me so we can toss ideas to each other as they come to us

fierce summit
#

I looked up those 31 spells and in the end there were only 13 useable.

rugged root
#

Yeah I would figure that most of them aren't combat suitable

fierce summit
#

Yeah

#

At some of them I couldn't see how they could be useful in a duel

somber heath
dusty granite
#

is there any active data science community?

quasi condor
#

yes

dusty granite
#

lol

#

add me

#

pwease

amber raptor
dusty granite
#

i was working on Spinneker and kubernetes in GCP and it was soo exhausting to comprehend , do you guys know something any article or so

quasi condor
amber raptor
pastel mesa
#

why am i muted

amber raptor
#

See voice verification

#

Channel above this

#

!voiceverify

lilac wind
#

hey guys

#

I'm....suppressed?

slender bison
unreal oar
#

can some one help me with something

#

plz

eager marten
#

@amber raptor,
Sorry, you broke off. Could you repeat what you said?

#

Ok, thx.

#

Guys, what do u think about cybertruck from Tesla?

amber raptor
#

Meh

eager marten
#

What?

#

Who is Jack Paul?

#

Jeremy is right

#

SQL is a good decision

thin mesa
#

I did something today other than be on the pc! Wire managed my cabling because it was annoying me

quasi condor
hidden flower
#

the large ass cookies?

#

pizza hut has these Hershey's cookies

quasi condor
hidden flower
#

We don't discriminate when we are saving the environment

frozen jacinth
#

that picture gives me a stomach ache just to look at

olive hedge
#

this picture made me hungry

quasi condor
#
    if (image := request.files.get('img')) is not None:
        image_url = upload_img(image, f"{therapist_id}_pfp")
        profile['img_uri'] = image_url
    return update_manifest(profile), 200
hidden flower
#

probably have to download the correct extension

ruby wind
#
import sqlite3 as sql

con = sql.connect('SUBSCRIBERS.db')
cur = con.cursor()

try: #Create if it doesn't exist
    cur.execute("CREATE TABLE SUBSCRIBERS (id, teir)")
except:
    pass

def getTeir(id):
    cur.execute(f"SELECT (teir) FROM SUBSCRIBERS where id = {id}")
    return j[0][0] if (j := cur.fetchall()) else False

def removeID(id):
    cur.execute(f"DELETE FROM SUBSCRIBERS where id = {id}")

def addSubscriber(id, teir):
    cur.execute(f"INSERT INTO SUBSCRIBERS (id, teir) VALUES ({id}, {teir})")

print(getTeir(123))
addSubscriber(123, 3456)
print(getTeir(123))
removeID(123)
print(getTeir(123))
hidden flower
#

I'd recommend excepting the appropriate error

ruby wind
#

Where?

hidden flower
#
try: #Create if it doesn't exist
    cur.execute("CREATE TABLE SUBSCRIBERS (id, teir)")
except:
    pass
#

here^

#

except TheErrorOrWhatever

ruby wind
#
import sqlite3 as sql

cur = sql.connect('SUBSCRIBERS.db').cursor()

try: #Create if it doesn't exist
    cur.execute("CREATE TABLE SUBSCRIBERS (id, teir)")
except sql.OperationalError as e:
    pass

def getTeir(id):
    cur.execute(f"SELECT (teir) FROM SUBSCRIBERS where id = {id}")
    return j[0][0] if (j := cur.fetchall()) else False

def removeID(id):
    cur.execute(f"DELETE FROM SUBSCRIBERS where id = {id}")

def addSubscriber(id, teir):
    cur.execute(f"INSERT INTO SUBSCRIBERS (id, teir) VALUES ({id}, {teir})")

print(getTeir(123))
addSubscriber(123, 3456)
print(getTeir(123))
removeID(123)
print(getTeir(123))
hidden flower
#
except:
    pass

this is also highly not recommended, since yo are silencing error and not doing anything

ruby wind
#

like it throws an err if it already exists

#

so I just pass that

hidden flower
#

but idr much ab- ah alright

#

Do you have any issue with the code?

#

or do you just want a review?

ruby wind
#

well i did some more testing and it's not actually saving it to the file

#

lemme fix that

hidden flower
#

I didn't quite catch the conversation right before you posted it properly

#

but if yoy feel you need voice support, use one of the voice channels below this

#

well i did some more testing and it's not actually saving it to the file
@ruby wind i think you have to COMMIT

#

to the database

ruby wind
#

yea im looking at that atm

#

pog it works now

#
import sqlite3 as sql

con = sql.connect('SUBSCRIBERS.db')
cur = con.cursor()

try: #Create if it doesn't exist
    cur.execute("CREATE TABLE SUBSCRIBERS (id, teir)")
except sql.OperationalError as e:
    pass

def getTeir(id):
    cur.execute(f"SELECT (teir) FROM SUBSCRIBERS where id = {id}")
    return j[0][0] if (j := cur.fetchall()) else False

def removeID(id):
    cur.execute(f"DELETE FROM SUBSCRIBERS where id = {id}")
    con.commit()

def addSubscriber(id, teir):
    cur.execute(f"INSERT INTO SUBSCRIBERS (id, teir) VALUES ({id}, {teir})")
    con.commit()

addSubscriber(12345, 5)
print(getTeir(123))
addSubscriber(123, 3456)
print(getTeir(123))
removeID(123)
print(getTeir(123))
print(getTeir(12345))
addSubscriber(123, 5)
#

we good now

hidden flower
#

πŸ‘

#

there's a rollback command too

quasi condor
amber raptor
olive hedge
frozen jacinth
#

cheap

olive hedge
thin mesa
#

ill be back, watching a vid real fast

hollow haven
amber raptor
quasi condor
dire folio
#

sure

#

voice or text?

#

claim a help channel and ping me there

#

do you know how?

#

this channel has some details on how to claim

#

not sure, did i get a ping?

dire folio
#

type the @ symbol and then my nick in the help channel you claimed

#

@junior shadow like this πŸ˜„

hollow haven
#

Pinged you in the channel you claimed

dire folio
#

ping me there @hollow haven

hollow haven
#

(I did.... I hope)

severe elm
#

hey guys, do you how i can find out for how much one can sell a website?

#

i was thinking about a maybe 10 page business website, with a simple contact form for example

thin mesa
#

could I get feed back on the look of this for my website?
The binary is actually a quote from LoTR

frozen jacinth
#

the font color and font border color don't really match well I don't think.

restive geyser
#

i would change the font color to a yellow green or a yellow-orange.

stuck furnace
#

Hey πŸ˜„

somber heath
#

o/

#

@junior shadow sorted(set(_dict.values())) should get you started.

#

Yeah. Assuming you discard duplicates.

#

I'm not sure if that's appropriate.

#

If you keep the duplicates, don't use set

#

Okay. dict.values. Understood or not?

#

set?

#

Yes, but I lost it.

whole bear
#

Hey @somber heath

frozen jacinth
#

OpalMist is a legend

past elk
#

dude thats a givin

frozen jacinth
#

that's just his personality

past elk
#

ye

frozen jacinth
#

dude, I'm kinda fed up with this whole voice verification thing

past elk
#

ya we all are

frozen jacinth
#

I'm muted til I send at least 50 messages

#

but, I get why it's a thing

past elk
#

ya to reduce spam

frozen jacinth
#

I feel like I've sent a lot more that 50 messages by now, but nope!

#

so, I just need a long conversation with someone untill I can voice verify

#

I'm pimp chimpin

past elk
#

are ya simping again?

frozen jacinth
#

Tell Opal that I miss him so and I love his Python art

#

wow, what a response

#

that's fine whatever *cries*

past elk
#

feels bad man

frozen jacinth
#

what do you code in mainly?

past elk
#

python right now but trying to lean toward js and c++

frozen jacinth
#

dang, same

#

but not really

#

I'm trash at Python, I'm great at JS, and I'm interested in C++

past elk
#

ya c++ is faster but harder good tradoff of you ask me

frozen jacinth
#

I actaully just had a couple hour tutoring less (for free because I'm cool) with a guy teaching him JS

past elk
#

fun, how did he do

frozen jacinth
#

what do you mean? It's not like he took a test or something lol

past elk
#

like how well did he leard

#

learn*

frozen jacinth
#

he said he had fun, so there's that

past elk
#

good enough for me πŸ˜„

frozen jacinth
#

do you know any JS?

past elk
#

yes im coding in it right now acualy

frozen jacinth
#

how long have you been coding in JS?

past elk
#

like a couple months now

#

more like weeks acualy

frozen jacinth
#

oh, the guy I was helping out started like 2 days ago lol

#

yeah, I've been working on JS for over a year now

past elk
#

oh opal just left

somber heath
#

@frozen jacinth Sorry, I was concentrating on helping someone else with a problem. I was coding.

frozen jacinth
#

oh it's fine

somber heath
#

@frozen jacinth I love that you enjoy my art. 😊

jovial meadow
radiant marten
#

anything new noobs

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @radiant marten until 2020-10-20 05:42 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

frozen jacinth
#

F

jovial meadow
green peak
#

how can I speak bro

#

yeah

#

?

#

okay

#

I m not eligible

frozen jacinth
#

how was your day?

green peak
#

all good

#

what bout you?

frozen jacinth
#

horrible

green peak
#

lol

#

why?

#

haha

frozen jacinth
#

because, you wouldn't get it

green peak
#

lol

#

what happened?

frozen jacinth
#

my dad drank too much

green peak
#

everything is hunky dory?

frozen jacinth
#

apple juice

green peak
#

lol

frozen jacinth
#

not funny

#

so what do you code?

green peak
#

python basically

#

not well

#

but I am fine at python

frozen jacinth
#

fine

green peak
#

yeah

#

so where are you from guys?

frozen jacinth
#

how long have you been working in python?

#

I'm from the greatest nation ever

green peak
#

3-4 months

frozen jacinth
#

AmErIcA

green peak
#

ohh cool

#

what bout you?

jovial meadow
#

im from knowhere

green peak
#

no

#

c++, c too

#

and also ethical hacking stff

frozen jacinth
#

I mostly do JS and web dev

green peak
#

oh cool

#

lol man

frozen jacinth
#

it's been over a year or so, but I suck

green peak
#

in ethical hacking?

frozen jacinth
#

no JS

green peak
#

or okay in js

#

ohh I am from India

frozen jacinth
#

oooh, epic

green peak
#

yeah

frozen jacinth
#

what do you code in Python?

#

I know a guy who makes art with python

green peak
#

ohh cool

#

web scraping

#

and tkinter stuff

frozen jacinth
#

dang, that's epic

green peak
#

also some hacking stuff

#

wiuth socket

frozen jacinth
#

what's socket?

green peak
#

import socket

radiant marten
#

any mods here

green peak
#

check it out

frozen jacinth
#

I'm no Python dev

green peak
#

ohh okay

radiant marten
#

dfdg

#

ssfs

#

sdfdfsd

#

dfsf

#

dfgd

#

sdfgs

frozen jacinth
#

dude

radiant marten
#

sdsfssd

green peak
#

Socket programming is a way of connecting two nodes on a network to communicate with each other. ...

radiant marten
#

asdfsdsa

#

asdfas

restive geyser
#

<.< stop spamming

radiant marten
#

asdffgsa

#

ADWED

green peak
#

still didn't have 50 messages

radiant marten
#

aaaaaDF

#

SDFEF

frozen jacinth
#

dang

radiant marten
#

Sdfdfsf

#

sssfssf

#

sdfafaffffffffffe

#

sfs

#

fsggdfs

#

fssfdfrfd

frozen jacinth
#

Do this somewhere else please

radiant marten
#

sdfssf

#

fsfegegfdd

green peak
#

yeah

radiant marten
#

sdfsrefd

#

addddafewd

#

ssd

#

fs

green peak
#

don't spam man

radiant marten
#

fsfsfe

frozen jacinth
#

@radiant marten go somewhere else!

radiant marten
#

I want 50 messages

green peak
#

so you talk

#

instead

restive geyser
#

do it the right way, bruh.

frozen jacinth
#

yeah, do this in another channel

radiant marten
#

ok

green peak
#

yeah

frozen jacinth
#

or just do it the right way

radiant marten
#

then

#

let

#

me

#

do

#

it

#

in

#

another

#

channel

#

is

green peak
#

so @frozen jacinth what's in js?

radiant marten
#

that

green peak
#

game dev?

radiant marten
#

good

green peak
#

or web

radiant marten
#

with

#

you

frozen jacinth
#

JS is a lot of things. Mostly web

radiant marten
#

which

green peak
#

yeha

radiant marten
#

channel

#

should

green peak
#

I know litbit of js

radiant marten
#

I

#

use

#

pls

frozen jacinth
#

yeah socket, I've worked with it in Node.js once

radiant marten
#

reply

green peak
#

yeah

sly jolt
#

@radiant marten please type in not one word per message, it's very spammy.

green peak
#

I know some part of react js

radiant marten
#

can

#

u

#

reply

green peak
#

not much but just litbit

radiant marten
#

@radiant marten please type in not one word per message, it's very spammy.
@sly jolt ok

green peak
#

I worked with react js once

#

in one of my projects

frozen jacinth
#

I don't like react, it has too many draw backs

green peak
#

yeah

#

you guys are epic

frozen jacinth
#

I'm all vinilla

radiant marten
#

bored

#

I want voice verified

frozen jacinth
#

same

#

@green peak what's with the weird name?

radiant marten
#

how

#

to

#

get

sly jolt
#

lol

radiant marten
#

sorry

green peak
#

@green peak what's with the weird name?
@frozen jacinth my username?

frozen jacinth
#

yes

green peak
#

lol

#

I like my username lol

radiant marten
#

That has become a habbit

green peak
#

its all bout internet of things

sly jolt
#

!voicetempban 757923719824801853 2d How about instead of communicating in a spammy way to acquire message points, work on contributing more to the conversation.

frozen jacinth
#

Mr. Mod sir... I just wanted to thank you for the time and energy that you put into dealing with annoying situations. for the great or good

radiant marten
#

pls make e voice verified

sly jolt
#

whoops wrong command

#

!tempvoiceban 757923719824801853 2d How about instead of communicating in a spammy way to acquire message points, work on contributing more to the conversation.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @radiant marten until 2020-10-22 06:09 (1 day and 23 hours).

frozen jacinth
#

F

radiant marten
#

I have my other acc hear

frozen jacinth
#

now he threats lol

sly jolt
#

great.

green peak
#

yeah

sly jolt
#

@frozen jacinth thank you for the appreciation, I appreciate it.

restive geyser
#

#blessed

frozen jacinth
#

no problem. I've been mod in a couple servers in my time. I know what it's like );

sly jolt
#

It really do be like that sometimes

frozen jacinth
#

it do

green peak
#

oh what

radiant marten
#

pls give me verification

sly jolt
#

No. You have to earn it.

radiant marten
#

I need help

restive geyser
#

please go back and read the rules for voice verification...

#

if you need help, please claim a help channel

radiant marten
#

I hav my other acc

#

ccalled pyotr

#

it is in the server

#

I can't access it now

frozen jacinth
#

dude, who cares about your other account? lol

radiant marten
#

@stark otter is my other acc

sly jolt
#

is that so?

radiant marten
#

yes

frozen jacinth
#

wait, it might not be and he's just being 300 IQ troll

radiant marten
#

wait, it might not be and he's just being 300 IQ troll
@frozen jacinth what no

#

That''s mine

sly jolt
#

I have no proof

frozen jacinth
#

aw yes, I thought so

restive geyser
#

oof.

frozen jacinth
#

thanks alec, I knew we could count on you

sly jolt
#

How interesting

radiant marten
#

what

#

I was trying to fool u guys saying that I stole my name

#

Can you kick my old acc and invite again

sly jolt
#

Either way, I've extended your voice tempban to 5 days since you really do need to earn it. Voice is a privilege, and it should be taken seriously.

radiant marten
#

maybe it might work

sly jolt
#

No, I still have no proof that it's your account

restive geyser
#

rip.

radiant marten
#

Then how to access it

#

I need this server

sly jolt
#

If you need this server, then take our rules seriously.

radiant marten
#

For informing this I created this acc

frozen jacinth
#

I feel informed

restive geyser
#

then consider alternatives to asking for help. you don't necessarily need voice chat.

radiant marten
#

No in that acc I can't acccess the server

#

Can't even access the server

#

That is my og acc

sly jolt
#

was "your" account locked or something?

radiant marten
#

I can give a proof if needed

swift valley
#

That @stark otter I know is a lot less annoying

#

I've chatted with them just last night

radiant marten
#

was "your" account locked or something?
@sly jolt idk I am niot able to access the server

#

I can give a proof if needed
I have a nutella as the profile pic

#

and used to have myself licking a car

sly jolt
#

I don't see how that gives any amount of proof

radiant marten
#

My old profile pic is a good proof

#

I just need you to remove me and invite again

sly jolt
#

No, that's not your account.

radiant marten
#

It is mine

#

please

#

What proof do you need

sly jolt
#

What programming course were you searching for back in September? You wanted something out of it.

radiant marten
#

I never searched for one in sep

#

I think you are confused

sly jolt
#

oh yeah you did

#

according to "your" message history on the other account

radiant marten
#

I never did man

#

In that one I had asked abt the best one for beginners

swift valley
#

Here's a better question

radiant marten
#

I thought you were talking abt this one

swift valley
#

Who were speaking in voice last night?

radiant marten
#

Opalmist

swift valley
#

and?

radiant marten
#

There were many people

swift valley
#

Right, and what exactly did you say to OpalMist?

radiant marten
#

I don't wanna talk abt it bcs it was bit embarrasing

#

it was 'normal'

#

Is that enough proof

#

pls help me

hidden cove
#

Did they just randomly ban people from voice chat?

icy axle
#

You have to verify

hidden cove
#

I could talk in voice chat 2 days ago

icy axle
#

Look at the pins

hidden cove
#

pins where?

icy axle
#

This channel

radiant marten
#

@swift valley can you help me now

hidden cove
#

So I have to give up my real identity to talk in voice chat?

#

How do I do that anyway?

radiant marten
#

@sly jolt I think I have given enough proof

icy axle
#

No? You just type !voiceverify

sly jolt
#

@radiant marten I guess this is enough proof for me not to remove you for impersonation, but it's not enough to convince me to kick "your" alt account. You're keeping your temporary voice ban. If you want to get help, I recommend the #β“ο½œhow-to-get-help system.

icy axle
#

It’s just like the server verification

radiant marten
#

@radiant marten I guess this is enough proof for me not to remove you for impersonation, but it's not enough to convince me to kick "your" alt account. You're keeping your temporary voice ban. If you want to get help, I recommend the #β“ο½œhow-to-get-help system.
@sly jolt I need to get my other acc back into the server

sly jolt
#

What happens when you try to access this server?

hidden cove
#

How do I 'verify'?

radiant marten
#

It couldn't access the server

hidden cove
#

@sly jolt

sly jolt
#

@radiant marten you need to be more specific. What happens when you click on the icon in the server tray? Does it crash Discord? Can you not type messages?

radiant marten
#

What happens when you try to access this server?
@sly jolt It just shows a blank screen possibly a bug

hidden cove
#

@sly jolt that scared the crap out of me. all is good now.

radiant marten
#

I can access other servers

sly jolt
#

@hidden cove ye np, voice gating is necessary because of recent events.

radiant marten
#

i DON'T NEED VOICE HERE IF i HAVE THE OTHER ACC

sly jolt
#

calm down

hidden cove
#

@sly jolt I totally agree. It gets abused (or got) abused a lot.

sly jolt
#

hold on, if you're able to access your other account, why don't you just take a screenshot of what the server looks like?

radiant marten
#

I can try to

#

wait a sec

sly jolt
#

I don't think we do have any plans

icy axle
#

Nope. Not that I’m aware of either

torn vessel
#

hey idk my mic is suppressed from the off-topic and code-help channels

icy axle
#

We have a new verification system. Follow the instructions in #voice-verification to get access

torn vessel
#

ohk

molten plaza
torn vessel
#

@hidden cove you must try lays maxx it has a really good crunch

hidden cove
#

lol

#

i will on your recommendation.

torn vessel
#

if you guys wanna work with web dev i guess reactjs will be a good option

#

yeah @somber heath but thats how they engage more people

hidden cove
#
for (let i = 0; i < bodies.length; i++ ) {
    for ( let j = 0; j < bodies.length; j++ ) {
        if ( i !== j ) {
            polarW = Math.sqrt( ( bodies[i].mesh.position.x - bodies[j].mesh.position.x ) ** 2 + 
                                ( bodies[i].mesh.position.y - bodies[j].mesh.position.y ) ** 2 );
            polarR = Math.sqrt( ( bodies[i].mesh.position.x - bodies[j].mesh.position.x ) ** 2 +
                                ( bodies[i].mesh.position.y - bodies[j].mesh.position.y ) ** 2 + 
                                ( bodies[i].mesh.position.z - bodies[j].mesh.position.z ) ** 2 );
            arcTangent = Math.atan( ( bodies[i].mesh.position.y - bodies[j].mesh.position.y ) / 
                                    ( bodies[i].mesh.position.x - bodies[j].mesh.position.x ) );
            phi = Math.atan( ( bodies[i].mesh.position.z - bodies[j].mesh.position.z ) / polarW );
            if ( arcTangent > 0 && bodies[i].mesh.position.x - bodies[j].mesh.position.x < 0 ) { 
                polarTheta = arcTangent + Math.PI;
            }
            else if ( arcTangent < 0 && bodies[i].mesh.position.x - bodies[j].mesh.position.x < 0 ) {
                polarTheta = arcTangent + Math.PI;
            }
            else if ( arcTangent === 0 && bodies[i].mesh.position.x - bodies[j].mesh.position.x < 0 ) {
                polarTheta = arcTangent + Math.PI;
            }
            else {
                polarTheta = arcTangent;
            }
#
  if ( i !== 0 && j === 0 ) {
                rToSun = polarR.toFixed(2);
                thetaToSun = polarTheta * 180 / Math.PI;
            }
            // calculate x and y components of incremental velocity change 
            if ( bodies[i].mesh.position.x - bodies[j].mesh.position.x  !== 0 ) {
                bodies[i].v_x -= ( bodies[j].mass * g / ( polarR ** 2 ) ) * Math.cos(polarTheta) * Math.abs( Math.cos(phi) );
            }
            if ( bodies[i].mesh.position.y - bodies[j].mesh.position.y  !== 0 ) {
                bodies[i].v_y -= ( bodies[j].mass * g / ( polarR ** 2 ) ) * Math.sin(polarTheta) * Math.abs( Math.cos(phi) );
            }
            bodies[i].v_z -= ( bodies[j].mass * g / ( polarR ** 2) ) * Math.sin(phi);
        }
    }
whole bear
#

😳

torn vessel
#

@green peak i did a hackathon 2 weeks ago

icy axle
#

When I see OpalMist using compact mode, I just assume it's the real one

#

(very bad idea)

green peak
#

@green peak i did a hackathon 2 weeks ago
@torn vessel oh what's your progress

#

?

torn vessel
#

i did ivyhacks

#

wym by progress

green peak
#

ahh ok cool

torn vessel
#

what do you do for cp

#

@green peak

hidden cove
torn vessel
#

yo that looks cool @hidden cove

green peak
#

what do you do for cp
@torn vessel not really

torn vessel
#

@hidden cove you can also use the p5 library

hidden cove
torn vessel
#

that way you can make this project 3d to

hidden cove
green peak
hidden cove
gentle flint
viral sierra
#

I'm participating in a competition.
I need to come up with some innovative ideas to make a safe college campus during this period of covid19

gentle flint
hushed elm
#

double rainbow

ashen island
#

can i get unmuted?

gentle flint
#

@hushed elm beautiful

hushed elm
#

no u

#

πŸ˜‰

gentle flint
#

no ur mom

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @whole bear until 2020-10-20 08:34 (9 minutes and 58 seconds) (reason: newlines rule: sent 182 newlines in 10s).

gentle flint
#

O_O

versed sapphire
#

Hello big boy

sly jolt
#

!unmute 758005312363167784

wise cargoBOT
#

:incoming_envelope: :ok_hand: pardoned infraction mute for @whole bear.

sly jolt
#

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

versed sapphire
#

lol

whole bear
#

wtf

sly jolt
#

you had wayyyy too many newlines in there

versed sapphire
#

what

#

lol

whole bear
#

ok i aplgise

versed sapphire
#

What happened eivl

sly jolt
#

np

#

just use the paste system

whole bear
#
ERROR: Could not find a version that satisfies the requirement pyqt5-tools (from versions: none)
ERROR: No matching distribution found for pyqt5-tools
WARNING: You are using pip version 20.2.3; however, version 20.2.4 is available.
You should consider upgrading via the 'C:\Users\bruh\AppData\Local\Programs\Python\Python39\python.exe -m pip install --upgrade pip' command.```
I am getting this error while installing pyqt5-tools
gentle flint
#

@whole bear

whole bear
#

no answer

ashen island
#

anyways people

#

can i get an unmute

#

pls

dire folio
#

your not muted, but you might not have gone trough voice verification jet @ashen island

ashen island
#

oo yes

#

i have less texts in the server

dire folio
ashen island
#

yuh i've seen it

#

i need to chat ig

dire folio
#

so once you have been verified, you will be able to talk in the voice channels

ashen island
#

okay, thank you

dire folio
#

no worries.

hardy sierra
#

can i get unmuted

versed sapphire
#

@hardy sierra You don't have Voice verified

#

type !voiceverify in ModMail

hardy sierra
#

oh i see

#

so i have to send 50 messages right?

versed sapphire
#

yes acutally

#

@hardy sierra I meant #voice-verification

olive sentinel
#

!tempmute 757923719824801853 3d Please don't spam messages on our server

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @radiant marten until 2020-10-23 09:51 (2 days and 23 hours).

fiery hearth
#

When did this new voice verification start?

olive sentinel
#

Voice verification was introduced a few days ago

fiery hearth
#

Nope

#

I will reply in txt

#

So is it 50 msg in chat

pliant atlas
#

yep

fiery hearth
#

Ohh okay

pliant atlas
#

@olive sentinel u aren't verified Lol

#

wait do u need verification

fiery hearth
#

May be

smoky burrow
#

I will just let anyone here know that we won't appreciate anyone trying to bypass it by spamming in the channels. It's easy enough to get past it by naturally participating in conversation

olive sentinel
#

I've got admin permissions, so I don't strictly need verification, but I'll verify myself anyway

fiery hearth
#

Lol

spring kraken
#

howdy do

somber heath
#

Howdy howdy.

spring kraken
#

Is there a library to send a broadcast message to a google home ?

#

I was going to have it where when someone comes home (phone connects to wifi) it will broadcast there name

#

"blank is home"

somber heath
#

A funny thing to name someone.

spring kraken
#

I found googlehomecast

#

but it seems

#

out of date

somber heath
#

Did a search turn up nothing?

#

Right.

spring kraken
#

I install but said it couldnt find any devices

#

when i ran a test script

#

and would say "available devices []"

#

after showing the error

somber heath
#

Through what protocol does googlehomecast operate?

#

Its own, or something more standardised?

spring kraken
#

this is what neweggs says

#

but i think its just saying it can work with such devices

somber heath
#

Is there an API in all of that you can hook in to?

#

Some documentation thereon?

spring kraken
#

looking now

#

looks like it uses java

#

node.js

#

Could i right the network scanner in python and when it see the devices

#

exe the java script

#

wait a min

#

I could install home assistant and just send commands to that

#

ez

tiny seal
lusty marsh
#

why am i server muted`?

tiny seal
#

you need to verify

spring kraken
#

yoink

lusty marsh
#

so i need to talk in chat 50 times?

tiny seal
#

50 messages and being server verified for over 3 days

lusty marsh
#

?

#

being verified for 3 days

somber heath
#

Text conversation party!

tiny seal
#

when you joined the server for the first time

#

you verified

lusty marsh
#

but i have probably talked 5000 sentences in vc

somber heath
#

It's since a given point.

#

Not before that.

lusty marsh
#

thats dumb software desing not taking in to account older members

tiny seal
#

it's easier to implement

lusty marsh
#

theres a way to get the text channel history of a discord member in discord.py

somber heath
#

You'll be sorted in no time. 😊

lusty marsh
#

do you know what a bogosort is?

somber heath
#

Not off the top of my head.

tiny seal
#

it looks at message history

somber heath
#

Makes me think of "bog off"

#

Which sounds like some kind of British slang.

lusty marsh
#

bogosort sees if a list is sorted or not and after that if it is sorted: good else: randomize again

somber heath
#

That sounds horrific.

lusty marsh
#

image having colour sort with it

#

16 million elements

tiny seal
#

what's the O notation of bogo?

somber heath
#

"Fuck you"

lusty marsh
#

1 in 16 million chance of sorting

spring kraken
#

thats poggers

vagrant dome
#

fk

spring kraken
#

what time is it for you guys

#

8:06 am for me

lusty marsh
#

16.06 pm

stark otter
#

Guys idk what that is

vagrant dome
#

modmail

stark otter
#

What does it do

vagrant dome
#

idk

#

no

#

issorted

lusty marsh
#

sorted()

vagrant dome
#

sorted

#

is_sorted is C++

lusty marsh
#
def bogosort(lst):
    while True:
        if sorted(lst):
            break
        else:
            random.shuffle(lst)
    return lst

vagrant dome
#

sorted returns a list

#

use [x for x in ... ]

#

== sorted

lusty marsh
#

type 50 times here

vagrant dome
#

shitttt

whole bear
#

i am not varified yer @somber heath

#

sorry

#

also i lefted the server last day so my developer role should be three days old

#

yeah

#

i am so dum

#

so

#

i am not a big fan of these rules

#

so yeah

#

yeah

#

i understand that

rugged root
swift valley
#

Evening folks

rugged root
#

Yo

whole bear
#

Yo

#

do you guys know any good api for getting standard time of a countrey

rugged root
#

Not that I can think of

tiny seal
somber heath
#

@whole bear There are NTP servers.

rugged root
slender bison
#

@rugged root ```haskell
module Lexer where
-- Author: Jeremy Gluck
data BF_Token = Increment |
Decrement |
Shift_Left |
Shift_Right |
Output |
Input |
Open_Loop |
Close_Loop
deriving Show

-- Assert that source will only contain 1 character tokens or whitespace or any other character as comment
lex_char :: Char -> BF_Token
lex_char '+' = Increment
lex_char '-' = Decrement
lex_char '>' = Shift_Left
lex_char '<' = Shift_Right
lex_char '.' = Output
lex_char ',' = Input
lex_char '[' = Open_Loop
lex_char ']' = Close_Loop
lex_char _ = undefined

isBF :: Char -> Bool
isBF '+' = True
isBF '-' = True
isBF '>' = True
isBF '<' = True
isBF '.' = True
isBF ',' = True
isBF '[' = True
isBF ']' = True
isBF _ = False

filter_comments = filter (not . isBF)

lexer :: String -> [BF_Token]
lexer = map lex_char . filter_comments

swift valley
#

yikes

#

not really big lol

#

fix error and lak are much more knowledgable about it tho haha

somber heath
swift valley
#

Instruction93 is Instruction Int32, so it's actually a Monad Transformer stack

type Instruction a = StateT (Machine a) (ExceptT (MachineFail a) IO)
#

anyhow

slender bison
swift valley
#

It was trial and error mostly

#

"If it compiles, it works"

warm fog
#

hi is there a new rule that making me surpressed to talk

somber heath
#

Check the voice verification channel.

warm fog
#

hoo yeaa

#

didnt see it before

#

thanks by the way

honest pier
#

hi

gentle flint
#

hi

honest pier
#

hey

rugged root
dusky chasm
#

hello

#

i

#

want

quasi condor
honest pier
#

@dusky chasm don't spam to hit the 50 message limit

tiny seal
#

Joseph Kosinski

dusky chasm
#

😒

tiny seal
graceful magnet
#

the sound track makes it

#

Tron is basically just a long music video

rugged root
candid venture
#
Udemy

Welcome to one of the EASIEST Python 3 courses online! Learn by programming a fun game w/functions, loops & user inputs.

Udemy

Python Complete Course With Django And Flask Frameworks.Beginner to Expert Python.Creating your own applications.

bleak mica
#

that's kinda hot

graceful magnet
#

is 12.99 is a good price for the flask django course?

#

should i buy it

tiny seal
candid venture
honest pier
#

it's so easy for videos to be a bad fit

#

the pace, etc

bleak mica
#

so microsoft naming sys?

fiery hearth
crystal fox
#

weird image to dump into a voice chat text channel when you're not in voice chat

fiery hearth
#

Lol

honest pier
#

which way do you even rotate

bleak mica
#

is it a math joke?

rugged root
#

@fiery hearth Don't drop random crappy memes in here. Or anywhere on the server, honestly

bleak mica
#

7n3^6?

#

wait no that's dumb of me it would just be 1

quasi condor
latent moss
#

i love sql

#

i hate json

rugged root
#

I mean JSON is fine if you use it for what it's for

latent moss
#

Β―_(ツ)_/Β―

quasi condor
#

Was about to ask whether it's me lagging or the server

#

but it's me

latent moss
#

lol what

rugged root
#

That's weird

#

For how long?

latent moss
#

not sure, but long

rugged root
#

Can you click the right arrow so you can see more details?

latent moss
quasi condor
crystal fox
bleak mica
#

why do large json's fail?

#

but loading a db doesn't?

quasi condor
#

no

rugged root
#

You don't load the entire DB

quasi condor
#

you don't load the entire DB into memory at once

somber heath
#

Yeah, but I don't think it's only just about memory space.

latent moss
bleak mica
#

is there a way to load specific chunks of the json instead of the whole file?

rugged root
#

Yeah, those bits take a while to compile

#

And other things that rhyme

bleak mica
#

nile

latent moss
#

oooh

bleak mica
#

but if you know where the data is?

quasi condor
#

name of customer
address of customer
phone number
email address
customer_ID

latent moss
#

but, for public applications isnt postgres better?

#

yeah

#

anyone know any good tutorials for html, css and js, like a bit of frontend basically

quasi condor
#

w3schools

bleak mica
#

f12

latent moss
#

ah ok i will see thanks

candid venture
rugged root
#

Pretty

latent moss
#

also, does the hacktober tshirts get imported from foriegn, like people said they take about 4 months to reach

candid venture
#

i dont know actually

latent moss
#

yes i agree with that one

crystal fox
bleak mica
#

slow bake it

#

like 40 mins

#

300C

latent moss
#

sigh, people eating animals still pains me

swift valley
#

I can bet that I can live for 20 years without ever tasting bacon

latent moss
#

i will die if i do

swift valley
#

Well I'm three years away from it

somber heath
#

Understandable. I'm at peace with it, so long as everything is humane.

swift valley
#

I remember a few months back there was this Mukbang YouTuber that got flak for her videos, given the fact that she's torturing seafood alive before eating it

latent moss
#

...

swift valley
#

Mukbang is trash anyways

bleak mica
#

isn't she still doing it?

latent moss
bleak mica
#

disable your fireware

latent moss
#

it is disabled

bleak mica
#

or try changing the currently used proxy settings

latent moss
#

oh

quasi condor
#

The US is responsible for the fucked up state of the whole of South America due to the fact it destabilised the entire region

swift valley
#

lemon_unamused /s

latent moss
#

@bleak mica i tried changing every proxy, doesnt work

bleak mica
#

you have a vpn on?

latent moss
#

idk, how do i check that?

bleak mica
#

if you don't know, you don't have it on

#

windows firewall?

latent moss
#

ah ok

#

no

#

i am on manjaro

bleak mica
#

manjaro firewall? :P

#

idk

latent moss
#

🀷

bleak mica
#

maybe it's trying to run on a blocked proxy

latent moss
#

wait

bleak mica
#

idrk what im saying I just read the error

latent moss
#

i didnt set any proxy

#

i mean

#

i tried toggling between options on the menu on right, idk anything else to do here

#

hElP

bleak mica
latent moss
#

-_-

#

so theres no fix for this spotify error? T^T

amber raptor
bleak mica
#

@tidal salmon got any coffee recommendations im running low

unreal fractal
#

I just saw bacon on top, now I am interested

#

@bleak mica coffee will make it worse

bleak mica
#

no I need my beans :(

unreal fractal
#

it will give an energy boost at first but then it would get you tired even more

bleak mica
#

no I need my beans :(

unreal fractal
#

well at least try natural energy rouces. Fruits like apple orange, and some other ones

bleak mica
#

ew

#

I'll drink a monster or smthing

unreal fractal
#

its your health, not mine. πŸ€·β€β™‚οΈ

bleak mica
#

I've got 2 labs, 2 assignments, a midterm and a test in the next couple days

#

I don't think fruit is gonna allow me stay up for 48 hrs

tidal salmon
#

@bleak mica I get all my coffee from my workplace because they give it to me for free, but I would encourage you to check out local roasters. Those businesses need our support these days.

bleak mica
#

I already have, the 1 close to me is kinda bad

#

im all for supporting them but not if bad

tidal salmon
#

ah. well don't give them your business if they're pushing out a bad product.

bleak mica
#

tastes like mcdonalds

tidal salmon
#

there's a local roaster in walking distance of my place and they just have roasted beans sitting out

#

in the open air

quasi condor
tidal salmon
#

and you scoop them into a bag. Scooping them into a bag is nice but the containers should be behind the counter in airtight containers.

bleak mica
#

I mean if they're freshly roasted it shouldn't be too much of a issue

#

can't say I see the point to that tho

quasi condor
unreal fractal
#

nice

swift valley
#

*Rigged random

#

@lilac wind Small correction, it was Korean

#

Gotta hop off, will be back in a few

rugged root
#

Apparently that cat's name is Yohji

#

My wife keeps finding weird ass cats

rugged root
#

@ornate elbow If you're wondering why you're unable to unmute yourself, you might want to look in #voice-verification

tiny seal
#

1000 feet for 43 USD Unshielded

#

1000 feet for 55 USB Shielded

#

1000 feet for 111.35 Outside use

lime scaffold
#

If you're wondering why you're unable to unmute yourself, you might want to look in #voice-verification
@short badge

rugged root
#

1000ft (304.8 m) for USD 102.99

rugged root
#

1000ft (304.8 m) for USD 229.99

kind crescent
#

why am i not able to speak in here

lime scaffold
#

need help in Code/Help 1, if anyone is available πŸ™‚

hidden cove
#

For anyone interested, I went through some old JavaScript and commented its functionality at each step of the way. The code animates a gravitational simulation that was rendered into a web browser and was discussed in voice chat last night. I will paste the code momentarily.

whole bear
green peak
#

hey whats that @hidden cove ?

honest pier
#

hi

green peak
#

hey

hidden cove
#

I'm trying to paste some JS

#

read my comment above.

green peak
#

yeah

honest pier
#

in a pastebin?

hidden cove
#

I guess that might be better

honest pier
#

yeah

hidden cove
#

I was just trying to paste in chat, but it's probably too lengthy

honest pier
#

yep

earnest skiff
#

yo boys how do i get voice certified

honest pier
#

50 messages, verified for 3 days, and no ongoing voice mutes

#

I think it says in the voice verification channel right?

earnest skiff
#

oh shit thanks

hidden cove
tiny seal
quasi condor
sudden venture
#

What program do you guys use?

slender bison
#

what kind of program?

tiny seal
quasi condor
sudden venture
#

For writing python

slender bison
#

I use emacs with elpy-mode

amber raptor
#

VSCode

#

Start there try something else if that doesn’t work

slender bison
#

pycharm is easy to use

amber raptor
#

For beginner, it’s overwhelming big

slender bison
#

i think vscode is as well

#

Β―_(ツ)_/Β―

sudden venture
#

Thank you very much

quasi condor
pastel heath
#

YOU MOVE TO AMERICA

#

AND EASY

#

YES

tiny seal
#

why

sudden venture
#

what

#

Hi i am thai I would like to come and learn about the program.

tiny seal
#

sending random friend requests is not the way to start

sudden venture
#

Oh, I'm sorry

slender bison
#

how long have you studied programming @sudden venture ?

sudden venture
#

2 months

#

I just started

slender bison
#

Nice! keep reading and practicing and learning

sudden venture
#

Thank you

glad canyon
#

Hey is voice verification a new thing

#

I've been a server member for a while but haven't sent many messages, and just realized today i can't unmute.

gentle flint
#

spam not, thanks

quasi condor
regal quartz
#

!join

#

/join

sudden venture
#

@glad canyon Have over 50 messages in the server (deleting messages lowers this count)

glad canyon
#

Ok

#

I'm not going to spam as much as Boogle but it sure would be nice.

quasi condor
sly jolt
#

!tempvoiceban 265587537572003840 3d Instead of spamming messages, how about you try to construct messages that contribute to the community in a more meaningful way.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @frank falcon until 2020-10-23 20:58 (2 days and 23 hours).

uneven urchin
#

o/

#

lmao

strange turtle
#

In Denmark we pay a lot of taxes, that includes school, hospital, some cases with the dentist and cash assistance
As a induvial you don't have to pay these things, because the society already paid it

#

Even education is free

proud tangle
#

@amber raptor I think that's a bit far there

#

Please tone it down, especially with our policy against conversations that go like this

quasi condor
#

what was too much?

strange turtle
#

What?

quasi condor
#

Bats called something out as too much from Rabbit

proud tangle
#

"You are ok with.. people dying"

quasi condor
#

that's what this guy literally just said though

proud tangle
#

That line of speech is not appropriate here

strange turtle
#

But it is true

quasi condor
#

but - it's a discussion of healthcare, that's a position someone can acceptably hold in the US

proud tangle
#

Regardless, if that's where the conversation is going the conversation shouldnt be here

strange turtle
#

um why?

proud tangle
#

@amber raptor you see this?

#

It's temporary

amber raptor
#

No

proud tangle
#

he went over the line a bit, and wasn't lookign at chat

strange turtle
#

What is the reason for the mute?

proud tangle
#

I'm unable to enter the voice approrpiately, so the mute is to draw attention

amber raptor
#

I’m on mobile and it’s in background

glass jewel
#

Yeah the mute is wack

strange turtle
#

Lol this is to prevent to talk about political stuff

glass jewel
#

Oh

strange turtle
#

What a communism server

proud tangle
#

Our CoC mentions polarizing discussions

glass jewel
#

Huh

proud tangle
#

And we prefer to have a welcoming environment

glass jewel
#

lol communism

proud tangle
#

While its OK to discuss things like politics, statements on "You're ok letting people die if you hold opinion X" are unwelcoming and not welcome

#

That's where the conversation crosses the line into polarizing and unwelcoming, and where we generally step in to moderate

strange turtle
#

Just limit the free speech

#

It is not hate speech

#

lol

proud tangle
#

Wish I knew too

#

Yes, there's some signifcant differences

#

you cant join group dms as a bot, for example

strange turtle
#

lol he is just ignoring you