#voice-chat-text-0

1 messages · Page 501 of 1

vocal basin
#

winters are getting too warm

#

@wind raptor very densely packed

#

no

#

-25 and below is the only temperature outside when I can sleep with a closed window

#

so that means I can sleep without outside noise

#

5 each of 5 different flavours

fluid wagon
#
Write a function to find the longest common prefix string amongst an array of strings.

If there is no common prefix, return an empty string "".

 

Example 1:

Input: strs = ["flower","flow","flight"]
Output: "fl"
Example 2:

Input: strs = ["dog","racecar","car"]
Output: ""
Explanation: There is no common prefix among the input strings.
 

Constraints:

1 <= strs.length <= 200
0 <= strs[i].length <= 200
strs[i] consists of only lowercase English letters if it is non-empty.```
#

@wind raptor

#
    def longestCommonPrefix(self, strs: List[str]) -> str:
        solution = []     
        sol = "" 
        charin = 0
        ls = strs[0]
        first = True      
        for s in strs :            
            if first :
                for c in s:
                    solution.append(c)
            else:
                for char in ls:
                    if ls[charin] != solution[charin]:
                        solution.remove(char)
                    charin += 1
            charin = 0
            first = False        
            ls = s


        for w in solution:   #turning solution from list to str
            sol += w
        return sol
vocal basin
#

there is a 4-letter answer to that

#

(as in the name of what algorithm/structure to use)

fluid wagon
#
    def longestCommonPrefix(self, v: List[str]) -> str:
        ans=""
        v=sorted(v)
        first=v[0]
        last=v[-1]
        for i in range(min(len(first),len(last))):
            if(first[i]!=last[i]):
                return ans
            ans+=first[i]
        return ans ```
#

solution

vocal basin
#

oh wait

#

I was overengineering

vocal basin
#

not all of them

#

(in which case you'd use a Trie)

#

but, yeah, here it's simpler

winged heart
#

Yeah try to compare characters before adding it to solution

#

if first character fails, theres no common prefix so return empty str

vocal basin
#

I'm returning to playing `Airships: Conquer the Skies' after 2 or 3 years
I forgot I even had any mods installed, turns out I had several

#

@fluid wagon short answer: no

#

do many things

#

different

#

there is no best way

#

any single way is worse than doing multiple things to learn

gilded dome
#

should i work on a 3d or 2d game first?

vocal basin
#

1d

gilded dome
#

?

fluid wagon
#

thanks

whole bear
#

hello

#

i wana ask somthing

if somebody coding or making projects but he using ai for help with codes is that cheating or not

vocal basin
#

||

#

@fierce dawn
||```py
hidden code
```||

fierce dawn
#

@fluid wagon
I did not test it
||

def longestCommonPrefix(v: List[str]) -> str:
  ans=[]
  for chrs in zip(*v):
    if all(chrs[0]==t for t in crs):
      ans.append(chrs[0])
    else:
      break
  return "".join(ans)
```||
whole bear
woeful blaze
vocal basin
wise loom
gilded dome
vocal basin
#

okay I'm too lazy to lookup my solution so I'll have to write it again

whole bear
woeful blaze
vocal basin
#

I'm sorry the what
||```py
''.join(c for c, *_ in takewhile(lambda chars: chars[1:]==chars[:-1], zip(*strs)))

#

I know I wrote it

wind raptor
#

Brb after I eat 😄

vocal basin
#

but I don't remember how it works

#

nvm I do

gilded dome
#

what should i use for a addon to python

#

to make 2d game s

wise loom
gilded dome
#

how do io install that ?

wise loom
vocal basin
#

!pypi pygame

wise cargoBOT
vocal basin
#

no loops no lambdas
||```py
strs[0][:sum(takewhile(1 .eq, map(len, map(set, zip(*strs)))))]

wise loom
vocal basin
#

!pypi arcade

wise cargoBOT
#

Arcade Game Development Library

Released on <t:1751591377:D>.

vocal basin
#

!pypi ursina

wise cargoBOT
#

An easy to use game engine/framework for python.

Released on <t:1752165194:D>.

gilded dome
#

i already use ursina but shoukls i use that for 2d games or not \

wise loom
gilded dome
#

nothing really just startewd using pythoin 2 days agop

woeful blaze
vocal basin
#

if I do start seriously doing non-web games, it'll probably be in Odin/Zig/Rust

#

(in that order of preference)

#

or Jai if it gets released by that time

#

also was thinking of making some C-like language myself

full dagger
#

Jai's memory usage analyzer is interesting.

vocal basin
#

using LLVM for the actual difficult part

vocal basin
full dagger
#

#LambdaConf2025 took place in Estes Park Colorado this past May 12th and 13th.

UPCOMING EVENT:
The Ultimate Coder
Casting call: https://docs.google.com/forms/d/1X6xqghfFNU3QRgbcrzgYPYTfBZtGEU0VvRG0zkrYpy8/edit

Learn about the sponsors that made it happen:

Ziverge
Transformative Tech for Modern Challenges
https://www.ziverge.com/

Urbit Founda...

▶ Play video
gilded dome
vocal basin
#

general idea of these two: software is not solved, never has been, never will be, continue inventing and applying actual thought to the process

fierce dawn
vocal basin
woeful blaze
#

Whitney Houston is the game about is it a survival game survival horror etc because you need to know what to plan for what classes to make for health bar stamina hunger thirst noise

vocal basin
#

std::runtime_error

fierce dawn
#

🤦‍♂️

vocal basin
#

there do exist these just random pieces of standard libraries which can be massively misused

#

Rust has an RNG in its standard library if you hack around enough

fierce dawn
#

I learned something new tonight^^
:D

woeful blaze
# gilded dome

What's the game going to be about I ship for Easton that way

gilded dome
woeful blaze
#

Is it going to have a monster?

gilded dome
wise loom
deep wave
#

my mic 😢

#

hey, i'm troubleshooting my mic

exotic loom
#

Hi

wise loom
last falcon
#

ok hello

somber heath
#

@whole bear 👋

whole bear
#

Hey

#

How long have you been using Python?

#

About 100 days days for me 😆

#

How much of one language should i master before i try to learn another?

#

The "{" of other languages can be annoying

#

What was the hardest project you did in your career?

#

hardest for me so far was a weather api

#

did you ever need math ?

#

same

#

will ai replace coders, ive used gpt a few times it seems pretty good

#

Do you think its lazy to use ai?

#

vibe coding type stuff

#

when i used it, it seemed to use too much code for a simple issue

#

ya i should proabbly get a mic

lean orchid
whole bear
#

so dont generate entire projects 100% ai

#

whats better tkinter of PyQt5

#

Tkinter is way simpler

somber heath
#

@fallen holly 👋

lean orchid
somber heath
#

@clear dune 👋

somber heath
#

@neat sand 👋

neat sand
#

i cannot talk

#

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

You have sent less than 25 messages.
You have been active for fewer than 9 ten-minute blocks.

#

@somber heath

somber heath
#

You're welcome to hang out here all the same.

crystal fox
#

aw damn you both left

somber heath
#

@fiery pagoda 👋

#

@true coyote 👋

somber heath
#

@steep lion 👋

steep lion
#

hola

crystal fox
#

Wasn't joking about the laptop btw

#

You wanna talk trauma this laptop has seen some shit

#

It's covered in make up too

#

I imagine the kid was watching make up shit on YouTube and just smeared it over the whole fucking thing

#

Also someone has been inside it before since it's missing 70% of the back cover screws

#

When I got it the back plate wasn't even fitted correctly. The tabs that are supposed to be in were out

winter bane
# crystal fox

RIP, I feel for you , i had a plastic build pavlion and it broke exactly same way

crystal fox
#

Dell had a long run of laptops with bad hinge design

#

Took them years to fess up it was their fault

#

Blamed the users and refused to do warranty for it

#

There might be some plastic missing

somber heath
#

@agile gust 👋

#

@sudden dust 👋

#

@summer roost 👋

gentle flint
crystal fox
#

you don't get this shit on laptops from ~10 years ago

storm depot
#

@somber heath

#

hello

#

i was sayng that could you help me in learning python or could you teach me

gentle flint
#

2018

crystal fox
#

i'm currently typing this from the miss's HP Pavilion which is 15 years old

#

and it's solid as fuck

#

an actual tank

somber heath
#

@whole bear 👋

whole bear
#

Hi

#

How's it goin?

crystal fox
#

easy to repair, strong in construction, etc

#

i've got 3 laptops in pieces in my office room from customers where the thing has just fallen apart

#

and there's fuck all i can do to fix them

#

it's all hinge jobs too

whole bear
crystal fox
#

idk where it came from but it seems like all manufacturers just stopped giving a shit about making a strong hinge

#

the failure is always in the chassis too. like they embed the lugs in a tiny amount of plastic

whole bear
crystal fox
#

THAT'S WHAT THEY WANT

#

fucking stupid

crystal fox
#

i'm going through a history of dumb shit i've dealt with in tech support and thought this might be amusing

somber heath
#

@manic basin 👋

manic basin
#

Or is it perms?

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.

manic basin
#

How are you

#

Why?😂

#

Oh

wise loom
#

Was glossing over this, only talks about AI engineers and Cybersec

manic basin
#

Mmmmmm yk I am also somewhat miserable because egypt is also bad

#

I am currently trying to leave

#

Wait your Italian!!!!! @somber heath

#

Ok well good luck man

#

And just cheer up

#

Then do what you love until the fall comes or just go back up if your not bones then you shouldn't stop@somber heath

somber heath
#

@sour folio 👋

sour folio
#

hi

manic basin
manic basin
sour folio
#

no italian, wait why cant i talk?

manic basin
somber heath
wise cargoBOT
#
Voice verification

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

somber heath
#

@manic basin Sorry, I did try to tell you.

teal vine
#

hello everyone

somber heath
#

@clear snow 👋

#

@white fjord 👋

somber heath
#

@teal vine 👋

teal vine
#

hey

#

i don,t have micro now

#

@somber heath I need to write 25 messages and be on the sorver 3 days to talk in voice ?

#

ok @somber heath

#

am no

#

I don,t undestand what song what are talking about

#

bruh

#

yeah yeah

manic basin
#

Hi aigan

somber heath
#

@long cloak 👋

manic basin
#

Are you a mod here?@somber heath

#

What are you talking about 🤔🤔😂😂

#

Ye I didn't mean it

#

OMG

#

😞😞😞😞😞😩😩😩😩😞😞😩😩😩

#

😂wtf man I feel like I'm being held hostage

grave moat
#

everything going over head for me .

long cloak
#

What's this VoiceChat for

somber heath
grave moat
#

ya

long cloak
#

Oh, I thought its my mic issue.

manic basin
#

Is this a family friendly type of server?

grave moat
#

@somber heath ur voice is not so clear.

somber heath
modest shale
manic basin
grave moat
#

can all of u train me for my interview?

manic basin
#

@somber heath don't worry I swear myself and am trying to stop but was asking so if I do split up I don't get banned or kicked

#

I get what your saying

long cloak
#

Is there autocomplete in discord logo_vscode

manic basin
modest shale
manic basin
#

Ye and wait two more days

long cloak
#

!user

wise cargoBOT
#

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

modest shale
#

juct check it what is written there

manic basin
#

Hmm

#

So ye I'll just try to be more active in this ig

long cloak
#

Like I can type pr<TAB>

grave moat
#

it can give suggestion

manic basin
#

Bro you can work for national geographic @somber heath

modest shale
manic basin
#

😂

#

Pov: me when I am yapping

long cloak
#

So, its no_code voice_chat.

#

i thought i_ll be coding here

manic basin
#

Bro they should add quotes here oh it will be funny

long cloak
#

I'm non-European.

#

I think nazi's are dead for over 100 years.

#

that sound consipiracy thoery

#

😂

#

But you're not the only one

#

I hope someday they'll join us

#

And the world will be as one

wise loom
#

I just shaved my head 🪒

#

Feels fresh

woeful blaze
#

How are you opalmist

somber heath
#

@vapid mountain @torn tide 👋

vapid mountain
#

i cant speak

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.

vapid mountain
#

can u help me in a network problem

#

i can ping a website,but i cant open it in browser

#

only that specific website

#

rest works

#

i am trying to visit 3blue1browns website

#

can i send screenshot here

somber heath
#

@rare adder 👋

vapid mountain
#

yeah everyone can acess,its just me

#

i can acess every website

#

except that

#

its an educational site

#

but if its country ,then why its pinging

#

correctly

#

ohhh

#

is it because i am using brave

#

didnt work on chrome

#

too

#

is there any way i can fix it

#

😦

#

wait let me try from someones

#

phone

#

not working

#

i have to use vpn to acess that 😦

somber heath
#

@waxen salmon 👋

vapid mountain
#

ok vpn worked

#

i hate my country

#

thank u guys

#

bubie

woeful blaze
#

How are you doing today?

winter bane
#

@peak depot did i disturbed u , sorry for that if i did

fast pilot
#

How can I put a backend into my frontend? For free

peak depot
winter bane
fast pilot
winter bane
wind raptor
#

A backend and a frontend are two different things usually. Github lets you throw a frontend up for free using github pages, but the backend has to go through something else

fast pilot
#

Is there anything else?

#

Any other websites

wind raptor
#

There is render.com but when you are not using the backend, it goes dormant and takes 30 seconds+ to start back up

winter bane
#

maybe use free ec2 from aws ? or if ur code is in python u might be able to use pythoneverywhere servers with sqlite

wind raptor
wind raptor
#

It's also a big pain to use compared to fly.io

wind raptor
winter bane
wind raptor
#

It links to your github, so they aren't storing the site files

wind raptor
#

Hey @narrow palm 👋

narrow palm
#

hi

#

doing good wbu?

narrow palm
wind raptor
#

🇨🇦

narrow palm
#

how get permission?

wind raptor
#

How about you?

#

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

narrow palm
#

im from india

wind raptor
#

Nice

narrow palm
#

yeah thank you

#

nothing just jobless

vocal parcel
#

Air is so fresh bcause rain reduces pollution in the air

dusk trail
#

hi

wind raptor
narrow palm
#

yo

dusk trail
shell patrol
#

hello

#

mindful dev can i ask you something

#

how does someone get the snek tag

#

ah

#

thank you

#

good bye

#

i didnt see it

vocal basin
#

@wind raptor that also assumes a reason for an attack

#

DoS attacks normally target businesses from whom they can extort something

eternal ether
#

wow still supressed

#

sad face dot tiff

fluid wagon
#

@eternal ether

#

he

eternal ether
vocal basin
#

!rule 5

wise cargoBOT
#

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

cold delta
vocal basin
cold delta
zinc sinew
wise loom
#

hello what is going on my friends? i have white chocolate in the fridge

#

it is said white chocolate helps with memory but it's empirical and anecdotal at best

#

I wish Python oneliners were possible

#

they had to remove the block delimiters, the braces.. they had to do it, and the semicolon statement separator, now we can't do oneliners

#
echo "$HOME/snap/firefox/common/.mozilla/firefox/profiles.ini" | python3 -c 'import configparser, sys; c=configparser.ConfigParser(); c.read(input()); p=next(filter(lambda p: "Default" in c[p] and c[p]["Default"]=="1", c.sections())); print(c[p]["Path"]);'

^^ getting Firefox's main profile in Ubuntu 24.04 , no AI used 💪 🧠

vocal basin
#

wouldn't be surprised if INI is valid Perl already

wise loom
vocal basin
#

alongside with whatever comes out of dev urandon

#

technically all text is valid HTML, which is why I was a bit confused by the formulation of Code Jam's qualifier

#

(speaking of languages which aren't entirely pedantic in their input handling)

pale fable
#

hey

#

how yll doin

wise loom
# pale fable how yll doin

I am enhancing an Ansible playbook that imports self-signed SSL certs into Linux machines, both system-wide but also into all major browser cert stores.
It's for my homelab.

long forum
#

Homelab? Oh

#

Sounds devious

#

hahaha

pale fable
#

yes

#

still

#

so sad

wise loom
pale fable
#

i am violent

#

yes

#

i did spam

#

so i got banned for 14days

long forum
pale fable
#

i deserve being in jail for that

#

so sad

#

but I'm jsut a gurl

#

they have to ignore the minor mistake

#

am i wrong?

pale fable
#

hehehheeeee

pale fable
#

killing the spider in anyhow

wise loom
#

23°C

#

the sun is going to fry us all, we're still enjoying bearable temperatures..

sleek otter
burnt marsh
somber heath
#

@errant junco 👋

errant junco
#

Wsp bro how your day going?
@somber heath

#

I’m looking for coding friends, so if you want to become my friend just add me

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.

somber heath
#

In case you were wondering why you can't talk.

errant junco
#

I’m not by my laptop lol but thanks

#

Is it any quant traders here 😭

wise loom
#

@burnt marsh i agree, it’s also system design and distributed systems and DSA

#

and possibly more

digital holly
#

Okay I am in VS coding it told me to start off with # what's this techinically called or the difference between "

burnt marsh
#

I know that in C++ you have to write # whenever you mention imported libraries for your code (if im not wrong)

wise loom
hidden osprey
#

@earnest scroll here

earnest scroll
#

okay

hidden osprey
#

awesome!

earnest scroll
#

c’mon

#

really

hidden osprey
#

hahaha

earnest scroll
#

boston is very nice

#

depends on field

#

I am feeding my pets

#

thats why I cant join the convo

hidden osprey
#

do your thing!

earnest scroll
#

I have fishes

winter bane
burnt marsh
#

Backgammon

earnest scroll
winter bane
#

🤣 .

earnest scroll
winter bane
#

yeah like make small hoops for them to go through and do like a summersault 😛 xd

#

somersault *

earnest scroll
#

man rottweiler grown up version is like boss your house

#

I have alergic to cats

#

if they lick me, all of my skin will be red and itchy

#

yeah natural breeds doesnt effect but if it is mixed ohh boyy

burnt marsh
earnest scroll
#

yeah but some of them give breath problem

#

bunnies are great animals

digital holly
#

May I join till opal arrives back?

burnt marsh
#

of course

hidden osprey
#

better than us

digital holly
#

I think one more day of this no talking lol

hidden osprey
earnest scroll
hidden osprey
digital holly
#

I think I've seen this movie

#

Has anyone ever done Coursera

#

No mean to intrude

burnt marsh
#

datacamp is also good

digital holly
#

Well I was trying the 7 day trial, this is suppose to be a 2 hour course

#

but the concepts oval

#

Spit it out

#

I know, care if I dm and show you where I am stuck

#

Jiggly

hidden osprey
earnest scroll
#

you can show it here

digital holly
#

It's basically having to show you the question instead of doing it all over with opal, its easier to show and talk lolololol

#

because the video shows up on the side

#

then I have to record a video

#

and etc

earnest scroll
#

goodnight @burnt marsh

burnt marsh
#

good night everyone

hidden osprey
#

byee @burnt marsh

modest shale
#

yo its morning dicord?

digital holly
#

opal are you free

#

I'd like you to see my progrewss

#

progress

somber heath
#

@void willow @quaint anvil 👋

void willow
#

hello

#

why i cant speak?

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.

somber heath
#

@coarse lantern 👋

#

@formal crypt 👋

peak depot
somber heath
#

@signal sleet 👋

signal sleet
#

hi @somber heath

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.

wise cargoBOT
#

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

somber heath
#

@solar pendant 👋

last falcon
#

ahh

#

why i am still not verified

#

!user

wise cargoBOT
#

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

winter bane
#

hello

#

@last falcon

last falcon
#

i am not verified

#

pls tell me what to do

#

can't open the mute

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.

frosty ginkgo
#

can u help me in making class diagram?

#

i have functional requirements but i am confused a little bit

last falcon
#

thats intresting

somber heath
#

@hasty kernel 👋

#

@sour radish 👋

merry wasp
#

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

obsidian dragon
winter bane
vocal basin
somber heath
#

!e py import subprocess result = subprocess.run(['cal'], capture_output=True) print(result)

wise cargoBOT
# somber heath !e ```py import subprocess result = subprocess.run(['cal'], capture_output=True)...

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

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 2, in <module>
003 |     result = subprocess.run(['cal'], capture_output=True)
004 |   File "/snekbin/python/3.13/lib/python3.13/subprocess.py", line 556, in run
005 |     with Popen(*popenargs, **kwargs) as process:
006 |          ~~~~~^^^^^^^^^^^^^^^^^^^^^^
007 |   File "/snekbin/python/3.13/lib/python3.13/subprocess.py", line 1038, in __init__
008 |     self._execute_child(args, executable, preexec_fn, close_fds,
009 |     ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
010 |                         pass_fds, cwd, env,
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/5DKZM5FUNM7U36JHUD2XUQ7EOY

obsidian dragon
vocal basin
#

!e

from sys import executable
from subprocess import check_output  # slightly outdated
result = check_output([executable, "-m", "calendar"], text=True)
print(result)
wise cargoBOT
# vocal basin !e ```py from sys import executable from subprocess import check_output # sligh...

:white_check_mark: Your 3.13 eval job has completed with return code 0.

001 |                                   2025
002 | 
003 |       January                   February                   March
004 | Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
005 |        1  2  3  4  5                      1  2                      1  2
006 |  6  7  8  9 10 11 12       3  4  5  6  7  8  9       3  4  5  6  7  8  9
007 | 13 14 15 16 17 18 19      10 11 12 13 14 15 16      10 11 12 13 14 15 16
008 | 20 21 22 23 24 25 26      17 18 19 20 21 22 23      17 18 19 20 21 22 23
009 | 27 28 29 30 31            24 25 26 27 28            24 25 26 27 28 29 30
010 |                                                     31
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/FNNUFTUV2SCN4WE452OSJBUWJU

obsidian dragon
#
.-----------------------------------------.
| FRI | SAT | SUN | MON | TUE | WED | THU |
|-----------------------------------------|
|     |     |     |     |     |     |     |
vocal basin
#

fun fact: there is some JS library for rendering tiles like in GitHub, everything depends on it, but it seems to be so unmaintainable that you can't even configure the first day of the week

#

so I have to suffer through Sunday being the first even on Russian locale

vocal basin
still tide
#

@somber heath hello

somber heath
#

@obsidian jewel 👋

obsidian jewel
somber heath
#

@obtuse elbow 👋

obtuse elbow
#

i have no permission to talk :(

somber heath
wise cargoBOT
#
Voice verification

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

neon wasp
#

@peak depot beautiful sleepy angels

subtle dome
modest shale
#

Yo @somber heath which browser is ur default browser on ur windows or laptop?

#

And @jovial merlin u?

jovial merlin
#

although zen is nice

modest shale
#

Is it safe?

jovial merlin
#

and if your on windows or mac, arc is really good

jovial merlin
#

if thats what you mean both are great

modest shale
#

Yes security

vocal basin
#

this doesn't look right

#

HMD
Hemlock of mass destruction

somber heath
#

@jade prism 👋

jade prism
#

:_(

somber heath
#

@sick otter 👋

vocal basin
#

until 6 p.m. + however long it takes until Chris is ready

#

@raw carbon 21

#

almost

#

oh wait no

#

yeah

#

24

#

okay Google being bad again

#

okay another feature of google I need to disable

#

ah, I already have it hidden

#

just not on this browser

#

I like the description of one of Civ versions from a journalist:
"as a whole, not too many things were removed"

somber heath
#

@royal vine 👋

odd patrol
#
# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
    def mergeTwoLists(self, list1: Optional[ListNode], list2: Optional[ListNode]) -> Optional[ListNode]:
        co1 = []
        co2 = []

        total = co1
        for x in range(0,len(co1)):
            for i in range(0,len(co2)):
                if co2[i] < co1[x]:
                    continue
                elif co2[i] > co1[x]:
                    total.insert(x+1 ,co2[i])
                elif co2[i] == co1[x]:
                    total.insert(x ,co2[i])
        return total
  1. Merge Two Sorted Lists
Output: [1,1,2,3,4,4]
Example 2:

Input: list1 = [], list2 = []
Output: []
Example 3:

Input: list1 = [], list2 = [0]
Output: [0]
 

Constraints:

The number of nodes in both lists is in the range [0, 50].
-100 <= Node.val <= 100
Both list1 and list2 are sorted in non-decreasing order.```

please can somebody tell me about link list and why my code do not work and how can i turn link list to normal list or maybe how to use it !...
vocal basin
#

however, yes, you can do it with a conversion too

vocal basin
#
# Definition for singly-linked list.
class ListNode:
    def __init__(self, val=0, next=None):
        self.val = val
        self.next = next
somber heath
#

@primal sphinx @odd patrol 👋

odd patrol
#

i stell dont undrstnad

odd patrol
vocal basin
#

!e

from dataclasses import dataclass
from typing import Self

@dataclass
class ListNode:
    val: int
    next: Self | None

# ignore stuff above, it's just for better-formatted output

node1 = ListNode(val=1, next=None)
node2 = ListNode(val=2, next=node1)
node3 = ListNode(val=3, next=node2)
print(node3)
wise cargoBOT
vocal basin
#

each ListNode in a linked list has a value (val) and a next node (next)

odd patrol
vocal basin
#

!e

from dataclasses import dataclass
from typing import Self

@dataclass
class ListNode:
    val: int
    next: Self | None

# ignore stuff above, it's just for better-formatted output

node1 = ListNode(val=1, next=None)
node2 = ListNode(val=2, next=node1)
node3 = ListNode(val=3, next=node2)
node = node3
while node is not None:
    print(node)
    node = node.next
wise cargoBOT
vocal basin
#

example of how to go through a linked list

#

(one of the possible ways)

odd patrol
#

thanks

somber heath
#

@timber oasis 👋

green fable
#

hello

somber heath
#

@upper gate 👋

#

@timid girder 👋

icy raptor
#

hellow

#

i dont know why everyone muted

#

and me too

upper gate
#

don't know

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.

upper gate
#

voice gate failed need to send more message to verify the voice

somber heath
#

@sweet apex 👋

#

@upbeat night 👋

upbeat night
#

Do people stream when doing code?

  • I just started watching tutorials yesterday, so this is insanely new to me
sweet apex
#

Hello world

#

Am procrastinating

somber heath
#

@vernal bear 👋

vernal bear
#

hellow good sir

vernal bear
somber heath
#

@sick otter 👋

wise cargoBOT
#
Voice verification

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

sick otter
#

Yes I want to speak !

somber heath
#

@valid canyon 👋

vernal bear
#

thank yyou for explaining it to me father

sick otter
#

Less than 3 days and 25 msg

somber heath
vernal bear
#

no ofc just ment as mentor

#

😟 but if i was would that be an issue

#

like think about this

sick otter
#

What's happening sir ?

vernal bear
#

what if you taught me the basics of proggraming think about the projects you could tell me to do

#

think about it

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.

somber heath
vernal bear
#

thank you sire

vernal bear
sick otter
#

Yess that's awesome

vernal bear
#

dexter

#

should we just talk until we have sent the 25 messages required

upper gate
#

@somber heath are you dev? if yes then love know more about what you do.

vernal bear
upper gate
#

i'm also a backend dev 🙂

sick otter
#

Need a proper guidance about it...

vernal bear
upper gate
#

in a fintech company

sick otter
vernal bear
#

did you go to school for it??

vernal bear
vernal bear
#

like to get to where u are now @upper gate

upper gate
somber heath
#

@fossil plover 👋

fossil plover
#

hello!

#

what were you guys talking about?

vernal bear
#

well ill take your word for it, its also not the first time ive Hurd you don't need a degree

somber heath
#

@idle breach 👋

vernal bear
#

may i ask if there is a way one can expidite the 3-day thing (cough cough)

#

seems like ill just have to wait it out than

#

it makes sense tho, what are 10 min blocks

#

they get stored in the activey blocks

sick otter
vernal bear
#

i think i understand

#

you guys are going to be my family now 😈

sick otter
#

Sir where are you from ?

somber heath
#

@mental prawn 👋

echo bison
#

How are the spiders there haha

sick otter
#

Haha Peter Parker

vernal bear
#

huntsman spidersssss😟

sick otter
#

Dr octopus ?

echo bison
#

once a huntsman crawled over my face while i was asleep, i didnt realize it at first because asleep but then i saw it accross the floor and i tweaked for 10 seconds xd

vernal bear
#

i used to serve in the marine corps and i never got used to insects but you just have to burry the feeling and keep it pushing but if i see a hunts man ill be dissapering

#

Australia is the land of the brave honestly

#

bc u have to be brave to step outside everyday

#

what about the mosqiutosss thooo

echo bison
#

australia is simply an island, wich causes all animals and insects to evolve differently (bigger size mostly) or more venomous, australia is really no different than madagascar, only real difference is the country-size of australia

vernal bear
#

what is usually talked about in the voice channel @somber heath

somber heath
#

@mild chasm 👋

vernal bear
#

understood

somber heath
#

@thin salmon 👋

echo bison
vernal bear
#

i found the information i was looking for in the link u sent me @somber heath thank you "A wonderful resource for beginners wanting to learn more about Python is the 110-page PDF tutorial A Byte of Python by Swaroop C H. "

somber heath
#

@manic parrot 👋

manic parrot
#

How I can get microphone function?

scarlet halo
manic parrot
vocal basin
#

this includes C++ dependencies

#

also never ever use C++ ABI in a DLL

#

just don't

vernal bear
#

chaooo

scarlet halo
#

would it be a smart move to launch a win xp vm or something to develop half life mods

vernal bear
#

i have so many questions and so eager to talk lol ig ill just be patient

scarlet halo
#

what do you wanna talk about

vernal bear
#

i wanted to ask lets say i learn python right and i pair that up with other languages how do i look for jobs with no certifations or degree

vernal bear
#

ima bit slow

scarlet halo
#

i mean yeah but i got no answer

vernal bear
#

so sorry just in case

manic parrot
#

Ohh sh*t

Voice Gate failed
You are not currently eligible to use voice inside Python Discord for the following reasons:
• You have sent less than 25 messages.
• You have been active for fewer than 9 ten-minute blocks.

vernal bear
#

dammint

vernal bear
#

you can talk to me or with me

scarlet halo
vernal bear
#

lol

vernal bear
#

is everyone here muted by choice or just some

manic parrot
#

Ok How can the problem be solved?

vernal bear
#

dude you just text here and

#

in lil bit of time

#

some of the requirments will be met and

scarlet halo
vernal bear
#

youll be free to voice verify

manic parrot
vernal bear
#

yea for me i have the 3 day thing

#

whic should go away today

#

and the 9 min block

#

9 ten min blocks

manic parrot
vernal bear
#

which im still kinda trying to understand

#

we must remain commited brother

#

only than will we

scarlet halo
#

i think it means that you gotta be active for 10 different 10-minute periods

vernal bear
#

oh 🙀

#

oh my

woeful blaze
#

How is everyone doing today?

scarlet halo
#

pretty good

#

woke up at 1PM today lol

upper gate
#

is there any backend dev

#

?

winter bane
upper gate
#

if you're suffering i can help you out i have 2.5 yrs of exp

#

i want ask something realted to fastapi and grpc

winter bane
sick otter
#

Breaking bad , say my name

winter bane
#

Dexter Dshawn ? The Night City's best and dead handler ? or Dexter from Dexters labs

sick otter
#

I think it's the night city's one

#

I forget what's that chem teacher name ?

winter bane
#

HHH >>> THICCC HANDS MAN

winter bane
#

white

sick otter
#

He's legend

upper gate
#

what you really want to know?

winter bane
sick otter
upper gate
#

fastapi is secure ad it depends how you use it.

winter bane
wise cargoBOT
winter bane
sick otter
winter bane
sick otter
#

Haha that's point

winter bane
#

@upper gate what are ur thoughts

upper gate
winter bane
#

Sure explain

echo bison
#

i can hear you

upper gate
# winter bane Sure explain

you don't need middleware to track after authentication itself request contain the user details like is_super, admin , is_staff and almost everything
you can override the existing the save or update method
and you can handle these things in form and serilizers
there's alot of way to do this

errant junco
#

How everybody feeling today

upper gate
#

wbu??

#

we are good i guess

burnt marsh
#

12 pm, having breakfast, reading chat.. Thats a beautiful start of the day

burnt marsh
errant junco
upper gate
#

i'm new in this group

errant junco
upper gate
#

so what you guys do??

upper gate
burnt marsh
errant junco
burnt marsh
#

Just like a real estate

errant junco
#

Pulse build my own trading bot for meme coins

#

But I do a lot of things I guess lol like investing and stuff

errant junco
burnt marsh
upper gate
#

ohhh thats cool and did you used any api to track the stocks price??

errant junco
#

But I need to learn c++ as well lol

#

But I’m only focused on python right now

burnt marsh
errant junco
#

Yeah you might as well!!!

burnt marsh
errant junco
#

Hell yeah you want to be friends bro

#

I’m high key looking for friends that code 😭

burnt marsh
#

Open for new mates, guys

#

Open to teach others, open to learn from others

winter bane
#

@chilly wolf I just had a huge ass fight (and is still ongoing) on reddit ! I am loving it to bring pitchfork and defend my point like a total maniac :p

scarlet halo
#

goldsrc my beloved (dont have an actual game currently lol)

#

opinions on this logo? (chatgpt made it cause i suck)

wind raptor
#

@scarlet halo

Missing an opportunity to use the O in Gold and the O in Portal to do this

scarlet halo
#

@wind raptor

fluid wagon
#

@scarlet halo

scarlet halo
#

?

fluid wagon
#

lm arena ai

scarlet halo
#

ah

fluid wagon
#

better

empty fjord
#

Yes

scarlet halo
#

what the hell is a Python 💀

vocal basin
#

@wind raptor are we talking cloud

#

the minimal deployment is kind of an opinion too

#

something something minimal k8s setup is 7 servers

#

or around that

#

do the "serverless" mistake 🚀

#

AWS Lambda

#

Cloudflare Functions/Workers/whatever

#

you should do stateless, just not through that necessarily

#

triggers and procedures yes

wind raptor
vocal basin
#

JavaScript makes fun of itself

#

@wind raptor and so does DHH

#

make random notes appear across the map

#

with logs

#

peak debuggability

whole bear
vocal basin
#

tell apart minified JS and average Perl: an impossible challenge

whole bear
#

Both array and object are objects

#

But + [] gives 0
While + {} gives NaN

#

:P

whole bear
vocal basin
whole bear
wind raptor
#

from code

#

!src user

wise cargoBOT
#
Command: user

Returns info about a user.

Source Code
wind raptor
#

src code for our Python bot ^^

odd patrol
#

nice

scarlet halo
#

i also got a blog on there

#

and some fun games, like wordle

odd patrol
#
days = 3
if days == 0:
  khalil_mods.unmute
  print("{user} is now unmuted") 
#

i mean

#
days = 3
if days == 0:
  user.unmute
  print("{user} is now unmuted") 
#

thats better

#

sorry i have to write somthing to have 25 massge

#

its cring

#

i know

#

sorry

#

||Pretend you didn't see anything||

#

bye

gilded dome
#

how can i dowload pygames?

wise loom
#

github is down, but why

gilded dome
#

i want to tryand use pyghame

wise loom
gilded dome
#

i dont know how?

wise loom
gilded dome
#

what am i suppost to try

gilded dome
#

?

wise loom
gilded dome
#

yea but what do i do ?

wise loom
gilded dome
#

ok

wise loom
#

have you opened the link?

gilded dome
wise loom
# gilded dome yes

i think what we need is an AI that does everything for us, then we don't even have to do anything

gilded dome
#

????

wise loom
wise loom
scarlet halo
pale fable
#

hi

scarlet halo
#

hi

whole bear
#

hello

scarlet halo
#

hi

somber heath
#

@violet cedar 👋

#

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

humble belfry
#

guys does anyone knows about java

timid quartz
#

i cant

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.

timid quartz
#

i cant

#

i havent been in here for 3 days

#

something cool

#

everything

somber heath
#

@tardy geyser 👋

#

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

tardy geyser
#

sup

timid quartz
#

i cannot code anything

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.

earnest scroll
#

yes I cant talk

#

I dont know

hidden osprey
earnest scroll
#

you need to learn basics of Programing languages after that you can start Hack the box

#

bye

hidden osprey
#

byee pithink

somber heath
#

@solar pendant 👋

#

Connectivity issues?

wise loom
#

@somber heath i'm sorry the topic was not interesting enough. maybe i should ask you about your interests next time.

molten sage
#

Hi there
which library is necessary to study first
I am a beginner in python

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.

somber heath
#

@ocean solar 👋

ocean solar
#

hello

somber heath
#

@solar pendant 👋

#

Here. 🙂

#

@quasi yew 👋

somber heath
#

@quiet lance 👋

rich tree
#

@somber heath yoooo

#

u remember me?

#

no my old account got banned

#

discord itself

#

alot of people reported me as a "joke"

#

what does 9 ten minute blocks mean?

#

so i have to send messages and i have to wait 10 mins or something?

#

a little

obsidian root
#

hello

#

I shouldnt have said anything

#

releases the first?

#

are they doing the same kind of jokes as the originals? don't know how well it will hold up

#

police squad! was the original tv sereies

#

canceled after 6 episodes, then became the movies

#

I just saw clips on youtube. Haven't ever seen a full episode

#

Yeah, the entire naked guns series I believe was him playing the straightman even when he was the joke

somber heath
#

@pallid agate 👋

pallid agate
#

hi

#

sorry i didn't verifi my voice chat

obsidian root
#

haha

somber heath
wise cargoBOT
#
Voice verification

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

obsidian root
#

They did a lot visual gags where you had to pay careful attention to what they said or what was going on in the background to get the joke

#

what?

#

are you making pasta for a group?

#

gotcha. pasta from scratch?

#

I should make fresh. I just feel its much more intensive and store bought it cheap

#

you don't scale it! you boil it! its not a fish

#

haha. sorry

#

me? I have n't been active enough

#

yeah.

#
You have been active for fewer than 9 ten-minute blocks.
#

I was thinking for like a good python high performance language, and then think that most python devs would go rust if they aren't c die hards

peak depot
obsidian root
#

Im currently thinking about game engine design. I just haven't second thoughts for c++. but dont want to write in rust. Maybe I should do zig

#

My headphones broke. Some scotch tape took care of it supprisingly well

#

Mine are nearly 5 years old

#

@haughty pier hey aaron

#

achievement unlocked!

haughty pier
obsidian root
#

@haughty pier im a pleb. can't talk

#

I dont believe Im anywhere near the time minimum, gonna stop checking

#

nah, don't know this guy

#

never talked to him on rust discord

#

nor nix server

#

nor fedora server

#

nah, dont know this guy

#

no? nvm then

#

no real redhat memes for redhat query. Oh well

#

the annoucer bot for teamspeak should be a part of discord

obsidian root
#

no...

#

You have a degree in polisci right?

#

I typically on rust discord

#

Why is the sky blue?

#

are you a mod on this server?

haughty pier
#

no

paper wolf
#

what u guys doin?

night spoke
#

guys may i ask a question?

obsidian root
#

@haughty pier thanks for the conversaion aaron. It was fun

night spoke
#

'count()' 'int c sharp is 'len()' in python right?

haughty pier
#

Yep, cheers!

haughty pier
upper gate
#

hello

somber heath
#

@long adder 👋

long adder
#

@somber heath hloo

#

@somber heath when can i get voice access

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.

long adder
#

@somber heath bro ru an data anlyst ?

#

kk bro

somber heath
#

@white fjord 👋

vocal basin
#

what if you already fell asleep by that point and that was just a dream

peak depot
#

could be, my days are a bit hazy and sometimes I really don't know what is real and what was dream

vocal basin
#

@peak depot did it happen again or are you describing the earlier thing?

#

@somber heath Lex Fridman matching with his mirror

#

@peak depot even the bed is rented

vocal basin
#

absolutely nothing

#

0 regular medication

somber heath
#

@whole bear 👋

vocal basin
#

I haven't talked to a doctor in almost 4 years I think
(there are some safety concerns why I avoid any sort of stuff that has to deal with my documents if I can, and medical personnel in Russia are not to be trusted)

#

if only it was that

#

@midnight agate just like MangoDB

near sleet
#

Brazil?

vocal basin
near sleet
#

Aí sim

#

Tou aprendendo python

#

Mas não consigo entender algumas coisas