#voice-chat-text-0

1 messages Β· Page 275 of 1

inner walrus
#

Mustofa

verbal zenith
#

Mustsofa

rugged root
inner walrus
#

Your Muslim right

upper basin
#

mostafaa

inner walrus
#

Muh

rugged root
#

His name is actually Steve

#

He's been fucking with us the whole time

upper basin
rugged root
#

The Steve of the east

rugged root
inner walrus
#

I mean it's different on accent

upper basin
inner walrus
#

It's a common name here

rugged root
#

I've been trying to say his name properly for over a year

inner walrus
#

Wow

rugged root
#

I get it maybe.... 5% of the time

inner walrus
#

Try to say my name mukit lets see

stark river
inner walrus
#

Nope

rugged root
#

@verbal zenith Just let it go

#

Niiice

inner walrus
#

@verbal zenith try to say my name

rugged root
#

Good stuff

inner walrus
#

Yes

#

Ya lol

#

First time damn

#

Ya that is my full name

#

Wrd

#

Wtf

#

Yes

#

No

#

Hasan

#

Not hosen

#

Who is from Bangladesh?

rugged root
#

Mewstafa 🐱

inner walrus
#

That's how people in Bangladesh say mostofa

#

I get you bro people in my class use to bully me for my name

rugged root
#

@lavish rover Can I start calling you Ol' Musty?

#

HA

stark river
#

the k in sazk stands for khan

rugged root
#

Just start calling you My Fault

inner walrus
#

Lol

rugged root
#

Leaving everyone confused

inner walrus
#

You broke the condom

fading moss
#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

inner walrus
#

Lol

#

That is so correct

#

I am with you brother @lavish rover

rugged root
#

I hear this voice every day

#

Seg had it perfect

fading moss
#

whats happen in the mic why we can talk is someone able to explain to me

rugged root
#

I was in Texas for a few years

#

Oh I love those

#

Fuckin' Boomhauer

#

@verbal zenith Deep south, deep Boston, deep Louisiana

inner walrus
#

I actually like that accent when a hot blonde say it

rugged root
#

Valley Girl?

inner walrus
#

Yes

wind raptor
#

@verbal zenith I sent you something

stuck furnace
#

There are probably places in deepest Appalachia where you wouldn't understand what people are saying πŸ˜„

inner walrus
#

And in country song

#

Lol

stuck furnace
#

Most sofa pithink

inner walrus
#

Sofa

rugged root
#

Moist staffer

#

Biff Hard Cheese

inner walrus
#

Don't have pause after the name

#

It sounds weird

stuck furnace
#

Mu πŸ‘ sta πŸ‘ fa πŸ‘

stark river
#

is it the song mustafa mustafa?

inner walrus
#

?

rugged root
#

@lavish rover I would use the soundboard for that

#

Yeah

#

100000%

stark river
#

there is an indian version.. and the original arabic version... mustafa mustafa

rugged root
#

@lavish rover I'll miss you

stuck furnace
#

Cya πŸ‘‹

inner walrus
#

Try this one

#

This song will teach you how to say it

#

@upper basin try to add 3d effect

stuck furnace
#

I like this one πŸ‘€

inner walrus
#

Most from Pakistan and Bangladesh

rugged root
#

This gives income opportunities that wouldn't necessarily be there

upper basin
stuck furnace
#

Also πŸ˜„

rugged root
#

And getting cheap temp work is common anyway

inner walrus
#

@verbal zenith in Bangladesh there is no minimum wage and people get pay 60$ monthly or less

upper basin
#

Maybe like a light bulb thing?

inner walrus
#

@whole bear don't forget about the tex

upper basin
rugged root
#

Slowly chipping away at Rust.

inner walrus
rugged root
#

That would be so obnoxious

#

See previous obnoxious

upper basin
inner walrus
#

Wasn't that to skip tex?!

upper basin
#

This looks like sth Tesla would make for some reason...

#

For how unique it wants to be, it looks so "basic".

inner walrus
#

The blue part looks weird to me

upper basin
#

I thought maybe it'd be cool like a light bulb.

stuck furnace
upper basin
#

Instead it's gross.

inner walrus
upper basin
inner walrus
#

That is why i hate designing

#

Isn't there dedicated job for aws

upper basin
#

@stuck furnace ?

stuck furnace
#

Microsoft's market cap is almost double Amazon's I think πŸ€·β€β™‚οΈ

inner walrus
stuck furnace
upper basin
#

I feel I made the logo (the shape itself) too close to Qiskit.

hidden umbra
stuck furnace
#

I'm probably not the best person to ask sorry πŸ˜„

hidden umbra
upper basin
#

Ohh sorry, I won't bother you then.

rugged root
#

Currently chugging through Rustlings, though. Love it

stuck furnace
inner walrus
#

@upper basin

rugged root
#

I hit chapter 8 and then jumped to Rustlings. I'm going to go back to the book once I get deeper into this. Going back and forth has been best for me

stuck furnace
#

Right yeah. I'm finding the book is sometimes a bit wordy, and I find that quite difficult to get through sometimes πŸ˜„

#

Like, the information density needs to be just right to keep my attention.

#

My approach atm is to just drink unhealthy quantities of coffee

#

I look at the third derivative lemon_smug

rugged root
#

That's why I needed to do the thing that's more hands on

#

There's also a lot of things in Rustlings where I find I'm actually overthinking how to do it

#

And helps me appreciate all the clean built in stuff.

stuck furnace
#

Cya Haven πŸ‘‹

rugged root
#
scores
    .entry(team_1_name)
    .and_modify(|e| {
        e.goals_scored += team_1_score;
        e.goals_conceded += team_2_score;
    })
    .or_insert(Team {
        goals_scored: team_1_score,
        goals_conceded: team_2_score,
    });

Interacting with a HashMap (dictionary). Checks to see if the key exists, and if it does, modify the value paired with it otherwise initialize the value

#

Like that's really clean once you get used to it

#

Oh huh. Also didn't realize that closures were so quick and easy

stuck furnace
#

Ah yeah I just learned about closures πŸ˜„

lavish rover
#

this feels so much less readable to me than say

if let Some(e) = scores.entry(...) {
    ...
} else {
  scores.insert(...)
}
#

idk i've never been a fan of the excessive chaining

stuck furnace
stark river
#

i feel like "readability" is subjective.. it is what the dev is used to

lavish rover
#

yeah for sure, i meant for me personally

potent sable
#

anyone wanna work on sum together cus i bored

lavish rover
#

i prefer the explicit flow of instructions rather than the more "functional" chaining

lavish rover
#

especially when people have like 6 method calls one after the other

rugged root
#

Hemmy like functional

stuck furnace
#

Same πŸ‘€

lavish rover
#

maybe it's nicer if you're used to only that

stark river
#

i write imperative .. because it is easier to debug
and then ask chatgpt to convert it to declarative.. because it is easier to read

lavish rover
#

but i go back and forth so much between languages it's much less mental overhead for me to do stuff in similar ways

stark river
#

yeah people tend to write in the same style across langs

lavish rover
#

yeah but for me even reading code like that takes more mental effort

rugged root
#

See ya

#

I wish this headache would fuck off

#

Have all day

#

I think it's weather bs

stark river
#

i had a headache yesterday due to not enuff sleep... took a shower and was fine after that

stuck furnace
#

Does smoke give you headaches? Like, bonfire smoke. Always has for me.

rugged root
#

Enough of it will

stuck furnace
#

Well yeah πŸ˜„

rugged root
#

Back later

stuck furnace
#

I'm going to head off too πŸ‘‹

potent sable
#

Hemlock wanna work on sum w me

stark river
#

i should probably learn django πŸ€”

whole bear
#

@whole bearπŸ‘‹

#

@weak elkπŸ‘‹

#

yeah

wind raptor
#

How's it going @twilit stone !

whole bear
#

hello@Mindless Charizard.

rugged root
#

Yo

#

Correct

#

Name my migraine?

#

It's named "Dickbag von Stabsmyeye"

sour willow
#

wsg hem

whole bear
#

@sour willowπŸ‘‹

rugged root
#

Not much, you?

sour willow
# rugged root Not much, you?

same having a physic exam, i was wondering how python would be at simulation ive never done anything like it before

rugged root
#

What do you think I'm going to answer with, Char?

whole bear
#

yeah.

rugged root
#

The answer is no, char

sour willow
#

i had this really weird pattern in an exam of mine a long time ago found some random python script on github snippets or whatever that did it for me

rugged root
#

Did you understand what it was doing at least?

sour willow
#

If your talking to me, no

#

it was some very weird random algo

rugged root
#

Fair enough

#

@whole bear The more you try to beg for it and bargain for it the less likely you are to get the permissions again. It's frustrating to deal with

sour willow
#

like the only reason i think they got that test was to see who would cheat and yeah that would be me

rugged root
#

And you've been told this, Char

#

@lapis thunder Gotta look on the bright side

whole bear
#

can i help you?

lapis thunder
potent sable
#

does anyone here know luau?

scarlet halo
#

why cant i hear anything?

#

oh nvm

#

i hear now

lavish rover
#

@rugged tundra lol so apparently the intrviewer was "very impressed" and I got through to the next round

scarlet halo
#

charizard loves trolling

whole bear
#

@vernal groveπŸ‘‹

scarlet halo
#

steam hates me

vernal grove
#

hi

wind raptor
scarlet halo
#

i cant play geometry dash anymore

#

because it wont launch

vernal grove
#

do anyne of u play code games

#

or bo3

#

?

potent sable
stark river
vernal grove
#

Annoying Orange :D

#

do you remember me

potent sable
stark river
#

"very impressed" == "we couldn't find anyone cheaper"

whole bear
#

Did you design my house?

lavish rover
#

if they consider what I'm asking for cheap, then I don't mind lol

whole bear
#

@near marshπŸ‘‹

vernal grove
#

my girlfriend invited me to this server and I cant speak on it

whole bear
#

@vernal heartπŸ‘‹

vernal grove
wind raptor
#

!voice @vernal grove

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

near marsh
#

!voice @vernal grove

whole bear
near marsh
#

!voice @near marsh

#

!voice @green fn

#

!voice @near marsh

vernal grove
#

is she famous

#

do u guys know her?

whole bear
vernal grove
#

:(

#

i was hoping she'd be famous:(

#

Im thinking of proposing in July

whole bear
#

@minor karmaπŸ‘‹

minor karma
#

hello @whole bear i'm not allowed to talk xd

minor karma
#

ok thanks i do understand why now

scarlet halo
#

gonna go bye

daring orbit
#

Hello all

vernal grove
#

back bb

#

what u doing on Ps4

gray flint
#

Opal mist

vernal grove
#

;0

gray flint
#

how are you

vernal grove
#

decent

gray flint
#

ur not opalmist?

vernal grove
#

im addicted to LoL

#

and alcohol

gray flint
#

im speaking to opalmist

vernal grove
#

nope

#

oh

#

lol

#

mb

gray flint
#

TEll opalmist

#

hi

vernal grove
#

i cant

#

I cant speak either

gray flint
#

for me

#

if u have a mic

vernal grove
#

no i dont lol

#

im muted

gray flint
#

shitman

#

!voiceverify

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

vernal grove
#

surpressed*

gray flint
#

welp

vernal grove
#

welp

gray flint
#

frick me

#

opal

#

hey opal

vernal grove
#

are u INdian

gray flint
#

nuhhu

vernal grove
#

or dutch

gray flint
#

nuhuh

#

Im from Ohio

#

@somber heath

#

hi opalmist

#

getunafk

#

cmon man

#

@somber heath

vernal grove
#

oh

#

hi

#

oh!

gray flint
#

ur my favorite australian

vernal grove
#

!voiceverify

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

gray flint
#

@wind raptor

#

tell opalmist to unafk

#

for me

#

and open chat

wind raptor
#

Please use full sentences. Writing one/two words per line is super spammy.

gray flint
#

my bad yall

#

im trying to get opalmists attention

wind raptor
#

Any hi @gray flint How are you?

#

Opal is afk. He can only hear/speak at the moment

gray flint
#

Im good how are you?

#

i hear him speaking though.

#

well yeah

#

thats fine

#

Can you I speak through you?

#

to opalmist?

wind raptor
#

No

gray flint
#

!voiceverify

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

wind raptor
#

I'm leaving soon

gray flint
#

ahman

#

You should make your pfp the monk again

#

it was better back then

#

it seemed more wholesome

#

Can you please ask Opalmist when he is getting online again.

#

😦

#

awman

#

im bymyself now huh

#

and mindfuldev is gone

#

@somber heath

#

hi

chilly parcel
#

hello again peeps

gray flint
#

hey noah

chilly parcel
#

@whole bear πŸ‘‹

gray flint
#

awmanawman

#

@somber heath

#

why cant i talk

#

tthis is so frustrating

#

ugh

#

this is taking forever man

#

why cant opal get online

#

i dont understand

somber heath
gray flint
#

yes opalmist

#

omfg

#

bro i thought u were speak only or something

chilly parcel
#

@whole bear he lagged

#

@whole bear What are you playing again?

#

Its me

#

hello

somber heath
#

@polar kraken πŸ‘‹

potent sable
#

can sm1 help me

#

Im tryna make a progress bar

#

like it tells the progress to be able to rebirth

#

im so confused

#

python its in

somber heath
#

!pep 8

wise cargoBOT
somber heath
#

Naming conventions.

potent sable
#

whats that do

#

i dont get it

#

so how would i do this

#

this is my code so far

somber heath
#

What you have divided by the maximum it can be, multiplied by one hundred.

potent sable
#

huh

somber heath
#

Say you have a value whose bounds are 0 to 123. I have that value at 40.

#

!e py a = 40 / 123 b = a * 100 print(a, b)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.

0.3252032520325203 32.52032520325203
potent sable
#

could u give me the code cus im so confused lol

#

ill understand if its written

somber heath
#

I just did.

#

The first value you see is that value on a scale from 0-1.

#

The second is the same on a scale ftom 0-100.

potent sable
#

i still dont get it

somber heath
#

40 is 32.5 percent of 123.

#

I'll do it again.

potent sable
#

wdym by 40 is the value

somber heath
#

!e py a = 123 / 123 b = a * 100 print(a, b)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.

1.0 100.0
somber heath
#

123 is 100% of 123.

potent sable
#

okay im starting to get it

somber heath
#

!e py a = 50 / 100 b = a * 100 print(a, b)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.

0.5 50.0
somber heath
#

50 is 50% of 100.

potent sable
#

so i would put it like this cus i want the balance to be 1k for it to be 100%

somber heath
#

What is 40?

potent sable
#

idk lol

somber heath
#

What does the value at that position represent?

potent sable
#

im not sure

#

i want it so lets say Balance is equal to 1000 it says Progress = 100%

#

and lets say balance is equal to 100 it ays Progress = 10%

#

so is this right?

#

ye ill understand when its done

#

like

#

i didnt understand what lets say

#

this meant

#

till it was wrote

#

ohhh so basically

#

a = 1%

#

but its a = 0.1% rn?

#

0.001

somber heath
#

!e py print(10 / 100)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.

0.1
potent sable
#

100 x 0.1 = 100

somber heath
#

!e py print(.1 * 100)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.

10.0
potent sable
#

wait

#

my bad

#

lol

#

wait so

#

wait wait

#

wait

#

lemme process it

somber heath
#

!e py print(5 / 100) print(.05 * 100)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.

001 | 0.05
002 | 5.0
potent sable
#

like this??

#

1000/100 is 1

somber heath
#

!e py a = 12 / 34 b = a * 100 print(a) print(b)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.

001 | 0.35294117647058826
002 | 35.294117647058826
potent sable
#

wait re say that

#

12 is

#

Its stressing me out im so confused

#

i feel like im stressing u out cus u keep explaining and i dont get it

#

okay so uh can u explain line 1 then line 2 cus i got learning difficulties lol

#

so i want it to be 1000 Balance needed for 100%

#

so do i do

#

1000/100?

somber heath
#

(work you have done / work total from start) * 100

potent sable
#

wait could u name a and b something else

#

wdym by work total from start

#

okay so
Work you have done =
Work total from start =

somber heath
#

(mark you got / highest mark possible) * 100

potent sable
#

wait

#

highest mark possible

#

would be 1000

whole bear
potent sable
#

and my current mark is balance ?

#

IT WORKS

somber heath
#

Normalisation.

potent sable
#

like tha?

#

is there any way to make this look nicer (the output)

somber heath
#

!pypi colorama

wise cargoBOT
#

Cross-platform colored terminal text.

Released on <t:1666665382:D>.

potent sable
#

looks better

#

is there a way to make this neater

#

i dont wanna look thru it all i dont got that much time till i gtg

#

wdym

#

but this happens

#

huh

#

why is it saying that tho

#

but it making my code look weird

#

how do i shorten this into one

#

cus like

#

i have to keep re-writing it

#

i dont get it

somber heath
#

@candid jungle πŸ‘‹

potent sable
#

noo i got like 15mins

candid jungle
potent sable
#

ye ik what int values, strings,lists,tuples ect are

candid jungle
#

@somber heath what do you think of extending python with rust/Vala (cffi)

potent sable
#

i now know what f strings are

#

ur confusing me ur going on about loads of stuff lol

#

can u help me with this quickly pls

#

its confusing me

#

i cant fix it

#

noo i don tmean tha

#

its this f string thing

#

its making everything orange

#

wait wait wait

#

why dont i need global balance

#

and also i mean why is this like orange

#

ohhh

#

ah i get it

candid jungle
potent sable
#

so im only checking balance

#

but why is line 81 making line 84 orange

candid jungle
potent sable
#

huh

#

could it be cus of this

whole bear
#

@valid shell Help

potent sable
#

noo dont go

somber heath
#

@fluid falcon πŸ‘‹

whole bear
#

@fluid falcon πŸ‘‹

whole bear
potent sable
#

@fluid falcon πŸ‘‹

#

hey charizard

#

@whole bear

#

can replit python detect when keys are pressed

#

cus i needa make it so when i click a hotkey it stops upgrading stuff

#

okay can u help me make my code better then plz

#

what does this mean


Hello = "Baller"
Hi = "Skibidi"

Print(Hello, Hi)```
#

what would it print

#

yep

whole bear
#

!e
Hello = "Baller"
Hi = "Skibidi"

Print(Hello, Hi)

potent sable
#

print cant be capital

#

!e
Hello = "Baller"
Hi = "Skibidi"

print(Hello, Hi)

wise cargoBOT
#

@potent sable :white_check_mark: Your 3.12 eval job has completed with return code 0.

Baller Skibidi
potent sable
#

lol

#

ill play ches

#

wha

#

whats elo

#

uh

#

yellow?

#

idk

#

i dont play

#

i dont know how but i can learn

#

ill beat u

#

trust

#

send me the file to delete my system 32 and ill play w u

whole bear
potent sable
#

??

#

WAIT THATS UR KING

#

STOP

#

LOL

#

rematch

#

now

#

nah bro

#

trust

whole bear
#

@Former Admins

potent sable
#

@gentle surge πŸ‘‹

#

OPAL HII

#

bro how

#

try again

#

bro wtf how

#

ur so bad charizard

#

i just 3-0 u

#

nope

#

i destroy u fr

whole bear
potent sable
#

hey opal

#

is there a way to reduce these?

#

mostly the amount_bought1,2 ect

#

maybe combine em with these?

#

wait opal r u in the uk?

haughty sonnet
#

no

#

aus

potent sable
#

wat time is it for u

#

would u be online 11am-3pm uk time?

#

opal would u

#

whats cognotive ability

cinder crown
#

44

#

45

#

46

#

47

#

48

cinder crown
whole bear
potent sable
#

okay opal i gtg

#

byeee

somber heath
#
whole bear
#

@whole bearπŸ‘‹

whole bear
#

hi

#

Hi

wind raptor
whole bear
wind raptor
#

This color theme you chose is definitely not a palette

whole bear
#

yp i know

#

@flat breachπŸ‘‹

fallow musk
#

Meet Devin, the world’s first fully autonomous AI software engineer.‍

Devin is a tireless, skilled teammate, equally ready to build alongside you or independently complete tasks for you to review.

With Devin, engineers can focus on more interesting problems and engineering teams can strive for more ambitious goals.

Learn more about Devin and ...

β–Ά Play video
karmic obsidian
#

hey hi @somber heath

#

how is your health doing?

whole bear
#

@wind raptor What is compban?

wind raptor
fallow musk
#

It was nice talking to you everyone. Have a good night/day!

whole bear
#

@old gyroπŸ‘‹

wind raptor
#

!warn 974136994772959243 Please don't insult people or be rude to others on the server.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied warning to @wind warren.

whole bear
#

@obtuse zealotπŸ‘‹

#

@deft terraceπŸ‘‹

#

@solar hollyπŸ‘‹

solar holly
#

hi

#

im new here @whole bear

whole bear
#

@vivid rockπŸ‘‹

whole bear
#

@gleaming perchπŸ‘‹

#

@cerulean torrentπŸ‘‹

#

@stuck furnaceπŸ‘‹

stuck furnace
#

πŸ‘‹

somber heath
#

@latent sonnet πŸ‘‹

latent sonnet
#

πŸ‘‹

whole bear
#

@boreal breachπŸ‘‹

somber heath
#

@undone kraken πŸ‘‹

undone kraken
#

hello

#

i cant turn on my microphone

#

hello @lavish rover

wind raptor
#

Hey @iron stump

iron stump
#

Good man, just doing some Python.

somber heath
#

@smoky oar πŸ‘‹

iron stump
#

Ever use the Turtle Module?

#

@wind raptor

smoky oar
#

wassup @somber heath

#

hey guys

iron stump
#

Can I post code output here in this chat?

#

Doesnt let me

#

From notepad anyways

wind raptor
#

!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.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

iron stump
#

Output:

#

Right? Pretty neat, 1000 iterations of a random walk

#

Also been learning OOP!

#

Is that pastebin URL exclusively for this discord channel or can I use it outside of this realm?

#

Yeah the URL says .pythondiscord HA

#

I think it's quite useful

#

A bit cleaner than copy-paste from notepad

#

Agreed

#

Do any of you guys have jobs working with code?

#

I am aspiring to be a software dev.

#

@somber heath

#

That's Ok.

#

Would you suggest learning other languages like Java?

#

Good advice.

somber heath
#

@solid trout πŸ‘‹

solid trout
#

Rdp free

solid trout
somber heath
#

@glossy moon πŸ‘‹

#

@onyx vigil πŸ‘‹

onyx vigil
#

hi

#

dont think ive got permission

somber heath
#

@rotund thicket πŸ‘‹

onyx vigil
#

to speak

somber heath
onyx vigil
#

need a couple days

#

hi anywasy

somber heath
#

@dusky otter πŸ‘‹

onyx vigil
#

howdy

#

anyone know much about IOT, trying to make a bluetooth radio alarm clock on an esp32 in micropython

#

cant get the bluetooth to work

somber heath
onyx vigil
#

nice

#

thanks

somber heath
onyx vigil
#

appreciate it

#

dosent seem very active

#

ill try somewhere else

#

thanks anyways

#

wish i had that

#

paddy's day on sunday would be cheaper

#

i use that excuse too

#

ask away

#

you miss 100% of the shots you dont take

#

sa or zim?

#

anyone fancy giving me a hand?

#

cant get my bluetooth working

#

nvm

#

keep your secrets

boreal oak
#

hello

somber heath
#

@silk portal πŸ‘‹

silk portal
#

hi

#

im just working on some python rightnow

somber heath
silk portal
#

btw im a begginer

somber heath
#

Anything you need a hand with?

#

@silk portal Can you hear me? Are you still there?

silk portal
#

im not able to use the voice channel yet cause i need a voice verification

#

btw i just joined the server

somber heath
#

You can still listen.

#

You can still talk in text.

#

You seem to be not responding to anything I say.

#

I'm worried you can't hear me.

#

@abstract cobalt πŸ‘‹

abstract cobalt
#

wsg

#

we can hear

limber copper
silk portal
#

random horror game in the terminal

simple hound
#
import math

polling_active = True
def calculate_coordinates(theta_A, L1, theta_B, L2 , D ):
    
    # #transform degrees into radians 
    # thetaA_rad = math.radians(theta_A)
    # thetaB_rad = math.radians(theta_B)
       
    

    # Calculate coordinates
    print(L1)
    print(theta_A)
    print(theta_B)
    print(L2)
    
    
    X_one = (L1) * math.cos(theta_A)
    print(X_one)
  
    Y_one = (L1) * math.sin(theta_A)
    print(Y_one)

    X_two = D + L1 * math.cos(theta_B)
    Y_two = L1 * math.sin(theta_B)

    D_two = math.sqrt((X_two - X_one)**2 + (Y_two - Y_one)**2)

    C_one = math.atan(Y_two - Y_one / X_two - X_one)

    E_one = math.acos(D_two / (2 * L2))

    d_one = L2 * math.cos(C_one + E_one)
    d_two = L2 * math.sin(C_one + E_one)

    x = X_one + d_one
    y = Y_one + d_two

    return x, y 

while polling_active:
    print("Enter the first axis of rotation (in degrees) and its arm length:")
    theta_A = float(input("Angle: "))
    L1 = float(input("Arm Length: "))

    print("\nEnter the second axis of rotation (in degrees),its arm length, and the distance from origin:")
    theta_B = float(input("Angle: "))
    L2 = float(input("Arm Length: "))
    D = float(input("Distance from origin: "))


    # Calculate coordinates
    x, y = calculate_coordinates(theta_A, L1, theta_B, L2 , D)

    print(f"\nThe resulting coordinates in X-Y space are: ({x}, {y})")

    restart_clix = input("Please press e to exit, Please press c to continue:")
    if restart_clix == "e":
        break
    if restart_clix == "c":
        continue


obsidian dragon
#

@simple hound

simple hound
#
import math

polling_active = True
def calculate_coordinates(theta_A, L1, theta_B, L2 , D ):
    
    # #transform degrees into radians 
    thetaA_rad = theta_A * (pi / 180)
    thetaB_rad = theta_B * (pi / 180)
       
    

    # Calculate coordinates
    print(L1)
    print(theta_A)
    print(theta_B)
    print(L2)
    
    
    X_one = (L1) * math.cos(theta_A)
    print(X_one)
  
    Y_one = (L1) * math.sin(theta_A)
    print(Y_one)

    X_two = D + L1 * math.cos(theta_B)
    Y_two = L1 * math.sin(theta_B)

    D_two = math.sqrt((X_two - X_one)**2 + (Y_two - Y_one)**2)

    C_one = math.atan(Y_two - Y_one / X_two - X_one)

    E_one = math.acos(D_two / (2 * L2))

    d_one = L2 * math.cos(C_one + E_one)
    d_two = L2 * math.sin(C_one + E_one)

    x = X_one + d_one
    y = Y_one + d_two

    return x, y 

while polling_active:
    print("Enter the first axis of rotation (in degrees) and its arm length:")
    theta_A = float(input("Angle: "))
    L1 = float(input("Arm Length: "))

    print("\nEnter the second axis of rotation (in degrees),its arm length, and the distance from origin:")
    theta_B = float(input("Angle: "))
    L2 = float(input("Arm Length: "))
    D = float(input("Distance from origin: "))


    # Calculate coordinates
    x, y = calculate_coordinates(theta_A, L1, theta_B, L2 , D)

    print(f"\nThe resulting coordinates in X-Y space are: ({x}, {y})")

    restart_clix = input("Please press e to exit, Please press c to continue:")
    if restart_clix == "e":
        break
    if restart_clix == "c":
        continue
#
import math
import numpy as np 

polling_active = True
def calculate_coordinates(theta_A, L1, theta_B, L2 , D ):
    
    # #transform degrees into radians 
    thetaA_rad = np.radians(theta_A)
    thetaB_rad = np.radians(theta_B)
       
    

    # Calculate coordinates
    print(L1)
    print(theta_A)
    print(theta_B)
    print(L2)
    
    
    X_one = (L1) * math.cos(thetaA_rad)
    print(X_one)
  
    Y_one = (L1) * math.sin(thetaA_rad)
    print(Y_one)

    X_two = D + L1 * math.cos(thetaB_rad)
    Y_two = L1 * math.sin(thetaB_rad)

    D_two = math.sqrt((X_two - X_one)**2 + (Y_two - Y_one)**2)

    C_one = math.atan(Y_two - Y_one / X_two - X_one)

    E_one = math.acos(D_two / (2 * L2))

    d_one = L2 * math.cos(C_one + E_one)
    d_two = L2 * math.sin(C_one + E_one)

    x = X_one + d_one
    y = Y_one + d_two

    return x, y 

while polling_active:
    print("Enter the first axis of rotation (in degrees) and its arm length:")
    theta_A = float(input("Angle: "))
    L1 = float(input("Arm Length: "))

    print("\nEnter the second axis of rotation (in degrees),its arm length, and the distance from origin:")
    theta_B = float(input("Angle: "))
    L2 = float(input("Arm Length: "))
    D = float(input("Distance from origin: "))


    # Calculate coordinates
    x, y = calculate_coordinates(theta_A, L1, theta_B, L2 , D)

    print(f"\nThe resulting coordinates in X-Y space are: ({x}, {y})")

    restart_clix = input("Please press e to exit, Please press c to continue:")
    if restart_clix == "e":
        break
    if restart_clix == "c":
        continue


inner walrus
#

Hello

#

@upper basin what are you working on?

fallow gyro
#

Hey guys, I am working on reverse engineering an API of google trends by google, there is a python module that used to do that and its name is pytrend but it no longer works, so i have experience in webscraping and scraping data with scrapy and from hidden APIs but this thing is a little bit different and new for me. anybody who is interested in contributing in this open source github project is welcome to DM me as with different people comes different ideas.

simple hound
upper basin
#
import numpy as np

def calculate_coordinates(theta_A: float,
                          L1: float,
                          theta_B: float,
                          L2: float,
                          D: float) -> tuple[float]:
    """ Calculate the coordinates of the end effector of a 2R robot arm.

    Parameters
    ----------
    `theta_A` (float):
        The angle of the first joint in radians.
    `L1` (float):
        The length of the first link.
    `theta_B` (float):
        The angle of the second joint in radians.
    `L2` (float):
        The length of the second link.
    `D` (float):
        The distance between the two joints.

    Returns
    -------
    `x` (float): The x coordinate of the end effector.
    `y` (float): The y coordinate of the end effector.
    """
    # Convert the theta A and theta B to radians from degrees
    theta_A = np.radians(theta_A)
    theta_B = np.radians(theta_B)

    X_one = (L1) * np.cos(theta_A)
    Y_one = (L1) * np.sin(theta_A)

    X_two = D + (L1 * np.cos(theta_B))
    Y_two = L1 * np.sin(theta_B)

    D_two = np.sqrt((X_two - X_one)**2 + (Y_two - Y_one)**2)

    C_one = np.arctan((Y_two - Y_one) / (X_two - X_one))

    E_one = np.arccos(D_two / (2 * L2))

    d_one = L2 * np.cos(C_one + E_one)
    d_two = L2 * np.sin(C_one + E_one)

    x = X_one + d_one
    y = Y_one + d_two

    return x, y

x, y = calculate_coordinates(90, 92.4052, 45, 92.4052, 92.4052)
print(x, y)
#

@obsidian dragon come back.

#

I miss you.

simple hound
somber heath
#

@simple hound πŸ‘‹

#

@last rivet πŸ‘‹

last rivet
#

I am not verified, can't talk

somber heath
#

@tidal parcel πŸ‘‹

austere hornet
#

Nobody's here today T_T

#

Understandable.

somber heath
#

@chilly parcelπŸ‘‹

chilly parcel
#

hello again

#

@somber heath How are you today?

#

coming back in a sec ok?

austere hornet
#

My internet has crashed - Opal is too powerful.

chilly parcel
#

@somber heath Are you an admin?

somber heath
austere hornet
#

I used to have asthma, so when I had a panic attack on Wednesday, my teachers started to give me the puff puff. Then, the paramedics told me that it actually was increasing my adrenaline and made stuff worse πŸ™‚

somber heath
#

An examination of my roles should prove illuminating.

#

@unique reefπŸ‘‹

obsidian dragon
#

work

somber heath
#

Examining?

austere hornet
#

puff puff as in what the inhaler does.

unique reef
#

I can't hear you guys ?!!

austere hornet
#

Yes, though Ventolin is probably the most popular one in Perth, and for teens at least.

somber heath
#

If you can't hear us, you may need to adjust your audio settings.

chilly parcel
#

Perhaps use a pair of headphones

unique reef
#

Now I can

chilly parcel
#

@unique reef did you use headphones?

austere hornet
#

Ignorant paramedics story huh.

austere hornet
#

Sounds a lot like the nurses in the ED at PCH.

chilly parcel
#

πŸ‘

austere hornet
#

(Perth Children's Hospital) PCH has a reputation for leaving the children unattended even after they have called for help. And most of them have died.

austere hornet
#

Public or Private?

somber heath
#

@pliant spokeπŸ‘‹

woeful salmon
austere hornet
pliant spoke
woeful salmon
austere hornet
woeful salmon
#

ah right :x

chilly parcel
#

perhaps

austere hornet
#

Chris is Muted, Voice join banned and on Help cooldown. Naughty Chris! /s

chilly parcel
#

can admins make people admins

#

then chris should make you admin

austere hornet
#

Same!

#

My messages didn't go through until it decided to all send at the same time πŸ˜…

#

I was unmuted immediately lol, though it's still there on my record...

chilly parcel
#

I am sure it is

unique reef
#

As it appears, I am new to the server and do not have access to speak.

somber heath
woeful salmon
#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

somber heath
#

@marble vaporπŸ‘‹

marble vapor
#

hii

unique reef
#

Okay man thanks

austere hornet
#

I've had anxiety brain

unique reef
#

I'm sorry guys for corrupting you, but I really need help with Pyspark. If anyone has worked with it before, I would appreciate it.

#

Sorry again

austere hornet
#

You corrupted me?!

#

I should call the police!

unique reef
#

I'm not a native speaker so...

austere hornet
#

That's fine πŸ™‚

somber heath
#

@whole bearπŸ‘‹

austere hornet
chilly parcel
#

my computer keeps freezing

somber heath
#

@whole bearπŸ‘‹

chilly parcel
#

and then i have to force restart it

chilly parcel
#

Tomorrow night i will be able to talk

unique reef
austere hornet
whole bear
#

Nice

#

Got it

#

Yep need to send 50 messages

chilly parcel
#

where

whole bear
#

@woeful salmon you talking about me?

#

sounds about right

#

Well i need to send 50 messages to chat

#

LOL

unique reef
#

yes

#

we

#

need

#

that

chilly parcel
#

Oh no

austere hornet
#

The bot waiting for an auto-mute opportunity...

whole bear
#

Do you play greyhack?

marble vapor
chilly parcel
unique reef
#

hhhhhhh

austere hornet
#

Yes, especially when you get past ep 9.

#

You found me boring?! I feel offended /s

whole bear
#

@woeful salmon I am apart of over 150 discord servers this one is the hardest to get

#

@woeful salmon the limit is over that buddy lol

austere hornet
#

NoodleReaper being pinged rn...

whole bear
#

@woeful salmon its different today buddy lol

unique reef
#

I joined this server after facing an issue with Pyspark for 4 days

#

and it's the only Python server on my discord

whole bear
#

@woeful salmon I used it when it came out I am the beginning

austere hornet
#

@woeful salmon I am pinging you to feel included, because I guess that's what we're doing πŸ˜…

somber heath
whole bear
#

@woeful salmon before I joined discord my friends and I rented a teamspeak server

austere hornet
#

Offensahve! /s

whole bear
#

@woeful salmon skype was crap and teamspeak was the best

#

@woeful salmon almost finished my 50 messages now thanks πŸ˜›

marble vapor
#

teamspeak was the best yeah, wouldnt use skype over it, ever

#

@woeful salmon their twitter account also became really active with a shitposting admin lol

whole bear
#

@woeful salmon naw I will never use it again although I did spend over $300 usd renting a teamspeak server lol

#

@thats because ur a young bun compared to us

austere hornet
#

Because I am the most important being ever! /s

#

r/woooosh lmao

#

It's all sarcasm

#

Indicated by the /s

#

(because clearly it's extremely hard to express sarcasm over text)

unique reef
#

is MySql support the inheritance like Postgres ?

unique reef
austere hornet
#

I'm going to have to go now. Cya!

unique reef
#

Mr OpalMist have u work before with pyspark on windows ?

somber heath
unique reef
#

Thanks

#

Okay guys, thanks for the effort

#

Have a good day/night

#

bye

chilly parcel
#

hello

potent sable
#

helloo

#

im back guys

whole bear
#

hello @whole bear

#

nice to meet you.

#

yeah.

#

nice to meet you. @whole bear

potent sable
#

guys

turbid tree
#

@upper basin
be nazaret koonkur v be tabaesh daneshgah khub cheghadr taesir dare ke baedan ye barname nevis khub beshi?

potent sable
#

when will opalmist be back

upper basin
#

!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.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

simple hound
chilly parcel
#

@simple hound πŸ‘‹

#

@upper basin πŸ‘‹

#

hello again ace

#

@upper basin What are you making here

#

cool

fast sparrow
#

Hey guys

chilly parcel
#

@fast sparrow hello

#

@upper basin I am actually currently making a game/app with the engine that we talked about yesterday

upper basin
# turbid tree <@664667836605661217> be nazaret koonkur v be tabaesh daneshgah khub cheghadr t...

Umm, I think this server isn't the best place to ask this, firstly due to the language being non-english, and secondly that most users here do not know what Konkoor is.

Since you asked, my personal opinion is that programming and SE are not skills you can learn simply by observing a lecture for 2 hours a week. It's something that requires regular practice, and you can only get better by doing more code. Now, if you want to specialize in a specific domain, i.e., AI/ML, physics, etc., then of course a class would help, but it's not mandatory.

Anything you want to learn/do, you can beyond and without a university. My advice is to simply view your university as a paper conveying you have undergone "specialized" training, and to put on your resume. Nothing more, nothing less. I personally learned all I know on my own, they didn't teach us shit where I am, and it's a top 50 university globally. CS is not sth you can do theoretically, it's a craft you need to grind to get the hang of.

chilly parcel
#

facts

#

@obsidian dragon joe_shrek

#

Opal!

#

@somber heath πŸ‘‹

#

@somber heath Did you know I am getting voice verified tomorrow?

#

@somber heath Are you working on anything at the moment?

somber heath
#

@bright falcon πŸ‘‹

somber heath
#

@whole bear πŸ‘‹

whole bear
#

Hey There?

#

what's up?

chilly parcel
#

the sky

whole bear
#

Which sky?

#

Blue or Dark?

turbid tree
somber heath
#

@whole bear πŸ‘‹

chilly parcel
whole bear
#

hi guys i have a issue when i stye color input thers a gray line now can i remove it
this is the code

<input type="color" id="color" name="color" value="{{ guild.log_color_code }}" style="width: 100%;height: 41px;border-radius: 12px;padding: 1rem;border: none; margin-top: 5px; background-color: {{ guild.log_color_code }};">
#

can smone help

chilly parcel
simple hound
#

86.6857228507245(x),124.40998778069584(y),(D) 92.4052

upper basin
#

!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.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

upper basin
rapid chasm
wind warren
whole bear
# rapid chasm

Iv really wanted to start a automated grow project. Looks super fun/peaceful. https://www.youtube.com/watch?v=x219R5rzRtU

This MicroPython project adds solar powered sensors and home automation to my vegetable garden and transmits the data using MQTT for review and control on a mobile app.

My full write-up for this project:
https://www.rototron.info/projects/micropython-vegetable-garden-automation-tutorial/

Previous Raspberry Pi Solar Serial REST API Tutorial:
...

β–Ά Play video
rapid chasm
# whole bear Iv really wanted to start a automated grow project. Looks super fun/peaceful. ht...

Interesting video. It's so relaxing and fun to see plants start as tiny seeds and grow into big ones. I'm growing hot peppers. I have lots of different seeds, but I haven't tried them all yet. So, I've got a lot to do! My plan is to start the plants indoors from seeds and then put them outside on my balcony to grow with sunlight. Maybe not as fancy as the project you were showing but still fun.

whole bear
#

i saw your video.

#

interesting video.

chilly parcel
#

hello

chilly parcel
#

ok

whole bear
#

hello@nees

#

kiding me?

#

I am FullStack developer.

#

yeah.

#

what mean?

scarlet halo
#

πŸ«ƒ<-- defenition of a useless emoji

#

its a pregnant man

#

when will you ever use it

#

πŸ’€

whole bear
#

yeah.

scarlet halo
#

@stark river this is what i put in my tmux config

#

its supposed to have weather

#

but not working

stark river
#

idk i dont hve a lot of plugins in tmux config. read the docs for whatever plugin u use

scarlet halo
#

i made the weather plugin myself

#

so ._.

stark river
#

read the tmux docs

scarlet halo
#

alr

whole bear
#

hello

#

nice to meet you.

#

I am FullStack developer.

scarlet halo
#

wait where are the tmux docs

whole bear
#

contact me if you are interested in me.

scarlet halo
whole bear
#

what is your skill?

scarlet halo
#

idk exactly but pretty good i guess

whole bear
#

web developer?

#

contact me.

scarlet halo
#

im a little bit of everything

whole bear
#

if you want to become web developer, you have to begin HTML, CSS, Javascript etc.

scarlet halo
#

i know all of those

whole bear
#

so?

#

python?

scarlet halo
#

i know that

whole bear
#

react.js?

scarlet halo
#

i dont know that

#

ill look into it

whole bear
#

i will teach you.

#

ok?

#

I am FullStack developer.

scarlet halo
#

@stark river weather works now

whole bear
#

what mean?

scarlet halo
#

do i need to install react

scarlet halo
#

oh wait yeah i still havent finished harvard's CS50 at 13 years old

#

lol

#

silly me

whole bear
#

no

#

did you install node?

#

hello

#

are you there?

scarlet halo
#

i do have node installed yes.

#

sorry for not responding

whole bear
#

and npm too?

#

hello

#

are you there?

void mortar
#

hey

chilly parcel
#

Hello Everyone

#

@somber heath πŸ‘‹

chilly parcel
#

@fast saffron I have a terrible sore throat too

fast saffron
#

lol I'm not alone

stuck furnace
#

Hey

stuck furnace
#

Not much. Just finished chapter 15 of the rust book 😀

wind raptor
#

!voice

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

chilly parcel
#

@somber heath I am getting verified tommorow I hope

earnest crow
#

Hey

chilly parcel
earnest crow
#

how are yall?

chilly parcel
earnest crow
#

Its wierd "windows 11" well maby cuz its like.... windowns lol

earnest crow
#

Im quite healthy lately

#

Right now im sadly on wins - 10 tho, but im a linux guy mostly

#

My chromebook's screen died so i carry my heavy windows notebook with me

#

its like 2014 i think

#

How often do yall have earthquakes?

chilly parcel
earnest crow
#

Yep me too

#

and i shouldnt be too hungry lol

chilly parcel
#

I am so hungry now

#

French Toast

gentle flint
chilly parcel
#

-Charsi Chicken Karahi

#

(My favourite)

short owl
#

cast iron pans also good to use ...

stark river
#

who's making karhai?.. with only half kg chicken.. and no tomatoes

wind raptor
#

@vernal grove Making a universal standard.

vernal grove
fast sparrow
chilly parcel
#

sorry he has a weird voice

earnest crow
#

Ε™

chilly parcel
#

it sounds like de

earnest crow
#

ALmost

#

Δ› Ε‘ č Ε™ ΕΎ Γ½ Γ‘ Γ­ Γ© Ε―

chilly parcel
#

wow

earnest crow
#

Ł

#

Ε―

#

ΓΊ

chilly parcel
#

in french we have: Accent Aigu (Γ©)
Accent Grave (Γ¨)
Accent Circonflexe (Γͺ)
β€œC” cΓ©dille (Γ§)
TrΓ©ma (Γ«)

fast saffron
chilly parcel
#

French has 2 pronouns

chilly parcel
fast saffron
chilly parcel
#

lol

#

I am actually not french, I learnt it

#

idk

#

I am Hungarian

earnest crow
#

č

chilly parcel
#

cool!

vernal grove
#

hagy vagy!