#voice-chat-text-1

1 messages Β· Page 1 of 1 (latest)

raven orbit
inland marlin
mild flume
#
 perfect(N) :-
     between(1, inf, N), U is N // 2,
     findall(D, (between(1,U,D), N mod D =:= 0), Ds),
     sumlist(Ds, N).
mild flume
#

@elder wraith I think I know the answer, but which WSL or Docker distro do you typically use when you're messing with stuff?

#

@jolly ravine ^ If you're curious. It's little and simple

golden marsh
#

!e ```py
class A:
def init(self, a: int):
def method(self, b: int):
print(a + b)
self.method = method

a = A(2)
a.method(a, 3)

coarse hearthBOT
#

@golden marsh :white_check_mark: Your 3.11 eval job has completed with return code 0.

5
golden marsh
#

welp, doesnt work as nice but uhh

mild flume
#

Still neat

golden marsh
#

i betcha theres a dunder i can set to make it pass self

mild flume
#

So wait, what's the goal here?

#

Brain isn't catching up

golden marsh
#

DjikstraWasGumb mentioned defining methods in the constructor

#

so i thought

mild flume
#

Goooootcha

golden marsh
#

that must be possible (in py)

mild flume
#

Possibly using properties?

golden marsh
#

nah i need to get it to pass in self

#

or rely on closuring over it

#

that would work too

#

but i want it passed in

#

wait its easy

#

!e ```py
class A:
def init(self, a: int):
def method(self, b: int):
print(a + b)

    A.method = method

a = A(2)
a.method(3)

coarse hearthBOT
#

@golden marsh :white_check_mark: Your 3.11 eval job has completed with return code 0.

5
mild flume
#

Huh

#

Okay yeah

golden marsh
#

issue

#

!e ```py
class A:
def init(self, a: int):
def method(self, b: int):
print(a + b)

    A.method = method

a = A(2)
a.method(3)
A(1000)
a.method(3)

coarse hearthBOT
#

@golden marsh :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 5
002 | 1003
mild flume
#

Wait, does super() not do something like this

golden marsh
#

so it obviously overwrites

mild flume
golden marsh
#

i could also just partial in self, but that feels like cheating

#

!e ```py
from functools import partial
class A:
def init(self, a: int):
def method(self, b: int):
print(a + b)

    self.method = partial(method, self)

a = A(2)
a.method(3)
A(1000)
a.method(3)

coarse hearthBOT
#

@golden marsh :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 5
002 | 5
mild flume
#

It's not cheating

golden marsh
#

!e ```py
from functools import partial
class A:
def init(self, a: int):
self.c = a
def method(b: int):
print(self.c + b)

    self.method = method

a = A(2)
a.method(3)
A(1000)
a.method(3)

coarse hearthBOT
#

@golden marsh :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 5
002 | 5
golden marsh
inland marlin
#

What are ephemeral messages?

mild flume
#

For Discord?

inland marlin
#

Yeah I found the docs for it.

mild flume
jolly ravine
mild flume
#

I hate waiting for support to contact me

elder wraith
mild flume
#

Roger

elder wraith
#

Do not use Alpine for Python, you will cry

inland marlin
#

abs bad idea

mild flume
#

Yeah I remember the horrors we had with building in Alpine with the Python bot

#

!stream 689087720018280478

coarse hearthBOT
#

βœ… @digital cradle can now stream until <t:1658512505:f>.

golden marsh
#

@mild flume I guess theres some topics you just Kant bring up

mild flume
#

Ooooohhhhhh that's good

#

That's really really good

hidden cliff
inland marlin
#

@mild flume Did you change voice chat 0's servers as well?

mild flume
#

I did not

inland marlin
#

Well I was able to join.

random minnow
#

$env:FLASK_APP = './main.py' @digital cradle

digital cradle
#

bruh πŸ’€

misty sinew
#

how can i link two variable to this while loop

digital cradle
#

RUST USER SPOTTED

#

!!!

misty sinew
#

i said variable for "gemi" if it is wrong i am sry

#

while gemi1 == imagesearch("C:/terror/gemi1.png")[0] == -1 or gemi2 == imagesearch("C:/terror/gemi2.png")[0] == -1:

#
while gemi1 == imagesearch("C:/terror/gemi1.png")[0] == -1 or gemi2 == imagesearch("C:/terror/gemi2.png")[0] == -1:
#

gemi mean is ship, and my script when found any ship it is clicking to it

#

and if it can not find searching

#

gemi2 == imagesearch("C:/terror/gemi2.png")[0] == -1:

mean is, while "gemi" is not in the screen searching for it

#

maybe can i use while True:
and when my script found it gonna break loop

#

thats not working for me

#

:'

random minnow
#
file = None

while file is None:
    if ((gemi := imagesearch("C:/terror/gemi1.png")[0]) == -1):
        file = gemi
random minnow
#

you could expand for multiple files, idk what you are working with

misty sinew
#

yeah yeah i am doing but i couldn't fix that problem

#

but now it is fixed

#

thank you too much for that

inland marlin
#
✘ [ERROR] Expected "}" but found "."

    src/index.js:39:69:
      39 β”‚ ....put(message.data.guild_id, JSON.stringify({message.member.id: Wordle.storeMetricsForNewUser(attempt, ...
         β”‚                                                       ^
         β•΅
violet venture
west cliff
#

Hello guyz

#

can some one help me in learning python

round ledge
#

@modest spire i cant speak

#

i can hear you though

mild flume
#

!stream 845850546333679647

coarse hearthBOT
#

βœ… @misty sinew can now stream until <t:1658761837:f>.

mighty gust
#

qui peux me aider

#

plzz

random minnow
#

109448

solid gyro
#

@halcyon notch Brawlhalla if you like

halcyon notch
#

o

#

yes

#

15mins? @solid gyro

solid gyro
#

sure

#

just join this channel

#

and we'll either be playing orn ot

halcyon notch
#

oke

random minnow
#

@pearl torrent brawlhalla?

pearl torrent
#

you guys vcing?

random minnow
pearl torrent
#

aah discord was bugging out, couldnt see you in vc

#

refreshed it

solid gyro
#

@halcyon notch long 15 minutes

gusty pendant
#

what rank are you

solid gyro
#

@elder wraith the brawlhalla ended if that matters

pearl torrent
#

i cant stand brawlhalla talk in vc if im not playing lol πŸ’€

solid gyro
#

@random minnow @halcyon notch more Brawlhauling?

solid gyro
#

not an answer

random minnow
#

no, I need to get my daily gh commits in

solid gyro
#

rubbish

#

update your readme

#

and launch the game

pearl torrent
#

reference to what laundmo's talking about i think

pearl torrent
#

his contribution history popping off

random minnow
solid gyro
#

and launch the game

pearl torrent
random minnow
#

the game is launched

golden marsh
slender sluice
#

python -m nuitka --onefile --windows-icon-from-ico=your-icon.png program.py

pastel coral
#

Hello @worldly igloo

worldly igloo
#

hello

#

@pastel coral

#

how i can do for talk?

pastel coral
#

look into #voice-verify

worldly igloo
#

I don't have the right about takl.

#

ok

#

let me have a look

#

@pastel coral

#

oh

pastel coral
#

oh?

worldly igloo
#

I realy don't know

#

can you add my acount and talk to me for a help?

#

I'm not good at English

pastel coral
#

add you as a friend on discord?

worldly igloo
#

yes yes

pastel coral
#

done

round ledge
#

@storm osprey type here

storm osprey
#

yes

#

yeah

round ledge
#

!voice

#

Voice verification

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

storm osprey
#

yeah I got it

#

yeah it is, thanks for your help @round ledge

#

okay

round ledge
#

@severe sail

#

talk in here

severe sail
#

I am not able to try for some reason.

#

Please help me

#

talk**

round ledge
#

!voice

coarse hearthBOT
#

Voice verification

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

round ledge
#

@fluid mason talk here

fluid mason
#

hello

#

no i just don't have a mic

severe sail
#

Can I learn web development in one month? @round ledge

#

I have time to invest every single day for 10 hours.

#

YES

#

I am from Italy! Sorry for my English

fluid mason
#

i have too much free time on my hands

severe sail
#

Thank you

severe sail
#

Can I make money afterward?

#

I am in great debt, so I'd like to make money.

fluid mason
#

good luck to you friend πŸ™‚

severe sail
#

Thank you a lot!

severe sail
#

Thank you

fluid mason
#

yoyoyoyoyoyoyoyo

#

xp

severe sail
#

I live with my parents and I don't have a job, so I'm ashamed to tell you that I'm 24 years old.

#

So, over the last three years, I've started a lot of businesses and failed a lot of them, and I was so depressed that I wanted to like my... you know what, and now I've decided to start learning a skill so that I can get a job.

round ledge
fluid mason
#

hello

severe sail
#

@pastel coral I muted

#

im

fluid mason
#

murica kicked in

severe sail
#

What do I need to do to be able to talk?

mild flume
fluid mason
#

lol

#

so how are you guys?

#

i don't have a mic so voice verification won't help

#

=w='

mild flume
#

All good

#

Plenty of folks who prefer to type anyway, so you're in good company

#

We still watch here

severe sail
#

Can I learn web development in one month?

mild flume
#

Potentially. How much experience coding do you have

fluid mason
#

i am also coding

solid gyro
#

impl Default for cParams {
    fn default() -> cParams {
        cParams {
            iInsertMax: -1,
            iUpdateMax: -1,
            iDeleteMax: -1,
            iInstanceMax: -1,
            tFirstInstance: false,
            tCreateTables: false,
            tContinue: false,
        }
    }
}```
fluid mason
#

i don't have much experience with go but i'm working on learning it

severe sail
#

@mild flume I have zero experience, but I have 10 hours per day to learn.

fluid mason
#

rn tho i'm doing the complete opposite and i'm coding with python

mild flume
#

Hmm

#

It's what I always go back to when I'm wanting to refresh myself on it

severe sail
#

Thank you@

#

@mild flume How long does it take to get a job?

solid gyro
mild flume
solid gyro
#
//Something is the structure we work with
type Something struct {
     Text string 
     DefaultText string 
} 
// NewSomething create new instance of Something
func NewSomething(text string) Something {
   something := Something{}
   something.Text = text
   something.DefaultText = "default text"
   return something
}
mild flume
#

And they can help you better with your particular region

random minnow
fluid mason
#

we got java and we got coffee

#

we almost had mocha

#

now we just need decaf, the most sleep inducing programming language out there

#

my keyboard is so loud

#

i only use left shift

mild flume
#

Fair

fluid mason
#

i also have this habit of putting my fingers over the WASD keys even if i'm not playing a game or anything

#

even when i'm typing my ring and pinkie are on w and a

solid gyro
fluid mason
#

typing correctly is for noobs

#

CAPS LOCK? WHATS THAT? I ONLY KNOW SHIIIIIIIIIIIIIIIIIIIIIIIIFT

#

this was typed using only the shift key

#

what is gdb?

pastel coral
#

!!!!!!1111!!!!

mild flume
#

This is the keyboard I use.

fluid mason
#

!($)#^((&$%()^)!$%#^()!#$%#$(^(%&^%^!#$)^&#&)#&(!&#$%^!#^!#$%&#$%!#&^#!$%^&!#^%#$%(&!#($%!

#

what in keyboard hell?!

mild flume
#

On the left thumb cluster, I've swapped the space and the shift

#

It's really really really nice

fluid mason
#

is that fn on the top below the f keys?

#

in the middle?

random minnow
#

@hidden cliff info locals

fluid mason
#

i kinda wanna try this keyboard now

#

xp

#

what are the keys above the space shift and space enter keys?

#

if anyone is wondering my pfp is a snip shot of one of my favorite parts of a music video on yt

#

anyone else just craving a collab someday but knowing it probably won't happen for a while?

severe sail
mild flume
#

Not at all

#

Was pretty quick to get used to it, too

fluid mason
#

it's probably harder to type on a normal keyboard

mild flume
#

Yeah it's an adjustment to go back and forth

severe sail
mild flume
#

When I was using a regular keyboard for a long time I was getting wrist and arm pain

#

So I just needed to find something that was comfortable

#

I don't have any pain with this one

severe sail
mild flume
#

I think so yeah

fierce merlin
#

the whatssss?

severe sail
mild flume
#

That's entirely dependent on what you're interested in

#

If you're wanting to go into web dev stuff, JavaScript is a must

#

Python is always a good one, but I'm a bit biased on it

fluid mason
#

python is a very easy language

mild flume
#

Eh, I wouldn't say easy

#

Approachable for sure

severe sail
mild flume
#

Easy is different for everyone

severe sail
#

saturated**

mild flume
#

I'm not sure on the job front

fluid mason
#

i also program as a hobby

#

i'm planning on trying out lua

#

same with kotlin

mild flume
#

!stream 630436240549740555

coarse hearthBOT
#

βœ… @misty sinew can now stream until <t:1659034282:f>.

fluid mason
#

i almost just blew up my computer by accident XD

mild flume
#

!stream 630436240549740555

coarse hearthBOT
#

βœ… @misty sinew can now stream until <t:1659034595:f>.

solid gyro
#
for stuff in my_janky_xml:
    name = stuff.get('name', 'John Doe')
    age = stuff.get('age', 0)
fluid mason
#

i made a windows terminal in python

mild flume
#

Oooo

#

Sounds cool

misty sinew
fluid mason
#

here's the source code

#
import os
while True:
    command = input(">>>")
    os.system(command)
#

yes ik its lazy

#

and yes ik you can't change directories with it

misty sinew
#
if command.split()[0] == 'cd':
    os.chdir ...```
fluid mason
#

?

mild flume
#

As IT I do it all the time

#

Honestly the only thing that throws me up is the letter staggering

#

Beyond that everything natural

misty sinew
misty sinew
fluid mason
#

ah ok

#

that just wrecks the entire program

#

wait nvm

fluid mason
mild flume
fluid mason
#

?

mild flume
#

Now the old one I had was way funkier

mild flume
#

That popped into my head

fluid mason
#

ah ok

#

makes sense lol

mild flume
digital cradle
#

sudo apt install nmap

#
#

@dry birch

#

sudo apt install netcat

#

!catifty

#

RustCat = rust version of netcat ??!?!?!?!?!??!

fluid mason
#

idek

#

they just arent talking

#

i'm just waiting for other ppl to join or sumthin

fluid mason
#

should i use flask or django for web development in python?

round ledge
#

@unreal isle talk here

unreal isle
#

Hello.

#

I didn't realize I was still in here.

#

I was just searching through the server to see what kind of community this was.

#

Yeah, I don't really know anything about Python, I've just had to deal with it a lot recently, kind of annoying.

#

I don't have any intentions to learn python actually.

#

It's better to work with people who know it.

#

Essentially, yes.

#

I'm an engineer myself, just not in python.

#

So I just need to make 50 comments to become voice verified then?

round ledge
#

!voice

coarse hearthBOT
#

Voice verification

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

unreal isle
#

Alright then I'll just talk about myself

#

I didn't know that, thanks though.

#

sooo

#

I'm 30, from California, USA.

#

I started out building websites at the age of 16

#

mainly HTML/CSS.

#

then I learned PHP, JQuery/JS, Bootstrap.

#

I was freelancing pretty early on

#

I got really bored with building things from scratch

#

I am currently.

#

not like apple/microsoft

#

But I work with the largest recruiting firm in the world

#

I had some offers to do work at places like Cisco, Adobe, and others but...

#

wasn't great deals.

unreal isle
#

So yeah

#

a lot of companies wanting me to do different stuff, not what I'm interested in/lower pay

#

so didn't take it

#

I'm working on bringing automated solutions using AI to things like SEO/Marketing.

#

I have a team that I work with, this happens outside of the context of my professional career.

#

designers, devs, engineers, managers, ect...

#

people I've been teaching, as well as employing.

#

I have a salary position, and contract position

#

Contract is only $55/hr.

#

no

#

It's little over 100

#

the salary pays the same, but less fuss.

#

Since I was 12

#

But I don't like programming and I try not to do it as much as possible actually.

#

I think its fun when it works, but I hate it when it doesn't

#

I just don't like to solve problems, I like to do research. It's less mentally draining for me to imagine/be creative

#

than to figure out why something didn't do what I wanted it to do.

#

That's why I branched into SEO / Content Marketing.

#

Though it's very tempting to get back into it, and go deeper

#

i see those engineers on blind

#

making 500k/yr

onyx plover
#

3months, you can be a master

#

you see youtube to learn?

unreal isle
#

At this point, I don't think it's the best use of my time. There's things that take priority.

#

The simple fact that is community exists is proof to me that I shouldn't do it.

#

There's no active communities like this for the other stuff I'm trying to learn.

round ledge
#

!server

coarse hearthBOT
#
Server Information

Created: <t:1483877013:R>
Roles: 156
Member status: status_online 38,513 status_offline 313,706

Members: 352,219

Helpers: 145
Moderation Team: 39
Admins: 15
Owners: 3
Contributors: 41
Leads: 10

Channels: 330

Category: 34
News: 9
Staff: 65
Stage_Voice: 2
Text: 205
Voice: 15

unreal isle
#

It's the first position ranking community

#

for the target keyword

#

on SERP.

#

search engine results page.

#

It's funny you got the wrong result.

round ledge
unreal isle
#

Google is a beautiful thing.

onyx plover
unreal isle
#

If I hadn't said SERP, you would've never known what it meant.

#

Now if someone says it again, you'll know.

#

@crystal aurora

#

I am.

round ledge
unreal isle
#

I'm here to help you guys learn new things.

round ledge
#

search engine results page.

unreal isle
#

You know how valuable it is for a programmer to know SEO too?

#

I've met very few people who know both very well.

#

@round ledge

#

I've passed 50 messages.

#

How do I break this curse..

round ledge
#

!voice

onyx plover
#

all usa user?

gusty pendant
#

skittles falls under the category of candy

gusty pendant
#

@unreal isle well didn't he get the money back if he got it on video?

#

that's almost worse than getting your money stolen

gusty pendant
#

youve read his books?

blissful meadow
#

I mean... thats just scaling lol

fluid mason
#

i don't have a mic

#

no amount of voice verification gon get me outta that one =w=

#

what'd you say?

#

this good?

#

is it working?

versed hollow
#

no

#

"/tts" but it doesnt work since the perm isnt open

fluid mason
#

oh ok

#

neat tidbit tho

#

there are so many people without a mic joining the vcs lol

#

i just got rickrolled by a vscode extension.. ._.

#

yes

#

i don't even know which extension it is

#

i think it's my auto eval extension

#

it's my auto eval

#

it basically evaluates code while you type

#

supposedly

#

what it actually does is every time i type i get rickrolled

#

i'm keeping it

#

every time i go afk ima turn it on so if anyone tries to mess with my code they get rickrolled

misty sinew
#

!thread

gaunt falcon
#

i dont no much

#

but api

#

is what i use to connect to google website

#

and it printed sending when it was done

full kite
mild flume
#

!stream 494575788377636874 1h

coarse hearthBOT
#

βœ… @vocal ivy can now stream until <t:1659373899:f>.

onyx plover
#

CS50 2022

mild flume
golden marsh
mild flume
pale pivot
#

/wp-admin

raven orbit
pale pivot
#

I'm mad that Four of Diamonds has FOC and Four of clubs has FOD in the unicode chars

raven orbit
#

oh

#

oh no

#

that's awful

solid gyro
tidal tapir
#

Hi everyone πŸ™‚

raven orbit
#

@stiff sparrow

#

!resources

coarse hearthBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

misty sinew
#

yall use jsmacros jep?

mild flume
#

?

misty sinew
#

jsmacros i a minecraft mod that implements minecraft scripting in multiple different coding languages including python

violet venture
#

Adding Python support to a tool that lets you make Minecraft mod in JavaScript?

#

Sounds like complete shenanigans to me

misty sinew
#

how do i go live?

#

i cant screen share

tidal tapir
#

Hello everyone πŸ™‚

#

I have set up my microphone yesterday with a friend and I'm looking forward to verifying myself today

raven orbit
#

let's go

#

What have you been up to lately?

#

don't cram your response in one message

tidal tapir
#

Hello 1 verboof, thank you for the help, I have set up my microphone yesterday with a friend and I'm looking forward to joining you today πŸ™‚

raven orbit
#

excellent

#

what sort of microphone

#

as in

#

which brand

#

electret or dynamic

#

usb or 3.5mm

#

waits

#

k whatever

tidal tapir
#

Hello

#

I ran the voice verify but my microphone does not work. Does this server disallow Sennheiser?

golden marsh
#

nope, discord cant disallow any specific microphone

tidal tapir
#

Thank you

golden marsh
#

(i also have a sennheiser, e935)

tidal tapir
#

My daughter helped me set up Discord. I'm a Python fanatic but spend most of my time working on the railway network 😊

#

I got this headset for work. We need quality audio to understand each other in the tunnels

golden marsh
#

ah yea

#

the verify thing probably didnt work yet because a requirement is missing btw

tidal tapir
#

Thank you

#

I think I am verified. Can you hear me?

golden marsh
#

nope

#

you still show up as muted on my end

#

might have to unmute yourself?

tidal tapir
#

I will try restarting this computer

golden marsh
raven orbit
#

not to imply you didn't check, but, you know...

#

before you restart everything

tidal tapir
#

Hi 1 verboof, I restarted but I think there is still an issue with my setup. I will get back to you on that

raven orbit
#

k

#

otherwise we can try resolving it in a dm call if you prefer

mild flume
#

Dropping off my mileage sheet, one moment

tidal tapir
#

What is a "dm call"?

#

Direct call?

golden marsh
#

yes

tidal tapir
#

Thank you

mild flume
nimble ibex
#

?

mild flume
#

Last commit 16 days ago

#

So not fully dead

reef granite
#

SeanTAllen single-handedly keeping it alive

mild flume
#

Shine on you crazy diamond

#

In June 2012, following a series of public comments opposing same-sex marriage by Dan T. Cathy, Chick-fil-A's chief executive officer, related issues have arisen between the international fast food restaurant and the LGBT community. This followed reports that Chick-fil-A's charitable endeavor, the S. Truett Cathy-operated WinShape Foundation, ha...

hidden cliff
golden marsh
#

The pointer syntax in C++ is small, simple and not at all suitable for the almost infinite possibilities it allows.
fixed it

raven orbit
#

help

#

I'm being attacked by a mosquito

karmic laurel
#

ayo?

fluid mason
#

hello

proven cosmos
#

could someone help me in vc1

#

i cant speak

#

i cant open files

#

yeah

brazen stump
#

oh

misty sinew
#

who wants to come

sleek thunder
#

By the way on what topic they were figthing ?

modest juniper
#

@zenith wedge @mild flume

proud mason
#

typ

scarlet arrow
#

is that francis I remember you from the coding den lol

steady sail
quaint cairn
#

@torn wave what happened? Did I upset you

fast cape
hazy shuttle
#

trying to fix audio hold on

golden marsh
#

wsl --install

#

wsl --list --online

#

wsl --install -d Ubuntu-20.04

stuck bluff
#

If you sneeze on someone from a long distance away, is that accuracy?

mild flume
#

@fresh isle Can you stop mouth breathing into the mic please?

#

All of those little noises are coming through

#

@fresh isle Actually can you just mute or turn on push to talk when you're not speaking to us? Like I said, we're hearing every little noise from your mic

fresh isle
#

sorry

#

I didn't even realize

#

thank you

misty sinew
#

No sir

hazy shuttle
#

heres one example from the input: a plant growing in space, with stars and planets in the background, although it can do much more detailed requests

misty sinew
ornate nacelle
ornate nacelle
#

@zenith wedge leetcodehyperlemon

#

LeetCode OA's tho😭

#

Nvm, gotta do them on CodeSignalπŸ’€

slow condor
#

Woah. The background colour changed.

#

At least it is colourful!

#

Just need a little bit of red.

mild flume
#

Back later

slow condor
#

May be %PATH% is not updated yet after install.

golden marsh
#

@pliant ravine stop.

#

!voice

coarse hearthBOT
#

Voice verification

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

slow condor
#

Oh, okay.

pliant ravine
golden marsh
pliant ravine
#

yes i understand

slow condor
#

How did you open the terminal? From Win+R?

golden marsh
#

echo $env:PATH

surreal bolt
#

C:\Program Files (x86)\VMware\VMware Player\bin;C:\Program Files\Oculus\Support\oculus-runtime;path\to\ffmpeg\bin;%C:\Users\anasn\Documents\FFM_git_hub%;C:\Program Files\Process Lasso;C:\Program Files\nodejs;C:\Program Files\dotnet;C:\Users\anasn\anaconda3\Scripts;C:\Users\anasn\anaconda3;C:\Users\anasn.cargo\bin;C:\Users\anasn\AppData\Local\Programs\Python\Python310\Scripts;C:\Users\anasn\AppData\Local\Programs\Python\Python310;C:\Program Files\MySQL\MySQL Shell 8.0\bin;C:\Users\anasn\AppData\Local\Microsoft\WindowsApps;C:\Users\anasn\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\anasn\AppData\Local\GitHubDesktop\bin;C:\Program Files\Azure Data Studio\bin;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2021.2.2\bin;C:\Users\anasn.dotnet\tools;C:\Program Files\JetBrains\JetBrains Rider 2022.1.2\bin;C:\Users\anasn\AppData\Roaming\npm;C:\Users\anasn\AppData\Local\JetBrains\Toolbox\scripts;C:\Users\anasn.dotnet\tools

golden marsh
#

C:\Windows\system32;C:\Windows;

#

C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;

#

remove: path\to\ffmpeg\bin;

slow condor
#
C:\Program Files (x86)\VMware\VMware Player\bin
C:\Program Files\Oculus\Support\oculus-runtime
path\to\ffmpeg\bin
%C:\Users\anasn\Documents\FFM_git_hub%
C:\Program Files\Process Lasso
C:\Program Files\nodejs
C:\Program Files\dotnet
C:\Users\anasn\anaconda3\Scripts
C:\Users\anasn\anaconda3
C:\Users\anasn.cargo\bin
C:\Users\anasn\AppData\Local\Programs\Python\Python310\Scripts
C:\Users\anasn\AppData\Local\Programs\Python\Python310
C:\Program Files\MySQL\MySQL Shell 8.0\bin
C:\Users\anasn\AppData\Local\Microsoft\WindowsApps
C:\Users\anasn\AppData\Local\Programs\Microsoft VS Code\bin
C:\Users\anasn\AppData\Local\GitHubDesktop\bin
C:\Program Files\Azure Data Studio\bin
C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2021.2.2\bin
C:\Users\anasn.dotnet\tools
C:\Program Files\JetBrains\JetBrains Rider 2022.1.2\bin
C:\Users\anasn\AppData\Roaming\npm
C:\Users\anasn\AppData\Local\JetBrains\Toolbox\scripts
C:\Users\anasn.dotnet\tools
surreal bolt
golden marsh
#

C:\Windows\system32 C:\Windows C:\Windows\System32\Wbem C:\Windows\System32\WindowsPowerShell\v1.0\ C:\Windows\System32\OpenSSH\

#

echo $env:PATH

#

<venv>\Scripts\activate.bat

#

<venv>\Scripts\Activate.ps1

surreal bolt
golden marsh
surreal bolt
slow condor
#

Is this created from inside WSL2?

surreal bolt
golden marsh
#

py -m jupyter lab
py -m pip install jupyterlab
py test.py

golden marsh
#

!user

coarse hearthBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

golden marsh
surreal bolt
#

does any one know what is going on here been

golden marsh
#

oh wait

#

this is likely still related to the messed up path

#

do py -m jupyter lab with the venv active instead

surreal bolt
#

ok cool

#

one sec

covert depot
#

?

#

why

#

come 1vs1 python

fast cape
#

@pale pivot

covert depot
#

buildfight

fast cape
#

this guy

#

try 1 v 1 with him

pale pivot
#

?

covert depot
#

buildfight python

pale pivot
#

What is that

covert depot
#

where

#

arew you from

#

mustafa

pale pivot
#

Why is that relevant

covert depot
#

too

pale pivot
#

and?

covert depot
#

maybe same

#

country

pale pivot
#

That seems like a stretch, there's so many countries where people have Muslim names

covert depot
#

bro

#

simple question

#

hahaha

#

i want to speach

#

give me the rights please ye

#

speak

#

im mustafa

fast cape
#

πŸ˜‚

covert depot
#

guys

fast cape
#

decoy mustafa

covert depot
#

i learn if python

#

python if

#

my code

#

b = 60

if b < 42:
print("Was geht?")

else:
print("mm")

#

is this code cool

#

i want to speak

pale pivot
#

!voice

coarse hearthBOT
#

Voice verification

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

covert depot
#

i cant

#

how old are you

pale pivot
#

Again, why does this matter to you

covert depot
#

i dont mean you

#

i didnt ask you

fast cape
#

xD

#

🀣

covert depot
#

i mean you

sleek thunder
covert depot
#

yes

#

32?

#

23?

#

cool

#

like my code in

#

what again

#

b = 60

if b < 42:
print("Was geht?")

else:
print("mm")

#

this cool

#

are you want to teach me python

#

ohh mr.time

#

sorry

#

mr time sry

#

that i ask you

sleek thunder
#

Here is your output

karmic laurel
#

`py

covert depot
#

print: dont talk WITH ME

#

!

#

!

#

okay guys that joke

#

that was a joke

#

i go away ok

covert depot
#

you boring

karmic laurel
# sleek thunder Here is your output
b = input('Enter a number')

if b == 1:
  print('one')
if b == 2:
  print('two')

# ... Continue until 41 ...

if b == 42:
  print('Was geht?')

# ... Continue until 60 ...

if b == 60:
  print('mm')
#

Anyone have a worse solution?

sleek thunder
karmic laurel
#

I read somewhere that elif is an anti pattern

fast cape
covert depot
#

where are you from

#

@surreal bolt

#

ahh cool im your neighbour

#

joke

#

i come from germany

misty sinew
#

thats not quite neighbour

covert depot
#

maybe i cant geogrphic

#

joke

misty sinew
#

u cant english either

covert depot
#

guys thats so boring i want to improve

#

my english

#

i want to speak

misty sinew
#

jk lmao, i m just mean in general

covert depot
#

bro germany teacher

covert depot
#

germany teacher for english is so bad not all

covert depot
#

they cant speak english good but want to teach it

covert depot
#

yeah im here

#

to learn bisschen english

karmic thicket
covert depot
#

im here to speak english but i cant speak

#

dont matter

misty sinew
#

thats sad

covert depot
#

i must wait

#

3 days

sleek thunder
covert depot
#

i go to a python school

#

udemy

#

course

#

thats cool

covert depot
#

guys i go eat

#

nice talk

misty sinew
#

i thought germans knew python from birth

covert depot
#

see ya

#

bye

surreal bolt
misty sinew
#

is that a rickroll by any chance?

#

i aint playing it lmao πŸ˜‚

misty sinew
#

u randomly sending videos aint sus at all

#

hey, u aint pronouncing my name right

surreal bolt
#

i wana see how they did the movement

misty sinew
#

imma call u whatever too then

#

taste your own medicine bitch

#

no

#

no @dry birch

#

no

#

u cant

#

why'd u ask then

#

that aint your name

#

thats noodle

sleek thunder
misty sinew
#

100% lying

#

200% infact

misty sinew
#

yes @fast cape

#

me?

#

i didnt

#

na its just open in the background

#

and in my work laptop, so i cant close it

#

well thats sort of a middleware

#

this chat is anything but professional

#

its okay i dont bully r**** @surreal bolt

#

i did, but they dissappeared (asteriks)

#

bold formatting

#

then i didnt bother to edit and escape

#

lol i cant

dry birch
misty sinew
#

my voice is a bit precious

#

exactly

fast cape
misty sinew
#

nope

#

he plays his voice doesnt imply he's good at it really

#

right

#

i appreciate your self awareness

#

well said @dry birch

#

aight, i gtg

surreal bolt
#

in a bit

misty sinew
#

sup i m back

#

hello @surreal bolt

little cairn
#

eyy

#

how can i get voice verified

covert depot
#

hello

#

age = 18

if age = 18:
print("Ok")

#

why it doesnt work

slender sluice
stuck bluff
#

@pale pivot If you're talking, I can't hear you.

#

@covert depot = concerns itself with assignment, == concerns itself with equality testing.

granite agate
#

in here?

#

how are you seeing both?

#

i see

#

im pretty new to programing so I just wanted to come in here and hear from people with more experience

#

I see

#

well its first year uni python so its not too much

#

Im doing computational lingsutiscs so i need to know that

#

basic machine learning and data science

#

yep

#

nope

#

never joined before

#

ive been in the server a while though

#

cheers

#

soon ill be able to speak lamao

#

you know alot about NLP?

#

i see

#

any other comp-ling people in this server

#

i imagine there has to be a few

#

i guess this server is more of a software engineering kinda place

#

ah yeah

#

we dont use that much though

#

my prof made one called the 'text_analytics' library which im pretty sure is similar to the other one

#

most of my questions will be general stuff though because Im way more of a linguist than a programmer

#

im like 1 month into programming

#

cant wait to use my voice

#

too many weirdos yeah?

#

most people online are not that great

#

i see

#

ok surely im getting on fifty now

#

thats suprising i think

#

without patients programming woud be a nightmare

#

patience*

#

real lingusits over here

#

yeah I can see that would be much harder than what I do

#

will I auto unmute when I reach the cap

#

i see

#

ok

#

not sure I have enough yet

#

still less than fifty

#

yikes

#

ok imma just type my question

#

.

#

this is not a hard qurstion I think you would know it immedietly tbh

#

nah this is general

#

I cant figure out how to get it to print on the different line

#

oh?

#

neither am i

#

this is the loop and iternation thing

#

oh

#

it fails without a bug message without the slice for some reason

#

for letter not words?

#

ok

#

weird

#

it has no bug message

#

lemme try the other ide

#

oh wait I changed words to letter onece

#

once*

#

now it dosent print anything

stuck bluff
#

!code

coarse hearthBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

granite agate
#

in what form sorry?

misty sinew
#

Do you guys know any good beginner problems so I can test my knowledge of python code?

granite agate
#

this?

#

this is the same as tilda key for me

#

could you put one in and i ctl c +v

stuck bluff
#

`

granite agate
#

`

#

``

#

this?

#
def vertical_strings(string):
    '"docs"'
    
    for letter in string:
        (letter[1:]  * len(words)) 
    ```
#

ahhh

#

nice

#

the slice is [1:]

#

?

#

i thought slice meant e.g string[:]

#

you know how you copy a string

#

ah

#

right

#

i thought slicing was just copying

#

when you dont want to mess with the original string

#

maybe a list?

#

ah right

#

ive been asked to print the original and the new list before

#

and thats what I used

#

the [:]

#

ok

#

so how do you specify to do the first and last character>

#

?*

#

to ommit them sorry

#

yeah

#

oh wait wrong one sorry

#

already done

#

[1:1]

#

seemd to work so we good

#

groovy banannas

#

lemme see if I can talk now hold up

stuck bluff
#

!e py text = "abc" print(text[0])

coarse hearthBOT
#

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

a
granite agate
#

!e

coarse hearthBOT
#
Missing required argument

code

#
Command Help

!eval [python_version] <code, ...>
Can also use: e

*Run Python code and get the results.

This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.

If multiple codeblocks are in a message, all of them will be joined and evaluated, ignoring the text outside of them.

By default your code is run on Python's 3.11 beta release, to assist with testing. If you run into issues related to this Python version, you can request the bot to use Python 3.10 by specifying the python_version arg and setting it to 3.10.

We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*

stuck bluff
#

!e py text = "abc" print(text[1])

coarse hearthBOT
#

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

b
granite agate
#

!e ```py
text = "abc"
for letters in text:
print(text)

coarse hearthBOT
#

@granite agate :x: Your 3.11 eval job has completed with return code 1.

001 |   File "<string>", line 3
002 |     print(text)
003 |     ^
004 | IndentationError: expected an indented block after 'for' statement on line 2
granite agate
#

!e ```py
text "see I can do it"

for letters in text:
print(letters)

coarse hearthBOT
#

@granite agate :x: Your 3.11 eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     text "see I can do it"
003 |          ^^^^^^^^^^^^^^^^^
004 | SyntaxError: invalid syntax
granite agate
#

!e ```py
text = "see I can do it"

for letters in text:
print(letters)

coarse hearthBOT
#

@granite agate :warning: Your 3.10 eval job has completed with return code 0.

[No output]
granite agate
#

!e ```py
text = "see I can do it"

for letters in text:
print(letters)

coarse hearthBOT
stuck bluff
#

We keep switching problems and I'm very confused.

#

I'm going to go cry in a corner.

granite agate
#

!e ```py
text = "see I can do it"

for letters in text:
letters * len(text)
print(letters)

coarse hearthBOT
granite agate
#

!e ```py
text = "see I can do it"

for letters in text:
print(letters * len(text))

coarse hearthBOT
#

@granite agate :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | sssssssssssssss
002 | eeeeeeeeeeeeeee
003 | eeeeeeeeeeeeeee
004 |                
005 | IIIIIIIIIIIIIII
006 |                
007 | ccccccccccccccc
008 | aaaaaaaaaaaaaaa
009 | nnnnnnnnnnnnnnn
010 |                
011 | ddddddddddddddd
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/yeyujiboge.txt?noredirect

granite agate
#

!e ```py
def vertical_strings(string):
'"docs"'

for letters in string:
    print(letters * len(string))

print(vertical_strings('Hi'))
print(vertical_strings('Pineapple'))

coarse hearthBOT
#

@granite agate :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | HH
002 | ii
003 | None
004 | PPPPPPPPP
005 | iiiiiiiii
006 | nnnnnnnnn
007 | eeeeeeeee
008 | aaaaaaaaa
009 | ppppppppp
010 | ppppppppp
011 | lllllllll
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/tezonenigu.txt?noredirect

pale pivot
#
def vertical_strings(string):
    '"docs"'
    
    for letters in string:
        print(letters * len(string))



vertical_strings('Hi')
vertical_strings('Pineapple')
#

!e

res = ""
for x in "hello"
  res += x * 3
print(res)
coarse hearthBOT
#

@pale pivot :x: Your 3.11 eval job has completed with return code 1.

001 |   File "<string>", line 2
002 |     for x in "hello"
003 |                     ^
004 | SyntaxError: expected ':'
misty sinew
#

can't speak

#

i left the server

#

@stuck bluff

#

need to voice verify after three days

#

unless a mod can do it for me

#

i came back within 2 days

#

eh ill just wait out the three days

#

lol

#

ok i'll ask

#

yes i did

#

learning linear algebra from today

#

bought a cheap copy of MIT's linear algebra book

#

by ray kunze and kenneth hoffmann

#

yeh

#

The book is used by MIT freshers

#

i will start with statistics next and probability last

#

then i'll be done with the math part

#

and i'll do python in the meanwhile

#

yep

#

I'm decent at math

#

i gave a difficult math exam

#

recently

#

for a university entrance

#

No i mean i appeared for the exam

#

and i didn't clear it , got left by 5 marks πŸ˜”

#

i got 64, cut off was 69 marks

#

but i think i did ok

#

Yep

#

the entrance exam tested olympiad math

#

IMO/USAMO level math

#

I studied a lot but due to an irl situation i couldn't do my very best

#

otherwise i am sure i would have made it to the interview phase

#

I'm back

stuck bluff
#

@solar sorrel We're down here. 😁

#

I don't think Nicholas is active.

misty sinew
#

I organize my code that i practiced so far in this book like this

#

by chapters

#

so i can go back and refer to it

#

it's a good practice right ? or is it useless

#

oh

#

oof

#

I haven't checked pep8 yet

#

πŸ€ͺ

#

about to do it

#

brb gtg

granite agate
#
list1 = list("poodle")
hello = list1.sort()
print(hello)
None
stuck bluff
#

!e py a = ["a", "c", "b"] b = sorted(a) print(a) print(b)

coarse hearthBOT
#

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

001 | ['a', 'c', 'b']
002 | ['a', 'b', 'c']
stuck bluff
#

!e py a = ["a", "c", "b"] b = a.sort() print(a) print(b)

coarse hearthBOT
#

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

001 | ['a', 'b', 'c']
002 | None
stuck bluff
#
a.sort() #is all I needed to do there```
#

So we see here that sorted returns a sorted copy of the original, leaving the original unaltered.

list.sort returns None but sorts the original.

granite agate
#
def are_anagrams(word1, word2):
    '"docstring"'
    new_word1 = list(word1)
    new_word2 = list(word2)
    x = new_word1.sorted()
    y = new_word2.sorted()
    if new_word1 == new_word2:
        return False
    if  x == y:
        return True
    else:
        return False
#

it seems that sorted() cant be used on lists?

stuck bluff
#

sorted can be used on lists.

#

Any sane iterable.

#

Oh, yeah.

#

list has a sort method. It does not have a sorted method.

#

See above examples.

#

sorted is a function.

granite agate
#

i see

stuck bluff
#

Not a method of class list.

#

Which list.sort is.

#

!e py text = "Apple" result = text.lower() print(text) print(result)

coarse hearthBOT
#

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

001 | Apple
002 | apple
granite agate
#
def are_anagrams(word1, word2):
    '"docstring"'
    
    low_word1 = str.lower(word1)
    low_word2 = str.lower(word2)
    
    new_word1 = (list(low_word1))
    new_word2 = (list(low_word2))
    x = new_word1.sort()
    y = new_word2.sort()
    if new_word1 == new_word2:
        return False
    if  x == y:
        return True
    else:
        return False
    
print(are_anagrams("looped", "poodle"))
print(are_anagrams("lopped", "poodle"))
print(are_anagrams("poodle", "poodle"))
gaunt falcon
#

hello @stuck bluff

#

how are you doing

sick scaffold
#

oh sorry

#

i am not the type of a guy to speak in voice chats

viscid light
#

Hey @stuck bluff

#

I need voice verify

#

I left the server yesterday

#

Came back this morning

#

Only to find I cn't speak anymore

#

I feel mouth-muted if I can't speak lol

#

I like speaking up

#

Rather typing whole load of text

#

Pretty new in the coding world

#

But decent in terraform

#

My nightmare is always coding

#

Need to break that fear

#

And become guru soon

#

I need to start taking small project

#

Chalenge myself really hard

#

But if I get stuck?

#

hmmm, hoping this server will be the saver

#

Not worries now about getting stuck

#

I love taking risk

#

But also love failure

#

as i believe thats the way to learn