#voice-chat-text-0

1 messages Β· Page 484 of 1

exotic loom
#

Python, AI, ML, DevOps, MLOps, DSA

sharp pasture
#

not sure either but yeah his vids are raising funds or something

real pumice
#

@somber heath thanks man

#

never really had someone give advice like this to me

#

yeah man you are right

exotic loom
#

@somber heath I can't connect to the voice chat due to some technical issue

real pumice
#

i just have a lack of

#

places to find information

#

the python documentation

somber heath
#

!resources

wise cargoBOT
#
Resources

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

real pumice
#

you speak very

sharp pasture
#

hello @somber heath

real pumice
#

royalty

#

i dont know how to say it

#

good voice bro

#

perhaps

#

?

#

no bro

#

100 percent

somber heath
#

@lament girder πŸ‘‹

sharp pasture
lament girder
#

is this private?

real pumice
#

i can leave if you want

lament girder
#

no i don't want you to leave

real pumice
#

opal

#

do you have any tips when it comes to tkinter

#

i think i am doing that

exotic loom
#

GUYS I CAN'T CONNECT TO THE VOICE CHAT

real pumice
#

i have it written in a class

somber heath
sharp pasture
real pumice
wise cargoBOT
# real pumice

Please react with βœ… to upload your file(s) to our paste bin, which is more accessible for some users.

exotic loom
real pumice
#

whoops

#

wrong code

#

1 sec habibi

exotic loom
cloud flare
somber heath
#

!code

wise cargoBOT
#
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.

real pumice
#

here

sharp pasture
#

opal how long have you been learning python

real pumice
#

what is a pastebin

#

yes

upper basin
wise cargoBOT
#
Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

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

upper basin
#

Just click on the url.

#

It'll open a website.

#

Then copy your code, and paste it there.

#

Then click on Paste button.

#

No not here.

real pumice
#

o

#

sorry bro

upper basin
#

Click on the url.

#

Click on this.

real pumice
#

then what

#

it just comes up with colorful code

#

bro im lost

#

😭

#

what is backtick

upper basin
#

Look at my screen.

#

Boris, are you looking?

real pumice
#

yes

upper basin
#

`

#

Copy this.

real pumice
#

yes king

#

class TextEncrypter():
    def __init__(self):
        self.root = tk.Tk()
        self.root.title("Password Manager")
        self.root.geometry("300x300")
        self.ShowAddCounter = True

        self.Addbutton = tk.Button(self.root, text="Create file", command=self.ClickToAdd, padx=30, pady=20)
        self.Addbutton.pack(pady=20)

        self.root.mainloop()

    def ClickToAdd(self):
        if self.ShowAddCounter:
            # Text content input
            self.textbox = tk.Text(self.root, height=5, width=30)
            self.textbox.pack(pady=10)

            # Ask for filename
            self.label = tk.Label(self.root, text="Enter filename (without .txt):")
            self.label.pack()
            self.filename_entry = tk.Entry(self.root)
            self.filename_entry.pack(pady=5)

            # Save button
            self.SaveButton = tk.Button(self.root, text="Save", command=self.save_file)
            self.SaveButton.pack(pady=10)

            self.ShowAddCounter = False

    def save_file(self):
        content = self.textbox.get("1.0", tk.END).strip()
        filename = self.filename_entry.get().strip()

        if content and filename:
            with open(f"{filename}.txt", "w") as f:
                f.write(content)
            print(f"Saved to {filename}.txt")
    def view(self):
        pass

app = TextEncrypter()   ```
#

AHA

upper basin
#

There ya go.

#

Now just put a py.

sharp pasture
#

have a great day guys i’ve got to go

real pumice
#

class TextEncrypter():
    def __init__(self):
        self.root = tk.Tk()
        self.root.title("Password Manager")
        self.root.geometry("300x300")
        self.ShowAddCounter = True

        self.Addbutton = tk.Button(self.root, text="Create file", command=self.ClickToAdd, padx=30, pady=20)
        self.Addbutton.pack(pady=20)

        self.root.mainloop()

    def ClickToAdd(self):
        if self.ShowAddCounter:
            # Text content input
            self.textbox = tk.Text(self.root, height=5, width=30)
            self.textbox.pack(pady=10)

            # Ask for filename
            self.label = tk.Label(self.root, text="Enter filename (without .txt):")
            self.label.pack()
            self.filename_entry = tk.Entry(self.root)
            self.filename_entry.pack(pady=5)

            # Save button
            self.SaveButton = tk.Button(self.root, text="Save", command=self.save_file)
            self.SaveButton.pack(pady=10)

            self.ShowAddCounter = False

    def save_file(self):
        content = self.textbox.get("1.0", tk.END).strip()
        filename = self.filename_entry.get().strip()

        if content and filename:
            with open(f"{filename}.txt", "w") as f:
                f.write(content)
            print(f"Saved to {filename}.txt")
    def view(self):
        pass

app = TextEncrypter() ```
#

i swear to god i will end humanity

upper basin
#

No, py, then new line.

#

It's okay.

#

!code

wise cargoBOT
#
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.

real pumice
#
import tkinter as tk

class TextEncrypter():
    def __init__(self):
        self.root = tk.Tk()
        self.root.title("Password Manager")
        self.root.geometry("300x300")
        self.ShowAddCounter = True

        self.Addbutton = tk.Button(self.root, text="Create file", command=self.ClickToAdd, padx=30, pady=20)
        self.Addbutton.pack(pady=20)

        self.root.mainloop()

    def ClickToAdd(self):
        if self.ShowAddCounter:
            # Text content input
            self.textbox = tk.Text(self.root, height=5, width=30)
            self.textbox.pack(pady=10)

            # Ask for filename
            self.label = tk.Label(self.root, text="Enter filename (without .txt):")
            self.label.pack()
            self.filename_entry = tk.Entry(self.root)
            self.filename_entry.pack(pady=5)

            # Save button
            self.SaveButton = tk.Button(self.root, text="Save", command=self.save_file)
            self.SaveButton.pack(pady=10)

            self.ShowAddCounter = False

    def save_file(self):
        content = self.textbox.get("1.0", tk.END).strip()
        filename = self.filename_entry.get().strip()

        if content and filename:
            with open(f"{filename}.txt", "w") as f:
                f.write(content)
            print(f"Saved to {filename}.txt")
    def view(self):
        pass

app = TextEncrypter()```
#

i think i did it right

#

LETS GOOOOOOOOOOOOOOOOOOOOOOOO

#

thanks both of you

#

for being patient with me

#

we hear you

#

thanks ace

#

and

#

opal

lament girder
#

"""

real pumice
#

yes

#

i dont know what i was doing

#

what is that

somber heath
#

!pep8

wise cargoBOT
#
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:

real pumice
#

aha

#

so camelcase

#

orsmth like that

real pumice
#

yeah i tried it

#

it works,

#

but i want feedback on how to become better

#

you feel me

#

?

#

what would you rate

#

it

#

0 to 10

#

opal

#

oh

#

you believe in words , right?

exotic loom
#

I can rate it like 7 based on my knowledge of tkinter

real pumice
#

7 is generous

#

thank you bro

#

πŸ‘

#

based on this

#

do you guys have any

#

ideas

#

for a new project

#

you are swiss?

somber heath
real pumice
#

:vegemite:

somber heath
#

I don't often have it.

real pumice
somber heath
#

I will very infrequently just shove a spoonful in my mouth.

#

I know what I'm getting myself into.

somber heath
#

Most people use way too much.

real pumice
#

what am i supposed to respond

#

TO THAT

real pumice
#

is unacceptable

somber heath
#

Stunned silence is an acceptable response.

#

But don't let that limit your choices.

real pumice
#

change your standards bro 😒

#

not acceptable.

#

!!!!

#

hawai?

#

bro is not upper middle class

somber heath
#

I also enjoy pineapple on pizza, provided it is a compatible flavour per pizza topping.

real pumice
#

dont deny the allegations

real pumice
#

i swear to god

#

dont

#

PUT THAT

#

ON THE PIZZA

split barn
#

ALL I KNOW IS HOW TO CODE IN JAVA , still joined this server idk why

real pumice
#

and your enemies closer

#

πŸͺ–

split barn
#

naah ill learn python this year

#

school syllabus u know

real pumice
#

you are not allowed.

#

i will restrict that

#

by force.

split barn
#

like i learned java in class 9th and 10th now i changed school so i have to learn now python

#

ICSE to CBSE

real pumice
#

dawg this guy was not upper middle class

#

upper class as hell

split barn
real pumice
#

water beds

#

in hawaii

#

πŸ’€

#

this is not relatable behavior bro

#

baywatch

#

bro the rock is playing in it

split barn
#

buy the way i have question like i made a discord bot connected with gemini so like i want to make something like when user joins VC ans shares screen gemini can asist user and talk to him and see the screen , LIKE GEMINI LIVE

real pumice
#

i gtg

#

see you later

#

ladies

peak depot
#

@exotic loom please turn on Krisp in your voice settings

lament girder
#

Pentagon

exotic loom
#

ewww

real pumice
#

this is a crie

#

crime

#

remove this now

#

before i order the man above

#

to remov

lament girder
real pumice
#

YOU!

#

the pineapple pizza might even be worse than the kiwi and banana one i saw.

#

absolutely vile.

exotic loom
#

@somber heath you can't do that please!!

real pumice
#

disgrace to humanity

#

my intestines flinch to the sight of that

#

BOX

lament girder
#

lmao

somber heath
#

The box pizzas are usually shit, but it took a while to find one that looks like the local pizza places make.

#

Sort of, anyway.

lament girder
#

what is candid camera duh?

somber heath
#

The acidity and sweetness of the pineapple form a complimentary flavour profile against the fattiness and saltiness of the other ingredients. It's still very much a savoury meal.

lament girder
#

stop

exotic loom
#

@peak depot is opal part of itπŸ˜†

somber heath
#

I'm not saying that pineapple belongs on all pizzas.

somber heath
#

It can belong on this pizza.

exotic loom
#

no it cannot

lament girder
somber heath
#

I find it delicious. My opinion is the only one that matters in this case.

peak depot
#

The Tribe

somber heath
#

You can have your pizzas.

#

I have mine.

exotic loom
#

okk!!

lament girder
#

i'll try once if you so sure about it

exotic loom
#

Does anyone loves veggie lover's pizza

#

my favourite

lament girder
#

no

exotic loom
#

it tastes nice

lament girder
#

i only meaty pizza

exotic loom
lament girder
#

i heard mostly indians are

exotic loom
peak depot
#

The Tribe is a science fiction drama television series which premiered on Channel 5 in the United Kingdom on 24 April 1999. The series was created by Raymond Thompson and Harry Duffin, and was developed and produced by the Cloud 9 Screen Entertainment Group in New Zealand. The series was commissioned by Channel 5, who received the initial screen...

lament girder
#

have you guys seen G.O.T?

somber heath
#

Jeremiah is a post-apocalyptic action drama television series starring Luke Perry and Malcolm-Jamal Warner that ran on the Showtime network from 2002 to 2004. The series takes place in a future wherein the adult population has been wiped out by a deadly virus.
The series ended production in 2003, after the management of Showtime decided they wer...

elfin niche
exotic loom
somber heath
exotic loom
lament girder
#

BB is my fav too

exotic loom
#

@somber heath can ya come to 2nd voice chat because it is boring here

exotic loom
candid spire
#

Hi

lament girder
#

hello

exotic loom
#

are you new

#

???

candid spire
#

πŸ™‚β€β†”οΈ no

exotic loom
#

oh

lament girder
#

i'm new

candid spire
#

What's going on?

lament girder
#

nothing just tv shows here

exotic loom
#

nothing much, it is boring

candid spire
#

Is there a way to make money from watching shows?

candid spire
#

Ig it is called reaction video

exotic loom
#

I mean yes

lament girder
#

lol

exotic loom
#

if you do reaction video on yt

candid spire
#

Those reaction video makers are geniuses They utilize the time at best and earn money

#

We should create a podcast of discord VC to make money

lament girder
#

you like money alot

candid spire
#

Think about it

#

Good utilization of Discussion on Discord Voice Call

lament girder
#

kinda makes sense

candid spire
#

So do I have permission to record conversation on Discord Voice Call and publish online?

lament girder
#

i hated that nudity

#

every ep had that shit

candid spire
#

Let's go πŸ™ˆ

lament girder
#

true

candid spire
#

@exotic loom Ain't it out of context talk?

exotic loom
#

It was an emergency guys

#

I had no choice

#

I lost

#

both respect and the game

vocal basin
peak depot
#

And at this point I don't know if you recorded me and Rabbits convo

exotic loom
#

I guess I didn't got help, no worries!!πŸ˜”

candid spire
exotic loom
candid spire
exotic loom
#

X X R I X, O anywhere

#

X = blank

#

good luck guessing if you want to

modest shale
#

there are 6 prople no talking?

hardy sinew
#

hai opal

#

I fixed the thing from yesterday

somber heath
#

@terse anchor πŸ‘‹

whole bear
#

gnome.exe

mortal mountain
whole bear
#

i only use the last column in 4chan

gleaming locust
vocal basin
#

the one from late May was a bit scarier, at least judging by the official statements

vocal basin
#

^ official statements in question

#

official-ish

#

on some level

vocal basin
#

it can definitely affect stuff like API keys

#

those sometimes are stored as plain text

#

vibesec

#

soon

#

what if

#

it was coordinated

#

to promote passkeys

#

if there are some misplaced incentives to promote passkeys, they might be pushing because of that

#

infinifactor authentication

#

you can just own the infrastructure literally not figuratively

#

you don't really need to "infiltrate" something you legally control in full

#

(Russia is controlling some internet infrastructure in Europe)

#

I'm considering contacting the ISP for them to configure IP DNS records so I can finally send email to gmail from the home server

#

there is historic precedent of them doing that for other customers

#

DNS is extremely insecure

#

and unreliable

#

Russia does DNS redirects all the time

#

mess with DNS -> implement DPI -> either ban or reroute IPs
is the usual pipeline

#

first two steps are sometimes reordered

#

smaller but worse

#

linked from there

#

clearly bombing the Chernobyl power plant doesn't

#

(what Russia did, like, in the first days)

#

tbf digging in was worse, yeah

somber heath
#

@vital sequoia πŸ‘‹

vocal basin
#

active education on Chernobyl disaster in schools was a 2010s thing

#

so at that time people who knew that well enough weren't yet in the army

#

9 to 5, Rabbit time

#

no force to stop the programming discussions

vocal basin
vital sequoia
vocal basin
#

the voices are telling me to embed Lua into the database

#

hopefully not this sort of creep

#

@primal shadow they now have some more advanced front-end stuff

#

like a more direct integration between PHP and JS

#

at least as advertised

#

I'm working on some framework-like tech, with React support

#

borrowing some things from other places

#

for a "just make it work" I'd probably pick Next.js still

#

seems to work often enough

vital sequoia
primal shadow
#

!paste

wise cargoBOT
#
Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

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

vital sequoia
vocal basin
#

> worth a thousand words
~5kB would be a very small screenshot pithink

vital sequoia
vocal basin
#

my only personal deployment of Linux desktop is just Firefox + VSCode + terminal emulator

wise cargoBOT
#
Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

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

vocal basin
#

idk why I wrote Chrome

#

I don't even have it installed

#

probably thought of chromebook

#

!source source

wise cargoBOT
#
Command: source

Display information and a GitHub link to the source code of a command, tag, or cog.

Source Code
vocal basin
#

you can also do GitHub Gists

#

(especially if it's for sharing something that you might want to eventually become searchable)

#

!pypi fabric

wise cargoBOT
#

High level SSH command execution

Released on <t:1693446125:D>.

vocal basin
#

... I might've seen fabric before

whole bear
#
        if "Err" in json_data:

yo

#
json_data: dict

id argue that Any is better here

vocal basin
vital sequoia
#

missing elseif

whole bear
#
    def parse_niri_event_response(self, json_data: dict) -> dict | None:
        if not isinstance(json_data, dict):
            print(f"Malformed data: {json_data}")
            return

        return json_data

this doesn't even do anything, why is this a function?

vital sequoia
#

if self._active_workspace is not None and (
old_btn := self._buttons.get(self._active_workspace)
):
old_btn.active = False

vocal basin
whole bear
#

thats the issue

vital sequoia
vocal basin
#

Result<T, E> serialises as either {"Ok": ...} or {"Err": ...}

vital sequoia
#

old_btn looks like it should be in an else

vocal basin
whole bear
#

i need ideas

vocal basin
#

though tbf there is a case for using something like pydantic if you want a happy life with serdeing

unique mauve
#

This code is very very crappy, im trying to get it to work and then refactoring it, it's also a fork of another project im just working on porting it to another so called window manager.

unique mauve
#

The code is supposed to be a status bar which has workspace buttons, but the way my window manager works is a little bit different, it always has an empty one at last.

#

I can't make the logic for this, I've been trying too long.

vocal basin
#

(but does seem like a valid alternative)

#

also, yes, newer pydantic has similar issues

#

because now heavily depends on non-Python too

#

I wonder what they use for cc

wise cargoBOT
#

.github/actions/build-pgo-wheel/action.yml lines 24 to 26

uses: PyO3/maturin-action@v1
with:
  manylinux: auto```
vocal basin
#

not Zig

#

hmm

whole bear
#

yo

vocal basin
#

how difficult could it be to make that action work fine within Forgejo Actions

whole bear
#

why is no one talking

vocal basin
#

presumably it wants Docker to be installed

#

something very subtly hints at that

vocal basin
#

thanks Linux for not having containers as a proper abstraction

vocal basin
#

and docker-in-docker really wants to have --privileged

#

Unfortunately, Windows does not support nested containers
TIL but idk why would I ever want to know that

#

(note entirely related, just reading dind docs)

somber heath
#

@wet ravine πŸ‘‹

wet ravine
#

hi

#

im new in here

#

does anyone have any advise in learning python

somber heath
#

!resources

wise cargoBOT
#
Resources

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

wet ravine
#

does anyone have good tutorial

primal shadow
#

I like Real Python when a concept gets you stuck

#

Automate The Boring Stuff was fun too

wet ravine
#

huh

primal shadow
#

The Odin Project won't teach you Python, but it'll teach you a lot

#

if you intend on doing web ever, html/css/js is pretty unavoidable

#

I learned a lot there

wet ravine
primal shadow
#

I do believe so

wet ravine
#

oh okay

#

im a new bie and my father bought me new laptop and im intending to learn python

somber heath
#

Be advised that you are frequently going to feel stupid, unequal to the task of understanding, lost.

This is normal.

primal shadow
#

Oh yea, it is a rollercoaster

#

top of the world to dumb as a rock

#

back on top when you clear the error though

somber heath
#

Concentrate on learning what you can. Small things. If something makes no sense, look at figuring out a different something.

#

Read documentation.

hardy sinew
#

hai opal

#

whatsapp

#

did the mascot come back to life

somber heath
#

@calm heron πŸ‘‹

tacit crane
#

!voice

wise cargoBOT
#
Voice verification

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

whole bear
#

how are we doing sigmas

somber heath
#

@pallid kraken πŸ‘‹

manic spear
#

@somber heath πŸ‘‹

somber heath
#

@idle remnant πŸ‘‹

idle remnant
#

πŸ‘‹

somber heath
#

@snow monolith πŸ‘‹

snow monolith
#

Voice Gate failed
You are not currently eligible to use voice inside Python Discord for the following reasons:

You have sent less than 50 messages.

#

xd

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @snow monolith until <t:1750390380:f> (10 minutes) (reason: duplicates spam - sent 4 duplicate messages).

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

craggy vale
#

hello

#

😭

#

so I am making my own web-browser in python

#

@somber heath@tacit crane @pallid kraken I am here!

pallid kraken
#

Hello! Welcome my friend

craggy vale
wise cargoBOT
#

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

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

craggy vale
#

and I am making my own linux distro called pythonos

#

haha

craggy vale
#

this browser for only arm based cpu

#

mainly for raspberry pi

#

I am making it because firefox and chrome is laging in my pi 5 8 gb ram

#

run slowly

#

lagging in video

#

hum ok

#

so bye I need to go okay

wind raptor
#

!tvmute 371127950419951619 14d spamming to get voice perms

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice mute to @snow monolith until <t:1751600742:f> (14 days).

snow monolith
#

bro i tried to send 50 messages to get voice verification

#

then banned twice

wind raptor
snow monolith
#

ok

#

mb

#

i wont

#

ok

#

sure

#

new to python

#

very hard

#

im using chatgpt

#

learning from basic

#

yes and i dont know how to cover the full basic

#

sure

wind raptor
#

!resources

wise cargoBOT
#
Resources

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

wind raptor
#

#python #tutorial #beginners
Python tutorial for beginners' full course 2024

Learn Python in 1 HOUR ⏱ : https://www.youtube.com/watch?v=8KCuHHeC_M0
My original Python 12 Hour course 🐍 : https://www.youtube.com/watch?v=XKHEtdqhLK8
Full Python playlist πŸ“ƒ: https://www.youtube.com/watch?v=Sg4GMVMdOPo&list=PLZPZq0r_RZOOkUQbat8LyQii36...

β–Ά Play video

Learn Python for AI, machine learning, and web development with this beginner-friendly course! πŸš€ Get 6 months of PyCharm FREE with the coupon in the description!

❀️ Join this channel to get access to perks:
https://www.youtube.com/channel/UCWv7vMbMWH4-V0ZXdmDpPBA/join

πŸš€ Want to dive deeper?

  • Check out my Python mastery course: https...
β–Ά Play video
whole bear
#

okay here is an example of task which i used AI to implement

#

so im working on a discord bot that answers questions about my project

#

discord messages have a limit of 2000 characters

#

so if the response is larger, you would want to send it as multiple messages

#

if you just naively split the response into chunks of 2000 chars, it has one issue

#

if it contains markdown code-blocks (triple quotes), then that breaks when you split it

wind raptor
#

You could make a simple parser that could pick that up and add the end / starting quotes and things where needed

whole bear
#

yea but i used AI to implement that

#

instead of doing it myself

wind raptor
#

It would be a fun thing to code though

#

At least for me

#

haha

#

Everyone has a different idea of fun though

whole bear
#

for me as well, but at that time i just wanted to finish the project

#

lately ive been thinking that i should stop using generative AI completely

wind raptor
spice loom
#

anybody knows discord bot developement in python?

#

pls gimme a video tutorial link

#

i wanna learn

#

i tried tech with tim, i didnt understand the first 4 lines of code

#

😭

#

oh

#

ohhh

#

ohk

#

ik basics of python only 😒 like i need to learn recursion , foile i/o, and oops

#

yeh i dont like oop

#

oh

#

thx for the advice

#

oh

#

ohk bye

whole bear
# spice loom

okay theres a lot of abstraction nonsense you dont have to worry about

#

like the logging

#

dotenv

#

its there for a reason, but its stupid

whole bear
#

CAT

#

Good morning everyone

#

steam perm

#

code

#

theres this thing

#

its like bytebeat

#

@wind raptor

#

can i stream

spice loom
#

wow

#

nice cat

whole bear
#

CAR

spice loom
#

ha πŸ’Έ ha πŸ’Έ ha πŸ’Έ ha πŸ’Έ ha πŸ’Έ ha πŸ’Έ ha πŸ’Έ ha πŸ’Έ ha πŸ’Έ

whole bear
#

did you call my name?

spice loom
#

i like mango

#

im eating one'

#

yo helo

#

what r y'all doing

#

!code

wise cargoBOT
#
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.

somber heath
#

There was a very promising section with units of measurement.

whole bear
#

interesting

somber heath
#

But it didn't work out.

whole bear
#

tm exists though

somber heath
#

I don't feel lucky to be alive in the now, @terse garden

#

Wake me up when people have their shit together.

somber heath
#

@hybrid escarp πŸ‘‹

astral coral
#

meow

#

wanna get my own custom watch or build it myself :3

#

like this watch but real leather, tritium hands, real dials, real clockwork, black face with gold/tritium numbers

#

I wanna do it myself but maybe too annoying with all the small parts I want :L

winged heart
#

morning @somber heath

somber heath
#

I used to wear a watch.

#

That was before mobile phones.

#

Or at least, before I had a mobile phone.

whole bear
astral coral
#

Ahh sorry @somber heath I ran off from my pc

#

Yeah watches are nive

#

I'm not so fond of smart watches tbh

#

I mean they're cool but nothing beats good old clockwork

somber heath
#

I had digital.

astral coral
#

Ahhhh

#

Still nice tho

#

I just love old fashion analog

#

Well proper made watches, not the stupid basic motor ones

whole bear
#

i have a kinda smart watch

#

its a casio gbd 200

#

it has bluetooth to get notifications but thats it

gentle flint
#

Een commissievergadering over een azc in De Bilt is gisteravond zonder incidenten verlopen. Vooraf waren er veiligheidsmaatregelen genomen omdat het onderwerp gevoelig ligt en tot heftige discussie leidt in de gemeente. Er was een demonstratie voorafgaand aan de vergadering, met voor- en tegenstanders, maar ook die verliep relatief rustig.

somber heath
#

A oneion.

#

I am milk.

#

What constitutes facon?

#

@covert spoke πŸ‘‹

#

A choice of a multitude.

#

Of, from.

gentle flint
somber heath
#

@gentle flint @peak depot Dinnertime. πŸ™‚

#

bbl

gentle flint
gentle flint
whole bear
#

hello

#

well u said hello first

somber heath
#

!voice

wise cargoBOT
#
Voice verification

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

whole bear
#

mmm

#

alright

#

then im never getting voice verified 😭

#

cause i need to be active

#

i only talk when i join a opalmist vc..

#

my friend wants to code how could I help him

somber heath
#

!resources

wise cargoBOT
#
Resources

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

whole bear
#

ah

#

truee

#

they asked me which shall they pick

#

in the resource book you sent

#

lol

#

or microsofts python guide

#

hows ur day today opal

#

mhm

#

ah

#

😒

#

what benefits does helping people give to u

whole bear
#

whats the requirements to say ur good at a programming language like python

#

more being added to python?

#

ah

#

is there too much things to learn in python?

#

ah

#

so how much would u need to know in python to say that u know it

dull sluice
#

i think im at the point where i feel im good but arent really
i know what i need but if i look in python help theres a lot i dont dare to tuch

#

the fact that you know what you dont know and think your stupid is called impostor sindrome

somber heath
#

@modern crest πŸ‘‹

#

@lapis pagoda πŸ‘‹

whole bear
#

@somber heath are u a fan of tech youtubers teaching programming languages

#

uh oh

#

what happened

#

hm?

#

pesticide

#

wdym

#

opalmist why dont u like yt

#

alr uh

#

bye opal

somber heath
#

@oblique valve πŸ‘‹

oblique valve
#

hi

somber heath
#

@last ermine πŸ‘‹

#

@tardy bone πŸ‘‹

tardy bone
#

πŸ‘πŸΏ

#

πŸ‡¨πŸ‡¦

#

vscode or pycharm?

#

enthusiast or pro?

ionic crow
#

Hello

tardy bone
somber heath
#

@warm acorn πŸ‘‹

warm acorn
#

hello

tardy bone
#

do you guys ever feel like coding is like speaking some sort of different language

#

but its all just abstraction and encoding its all just one language anyways

#

do you code to drum and bass

tardy bone
#

can you make chess in python?

somber heath
#

@whole bear πŸ‘‹

whole bear
#

hi

#

im learning python and found this serever

#

server*

#

:>

somber heath
#

@static tree πŸ‘‹

#

!resources

wise cargoBOT
#
Resources

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

whole bear
#

Im learning like python Object oriented programming

#

and will soon start on API and stuff

#

Thanks @somber heath

#

You're soo nice

#

i have a question @somber heath

somber heath
#

@fringe fiber πŸ‘‹

static tree
#

i want to do data science with python and everytime i start doing i got lost

somber heath
static tree
#

its on R leng

#

ig

#

i did that

somber heath
#

Would you be able to elaborate?

static tree
#

i have certificate

#

best of luck

static tree
#

sir

somber heath
#

!voice

wise cargoBOT
#
Voice verification

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

static tree
#

you are just begginer

#

what spacific topic are we discussing on

#

no like what is this voice chat about

#

okey

tardy bone
static tree
#

i suck at this

#

sry

#

lol

#

i m sure we have other games

#

idk what happned

#

ooh

#

its like fastest fingers but for chess

#

@somber heath any idea for a project that actually help to get job

somber heath
#

!kindling

wise cargoBOT
#
Kindling Projects

The Kindling projects page contains a list of projects and ideas programmers can tackle to build their skills and knowledge.

static tree
#

oh

#

like currruntly i want to be a data scientist

#

and i am maintainig a good rankings on kaggle

#

whats your journy of coding @somber heath
what you do ?

#

ooh

#

you got linkedin or smt

#

ooh okey

#

time to go nice to know you @somber heath

tardy bone
#

@upper basin the whole game is made in python?

static tree
#

well

somber heath
#

@zinc gorge πŸ‘‹

zinc gorge
#

hiya

upper basin
#

Using arcade.

#

!pip arcade

wise cargoBOT
#

Arcade Game Development Library

Released on <t:1749476052:D>.

cloud flare
#

@tacit crane what kind of bots do you make

ornate terrace
#

i have mic issue i cant speak so

#

wait

cloud flare
#

@tacit crane is it possible to make a discord bot where anyone from the group can control the video being streamed on a specific discord vc with commands like to pause or jump forward/backward?

#

does the provider of the video being streamed need to expose API through which users can interact with, or they can directly interact with general UIs presented to the user like left-arrow for 5sec backward, or k to pause the video being streamed

#

* here by provider i mean the website from which the audio is being streamed

#

thanks for the insights

#

!user

wise cargoBOT
#

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

cloud flare
#

24 more messages to go before i unlock voice 😦

#

why do you pick FastAPI over Django & Flask @tacit crane

#

is it better suited to your kind of projects?

#

have you tried or planning to try genai assisted bots for next level of automations? @tacit crane

#

why?

#

have you seen the kind of web & ui agents being made using language models?

#

have you used pyautogui?

#

have you seen operator by openai

#

it is fascinating

#

next level automations

#

don't you want to automate boring & repetitive clicks and navigations of UI & browser?

#

i have used selenium for web automations

#

but i have to manually make it for every website/task

#

i just want a universal command line where i can type any action that i want it to make on any app/software of my pc/mobile, and it take care of all the ui interaction

vocal basin
#

have they gone completely insane

#

vibe capitalism has arrived

cloud flare
#

what is wrong with placing online orders

vocal basin
#

you shouldn't be letting an AI make any financial decisions

cloud flare
#

operator requires you to type/handle sensitive information

vocal basin
#

people should ask more often if something should exist before making it

#

but we all already know that OpenAI management lacks any intelligence, natural or artificial

cloud flare
#

language-ui is the future

vocal basin
#

so asking meaningful questions isn't something they can do

cloud flare
#

there are open-source alternatives to operator as well

vocal basin
#

if you didn't get the message: they shouldn't exist either

#

just because there's an open source version of a fundamentally bad idea, doesn't make it any better

cloud flare
vocal basin
#

so instead you want to spend even more time trying to dispute bills that AI incurred by making purchases online that you didn't want?

cloud flare
#

let's not consider e-commerce interaction for a moment

vocal basin
#

no, we very much will consider it

#

if this shows up in the description of the tool, it clearly states that the authors are irresponsible

#

so that influences all other interactions too

#

I don't trust people who let AI do purchases with anything

#

if you "waste time" navigating GUIs, that means the GUIs in question are bad

#

AI is just taping over that problem, increasing the time and resources wasted

cloud flare
#

but you can have a PA to whom you can delegate purchasing X item from A,B,C option websites?

vocal basin
vocal basin
#

until the regulation is finally introduced

cloud flare
vocal basin
#

so to make this work you do have to re-do how you store financial details on all websites accessed

#

well, most people have to re-do

#

maybe you already have something setup to erase everything from the website after each purchase

#

(many websites like to store card details)

cloud flare
#

have you heard of comet browser?

vocal basin
vocal basin
#

well I guess The Browser Company now has direct competition for their next garbage product

cloud flare
#

AI-first browser

vocal basin
#

now that they've ditched Arc entirely

#

I wonder what HATEOAS people have to say on this

#

since they want to sacrifice correctness and sanity for the benefit of "navigability"

vocal basin
vocal basin
vocal basin
#

okay at least some subset of them are pro-AI-ish

#

funny acronym

vocal basin
#

2016

#

thanks intercooler for an incorrect embed

#

@cloud flare if you want some weird discord bot python dev case, you can look at hata

#

!pypi hata

wise cargoBOT
#

A powerful asynchronous library for creating Discord bots in Python.

Released on <t:1750201338:D>.

vocal basin
#

there is no AI in there

#

it's all, like, 2019 tech

#

the author uses Python 3.8

#

iirc in 2022~2023 big breaking changes were happening in the Discord API

#

I never got any useful "solution to a problem" type of response

#

from any AI

#

only overview so far I found any useful

#

thanks google for not changing element IDs so I can easily hide that section

#

(this section is gone)

#

I hid it

#

with an extension

vocal basin
#

the #~ thing

#

it sometimes gives completely wrong results

#

discord.py for most bots,
py-cord (with a dash) for voice input,
hata for Python 3.8 and latest API features

#

if the last line of that message confuses you, the explanation is the following: yes

#

third millennium requires an appropriate OS, Windows Millennium Edition

#

@dry jasper writing docs

tacit crane
vocal basin
#

or raw?

#

I've spent way too much time exploring different WebSocket implementations and tools

#

@tacit crane yeah, you really need to avoid all such loops

#

never check in a loop, especially in JS

#

you get an event when the socket state changes

#

design a proper state model

#

it will be simpler that way, in my experience

#

py-cord is only viable for voice input

#

the maintainer is a bit of a jerk

#

at least was

#

@tacit crane

tacit crane
cloud flare
vocal basin
#

there are no reasons to use it other than its voice input support

#

!e

print(f"{-10:%}")
wise cargoBOT
vocal basin
#

!e

print(f"{1:0<{1:0<10}}")
wise cargoBOT
# vocal basin !e ```py print(f"{1:0<{1:0<10}}") ```

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

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     print(f"{1:0<{1:0<10}}")
004 |             ^^^^^^^^^^^^^^
005 | MemoryError
vocal basin
#

this is still my favourite piece of f-strings

#

this is almost Perl levels of confusion per byte

#

mostly a toy in my case too

#

there's a something I participate on regarding a more serious AI coding thing

#

but

#

it's offline and containerised

#

@cloud flare from some YouTube comment on Builder.ai:

AI: An Indian
API: A Person in India
LLM: Low-cost Labour in Mumbai

#

stochastic sudoku solving might be a realistic thing

cloud flare
somber heath
#

@forest yoke πŸ‘‹

forest yoke
#

Hey @somber heath

dark ermine
#

❀️

cloud flare
#

Cool demo of a GUI for LLMs! Obviously it has a bit silly feel of a β€œhorseless carriage” in that it exactly replicates conventional UI in the new paradigm, but the high level idea is to generate a completely ephemeral UI on demand depending on the specific task at hand.

short owl
#

DeepSeek can handle bigger files , than other AIs

short owl
#

coffeee coffee

whole bear
#

what do you learn as a data/ai engineering student?

main comet
craggy vale
#

Hello

whole bear
#

hi opal

craggy vale
#

I am here

hardy sinew
#

I used fxsound before

#

is meh

#

hai opal hai furry

#

what is happening

#

its still too hot here

hardy sinew
#

like even at night

#

tru I can't sleep

craggy vale
#

Hi πŸ‘‹

main comet
#

HI

hardy sinew
#

u know how

#

the world spins

#

that's all it takes

#

why do u think theres snow and ice bergs on the top and bottom

#

flat earther furry

woeful blaze
#

Hey circuit_board
How are you doing today?

hardy sinew
#

bc he just realised the earth is round

woeful blaze
#

But it is round

hardy sinew
#

if the moon is above us we can jump like a very very tiny bit higher

woeful blaze
#

The reason why humans see as flat is because we're smaller than the Earth itself now if we were in the size of the sun and could hold the Earth we would feel it as round

hardy sinew
#

wut

#

erm

#

americans

main comet
hardy sinew
#

does anyone even live in that part of australia

main comet
hardy sinew
#

I think u hit the part with the least amount of people

#

wise words

#

I hear a bird

#

it isn't

#

it was only for a second and quiet

#

ye

main comet
hardy sinew
#

im tired

#

I will try to sleepi again

main comet
#

gn sweety

hardy sinew
#

goodnighty opal also

somber heath
#

@whole bear πŸ‘‹

#

@jade lichen πŸ‘‹

jade lichen
#

Ju

#

Hy

somber heath
#

@marble vector πŸ‘‹

marble vector
somber heath
#

Just waving to indicate the presence of this channel.

marble vector
#

ohh was just hanging around lol

somber heath
#

People often miss it when they're new to the vc.

#

Slash are unverified.

marble vector
#

ohh miss what?

somber heath
#

This channel.

whole bear
#

yo

hardy sinew
#

hai

#

opal and hamster

#

huh

somber heath
#

@hot sleet πŸ‘‹

hot sleet
#

HI

#

how do I become not suppresed

somber heath
#

!voice

wise cargoBOT
#
Voice verification

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

hot sleet
#

ty

#

I like our PFP btw

somber heath
hot sleet
#

your

somber heath
#

Aha.

#

Common bronzewing, phaps chalcoptera. Female.

hot sleet
#

cool

whole bear
#

im not well

#

so much pain

somber heath
whole bear
#

tummy hurts

#

head hurts

somber heath
#

@livid osprey πŸ‘‹

whole bear
#

i was awwake for 24 hrs

#

to fix my sleep schedule

#

found that out too soon

#

i get anxiety so i cant sleep

#

i always have to listen to ASMR

#

i get nightmares always

dry jasper
#

@wise loom i found this course on codeacademy, maybe it can help you. Its payed content tho

astral coral
lavish rover
somber heath
#

@zinc bearπŸ‘‹

manic spear
#

@zinc bearπŸ‘‹

still tide
#

heelo

manic spear
#

hi

zinc bear
#

hi I'm too new to use voice

somber heath
#

!voice πŸ™‚

wise cargoBOT
#
Voice verification

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

wind raptor
still tide
#

i cant even select for interview 😭

#

always get one gmail saying cant forward with your app

#

i am stuck at understanding ml base algo so my sunday will be hard

#

coursea and github repos

#

no just understand how its working and then try to implement it from scratch for better understanding

#

anybody have experience with gsoc ??

wind raptor
#

google summer of code?

still tide
#

yes sir

somber heath
#

@kind wigeonπŸ‘‹

#

@topaz wadiπŸ‘‹

wind raptor
#

.topic

viscid lagoonBOT
#
**What is your favorite TV show?**

Suggest more topics here!

somber heath
#

bbiab

topaz wadi
#

whats is the general chat?

wind raptor
#

!stream 692219232355876864

wise cargoBOT
#

βœ… @orchid rose can now stream until <t:1750566173:f>.

somber heath
#

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

wise cargoBOT
somber heath
#

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

wise cargoBOT
craggy vale
#

Hello

wise loom
astral coral
#

You guys think we're due another "We didn't start the fire"? I mean Trumps 2nd term, ChatGPT, Covid epidemic, USA bombing Iran ... I mean this shit could write itself

astral coral
# astral coral You guys think we're due another "We didn't start the fire"? I mean Trumps 2nd ...
Covid panic, toilet paper,
Trump again, election caper,
AI wrote your college paper,
Climate’s boiling, see you later

Ukraine war, Zelensky brave,
Musk is buying X, not Dave,
NFTs and meme stock highs,
Spy balloons in China skies

Chorus:
We didn't start the fire
It was always burning since the world’s been turning
We didn't light it, but we tried to fight it

Verse 2:
ChatGPT, deepfakes boom,
Lockdown love in Zoom chat rooms
QAnon and Reddit wars,
Bezos rockets, Martian shores

Iran hit, Gaza cries,
Tech layoffs and billion buys
Ocean’s plastic, species die,
We swipe left but wonder why```
#

ChatGPT wrote this shit, I guess this shit DID write itself XD

dusty musk
wise loom
astral coral
#

Ewwwwww xD

somber heath
#

@proper sandal πŸ‘‹

iron geyser
#

😌

somber heath
#

@zinc lava πŸ‘‹

zinc lava
#

yoo

somber heath
#

!voice

wise cargoBOT
#
Voice verification

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

modest shale
#

yo

kindred otter
#

hi

#

guys i tried to change the players's color when the dash button(which is LSHIFT) is used, but it didn't display the color at all when i press it

somber heath
#

@pastel root @long iron πŸ‘‹

calm heron
#

what are you guys working on?

winged heart
#

hi

#

a few more messages and I can use voice haha

calm heron
#

i'm stuck in the same boat

somber heath
#

@ebon rapids πŸ‘‹

ebon rapids
#

Hello

wind raptor
#

!stream 1319370380078743584 1h

wise cargoBOT
#

βœ… @jovial merlin can now stream until <t:1750603242:f>.

wind raptor
#

!stream 1101101345609613432

wise cargoBOT
#

βœ… @exotic loom can now stream until <t:1750600125:f>.

somber heath
#

Word of the day: Anthropomorphism.

wind raptor
#

!stream 1101101345609613432 10M

wise cargoBOT
#

βœ… @exotic loom can now stream until <t:1750601196:f>.

dull sluice
#

||1939. szeptember 1. – 1945. szeptember 2.||

exotic loom
#
# Step 1: Install required libraries
!pip install transformers accelerate

# Step 2: Import libraries
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
import torch

# Step 3: Load Phi-2 model and tokenizer
model_name = "microsoft/phi-2"

tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_name,
    torch_dtype=torch.float16,
    device_map="auto",
    trust_remote_code=True
)

# Step 4: Create text generation pipeline
generator = pipeline("text-generation", model=model, tokenizer=tokenizer)

# Step 5: Chat loop
print(":white_check_mark: Phi-2 is ready! Type 'exit' to stop chatting.\n")

chat_history = ""

while True:
    user_input = input(":adult: You: ")
    if user_input.lower() == "exit":
        break

    prompt = chat_history + f"User: {user_input}\nAssistant:"
    output = generator(prompt, max_new_tokens=100, do_sample=True, temperature=0.7)[0]["generated_text"]

    # Extract only new assistant reply
    response = output[len(prompt):].strip().split("\n")[0]
    print(f":robot: Phi-2: {response}\n")

    # Update chat history
    chat_history += f"User: {user_input}\nAssistant: {response}\n"

Phi-2 Microsoft for google collab

jovial merlin
wind raptor
#

!stream 221417491136512010 1h