#voice-chat-text-1

1 messages · Page 65 of 1

delicate wren
#

I'm just remembering all the names I mentioned Rust as before

#

and ASGI and tower would be a pair for the underlying interface

#

same for Pydantic and serde

#

@vale tinsel I wrote something like 3 lines and forgot everything by now

#

so only heard of it

#

I had a corresponding kernel installed for Jupyter

#

(so just tried it there)

#

Jupyter supports way more than just Python

#

at some point I installed every kernel I reasonably could

#

which did include C, Rust and Ruby

#

Jupyter Kernel

#

JupyterLab is just a style for the front-end

#

JupyterHub is a more managed server

misty sinew
#

@vale tinsel What do you do?

#

Uh

#

So do you get paid well?

#

Good to know!

delicate wren
#

though actually for a proper pairing this would be axum+aide

delicate wren
#

in both cases the second thing is responsible for JSON Schemas

misty sinew
#

I think objective c differ because it has object

delicate wren
#

Objective C is nearly dead officially and factually, unlike C++

misty sinew
delicate wren
#

Objective C is a recognised-to-be-failed attempt at adding OOP to C

#

replaced by Swift

#

whereas C with Classes, now known as C++, at least got popular

#

areas where C++ failed are more to do with bigger scope and some theoretical basis

#

Apple used it before

misty sinew
#

I heard about it and it is confusing to me

delicate wren
#

Apple created Swift in part to replace Objective C

vale tinsel
vale tinsel
delicate wren
#

Swift, allegedly, is a good language

#

but integrated too much into the ecosystem

misty sinew
#

like Ryzen 5600H with xyz graphics

#

or intel ultra elit blah blah

vale tinsel
delicate wren
#

meanwhile Apple: just borrowing naming conventions from the army

vale tinsel
delicate wren
#

- what are we going to call this rifle?
- eh, I don't know, M1
- what are we going to call this tank?
- eh, I don't know, M1
- what are we going to call this processor?
- eh, I don't know, M1

misty sinew
#

but apple makes catchy name

#

everyone know about m1 m3 m4

glad turtle
#

you guys can say whatever you want about Apple, but it's still the ONLY company that owns the entire stack, hardware and software and OS.. end-to-end.

delicate wren
#

no, Oxide exists

vale tinsel
glad turtle
delicate wren
#

already selling

glad turtle
#

or just servers

delicate wren
#

no laptops, no desktops, no individual servers;
only full racks

glad turtle
#

interesting choice. and what OS do these racks run?

delicate wren
#

the main CPUs run Oxide-maintained fork of illumos

#

auxiliary processors run Oxide's own microkernel OS

glad turtle
delicate wren
#

on-prem cloud

glad turtle
#

right

#

and they're actually able to survive on the market?

misty sinew
#

I mean oxide is trying its best to achieve

#

but most likely they will fail

vale tinsel
#

tf is oxide?

delicate wren
#

afaik they're privately financed above their current needs, we don't know the details

delicate wren
misty sinew
delicate wren
#

they did manage to successfully boot without a BIOS/UEFI software

#

which is already quite an achievement with x86_64 being the insane mess it is

misty sinew
#

I mean they are making good progress...

#

but the age of Quantum computer is approaching

delicate wren
#

most of the workloads are incompatible with quantum

misty sinew
#

big corp is already investing in Quantum computer technology

glad turtle
vale tinsel
delicate wren
#

if the current wheel is square-shaped, probably worth the effort of making it round

glad turtle
delicate wren
#

if you can move something from single threaded to multithreaded to multithreaded with AVX to GPU,
maybe there are possibilities to then move it to quantum

#

but, for a particular task, can you?

#

giving up all ifs

#

giving up all whiles and fors

misty sinew
#

I mean who would not like to have a better computer?

delicate wren
#

quantum is not a better computer

glad turtle
delicate wren
#

then also giving up all function pointers

misty sinew
delicate wren
#

it can't

glad turtle
#

few things qualify as both branchless and loopless..

delicate wren
#

there are very specific requirements for what workloads can be performed on a entanglement-enabled processing unit

#

you need very large intermediate space of values for small inputs and outputs

#

everything needs to be expressed in terms of, tbf quite simple, linear algebra

#

I doubt you can use this to speed up JSON parsing considerably

#

quantum isn't about getting a better or faster computer

#

it's about solving very specific problems that a regular computer can't solve at all

#

(assuming reasonable time constraints)

delicate wren
misty sinew
#

If Quantum Computer can replace most server, it would soon be available for commerical use

delicate wren
#

it can't

#

in what way is quantum computer better than regular one?

#

apart from expense write-offs and money laundering or whatever

#

a very expensive refrigerator

misty sinew
delicate wren
#

that is a very specific usecase

#

also, no, not any encryption is broken by known quantum algorithms

#

SSH are already rolling out Shor's-resistant ciphers

#

rip SIDH

#

SIDH doesn't count

misty sinew
delicate wren
#

once again: this is not applicable to JSON parsing and whatever else regular server mostly do

misty sinew
#

But yet it showcase the potential of Quantum Computer

delicate wren
#

unrelated to the point

#

most of the workloads are quantum-incompatible

#

that's why we shouldn't get all locked up into another hype thing

misty sinew
#

Hmm

delicate wren
#

you can't replace a car with a rocket

misty sinew
#

understood

delicate wren
#

with Shor's being a metaphorical ICBM

misty sinew
#

So why do they invest in Quantum Computer?

delicate wren
#

also quantum-enabled cryptography

#

certain things are impossible with regular CPU

#

not really because of the CPU

misty sinew
#

So to test and create better algo for security?

delicate wren
#

but because it relies on entanglement across very long distances

delicate wren
misty sinew
#

uh..

#

I think I was wrong about Quantum Computer

#

I should have understand the practical extend of Quantum Computer before discussing further

delicate wren
#

quantum cryptography very seriously relies on you actually sharing qubits between two parties

#

which is quite useful for provably safe procedures (there's very little determinism left by that point, so not really an algorithm)

#

there does exist an unbreakable encryption with both regular CPUs and quantum procedures

#

you can implement it in Python (and many other languages) with one symbol

#

^

#

from what I remember, quantum basically just off-loads the actual encryption logic to regular processors

#

so only the key sharing step is quantum

delicate wren
# delicate wren `^`

!e

key = 426
data = 111
encrypted = key ^ data
print(encrypted)
decrypted = key ^ encrypted
print(decrypted)
coarse hearthBOT
delicate wren
#

there is a slight issue with this:
you need a very long key

#

and whether that's delivered by pigeon or qubits -- that's a separate question

delicate wren
coarse hearthBOT
misty sinew
#

interesting.

delicate wren
#

this is how stream ciphers work

#

and I think no one is planning to replace them yet

#

(quantum mostly targets asymmetric encryption instead)

misty sinew
#

I got to learn abut stream cipher

#

cool

delicate wren
misty sinew
#

Why do they have silly names?

#

chacha

delicate wren
#

chacha is based on salsa iirc

#

dance names

misty sinew
#

confusing

delicate wren
misty sinew
#

who ever name those algo is naming as if it is a pet

#

personal name

delicate wren
#

symmetric, quantum-irrelevant: AES, xchacha20, most of Feistel ciphers (unless you really messed up the hash function)
asymmetric, broken by Shor's algorithm: DSA, DH, RSA, ECDSA, ECDH, and everything else based on simple fields
total loser: SIDH/SIKE -- aimed for quantum resistance, broken on a laptop in an hour

#

asymmetric, seems to be alive: lattice encryption (I can't remember any specific examples)

delicate wren
#

Papers We Love Conf 2022
https://pwlconf.org/2022/deirdre-connolly/
Transcript: https://pwlconf.org/2022/transcripts/Papers_We_Love_Deirdre_Connolly.txt

Deirdre Connolly / Zcash Foundation

Isogeny-based cryptography went from a curiosity to a serious post-quantum contender arguably because of this paper from Costello, Longa, and Naehrig from...

▶ Play video
#

I did not remember what SIDH stood for

#

forgot the "singular" part

misty sinew
#

I think this is too much for me

#

I can't comprehend so many stuff

#

I got long way

delicate wren
#

I think it took me something like a year to get how RSA works

#

and total around 4 years for understanding it including key generation

misty sinew
#

You got big brain

delicate wren
#

the maths is interesting but still complicated

#

I now realise that it's actually not trivial at all to learn

#

I got very luck with school

misty sinew
#

You learnt about it in school?

delicate wren
#

we proved RSA in school at some point I think

#

(there was a note for a few from the class who did cryptography, including me, that this is RSA)

misty sinew
#

I learn "nothing" from school

#

all I get to know is to be silent for hours

#

and hear yapping

delicate wren
#

only almost happened to history lessons at university

#

C++ is finally getting reflection, trying to understand what's happening out there

#

(I don't write C++ but I have to debug it)

misty sinew
#

@vale tinsel Hello

vale tinsel
#

Yes hello

vale tinsel
#

?

misty sinew
vale tinsel
#

Ohh we talking Cubits now

misty sinew
delicate wren
#

qubits

vale tinsel
#

qubits

misty sinew
#

How fast can you type yuyaify..

delicate wren
#

I remember some game or whatever had "cubits" as currency

#

or something like that

misty sinew
#

You are pretty fast at typing

vale tinsel
#

Have you heard of Cat qubits?? @delicate wren

delicate wren
#

I only have a general knowledge of how quantum stuff works, I don't follow actual papers and other publications

#

(no, haven't heard)

vale tinsel
#

Basically a theory that a cat exists in 2 states alive and dead - at the same time

delicate wren
#

that short description from the embed doesn't explain much

misty sinew
#

See ya guys..
I'm epy

vale tinsel
#

Ait

delicate wren
vale tinsel
#

Ahh I wanted it simple

delicate wren
#

so just a way to mitigate errors reliably

#

error handling/correction is the keyword there

vale tinsel
#

Ok got it

runic valley
#

yo

#

@thin lintel

stuck bluff
#

@gilded estuary👋

runic valley
#

hello opal

stuck bluff
runic valley
#

dr pepper tho

thin lintel
#

Dr. Pepper is sooo good but upsets my tummy

runic valley
#

cus its so good

#

try cherry coke maybe instead

#

holy thats a lot

delicate wren
#

cola pile

runic valley
#

of cherry coke

#

holy shi

runic valley
#

@thin lintel do u know any cyber

stuck bluff
#

Cyber...what?

runic valley
#

cyber sec

#

or red teaming offesnive or any bug bounty

thin lintel
#

Just basics

#

Mainly data related

#

And in EU

thin lintel
edgy chasm
#

dude i hate ads >_<

delicate wren
stuck bluff
#

@keen lodge 👋

edgy chasm
#

@fossil dust

fossil dust
#

Welcome to enjoy " Smooth Jazz In Seaside Balcony | Morning Jazz Melodies In Fresh Sea Ambience For Working, Relaxing "

Start your day on a positive note with our Whispering Jazz Melody. Picture yourself in a cozy corner, savoring a warm cup of coffee as the gentle jazz melodies create a serene and inviting atmosphere. This playlist is designed...

▶ Play video
worn canyon
delicate wren
#

@tulip grail explanation: we're in VC 1

#

that was the point

marsh lodge
glad turtle
#

The Softwarepark Hagenberg is the Austrian technology park for software, located in Hagenberg im Mühlkreis, Austria, founded in 1989 by Professor Bruno Buchberger. The Softwarepark Hagenberg is a unique collaboration where research, business and education are intensively cooperating. Because of its success, the park has been called the "Wunder ...

copper garden
#

inria

glad turtle
#

@copper garden brb

copper garden
#

ight

winged sand
#

heyy

#

thank you

#

sadly i cannot speak as i have just joined rn

#

want to see one of my latest turtle drawing using python?

copper garden
#

Yes

winged sand
#

should i screen share

#

nvm i cant

copper garden
#

Can't screenshare either

winged sand
#

lemme send you a video

#

should i send it here?

copper garden
#

You can send it here

winged sand
#

aight

#

Nothing sick

#

Just normal

#

i have started python turtle last week

#

soo

copper garden
#

Nice

delicate wren
#

@heady wyvern isn't that Dmitry not Evgeniy on your pfp? or am I confusing with someone else

fossil dust
# winged sand

@reef granite can you beat this? Show us something flashy

glad turtle
glad turtle
#

!user

coarse hearthBOT
#

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

glad turtle
gentle fiber
#

Heavy metal is music

thin lintel
#

I know!

#

The best kind

gentle fiber
#

Symphonic metal of course..

midnight spindle
#

hello

#

every body

#

where i can got "video " role

proper ridge
glad turtle
proper ridge
#

Well, let me know if you ever find an equivalent. I guess my interest was toxic to code battle hehe.

winged sand
#

waddup

minor haven
#

Hi

burnt vault
#

hi

misty sinew
#

@plush crescent Usually they use same code

#

for such a test

#

@zinc rain Which ide do you use?

#

I think he would de dead by 2050

#

vsauce is legend

#

@main garden

#

@main garden You are just 18?

delicate wren
misty sinew
zinc rain
#

A microsoft free , vs code

misty sinew
#

Got it

tawny peak
#

Heeyy

#

Budddy

naive fjord
#

!user

coarse hearthBOT
#

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

naive fjord
#

sure

unborn mason
#

Hi guys

#

Does anyone want to code with me, if by any chance.

odd cliff
#

@unborn mason what ya making?

naive fjord
#

@hushed galleon

#

@hushed galleon watch this one

fossil dust
edgy chasm
#

plot cumulative strategy vc market returns

#

ez

misty sinew
misty sinew
fossil dust
misty sinew
hasty heart
#

hi some one can give me some recommend how to leran paython from 0

stuck bluff
#

@warm patrol 👋

warm patrol
#

what

#

hi

stuck bluff
warm patrol
#

where are you from

tawny lily
stuck bluff
#

@fallen vessel 👋

stuck bluff
fallen vessel
#

hello

warm patrol
fallen vessel
#

@stuck bluff i need help mastering python

stuck bluff
fallen vessel
#

sure thnx

stuck bluff
#

Do you have any specific questions?

fallen vessel
#

ah i am stuck at the point where i am confused with how many built in data structures should i learn

stuck bluff
#

You learn what you use.

fallen vessel
#

but if i have to be more specific with examples and questions give me some time and i ll come back

stuck bluff
#

Through use, memorisation.

#

Some things you will use more often, this you will become more familiar with them and their capabilities.

fallen vessel
#

ah so i need to find examples where i need to use them and memorise those cases

stuck bluff
#

and use cases

fallen vessel
#

ah kk

#

seems like it is the only way out

stuck bluff
#

Memorisation shouldn't be the task you set yourself.

#

Use is. Familiarisation is.

fallen vessel
#

wdym

#

ah i see

stuck bluff
#

You can always look up what you need to know for more specific details.

fallen vessel
#

then i need one more suggestion if i have to break into competitve programming how much of python should i know

stuck bluff
#

Not having done competitive programming, myself, I'm probably not the best person to ask, but you do want a very good general familiarity with what you have available to you in the language. However, more important, I feel, is probably going to be your general data structures and algorithms knowledge.

fallen vessel
#

ah kk

stuck bluff
#

Knowing the language on its own is never going to be enough.

#

It's just a language, not the things you're saying with it.

fallen vessel
#

hmm okay okay

#

right thnx

stuck bluff
#

@misty sinew 👋

misty sinew
#

hey

#

is it faster to join a iterator of str or list of str and wich is the most efficient

#

memory side

stuck bluff
#

@dense viper 👋

dense viper
misty sinew
#

but like you can do "".join(["1" for i in range(4)])

#

"".join(("1" for i in range(4)))

#

no just as ex

#

ok

#

thanks

#

ahh the use case

#

here is 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.

misty sinew
#

for more context ts a html obj

#

can you re explain

#

ok

#

yes

stuck bluff
#
var = 2 * 2
f'...{var}...'
# vs
f'...{2 * 2}...'```
misty sinew
#

ok doing this rn

#

ok

#

cus the self is treated as a empty when self.contents = []

#

i can do a if statement

forest horizon
#

wow

#

hi

misty sinew
#

thanks

forest horizon
#

intro = input(' Hi how are you? ')

#

lmao

#

print(intro)

stuck bluff
#

Do you intend to join us in the voice chat?

forest horizon
#

no sorry

burnt vault
#

hi

minor haven
#

Hmm

#

Idk

#

Hi

delicate canyon
#

@pulsar lotus

#

check

pulsar lotus
#

looks way better

delicate canyon
delicate canyon
pulsar lotus
brittle sand
#

wasup

viral leaf
#

The Cyber Mentor(TCM)

misty sinew
#

Hello

#

Hows going?

#

@sinful panther You okay?

pseudo mantle
#

Beauty in Code 2025 was a single-track full day IT-conference organized by Living IT, featuring six amazing speakers. It was hosted at the Malmö Live conference center on March 1, 2025.

https://beautyincode.se
https://livingit.se

Session 6 of 6 by Kent Beck (@KentBeck)
"The Forest & The Desert Are Parallel Universes"

So close and yet so far....

▶ Play video
sinful panther
misty sinew
sinful panther
#

?

#

i just left bc everybody was mute

misty sinew
#

Did you need any help @sinful panther ?

sinful panther
#

and i dont rl wanna be interogated just bc i left a vc

misty sinew
#

I just felt that you were asking something but none of us respond

#

hence asked you

unborn wind
#

Hello!

fallen ingot
#

hi

unborn wind
#

I have an issue

#

i just joined the discord ;-;

misty sinew
#

you cant talk

unborn wind
#

i know ;-;

fallen ingot
#

yeah

#

im verified

unborn wind
#

nice

#

Basally im trying to upload documents to MongoDB

fallen ingot
#

anyone of you know ai ml

#

?

unborn wind
#

but when connecting using SCRAM, its getting a bad connection

#

or bad auth

fallen ingot
delicate wren
#

where is MongoDB located relative to the application?

unborn wind
#

bad auth : Authentication failed., full error: {'ok': 0, 'errmsg': 'bad auth : Authentication failed.', 'code': 8000, 'codeName': 'AtlasError'}

delicate wren
#

are you using it cloud-hosted?

unborn wind
#

yes

delicate wren
#

it fails always, right?

unborn wind
#

yes

fallen ingot
#

anyone have knowledge about ai/ml by anychance

delicate wren
unborn wind
#

Even when i used urllib.parse.quote_plus

#

since my username has a @ in it

fallen ingot
#

nodbody is active there

misty sinew
#

One of us is afk

delicate wren
misty sinew
#

ikO

delicate wren
#

what are you using to connect to MongoDB?

#

motor?

unborn wind
#

a database

delicate wren
#

what package is responsible for establishing the actual connection to the database server?

unborn wind
#

pymongo

delicate wren
#

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

delicate wren
#

have you tried not escaping the @?

#

was the error the same?

unborn wind
unborn wind
delicate wren
unborn wind
#

Username and password must be escaped according to RFC 3986, use urllib.parse.quote_plus

unborn wind
delicate wren
#

can you send the page where this is a quote from?

delicate wren
misty sinew
#

No body

misty sinew
#

No buddy?

#

Dude is drunk

delicate wren
#

you are not mixing urllib.parse.quote_plus and password= keyword argument thing, right?

unborn wind
#

Yep im not mixing it up

#

i escaped it in a seperate variable then concating it into the connection string

delicate wren
#

there is a possibility that you didn't actually create a user

unborn wind
#

i did

delicate wren
#

you clicked this button during setup?

#

by default it removes the part starting with @

#

I tested it now and it did not let me include @

#

it turned example@gmail.com (name censored) into example

#

does it, under this column, show a username that has an @ in it?

#

stuff that's shown in the profile, as far as the DB is concerned, isn't the username for authorisation

unborn wind
#

it says edit user : <whatever>@<whatever>

#

this is for a company onboarding project

delicate wren
#

are you on a page that looks like https://cloud.mongodb.com/v2/<a bunch of symbols>#/security/database/users?

unborn wind
#

everything else is done, but i cant connect to the mongoDB cluster

#

;-;

delicate wren
unborn wind
#

can we call in private dm?

#

it will be easier to explain where im at

delicate wren
#

do you currently have cloud.mongodb.com open?

unborn wind
#

yes

delicate wren
#

is there this menu on the left?

unborn wind
#

yes

#

im in database access rn

#

and i can comform I have the correct permissions

delicate wren
#

does this specific thing have @ in it?

#

(in your case)

unborn wind
#

no

delicate wren
#

whatever is written there instead is the username, generally

unborn wind
#

ohhhh

#

in pwd auth when you click the edit button is the pwd right?

delicate wren
#

yes, this password is for DB access

#

it's separate from your Atlas account

unborn wind
#

i think i got it

#

nvm it didnt work ;-;

floral spruce
#

im learniging javascript and C++ right now

delicate wren
#

my condolences

minor agate
#

can anyone help ?

pseudo mantle
#

What's the code in 3adel_noob.py?

#

rich is supposed to be module in your file system, or a separate library from pip?

stuck bluff
#

@indigo jackal 👋

indigo jackal
#

Yah z i r a

#

Btw have a great evening everyone, I'ma gonna leave!!

stuck bluff
#

@red wigeon 👋

red wigeon
#

yep @stuck bluff

stuck bluff
#

@lilac ether 👋

lilac ether
#

love to join python community

wooden dome
#

I'll be honest, they must be smoking if they think 5"9 or 6ft is average in India

#

I'm certain 5"5 is average for man

#

Less than 1% of Indians are 6ft or above

delicate wren
#

today Discord decided to work without a VPN

#

wait no it didn't

#

it undecided

#

why is the "connected" display broken now also

#

it shows connected even when actually not

#

(now works)

#

I got three new computers this week

#

gradually setting those up

#

small ones

#

basically embedded

#

(2 of them)

#

256MB and 512MB RAM

#

surprisingly, the image for one of them came with Python pre-installed

#

3.12

#

also seems like I can install uv there too

#

ah, wait, no, it's glibc

#

won't work

#

need to build it myself

delicate wren
#

three CPUs

#

(slightly confusing)

#

funny situation

#

it's a full computer

#

I'm running Linux on it

#

(SSHd into it)

#

screens are connected there via MIPI DSI

#

I ordered another one
(for distributed systems experiments)

#

mostly testing certain networking stuff with constrained resources

#

rabbitful excitement

delicate wren
delicate wren
delicate wren
#

"You or Yu?"

delicate wren
#

Chinese

#

Yuya-ify

#

UEFI

#

I want this

#

8 computers shoved into one

#

Yuya

#

yuyayuya

#

annunciation

#

accents

#

whatever else

#

a/ä difference to some is non-obvious too

delicate wren
#

Diaeresis ( dy-ERR-ə-siss, -⁠EER-) is a diacritical mark consisting of two dots (◌̈) that indicates that two adjacent vowel letters are separate syllables – a vowel hiatus (also called a diaeresis) – rather than a digraph or diphthong.
It consists of a two dots diacritic placed over a letter, generally a vowel.
The diaeresis diacrit...

misty sinew
#

what would you like to know?

#

yes

delicate wren
#

set[Rabbit]

#

rack of catloafs

#

NOOOOO

#

why risc v why

#

why did humanity allow this

#

I thought RISC-V was incompatible with UEFI/BIOS

#

(UEFI takes control away from the OS)

#

okay

#

Gyro day in 4 days

delicate wren
#

something -ite

delicate wren
#

tacoscope

#

The letter ⟨ґ⟩ is usually romanized using the Latin letter g, or sometimes ġ with a dot or g̀ with a grave accent.
"so ġyro/g̀yro?"

#

dot is unusual

#

!charinfo ґ

coarse hearthBOT
delicate wren
#

GHE
with
UPTURN

#

💥

misty sinew
#

I don't know much about you @tame leaf but you mentioned you got ADHD.
I've noticed I'm type of person who talks about thing which has no meaning to listener, it has no meaning to me as well.
I felt like I've lost good connection and friends because of it, something which I do and regret yet does it again.

So I decided to ask you, do you see this as sign of ADHD?
because I do feel like I'm being ignorant

unborn mason
misty sinew
tame leaf
# misty sinew Okay

I'm only knowledged on the fact I have it, not assessing it over one message

#

It takes years for people to notice, especially if you were subconsciously forced to mask

misty sinew
umbral rose
misty sinew
#

But I will consult doctor just to be sure

#

I do appreciate the help and resource chris

umbral rose
#

No problem

tame leaf
misty sinew
delicate wren
#

modern standard
we're all to old for this modern stuff

#

@thin lintel and safety practices too

misty sinew
#

whats your agentic workflow?
for programming?

misty sinew
delicate wren
#

tf's a agentic workflow

#

clearly not a real word

thin lintel
#

I don't flow towards work, I glide

delicate wren
#

and plome is 62 years away from the invention of ChatGPT

#

programming his Fortrans and whatever

misty sinew
#

ie llms

#

while coding

delicate wren
#

referring to the earlier comment about 1960

misty sinew
raven orbit
#

don't actually design in it

delicate wren
#

undesign

misty sinew
#

I felt like depending of AI agent for production is not good

raven orbit
#

redesign

delicate wren
#

[just ]resign[ already]

misty sinew
#

I do use it if and only If I have to

raven orbit
misty sinew
#

more like asssisting

delicate wren
raven orbit
misty sinew
#

Planning : understanding problem and designing solution

#

Task breakdown in function, class, module

#

execution and testing as I go

#

review and optimize

#

tracking every action

#

@misty sinew How do you use it?

delicate wren
#

AI agents are supposed to do stuff more autonomously

#

from what I understand

#

i.e. not only do you copy code from it, you allow it to paste the code and run it

misty sinew
delicate wren
#

potentially unsupervised

misty sinew
delicate wren
#

plan-do-study-act

#

but

#

there is a problem

#

AI can't study

#

nor can it adjust

#

today's LLMs are incapable of learning

#

still

#

you really need to dig into the internals to force learning onto it

#

which means you need to be in control of it

misty sinew
#

I do understand

#

Hence they are used in assist

delicate wren
#

(no service consumption of ready models)

misty sinew
#

agent can interact with git

#

so every action would be tracked

delicate wren
#

remember: git reflog

#

when AI fucks it up

#

or human

#

both are well capable of that

#

(git reflog contains the history of what HEAD pointed to)

#

so, if you rebase/reset/whatever else incorrectly, you can restore previous state

misty sinew
#

Good to know

misty sinew
#

Why is web dev eating mobile app dev's lunch? Presumably more people use their phones than they use websites. Is it the type of people that are buying from these websites? Is it that it's majority businesses buying and doing stuff from making interactions from these websites and not individuals like mobile apps are?

dusty zealot
#

nice

novel violet
#

Hello everyone, i'm new here
I'm a software developer and also a computer science student in uni
i hope i'm welcomed ???

sacred quest
#

me too. i am here for help others

sacred quest
novel violet
#

Tho I use python frameworks like Django and Flask for software development

sacred quest
sacred quest
novel violet
#

You know Python is a compiled language and it was birthed from the mother of all software languages C

sacred quest
#

i am on this server only for helping others

sacred quest
sacred quest
#

btw i own a programing lang. it's coming on Summer of 2026 ( this lang will change the world )

novel violet
#

This is amazing, I would love to know more about your language

#

By the way, which syntax is it gonna follow ???

dense jetty
#

Pls help

#

My script

sacred quest
#

but i can help

#

my lang really close to python syntax

dense jetty
#

Thanks

#

Help me fix this script to working again and clone it

#

I need to updated

wooden dome
#

Milien left?

#

@slim depot What's going on?

#

The government has info about web and internet

#

The US government was the one who made a Tor and Internet

#

Freedom is a better livelihood, India is a democracy and has freedom similar to western countries yet China and Singapore offer better value to Human life in basic necessities to financial independence

wooden dome
#

@slim depot Indian Government was victim, it's not just government being evil.

#

I can give you inside about one of the situation

#

Indian authority implement law for better civic rule and empowerment of local

#

It was purely with good intent

#

but local revoked the decision

#

and reason was most stupid

#

they feel they are entitled to be above the law

#

because this law had strict fine and punishment

slim depot
#

k

stuck bluff
#

@worn thistle 👋

wooden dome
#

Like hit and run law.
those who hit the victim must have to pay and take him to emergency

#

Indian rejected the law

#

Street dog law

#

Indian rejected the law

#

and so many case

#

Nah

#

Similar to developed country

#

street dogs which has sign of agression would be killed

#

government would take dog for adoption program

#

NO

#

human

#

@slim depot Yes if it bit someone

#

But this was last measure

#

first was to take the dogs for adoption program

#

second was to implement strict law on dog owner, so they cannot abandoned the dogs which is measure reason for strict dog problem

#

Do you know all of these were rejected

#

But they want them on street

#

This is stupidity of Indian

#

@stuck bluff I don't know because they have foolish explanation

#

Just have a look at this

#

you would understand

#

These protestor are dog lover, they are more of selfish.
Some even have no empathy for rabies victim and blame on victim

stuck bluff
#

@small fractal 👋

small fractal
#

@stuck bluff Hi! I just joined accidentally

slim depot
#

@merry island anvpy looks really cool

merry island
#

Thanks but I can't talk

#

I need to verify

slim depot
#

yeah you need to spend time in channels and talk to people you can do !voice

#

no !user

merry island
#

Hey by the way, have you checked the recent update in anvpy ?

misty sinew
merry island
#

See from my point of view, you know r@bies is like one of the de@dliest thing ever, I mean it will definitely be listed in the top 10. So you have to think from two points of views, freedom for dogs and rabies. In india it's like 30000 de@th cases per year.

#

Especially with age under 14

wooden dome
#

None of these will face street dog problems, most of them drive in cars.

They will adopt husky and other breeds not indigenous breed and dogs of India.

They feel not sorry for using branded leather bags and fashion wear, yet they prefer to call themselves animal lover

merry island
#

Yeah I agree 💯

glad turtle
#

@misty sinew you talk in voice?

misty sinew
glad turtle
misty sinew
#

Bro who made that channel instead of just chatting in the VC

glad turtle
misty sinew
glad turtle
misty sinew
#

Hmm, I see

misty sinew
#

Well, I switched to ubuntu linux guys👀

#

I will eventually.
I'm working on proper setup

glad turtle
glad turtle
misty sinew
#

Recently I messed up with my space key in keyboard

#

life has been hard lately

glad turtle
misty sinew
#

Problem hardware it is too old to be used as normal phone

#

I use it mostly for streaming and chat

glad turtle
#

I wish I knew how to write drivers and diagnose problems with older hardware..

#

Repurposing or adapting software to older hardware seems like a cool activity

misty sinew
#

It is headache to fast boot

#

every phone has different process

#

and there will be error to deal with

#

using rom ain't fun

#

it has many draw back

#

Net Banking fails quite often

#

many application struggle on rom

quaint pagoda
#

What is rom ?

misty sinew
small field
sly pond
#

horse heads are soooo big

small field
#

how is my project : )

glad turtle
#

@misty sinew i wonder what would happen if microsoft google apple and meta would merge

glad turtle
#

@gleaming vale sup, im playin a game

#

i'll be in vc in a minute

gleaming vale
glad turtle
gleaming vale
#

dono that.... but okay

gleaming vale
#

aw...

umbral rose
#

!stream 740572512005521458

coarse hearthBOT
#

✅ @tacit jetty can now stream until <t:1756695059:f>.

dry geyser
#

How is everyone doing today?

tacit jetty
dry geyser
#

Camping

#

So tired

umbral rose
# tacit jetty ok ty hbu

To answer your question, you shouldn't really take input in your classes. You'd take it in your main program where you were doing your menus.

tacit jetty
umbral rose
#

Yeah, your method would take the input as a parameter.

tacit jetty
#

wait so would you reccomend making it like different files or same one

umbral rose
#

You could make a generalized function to get input that takes the question and maybe the validation type if you wanted to check for that

tacit jetty
umbral rose
#

Anytime 😄

dry geyser
#

@umbral rose how are you doing today?

umbral rose
dry geyser
#

Tired but enjoying camping

sour willow
#

no

#

hi

#

post your code? is this the problems

raven flint
#

@austere yoke try label.bind("<ButtonPress-1>", lambda _, val=x: print(val))

#

🤣

pearl apex
#

bro what are you doing are you trying to make game

#

so bro are you using pygame

#

how is that module . how is the experience .....

vale tinsel
#

@sacred quest come here

sacred quest
#

alright

#

@austere yoke simply my lang don't work like you think. i build it with way easy to upgrade change syntax etc...

austere yoke
#

You are matching for Print( in your "parser"... So you don't have proper arbitrary functions in your language, since it must be hard-coded with the parenthesis.

umbral rose
#

🐻 ✅ - bear accept

austere yoke
#
def nuke():
    global __builtins__
    import sys, gc
    g = globals()
    __builtins__.__dict__.clear()
    __builtins__={}
    g.clear()
    sys.modules.clear()
    gc.collect()
    return sys.stdout
wraith cape
#

i finally made my project

#

its a waste sorter program

delicate wren
#

writing docs
a lot of docs
aaaa

#

(actually just translating my own writing between languages)

#

brb

#

back (work call happened)

#

I know at least 3 other regular people on this server that used it before

#

Flutter

#

🇨🇳

delicate wren
#

also, this

#

yes, the game bundles a web browser for its UI

delicate wren
delicate wren
#

@dry pendant they're probably just "this company mentioned they use Flutter on this date" entries

delicate wren
#

@stuck bluff mail or male?

#

lmao

#

since that would meet the newer terminology

#

that's not what MCP stands for

#

MCP is Master Control Program

stuck bluff
delicate wren
#

(yes, the joke being the misheard option is equivalent to first of that list)

minor haven
#

Yo

carmine pebble
austere yoke
carmine pebble
austere yoke
#

What?

carmine pebble
austere yoke
#

Because I think it looks cool

carmine pebble
austere yoke
# carmine pebble ok i was wondering how this gonna usefull in real life
  1. Because it looks cool, and that makes me happy. I program to have fun and make cool things, so there doesn’t need to be a real world use as long as I enjoy doing it.
  2. These graphs are useful for a field of mathematics called Game Theory, since it can often reveal superstructures of the system and bottlenecks of positions.
  3. In the more general case of a continuous physical system, these graphs are called phase spaces, and analyzing them can be a good way to understand how the system behaves. If you’ve ever seen the graph of at what temperatures and pressures water is a solid, liquid, or gas, that is an example of a phase space diagram.
misty sinew
glad turtle
misty sinew
#

Microsoft is as big as Apple yet it chooses not to optimise and improve Windows 🪟

#

Microsoft chose to enter the manufacturing of tablet and Phone market but it avoided the laptop market.

#

I guess this is a clear sign of compromise

glad turtle
misty sinew
#

I guess behind the curtain 🤝

#

The only valid argument to opt out of is "It can harm the interest of third party vendors and it would make them choose Linux or native OS "

#

I see no other reason, why not?

#

If they can make a Quantum Computer, they can make a good CPU as well

stuck bluff
#

@dusk solar 👋

glad turtle
#

@fresh oasis fully audible

dusk solar
#

@stuck bluff 👋

glad turtle
#

@gleaming vale 24/7

gleaming vale
gleaming vale
#

I mean CPU don't use physics to drive stuff unlike QPU

glad turtle
#

remember when p-doping and pn junctions about transistors were novel..
still physics..

glad turtle
gleaming vale
#

The transistor tech is done by chip manufacturer....

#

I'm saying is it doesn't mean that if you can make QPU you can definitely make CPU

glad turtle
#

better yet, tell me if you pursued the thinkpad?

#

@gleaming vale ^^

gleaming vale
#

Most option has 500 USD shipping fee and if not it simply didn't ship to Philippines 😭

#

@glad turtle ur German ja?

stuck bluff
#

@astral pier 👋

glad turtle
gleaming vale
#

Romanian.... Close enough

glad turtle
gleaming vale
#

Idk....

#

Well most stuff I saw from the link u showed came from America

#

Sometimes some are from Germany

glad turtle
#

@desert mist 24/7

gleaming vale
#

24/7??

glad turtle
glad turtle
#

passed lol, very bad perf tho

pale pivot
#

~5.5 mins

mossy monolith
#

what version of python is best to use when learning?

gleaming vale
glad turtle
haughty stump
#

seems like I cannot open mic yet

tawny lily
delicate wren
#

📉 it's blue therefore good

bright flint
#

Guys whats the best free code editor except for microsoft visual studio mine is bugging

stuck bluff
#

O

stuck bluff
delicate wren
#

@tawny lily :q!

#

if it's ed, then just q I think

bright flint
tulip grail
delicate wren
#

VS proper is not great

#

@tulip grail raspbian

tulip grail
#

its also preinstalled on raspian i think

delicate wren
gleaming vale
#

the first question was "is it performant enough" lol

delicate wren
#

raise Todo

#
class Todo(NotImplementedError): ...
#

ctrl+shift+f raise Todo

#

@tawny lily WingIDE drops into interactive context after execution too

#

!d code

coarse hearthBOT
#

Source code: Lib/code.py

The code module provides facilities to implement read-eval-print loops in Python. Two classes and convenience functions are included which can be used to build applications which provide an interactive interpreter prompt.

delicate wren
#

might as well just use Jupyter at that point

#

dtrace it

#

AB testing segfault in prod

#

mandatory watching material

#

for payment processing

delicate wren
#

no. go and watch that in full at 1x speed.

#

do you know the i-word for doing it right?

delicate wren
#

thanks for clarifying, now go and watch the video

#

you should instantly reply if you know

delicate wren
#

yeah, then you definitely need to watch that

#

Jimmy is entertaining enough to watch even not for raw technical stuff

tawny lily
#

i use 3.14

coarse hearthBOT
#
Voice verification

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

delicate wren
#

audio works

misty sinew
#

Microsoft had discovered a path which hasn't been discovered to make its QPU,
road map to manufacture CPU is already in practice and it is much easier for corporations like Microsoft to make its own.

#

In fact Microsoft manufactures its own CPUs and AI accelerator for Azure Technology

#

It certainly can make its own CPU for laptop and Desktop

misty sinew
sudden trellis
#

yo

merry island
#

Hello @glad turtle

wooden dome
#

hello

#

How you all doing?

#

VC inactive now?

#

Ah maybe all are afk

#

@stuck bluff They always end up being heated

#

I guess someone has bad day and he would like to express it out 😆

#

Sharing is caring 💯