#voice-chat-text-1

1 messages Β· Page 41 of 1

signal kettle
#

thank you sir

#

😦

#

how can i get to the point

ashen willow
#

@mild flume can i get streaming perms so i can show you my thing

signal kettle
#

i need help properly zipping my project for university

#

im getting errors i have not yet seen

#

same way i always do that never gave me problems in the past

#

right click the project file, going into repos, then compressing the folder to a zip

#

i wish i could share my screen this would be a lot easier to explain

thin lintel
mild flume
#

!stream 958057865032106045

coarse hearthBOT
#

βœ… @ashen willow can now stream until <t:1725898109:f>.

mild flume
#

@tired fractal

#
tables = []

return tables

table_data = open_csv()
#

@tired fractal this

modest flare
mild flume
#

@modest flare Why

#

Why is this

#

What

#

Huh

tired fractal
proper ridge
#

Say "Hello World" using a diffusion model, then fed into a combinatorial optimization to get rid of unnecessary pixels, and then plot it to txt.

tame leaf
#

gecs

hoary citrus
#

I have a problem.

mild flume
#

Sup

hoary citrus
#

Can I stream so I can show you?

mild flume
#
fn main() {
    println!("{}", 42_000_usize);
}```
mild flume
#

@vapid river Yo

vapid river
#

Yoo πŸ˜„

midnight dagger
#

Guys, I just wanna say that I'm really happy today

mild flume
#

As in this?

midnight dagger
mild flume
#

Glad to hear it, winter!

mild flume
#

!stream 451730408636416000

coarse hearthBOT
#

βœ… @hazy garden can now stream until <t:1725901805:f>.

mild flume
#

!stream 779371565501513759 2h

coarse hearthBOT
#

βœ… @feral path can now stream until <t:1725908722:f>.

mental lintel
#

instead of

#

paint

mild flume
#

py -m pip install pygame-ce

#

@feral path

hazy garden
#

or
python3 -m pip install pygame-ce
python -m pip install pygame-ce

mild flume
#

py -m pip uninstall pygame

#

py -m pip uninstall pygame-ce
py -m pip install pygame-ce

verbal shore
#

@feral path can you do a speedtest?

feral path
#

wym/

#

?

verbal shore
#

speedtest

#

.net

hazy garden
#

@mild flume

mild flume
#

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

mild flume
#
sprite.mask = pygame.mask.from_surface(sprite.image)
#

Looks like a face and I love it

verbal shore
#

oof

#

forgot

#

mybad

#

early access :)

hazy garden
#

brb, eating dinner..

delicate wren
verbal shore
#

@feral path can i get the name of the software before the vs code ..thats on the taskbar

delicate wren
hazy garden
delicate wren
#

@granite nymph Rust is written in Rust

#

C is written in C

#

you can just use C from Rust

#

and the other way around

#

as for replacing C with Rust, that's mostly about correctness

#

better performance is just a bonus you get for free

#

C build system is questionable

#

in Rust, getting better performance is way easier

#

C: spend a year on rewriting a b-tree just because you need it to work with your data
Rust: just use an implementation provided by the standard library

#

@feral path if I understand them correctly, to the left of the VSC icon on the taskbar

verbal shore
verbal shore
hazy garden
delicate wren
#

@ornate cobalt it was working before

#

1 1 3

#

@ornate cobalt are tail call optimisations in yet

#

just increment until error

#

or binary search

#

I've unlearned pygame

ornate cobalt
#
    fn _get(&self, key: &str) -> Option<Value> {
        self.variables.get(key).cloned().or_else(|| {
            self.parent
                .as_ref()
                .and_then(|p| p.read().unwrap()._get(key))
                .or_else(|| {
                    self.fallback
                        .as_ref()
                        .and_then(|fallback| fallback.upgrade()?.read().unwrap()._get(key))
                })
        })
    }

delicate wren
ornate cobalt
#
    pub fn get(&self, key: &str, span: Span) -> Result<Value> {
        match self._get(key) {
            Some(value) => Ok(value),
            None => Err(VariableNotFound(key.to_string()).make(span).into()),
        }
    }
delicate wren
#

as in why _

#

it's for unused

#

you already have module-private by default

#

try_get

#

languages beyond the fence

calm tusk
#

why yellow

delicate wren
#

also missing a newline at the end

calm tusk
#

still no yellow.

delicate wren
calm tusk
#

Ok i found the issue!

#

I replaced everything from talk to chat in the .py

delicate wren
#

!cog

#

!cogs

#

hmm

#

ig we don't have that

calm tusk
#

def setup(bot):
bot.add_cog(ChatCommands(bot))

#

is in the command

#

I think this needs to be on the new command

delicate wren
calm tusk
#

whats a package.

#

Uh py.

#

discordpy

delicate wren
#

if you're using AI for help on dscord.py code, stop;
its suggestions are too outdated

#

.add_cog requires an await

calm tusk
#

I am, but its api based, I forgot to feed it the init file so it was hallucinating a bot.config file.

#

I learned what a function was last night πŸ˜„

#

Next is whatever a class

delicate wren
#

!tutorial

calm tusk
#

it was doing that because i didnt give the details.

delicate wren
#

ChatGPT 3 does not have discord.py 2 in its training data
ChatGPT 4 and Claude just don't know that it's the correct version

ornate cobalt
royal rivet
#

r

stuck bluff
#

@vital pumice πŸ‘‹

#

Wrong room. I meant the other one.

thin lintel
#

Naive Bayes

eager gazelle
#

hello

#

i havea question

brazen wadi
#

Hello All!

atomic hinge
#
import csv

map = {}

def read_chunk(map, path, cords = None):
    """Reads a chunk of a tile map from a CSV file.

    Args:
        map (dict): The map dictionary to store the chunk.
        path (str or tuple): The path to the CSV file or a tuple containing the base path and file extension.
        cords (tuple, optional): The coordinates of the chunk. Defaults to None.

    Returns:
        dict: The updated map dictionary.
    """
    if isinstance(path, str):
        file_path = path
    else:
        file_path = f"{path[0]}{cords[0]},{cords[1]}{path[1]}"
    with open(file_path, 'r') as csvfile:
        reader = csv.reader(csvfile)
        chunk = [row for row in reader]
    map[f"{cords[0]},{cords[1]}"] = chunk
    return map

def write_chunk(map, chunk, path, cords = None):
    """Writes a chunk of a tile map to a CSV file.

    Args:
        map (dict): The map dictionary.
        chunk (list): The chunk of tiles to write.
        path (str or tuple): The path to the CSV file or a tuple containing the base path and file extension.
        cords (tuple, optional): The coordinates of the chunk. Defaults to None.

    Returns:
        dict: The updated map dictionary.
    """
    if isinstance(path, str):
        file_path = path
    else:
        file_path = f"{path[0]}{cords[0]},{cords[1]}{path[1]}"
    with open(file_path, 'w', newline='') as csvfile:
        writer = csv.writer(csvfile)
        writer.writerows(chunk)
    map[f"{cords[0]},{cords[1]}"] = file_path
    return map

untold plank
#

@stuck bluff hello

#

how are you

#

lol

#

did you wanna join typeracer?

#

ok

stuck bluff
#

@harsh stream πŸ‘‹

#

@raw orbit πŸ‘‹

thin lintel
tame leaf
wary fable
past remnant
wary fable
#

updated image

fiery lintel
#

what can i do in this channel?

coarse temple
low cargo
#

???

stuck bluff
#

@oak pewter πŸ‘‹

oak pewter
#

hello

#

@stuck bluff

#

50 messages to earn to speak in vc? is some old irc coder setting up the rules?

#

holding breathe

#

I came here to talk to someone and learn python- attempt number 130th.

#

I have beeen in this server for a very long---- long time...

stuck bluff
#

!paste

coarse hearthBOT
#
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.

stuck bluff
#

!code

coarse hearthBOT
#
Formatting code on Discord

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.

For long code samples, you can use our pastebin.

oak pewter
#

ok, i calmed down. so no rage fixing the issue" you were talking about with the hugh traffic.
@stuck bluff

calm tusk
#

hi!

#

I like frogs

oak pewter
#

@calm tusk Hi

calm tusk
oak pewter
#

!

#

!code

coarse hearthBOT
#
Formatting code on Discord

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.

For long code samples, you can use our pastebin.

oak pewter
#

!

#

@calm tusk make a sub-engine for niche purpose for just detection of bais. More code, but making a useful bias packet for python package manger is maybe nice thing?

#

sub engines can help. and it separates the code to a single niche purpose.

#

and it separates the code to a single niche purpose. @stuck bluff

#

can you spare a binoic eyeball so I can see what you are talking about guys?

#

!dustin

#

!@oak pewter

#

@oak pewter maybe I should do some choas enggineering to "help " with "trolls"

#

@floral glade realllllyy????!!

#

do you know how to break code?

#

@floral glade choas engineering...

#

I told them the formula.... netflex was a nice flex in choas engineering.

#

its point that i told them was to intentionally to get wretcket and learn from it at scale.

#

! chaos monkey

#

@floral glade I want to use you as my HR and PR guy and as the driver to my car.... haha. and I want to use your voice in an app.

#

@floral glade sorry , i meant to tag @stuck bluff

#

But if I want a more southerner American voice, can I get your voice too? @floral glade

#

@stuck bluff yes, @stuck bluff I am talking to you and @floral glade.
can you be a voice actor @stuck bluff πŸ˜‰ for me?

#

looping problems... spin around....

oak pewter
#

how do I check my messages count?

#

you are breaaking up.

#

how-copy?

#

how do i do as you suggest?

#

@floral glade You're breathing hot in the mic....

oak pewter
#

@odd cliff please post your recommendation

sharp thunder
#

@proper ridge Are you interested in cryptography bro?

pine olive
#

ΠΏΠ°

hoary citrus
hoary citrus
#

@little goblet Msg here

little goblet
#

sorry

#

this is a threading function no?

#

and i guess it logs something like wasd key counter stifes

misty sinew
#

hi guys

misty sinew
#

how are u guys doing

#

today

quaint hinge
#

Hi

#

We doing good

#

How about you

livid quest
#

I have 40 messages

#

just 9 more you know

#

I think php sucks

#

I mean you are using

#

question marks

#

as plain syntax

#

and it look like you are can code backend and frontend to same file

#

thats not make any sense

#

just 4 more

#

messeges

#

1more

#

now I'm done

stuck bluff
#

@fast dirge πŸ‘‹

fast dirge
cunning gazelle
#

some interesting project ideas using programming which me and 2-3 people work and learn and upgrade our knowledge python is preferable language

#

@stuck bluff this is the prompt

stuck bluff
#

!pep8

coarse hearthBOT
#
PEP 8

PEP 8 is the official style guide for Python. It includes comprehensive guidelines for code formatting, variable naming, and making your code easy to read. Professional Python developers are usually required to follow the guidelines, and will often use code-linters like flake8 to verify that the code they're writing complies with the style guide.

More information:

tame leaf
#

Gay-ming

stuck bluff
#

@willow girder πŸ‘‹πŸ‘‹

willow girder
#

hello

patent crypt
#

Hellooo

thin lintel
thin lintel
thin lintel
cedar crest
thin lintel
#

yes

thin lintel
grizzled stratus
#

is open cv for like picture/video?

patent crypt
tame leaf
#
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline
chrome willow
proper ridge
#

@mild flume I added the compiler over the weekend, could I show it to you sir?

mild flume
#

Oooo yes

proper ridge
#

I can also wait if it's not feasible at the moment.

mild flume
#

Have to do my time sheets first

proper ridge
#

I'll be there whenever you can sir.

#

I shall await your arrival.

warm barn
#

10

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied timeout to @warm barn until <t:1726512369:f> (10 minutes) (reason: burst spam - sent 8 messages).

The <@&831776746206265384> have been alerted for review.

pale pivot
#

@mild flume

delicate wren
#

@pale pivot you commit rate was quite high too

#

of course not

#

tbf those commits were actually somewhat meaningful in a meme way

#

update license

#

you need to exponentially increase commit count so it outshines the previous mess

#

0th year is 1st year b.c. because calendar is written in Lua and Matlab

#

(1..).into_iter().last()

#

> I only use real PLs
fine I'll find a Haskell version

mild flume
#

@true coral How goes it

delicate wren
true coral
#

sou portugues

true coral
delicate wren
delicate wren
#

you know why Microsoft hired Guido van Rossum?
because Uuido van Rossum wasn't in their preferred terminology

mild flume
true coral
#

less?

#

I needed a program to create accounts on an automatic website

#

or a more or less macro to do an "autoclick" type

#

IF YOU CAN WRITE, I DON'T UNDERSTAND WHAT YOU'RE SAYING, JUST A TRANSLATOR

mild flume
pale pivot
#

no

#

Γ±o

true coral
mild flume
#

!rule 5

coarse hearthBOT
#

5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.

true coral
#

It's a program I have to do for a job

mild flume
#

Automatically creating accounts is your job?

#

For what site

true coral
#

epic games e rockstar game

mild flume
#

Yeah that's not happening

true coral
#

,

mild flume
#

Any other questions?

true coral
#

something for the good

delicate wren
#

if you want examples of bad interview practices we here probably know who to ask

mild flume
#

Crap, back later

misty sinew
#

You all are so quite!

#

@keen compass Hey?

keen compass
misty sinew
#

Oh

#

Could you share your github?

midnight dagger
#

Event management

manic robin
#

whoops

mild flume
#

My bad

#

Can you link the repo?

manic robin
#

yes on it now

mild flume
#

No no I didn't realize either

manic robin
manic robin
#

yes yes but the market place brings more leads than my paid ads lol

#

yes so like i see these car dealerships posting cars over and over

#

ahh solenium is bad?

#

its good for business but other than that i dont use it

#

ahh i see i have no idea of this stuff just trying to make it easier

#

theres sites that autopost they want $200 a month for their program

#

no i do the ads myself on fb

#

yes

#

and google and another

#

one sec fixing mic now

mild flume
#

Yeah their API docs are a bit spread out

#

!rule 5

coarse hearthBOT
#

5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.

mild flume
#

One sec, I have to change the voice server location

#

Something's weird

#

I have to change it in the voice channel settings

hexed fulcrum
#
# Start receiving the notifications
def receive():
    greenAPI.webhooks.startReceivingNotifications(handler)

receive()```
#
def handler(type_webhook: str, body: dict) -> None:
    # Get the message and contact Number from the body
    contact_number = body.get('senderData', {}).get('sender', '')
    # Check if the webhook is an incoming message
    if type_webhook == "incomingMessageReceived":
        raw_contact_number = contact_number.split("@")[0]

        # Check if the contact number is allowed [For Beta Testing]
        if raw_contact_number in BETA_PHONE or raw_contact_number == PHONE:
            # send body into the txt file
            try:
                # with open("msg.txt", "a") as file:
                #     print(json.dumps(body), file=file)
                try:
                    loop = asyncio.get_running_loop()
                except RuntimeError:
                    loop = asyncio.new_event_loop()
                    asyncio.set_event_loop(loop)
                
                coro = fetch_data(body)
                asyncio.run_coroutine_threadsafe(coro, loop)
            except Exception as e:
                print(e)
    else:
        return None```
proper ridge
#
a: dict[str, int] = {"a": 1, "b": 2}
tranquil thistle
#
def foo(x: 'x') -> 'y':
    pass

print(foo.__annotations__)
proper ridge
#

!e

def foo(a):
    return 1

def bar(a: int) -> int:
    return 1

print(foo.__annotations__)
print(bar.__annotations__)
coarse hearthBOT
mild flume
#

!e

a:int = 123
print(__annotations__)
coarse hearthBOT
tranquil thistle
#
def foo(x: 'x') -> 'y':
   return __annotations__```
elder wraith
#

Except in 1990s and 2000, they were adding new features

#

outside of that, most new languages are styling exercises that are useless

proper ridge
#

Hiya Rabbit.

elder wraith
#

JS

proper ridge
#

I'm gonna go sleep. It's getting close to 4 am, tomorrow's A.C.E can deal with the rest of the stuff.

#

Hell yeah

delicate wren
#

I wonder if Spectre Divide have fixed the crash yet

#

finally something that doesn't show emojis coloured so I can see my logs monochrome as they should be

serene tapir
#

hi @proper ridge i cannot talk in voice chat

proper ridge
serene tapir
#

ok then @proper ridge

#

uhhhh i need to talk about python

#

i think i need help with my homework, you don't need to work on my homework, just asking about how it works tho

#

and how to set up visual studio code using python

#

ok wait

#

lemme screenshot my homework

#

Is there something wrong with the python programming here?

#

@proper ridge

#

I'm tryna make a biodata out of this thing

#

class what i'm sorry can u type it here @proper ridge ?

#

python class?

#

no

#

i'm a beginner so

#

yes that's my assigment i just show

#

oh ok wait

#

ok wait lemme put the questionnare of the assignment here

#

Using python in Maya, create a short code that able to

Ask information from user of their personal detail such as Name, age, address, and other stuff (be creative)
Demonstrate that you can process that information using python operator (+, -, /, *, etc) such as finding the user birth year, slice and combine string, etc.
Be creative, you can ask silly stuff and combine the string to make a funny paragraph using print command in python.

#

Yes that's the question from the elearning

serene tapir
#

so basically my professor told me make a biodata out of a python programming language

#

in Maya instead

#

um but they expect me to give the output like producing a biodata out of a python

#

hi @gritty tiger

#

nice to meet you!

serene tapir
#

ok thanks

#

ok maybe that's all the question's already answered

#

oh yeah forgot the question

#

holy moly

serene tapir
#

cause i use ' ' and " "

#

@proper ridge

proper ridge
#

No, what I said was it's better to use string formatting.

#

Like so

#

!e

name = "March"
print(f"Hello there, {name}")
coarse hearthBOT
serene tapir
#

How does it look now? is the string correct @proper ridge @gritty tiger ?

#

No the strings

#

I changed it to " " in the line 13 and 14

#

and from line 2 to 8 i changed the strings from ' ' to " "

#

@proper ridge

#

the f thing?

#

so the strings i used are already correct?

#

in the screenshot

#

okay

#

but i'm afraid it's gonna be invalid syntax error

#

in Maya

#

oh okay

#

i'll run it

proper ridge
#
# This code is part of Qiskit.
#
# (C) Copyright IBM 2017.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
serene tapir
#

@proper ridge

#

there it is, there's an error

#

did i do something wrong with the code

patent crypt
#

company chat?

uneven geode
#

I m beginner in Python

#

any tips

#

??\

fair heron
#

!resources @uneven geode

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.

stuck bluff
#

@sly lintel πŸ‘‹

sly lintel
#

Hi there, I am not yet verified πŸ™‚ or something like that

autumn mirage
mental lintel
#

Good wbu guys

#

1

#

2

#

3

#

4

gilded epoch
misty sinew
#

Can

#

Some

#

One

#

Help me

#

Code

#

Something

tame leaf
uneven geode
#

thats newww

#

but why ??

tame leaf
#

Saw 2 shadow pings

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied timeout to @misty sinew until <t:1726834572:f> (9 minutes and 57 seconds) (reason: burst spam - sent 8 messages).

The <@&831776746206265384> have been alerted for review.

tame leaf
#

(not pybot, the user who got muted)

tame leaf
#

he got johned 😭

warm cipher
#

xD

delicate wren
gilded urchin
#

I have a project that you might be interested in collaborating on (i.e. the python project I've been semi-showcasing)

#

but you seem to have your hands full atm

livid quest
#

my projects are mainly on react native

delicate wren
#

probably the only contributions I may ever accept to a project, to which I'm a sole maintainer, are just those which use an existing more popular solution to replace what I wrote or to implement features

#

i.e. no large amounts of new code

#

I check formatting in CI as much as I can

#

including checking formatting of the .yaml of the CI job itself

#

if someone forks and writes a big feature, then I just know I'll end up rewriting it myself using their code as reference, I won't take it as is

#

pragmatic snobbism

#

S3
"why are you not using manta?
you should be using manta;
with manta you could've been able to just run code against the data on the same machine as the data;
use manta"

#

(manta is dead)

gilded urchin
#

what type ?

#

IDK what you mean. If you work as a Carpenter, how many hours does this type of work typically require

#

I mean, it depends - trim work is easy, putting in stairs is harder, farming an entire house takes more time

delicate wren
#

a day:
13 hours of work-work
13 hours of self-training work
-2 hours of learning arithmetic

wary fable
#

does this include people showing up at your desk interrupting your concentration to ask inane question?

delicate wren
#

I'm fairly certain I can (and maybe do) average >=39 hours of work-work a week

wary fable
#

25 hours per day then

#

I've had the joys of having to do an emergency fix for a sev2 during christmas dinner

delicate wren
#

if you click "start tracking time" on enough buttons at the same time, the "time" will go quite fast

wary fable
#

I was, now I am a professional job application submitter

#

Because I got laid off from Fidelity Investments in March because "we want to cut costs"

#

None

#

At this point I'm willing to start pushing grocery carts if it means I can make rent

#

I would hope for >$100k/yr, but at this point I just want to make rent next month

#

I was being underpaid, the industry average for SRE is $130k/yr

#

So I'm already asking for far less than the norm.

#

Of course, if my rent didn't go up every year, I'd be wiling to settle for $80k/yr, but then at my current rent I'll be living on cup noodles for every meal.

#

I'm currently paying $2.3k/month for a single bedroom.

#

The price I pay for not needing a car.

#

If I go for a cheaper location, it'll actually be more expensive in the long run because I'll then be completely dependent on my car just for getting across the street.

#

I am currently trying to save for a down payment on a condo in Lowell MA so I can get rid of my car completely, since the transit there was designed for more than "okay we got a bus now stop complaining about the lack of transit options".

#

At this point I'm focusing entirely on certifications and open-source contributions in Python and Go, so I can get experience without needing to already be employed.

#

Trying to figure out if I can selfhost datadog, or if I should just demonstrate my observability chops with Prometheus and Grafana.

#

I'm working on six right now, one of them will probably be done this weekend.

#

Automating docker build for freeCodeCamp

#

Currently none.

#

Which is why I am going to be moving my coffee maker to my desk for the weekend.

gilded urchin
#

@Clari - I am a senior acoustics analyst, I make ~$130k (CAD), 11 years experience in a fairly niche field of expertise

#

I work 37.5 hours per week

wary fable
#

I already know I won't do well, my sre knowledge is nowhere near as good as my devops knowledge, mostly because my former employer decided that the two roles are actually the same role, and also the main documentation person too

#

So I'm also pivoting more towards devops engineer in the short term.

#

Of course my long term goal remains unchanged: go back into earth sciences

#

as an academic

#

I'll take you up on the offer later on, I do not feel ready to even attempt a mock interview for SRE.

#

I will have to decline at this point in time.

#

@strong fern please refrain from sending me unsolicited DMs

strong fern
#

understood i am sorry for the unsolicited dm

#

Learning Python is freecodecamp the best resource?

#

it is all ive been seeing lately

delicate wren
#

I haven't heard much bad stuff about freecodecamp so should be fine I guess

#

I only encounter it accidentally and instantly forget

strong fern
#

thank you i look forward to learning im currently invested in the tail end of HTML CSS and JS so python is the next logical language

#

yes it is im getting my cs degree and becoming a fullstack developer is the long term play

#

im learning as much as i can atm. once im done with python its on to rust

#

html structure of websites

#

obv its the easiest to learn lol

#

im kind of in the beggining of my journey i started a couple of months ago

#

@misty sinew are you using python to manipulate web pages?

#

ok thank you. Thats pretty coo.l thats why i want to get into python to create scripts for my sales crm where certain actions are automatically completed and i can save time by automating my daily meticulous tasks

mental lintel
#

Is anyone familiar with deployment on the cloud like AWS, heroku ?

urban rose
#

end of file πŸ₯Ί

minor otter
minor otter
#

although I myself have limited knowledge abt it

#

but i think it's pretty good

#

WARNING : i've heard that you need to config it properly and carefully if you don't do so you can get charged whole lotta money

umbral rose
#

--version

strong fern
#

very hard to trust programmers a lot of malicious people in the internet for sure

hoary citrus
#

That's what I wanted

hoary citrus
#

The api file was not saved. it is saved now. Now run

#

@velvet musk save it first

#

yes

#

try deleting the terminal and then run it again

#

I think I file didn't run

#

@velvet musk

hoary citrus
minor otter
#

.

#

@stuck bluff so sup long time no see

stuck bluff
#

@copper garden @warped thunder πŸ‘‹

warped thunder
#

Hi

warped thunder
stuck bluff
#

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

warped thunder
#

Years, haven't talked much

#

Average arch user lol

#

Arch describes it better

#

They are toxic

#

Also its really unstable

#

You are a glorified beta tester for all apps. You have to read manuals and changes before you update every time

#

I use NixOS btw (:

tame leaf
warped thunder
# tame leaf

I heard that they intentionally make dumb messages so only people who are stupid enough to fall for it. That acts like a filter ig.

tame leaf
warped thunder
#

Lol

#

Isn't God omnipresent?

#

He's like the Internet provider

#

Edge is almost impossible to delete

#

And after you delete it, it comes back in another update

#

You need to get some 3rd party software to prevent windows from reinstalling their spywares and bloats

#

Using the terminal = Hacker

tame leaf
warped thunder
#

Singapore

#

Everyone pirates. But less prevalent than other places

#

SingaRich lol

tame leaf
warped thunder
deep niche
warped thunder
#

Spy

deep niche
#

Nah im good with my ||fake|| mac

warped thunder
#

Imagine gathering all these data for decades and still can't make cortana good

warped thunder
#

You can't be a billionaire without having some skeletons in your closet

#

Gates went to the island πŸ’€ @tame leaf

deep niche
warped thunder
#

Hawking went for funding tho!

warped thunder
#

Neuroscientist: Truth About Jeffrey Epstein | Andrew Huberman #joerogan #hubermanlab #shorts #neuroscience #lifestyle #science #brain #mindset #motivation #jre #jeffreyepstein #epstein #theory #conspiracy

Andrew Huberman On Joe Rogan Experience Podcast Clip:
https://youtu.be/FRZ9EK1e2R0

Andrew D. Huberman (born September 26, 1975 in Palo Alto,...

β–Ά Play video
#

No its what Hoberman said

#

He said it more eloquently than I ever could

deep niche
#

the neurologist ?

warped thunder
deep niche
#

he's prolly there for hawkins addiction.

warped thunder
deep niche
#

hawkins & stephens on the island together ? what were they doing ?

warped thunder
stuck bluff
#

@dense temple πŸ‘‹

warped thunder
#

Ham and lock joined together and killed Socrates @tame leaf

#

Imma go, cya later πŸ™‚

dense temple
pseudo pond
uneven geode
#

HI SUPPPP GUYZZ

#

Do any one need any help

#

with

#

ui

#

stuff

#

if yess

#

i m there

#

elif

#

np

versed prawn
#

hi

oak pewter
storm dove
#

Hello Who is interested in Pydroid 3? Can you help me

#

English= When I enter the file, the logs are not downloaded. Can you help me?

Turkish= Logları girdiğim zaman log gelmiyo hata veriyo yardımcı olurmusunuz

misty sinew
misty sinew
jovial marsh
#

Aaaaaah! Statistics!!!!

#

normal distributions T-T

#

I'm so bad at this T-T

vapid river
#

Anyone working on AI ?

#

Nice what type of models? πŸ™‚

oak pewter
spark kestrel
#

why the fuck i am not getting veryfiy even i am in server like 3 months
any1 tell me

tranquil thistle
languid solstice
stuck bluff
#

@naive summitπŸ‘‹

naive summit
stuck bluff
#

@misty sinewπŸ‘‹

misty sinew
spark kestrel
#

a Linux distribution designed for digital forensics and penetration testing

stuck bluff
#

Nevermind.

rotund shadow
#

How to talk ?

#

Opal i remember you

stuck bluff
#

@quick otter πŸ‘‹

#

@wide cargo πŸ‘‹

wide cargo
#

yes

#

guys how can i start my open source contribution journey?

stuck bluff
#

People are...focused...on their conversation at the moment. You could try asking in one of the ot channels.

#

!ot

coarse hearthBOT
wide cargo
#

guys where are the links you are talking about?

oak pewter
wide cargo
#

Opalmist can u tell them if they can helpp me

#

:(

stuck bluff
wide cargo
wide cargo
stuck bluff
wide cargo
#

@oak pewter how can i start my open source contribution journey?

oak pewter
wide cargo
#

blogs and all?

#

your were talking about reading thats what

stuck bluff
#

@ember light πŸ‘‹

#

Waiting.

ember light
#

Hello

stuck bluff
#

Hi hi. πŸ™‚

#

@oak pewterYou have a fair amount of audio bleed.

#

@burnt magnetπŸ‘‹

#

Sure, give me a sec.

oak pewter
fair heart
#

is that a reighley @raven orbit ?

raven orbit
#

it's a gazelle

#

dutch raleigh clone @fair heart

#

with a sturmey archer ab hub

#

which is a sturmey archer aw with a hub brake

#

the hub brake had stopped working well since I overfilled the hub last time

#

and this is why

delicate wren
#

amazing

#

oh only a single game

proper ridge
#

It rotates?

#

Imagine if it bumped around like that screen saver logo.

fair heart
#

I think this is pretty familiar for most of us.
To everyone who watches this: please check out this youtube creator called nartharie . He has created some of the must absurd and funniest videos I've ever seen, but he's still at 280 subs at the time of writing. So please discover this before all your friends or acquaintances or whatever do and be...

β–Ά Play video
delicate wren
proper ridge
raven orbit
tranquil thistle
#

Provided to YouTube by Volcano

Hardware Store Β· "Weird Al" Yankovic

Poodle Hat

β„— 2003 Volcano Entertainment III, L.L.C.

Released on: 2003-05-20

Composer, Lyricist: Al Yankovic
Drums: Jon "Bermuda" Schwartz
Guitar: Jim West
Bass Guitar: Steve Jay
Background Vocal: Lisa Popeil
Engineer, Mixing Engineer: Tony Papa
Engineer: Rafael Serrano

...

β–Ά Play video
#

it a good song

misty sinew
#

@thin lintel What source you used to learn database / SQL ?

quaint dome
misty sinew
#

Ah my bad

#

Is milien offline?

thin lintel
#

from lectures

stuck bluff
#

@fading patio Your audio was bleeding and we can't understand a single word if you're talking. πŸ™‚

fading patio
#

so sorry πŸ˜„

raven orbit
fading patio
#

I actually joined the call by mistake. I'm at PyCon Africa 2024πŸ™‚

mild flume
#

Niiiiice

raven orbit
fading patio
#

family pic from yesterday. We're having fun here ☺️

mild flume
#

Oh dude, that looks like a blast!

#

I love the logo

elfin breach
umbral rose
#

!stream 636950962245730324

coarse hearthBOT
#

βœ… @elfin breach can now stream until <t:1727446303:f>.

elfin breach
ocean mist
#

@umbral rose And How much duration taken for python course?

#

and took only 1.5 months to build project???yert

deep niche
#

I'm looking for a reliable Linux distribution. I've had issues with Ubuntu after removing snaps, and Fedora's package manager (dnf) feels slow for me. I'm drawn to Debian's stability, but I'd like something that offers a wider selection of packages, even if they're not always the newest versions. For example, Node.js on Debian is a bit outdated, Any Suggestions ? @umbral rose

elder wraith
#

Learn docker

hearty heath
#

πŸ‘‹

ocean mist
oak pewter
#

bambi?

umbral rose
#

!stream 238998574325694465

coarse hearthBOT
#

βœ… @mint widget can now stream until <t:1727450687:f>.

oak pewter
#

bambi -voice cloning @quasi widget Is this what you mean?

quasi widget
oak pewter
quasi widget
#

yee

mint widget
umbral rose
hearty heath
#

@oak pewter you sound a bit muffled

oak pewter
#

:/ @hearty heath

stuck bluff
#

@turbid rockπŸ‘‹

turbid rock
stuck bluff
#

@fading knotπŸ‘‹

stuck bluff
#

@winged citrusπŸ‘‹

winged citrus
#

ok

stuck bluff
#

@hybrid spindleπŸ‘‹

hybrid spindle
#

hello

#

i cannot talk cause im new here

#

and im trying to understand python

#

i wanna try advanced learning cause my school is not teaching python yet

#

okay thanks

#

im just trying to remember the different commands

stuck bluff
#

!e ```py
class BubbleGrouper:
def init(self, k):
self.data = [{i} for i in range(k)]

def entangle(self, a, b):
    union = self.data[a] | self.data[b]
    for index in union:
        self.data[index] = union

grouper = BubbleGrouper(4)
print(grouper.data)
grouper.entangle(0, 1)
print(grouper.data)
grouper.entangle(2, 3)
print(grouper.data)
grouper.entangle(1, 2)
print(grouper.data)```

coarse hearthBOT
proper ridge
#

I'm gonna restart my laptop, see if wsl gets fixed that way.

hybrid spindle
#

opal

#

can you teach me the basics

#

if i does not bother you

#

it*

deep niche
#

@stuck bluff LXQT or Cinammon >> Mate.

hybrid spindle
#

yep

#

yeah

#

yeah a tiny bit

stuck bluff
#

!e py print('Hello, world.')

coarse hearthBOT
stuck bluff
#

!e py text = 'Hello, world.' print(text)

coarse hearthBOT
grizzled niche
#

!e

text = "hello "
text2 = ", world."
print(text+text2)
coarse hearthBOT
hybrid spindle
#

ohhhhh

#

okay

grizzled niche
#

!e

text = "hi"
num = 1
print(text + num)
coarse hearthBOT
proper ridge
#

!e

name = "A.C.E"
b = f"Hello {name}!"
print(b)
coarse hearthBOT
proper ridge
#

!e

a = 2
b = "This"
c = b + str(a)
print(c)
coarse hearthBOT
grizzled niche
#

!e

num = 1
text = "number is"
num_str = str(num)  # Converts the integer to a string
combined_text = text + " " + num_str 

print(combined_text) 
coarse hearthBOT
proper ridge
#

!e

class Foo:
  def __str__(self) -> str:
      raise ValueError("String not possible, mate!")

foo = Foo
b = f"Hello, {foo}"
print(b)
coarse hearthBOT
proper ridge
#

!e

class Foo:
  def __str__(self) -> str:
      raise ValueError("String not possible, mate!")

foo = Foo
b = "Hello, " + str(foo)
print(b)
coarse hearthBOT
proper ridge
#

Hmmm.

#

I'm stupid.

#

!e

class Foo:
  def __str__(self) -> str:
      raise ValueError("String not possible, mate!")

foo = Foo()
b = f"Hello, {foo}"
print(b)
coarse hearthBOT
stuck bluff
#

!epy 'abc' + 123

coarse hearthBOT
# stuck bluff !e```py 'abc' + 123```

:x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     'abc' + 123
004 |     ~~~~~~^~~~~
005 | TypeError: can only concatenate str (not "int") to str
stuck bluff
#

!e py print('abc' + 'def')

coarse hearthBOT
stuck bluff
#

!e py print('abcdef')

coarse hearthBOT
hybrid spindle
#

yep

lucid token
#

Hi everyone

stuck bluff
#

!e ```py
def func():
print('Hello, world.')

func()
func()
func()```

coarse hearthBOT
grizzled niche
#

!e

score = 85

if score >= 90:
    print("Grade: A")
elif score >= 80:
    print("Grade: B")
elif score >= 70:
    print("Grade: C")
else:
    print("Grade: F")
coarse hearthBOT
hybrid spindle
#

wat

#

yeah

stuck bluff
#

!e ```py
def func(parameter):
print(parameter)

func('argument')```

coarse hearthBOT
hybrid spindle
#

confused a tiny bit

stuck bluff
#

!e ```py
def func(parameter):
print(parameter)

func('argument')
func('abc')
func(123)```

coarse hearthBOT
hybrid spindle
#

ahhh'

#

okay

stuck bluff
#

!e ```py
def func(a, b):
print(a + b)

func(1, 1)
func(5, 2)```

coarse hearthBOT
hybrid spindle
#

oh okay i get it

stuck bluff
#

!e ```py
def func():
return 'Hello, world.'

print(func())

is like

print('Hello, world.')```

coarse hearthBOT
untold fern
hybrid spindle
#

what is return?

stuck bluff
#

!print-return

coarse hearthBOT
#
Print and return

Here's a handy animation demonstrating how print and return differ in behavior.

See also: /tag return

grizzled niche
coarse hearthBOT
stuck bluff
#

!zen

coarse hearthBOT
#
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

hybrid spindle
#

ahhh

#

a bit confusing but i get it a little bit

#

okay i got it

stuck bluff
#

!e ```py
print('Hello.')

if True:
print('abc')

print('Goodbye.')```

coarse hearthBOT
untold fern
#

sleep meds kicked in 😭

stuck bluff
#

!e ```py
print('Hello.')

if False:
print('abc')

print('Goodbye.')```

coarse hearthBOT
grizzled niche
#

!e

score = 90 

if score >= 90:
    print("Grade: A")
    if score >= 80:
        print("Grade: B")
        if score >= 70:
            print("Grade: C")
            if score >= 60:
                print("Grade: D")
                if score < 60:
                    print("Grade: F")
                else:
                    print("No")
# you will get multiple scores 
coarse hearthBOT
hybrid spindle
#

yeah yeah i get it

stuck bluff
#

!e py print(5 > 2)

coarse hearthBOT
stuck bluff
#

!e py print(5 < 2)

coarse hearthBOT
stuck bluff
#

!e py print(5 == 5) print(5 == 6)

coarse hearthBOT
grizzled niche
#

!e

print(6 > 6)
coarse hearthBOT
hybrid spindle
#

!e

stuck bluff
#

!e py print(5 != 6) print(5 != 5)

coarse hearthBOT
#
Missing required argument

code

coarse hearthBOT
stuck bluff
#

!e py if 5 > 5: print('Hello.') print('Goodbye.')

coarse hearthBOT
hybrid spindle
#

print(7 < 8)

if True:
print('you are right')

if False:
print('you are wrong')

print('Goodbye.')

#

i made this

grizzled niche
#

to run code type !e and the backtick ` three times follwed ctrl ener your code three backtick then enter

hybrid spindle
#

print(7 < 8)

if True:
print('you are right')

if False:
print('you are wrong')

if True:
print('Good job.')

if False:
Print('Try again')

#

there

#

demn

#

i can't get it right

#

yeah

#

mb

tranquil thistle
#

!e ```
print(10)
```

#

like that

#

should result in this

#

!e ```
print(10)

coarse hearthBOT
stuck bluff
#
if condition:
    'Do this.'
elif some_other_condition:
    'Do this'
else:
    'Do this.'```
At this indentation, each if is made of:
Exactly one if
Zero or more elif
Zero or one else
In that order.
Deindending with other code or another if terminates the first if group.
#

!e py if 5 > 6: print('A') else: print('B')

coarse hearthBOT
hybrid spindle
#

okay got it

stuck bluff
#

!e py if 6 > 5: print('A') else: print('B')

coarse hearthBOT
stuck bluff
#

!e py for letter in 'abc': print(letter)

coarse hearthBOT
stuck bluff
#

!e py letter = 'a' print(letter) letter = 'b' print(letter) letter = 'c' print(letter)

coarse hearthBOT
stuck bluff
#

!e py for i in range(5): print(i)

coarse hearthBOT
stuck bluff
#

!e py for fruit in ['apple', 'pear', 'orange']: print(fruit)

coarse hearthBOT
hybrid spindle
#

just a bit

#

i watched this in a yt vid

#

and im still trying to comprehend it

stuck bluff
#

!e py for _ in range(3): print('Hello, world.')

coarse hearthBOT
hybrid spindle
#

yeah

stuck bluff
#

!e py my_list = [] my_list.append('apple') print(my_list) my_list.append('pear') print(my_list)

coarse hearthBOT
hybrid spindle
#

yeah

#

can you show it?

stuck bluff
#

!e py my_list = ['apple', 'pear', 'orange', 'pear'] my_list.remove('pear') print(my_list)

coarse hearthBOT
hybrid spindle
#

ohh

#

okay okay

#

that's awsome

#

this kinda gets overwhelming if you are new

stuck bluff
#

!e py print('abc'[0]) print('abc'[1]) print('abc'[2]) print('abc'[-1]) print('abc'[-2]) print('abc'[-3])

coarse hearthBOT
hybrid spindle
#

yeah i get this

#

oh

#

okay i get it

#

opal can i add you?

stuck bluff
#

!e py my_list = ['apple', 'pear', 'orange'] print(my_list[0]) print(my_list[2])

coarse hearthBOT
tranquil thistle
#

!e ```py

our list of seasons, starting in winter

seasons = ['winter', 'spring', 'summer', 'fall']

winter is 0 seasons after the start of the year

print(seasons[0])

spring is 1 season after winter

print(seasons[1])

summer is 2 seasons after winter

print(seasons[2])

but also summer is 2 seasons behind winter

print(seasons[-2])

hybrid spindle
#

i get it

coarse hearthBOT
tranquil thistle
#

!e ```py

our list of seasons, starting in winter

seasons = ['winter', 'spring', 'summer', 'fall']

print(seasons[4])

coarse hearthBOT
tranquil thistle
#

!e py my_thing = [1, 2, 3] print(type(my_thing))

coarse hearthBOT
stuck bluff
#

@ember light πŸ‘‹

#

!e py my_list = ['apple', 'pear', 'orange'] popped = my_list.pop(1) print(my_list) print(popped)

coarse hearthBOT
tranquil thistle
#

he popping off

hybrid spindle
#

no

#

yeah

#

yeah

#

ohhhhhhh

#

i get it now thanks

stuck bluff
#

!e py my_list = ['apple', 'pear', 'orange'] del my_list[1] print(my_list)

coarse hearthBOT
stuck bluff
#

!e py a = [] b = [] c = a print(a == b) print(a is b) print(a is c)

coarse hearthBOT
hybrid spindle
#

yep

#

okay i get it

#

i like this so much

#

im having fun

#

yeah yeah

#

so like a name tag

tranquil thistle
hybrid spindle
#

okay i get it

#

this is getting confusing

#

nah its fine 49

#

im sorry

stuck bluff
#

!e py my_list = ['apple', 'pear', 'orange'] result = len(my_list) print(result)

coarse hearthBOT
hybrid spindle
#

yep

#

that is easy

#

oh

stuck bluff
#

!e py my_list = [1, 2, 3] if len(my_list) > 0: print('It has stuff in it.') else: print('It does not have stuff in it.')

coarse hearthBOT
stuck bluff
#

!e py my_list = [] if len(my_list) > 0: print('It has stuff in it.') else: print('It does not have stuff in it.')

coarse hearthBOT
hybrid spindle
#

yep i get it

stuck bluff
#

!e py my_list = [1, 2, 3] if my_list: print('It has stuff in it.') else: print('It does not have stuff in it.')

coarse hearthBOT
hybrid spindle
#

ohhh okay

stuck bluff
#

!e py my_list = [] if my_list: print('It has stuff in it.') else: print('It does not have stuff in it.')

coarse hearthBOT
hybrid spindle
#

that is convinient

stuck bluff
#

!e py if 0: print('A') if -1: print('B') if 1: print('C')

coarse hearthBOT
hybrid spindle
#

okay

#

so is 0 just false?

#

okay okay

stuck bluff
#

!e py print(bool(0)) print(bool(1)) print(bool('abc')) print(bool(''))

coarse hearthBOT
hybrid spindle
#

ok ill remember that

#

okay

stuck bluff
#

!e py my_list = ['apples', 'pears', 'oranges'] while my_list: print(my_list.pop()) print('Bye!')

coarse hearthBOT
hybrid spindle
#

oh

#

i get it

#

okay maybe a bit confusing

stuck bluff
#

!e py print(True and True) print(True and False) print(False and False)

coarse hearthBOT
hybrid spindle
#

ohhh that's how it is

stuck bluff
#

!e py print(True or True) print(True or False) print(False or False)

coarse hearthBOT
hybrid spindle
#

it was fun

#

thank you for teaching me

#

yeah can i add you if i want to ask a question

#

oh okay ill just see you then

#

okay thanks opal

stuck bluff
#

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

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied timeout to @languid solstice until <t:1727528171:f> (9 minutes and 58 seconds) (reason: burst spam - sent 8 messages).

The <@&831776746206265384> have been alerted for review.

waxen oracle
#

kd

stuck bluff
#

@trail ruin πŸ‘‹

#

@tough crystal πŸ‘‹

trail ruin
#

heloo

tough crystal
#

hi

#

could u guys help me w a python assingment

stuck bluff
#

@willow girder πŸ‘‹

willow girder
#

hello how are you doing

tough crystal
# stuck bluff Potentially.

what im having trouble on is that I have to use if statements to make a blackjack game that counts the value of a hand. And right now im having a trouble here

#

card1 = input()
card2 = input()
score = card1[0] + card2[0]

if (int(card1[0]) + int(card2[0])) == 21 :
print('Blackjack!')

#

in the if part

willow girder
#

@thin lintel what is difference between data science and data engineer

tough crystal
#

bc int(card[0]) is basically doing int(A)

#

A is assigned the value of 11

stuck bluff
#

I'd be happy to go through this with you, but it's late for me.

willow girder
#

I mean in their skills

stuck bluff
tough crystal
#

okay thank you sm πŸ™

thin lintel
tame leaf
rotund bough
willow girder
#

so data engineers will work the infrastructure

#

Are they have a common skills if it is which are ??

surreal moss
#

I have a question

#

Can somebody help me?

mental valley
#

Me too

ocean mist
#

Hello

#

Nothing much

hoary citrus
#

@cedar crest Hello!

ocean mist
#

@cedar crest Cool Man! Works!!

cedar crest
#

@umbral rose Hi, could you please grant @pine condor access for streaming access?

pine condor
thin lintel
#

git add .
git commit -m "text here"
git push

delicate wren
#

atlassian docs >>> atlassian software

#

they even have a quite good thing about git subtrees

delicate wren
#

VSCode built-in thing is quite good

#

for more conveniently staging specific files and specific lines

crisp crescent
delicate wren
#

GitHub Desktop is around the same in terms of functionality

#

there is no right answer between bundled and external

#

I think I might be having issues on Windows because I chose bundled

#

@thin lintel that's GPG

#

SSH is time-unlimited

cedar crest
#

pgp