#voice-chat-text-0
1 messages · Page 501 of 1
@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
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
there is a 4-letter answer to that
(as in the name of what algorithm/structure to use)
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
this is when you need largest common between any two
not all of them
(in which case you'd use a Trie)
but, yeah, here it's simpler
Yeah try to compare characters before adding it to solution
if first character fails, theres no common prefix so return empty str
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
should i work on a 3d or 2d game first?
1d
?
yeah i think thats right
thanks
hello
i wana ask somthing
if somebody coding or making projects but he using ai for help with codes is that cheating or not
civilisation all over again
it's not cheating, it's a lost opportunity
||
@fierce dawn
||```py
hidden code
```||
@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)
```||
what do u mean with lost opportunity
2d
lost opportunity to learn or to develop something new
the cleanest sol i could come up with
||
class Solution:
def longestCommonPrefix(self, strs: List[str]) -> str:
def lcp(a,b):
i=0
while i<len(a) and i<len(b) and a[i]==b[i]:
i+=1
return a[:i]
return reduce(lcp,strs)
||
ok thanks
okay I'm too lazy to lookup my solution so I'll have to write it again
thats valid too
but if somebody has a goal for making project but he doesn't know how to do or how to start . what he's gana do in this case ?
3D you have to make all these different files for textures, model ,move
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
Brb after I eat 😄
many use pygame
how do io install that ?
pip or uv
!pypi pygame
no loops no lambdas
||```py
strs[0][:sum(takewhile(1 .eq, map(len, map(set, zip(*strs)))))]
panda3d is another option
!pypi arcade
!pypi ursina
i already use ursina but shoukls i use that for 2d games or not \
what are your pros/cons for ursina so far?
nothing really just startewd using pythoin 2 days agop
What is the game supposed to be?
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
Jai's memory usage analyzer is interesting.
using LLVM for the actual difficult part
Or whatever this is. https://youtu.be/IdpD5QIVOKQ?t=1177
#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...
the timing of this being released just before BSC is quite great
general idea of these two: software is not solved, never has been, never will be, continue inventing and applying actual thought to the process
It's funny tho.
No loops, no lambdas, no points (in some sense):
||```python
import os
longestCommonPrefix = os.path.commonprefix
||
I might've seen this as the solution before
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
do you know what reference-counted string in C++ is called?
std::runtime_error
🤦♂️
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
I learned something new tonight^^
:D
What's the game going to be about I ship for Easton that way
well i think you are going to be at your house and you have to do a list of chores and keep you happeness high
Is it going to have a monster?
no i think it is goin to be a psycoligical game where if you dont keep you happiness up you start to go crazy
Please watch in "high quality"
"Story from North America" by Garrett Davis and Kirsten Lepore
Music written and performed by Garrett Davis
More animations at http://www.kirstenlepore.com
and http://www.garrettmdavis.com/
Hi
Hey
ok hello
@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
yeah sure
so dont generate entire projects 100% ai
whats better tkinter of PyQt5
Tkinter is way simpler
@fallen holly 👋

@clear dune 👋
@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
You're welcome to hang out here all the same.
aw damn you both left
@steep lion 👋
hola
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
RIP, I feel for you , i had a plastic build pavlion and it broke exactly same way
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
not just dell tbh
there was one brand which had them under the wires to the power button so every time the hinge broke the laptop couldn't be started
it's endemic
you don't get this shit on laptops from ~10 years ago
@somber heath
hello
i was sayng that could you help me in learning python or could you teach me
Yes.
yeah this was about 7 years ago
2018
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
@whole bear 👋
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
Buddy working on something?
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
Hay why don't u just use it as a desktop lol
i'm going through a history of dumb shit i've dealt with in tech support and thought this might be amusing
@manic basin 👋
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
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
@sour folio 👋
hi
Hi
Are you French?
no italian, wait why cant i talk?
Ye same thing
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@manic basin Sorry, I did try to tell you.
hello everyone
@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
Hi aigan
@long cloak 👋
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
everything going over head for me .
What's this VoiceChat for
Care to undeafen?
ya
Oh, I thought its my mic issue.
Is this a family friendly type of server?
@somber heath ur voice is not so clear.
Are you able to hear me talking when I do?
@long cloak and @manic basin go to #voice-verification for enabling vc
I have been in here for 1 day so I can't unfortunately
can all of u train me for my interview?
@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
Is there autocomplete in discord 
u need to type and chat more to unlock it
Ye and wait two more days
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
juct check it what is written there
Like I can type pr<TAB>
it can give suggestion
Bro you can work for national geographic @somber heath
where did this came from?
The way he speaks and the wise that comes from each sentence I feel like I'm hearing a poetry
😂
Pov: me when I am yapping
Bro they should add quotes here oh it will be funny
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
How are you opalmist
@vapid mountain @torn tide 👋
i cant speak
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
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
@rare adder 👋
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 😦
@waxen salmon 👋
How are you doing today?
@peak depot did i disturbed u , sorry for that if i did
How can I put a backend into my frontend? For free
Not you, also the thunderstrom got bad - had to turn of my comp
You can code it ur self ?
I use a Samsung phone but I have the codes of everything I need but idk how to put a backend into a frontend
Ok, I thought i did some disturbance, anyways take care and stay worm 🔥
You have to host a backend, so it's not usually free. I am able to keep my fly.io backend + db under the $5 threshold which makes it free from there, but if you go over, you have to pay and you do need to link a credit card to use it.
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
I mean like I don't have my credit card yet or debit card så idk what to do
Is there anything else?
Any other websites
There is render.com but when you are not using the backend, it goes dormant and takes 30 seconds+ to start back up
maybe use free ec2 from aws ? or if ur code is in python u might be able to use pythoneverywhere servers with sqlite
My backend is over 512 mg
Need a credit card for any cloud provider (AWS, GCP, etc)
Ohhh ..
512 mb?
I don't think that matters with render.com.
lemme check fly.io
It links to your github, so they aren't storing the site files
Hey @narrow palm 👋
where are you from?
🇨🇦
how get permission?
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
im from india
Nice
Air is so fresh bcause rain reduces pollution in the air
hi
yo
👍🏻
hello
mindful dev can i ask you something
how does someone get the snek tag
ah
thank you
good bye
i didnt see it
@wind raptor that also assumes a reason for an attack
DoS attacks normally target businesses from whom they can extort something
that place looks great
!rule 5
5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.
you’re addicted to the rules bro? 😭
don't call be "bro"
sure, I was just trying to be friendly
yo
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
it's incredible that Python has a built-in .INI parser and Perl does not, wth?
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 💪 🧠
wouldn't be surprised if INI is valid Perl already
because everything is valid Perl lol
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)
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.
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?
hehehheeeee
exactly
killing the spider in anyhow
@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
You ask dangerous questions.
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
In case you were wondering why you can't talk.
@burnt marsh i agree, it’s also system design and distributed systems and DSA
and possibly more
Okay I am in VS coding it told me to start off with # what's this techinically called or the difference between "
I know that in C++ you have to write # whenever you mention imported libraries for your code (if im not wrong)
most preprocessor directives start with # yes
@earnest scroll here
okay
awesome!
hahaha
boston is very nice
depends on field
I am feeding my pets
thats why I cant join the convo
I have fishes
do they get scared if u knock on the glass :p
Backgammon
They used to be scared but right now they are chilling
They are always chilling, I mean we should teach them to paint or write poetry bcas , man they have time and safety , they dont have to earn anything
🤣 .
dude they are too small to do painting. I wish to teach couple of tricks 😁
yeah like make small hoops for them to go through and do like a summersault 😛 xd
somersault *
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
at least it doesn't affect the breath (like an asthma affect)

May I join till opal arrives back?
of course
better than us
I think one more day of this no talking lol
ive just joined welcome my friend
@burnt marsh
datacamp is also good
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
???
i dont understand
you can show it here
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
goodnight @burnt marsh
good night everyone
byee @burnt marsh
yo its morning dicord?
@void willow @quaint anvil 👋
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@signal sleet 👋
hi @somber heath
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
You are not allowed to use that command here. Please use the #bot-commands channel instead.
@solar pendant 👋
You are not allowed to use that command here. Please use the #bot-commands channel instead.
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
can u help me in making class diagram?
i have functional requirements but i am confused a little bit
thats intresting
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
a cool new picture, it that a burger perhaps?
a couple of burgers
!e py import subprocess result = subprocess.run(['cal'], capture_output=True) print(result)
:x: Your 3.13 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File [35m"/home/main.py"[0m, line [35m2[0m, in [35m<module>[0m
003 | result = subprocess.run(['cal'], capture_output=True)
004 | File [35m"/snekbin/python/3.13/lib/python3.13/subprocess.py"[0m, line [35m556[0m, in [35mrun[0m
005 | with [31mPopen[0m[1;31m(*popenargs, **kwargs)[0m as process:
006 | [31m~~~~~[0m[1;31m^^^^^^^^^^^^^^^^^^^^^^[0m
007 | File [35m"/snekbin/python/3.13/lib/python3.13/subprocess.py"[0m, line [35m1038[0m, in [35m__init__[0m
008 | [31mself._execute_child[0m[1;31m(args, executable, preexec_fn, close_fds,[0m
009 | [31m~~~~~~~~~~~~~~~~~~~[0m[1;31m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^[0m
010 | [1;31mpass_fds, cwd, env,[0m
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/5DKZM5FUNM7U36JHUD2XUQ7EOY
you have my attention
!e
from sys import executable
from subprocess import check_output # slightly outdated
result = check_output([executable, "-m", "calendar"], text=True)
print(result)
: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
.-----------------------------------------.
| FRI | SAT | SUN | MON | TUE | WED | THU |
|-----------------------------------------|
| | | | | | | |
criminal art
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
so, there, actual useful project idea: make literally the same thing but more customisable
@somber heath hello
@obsidian jewel 👋
Hi !
@obtuse elbow 👋
i have no permission to talk :(
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@peak depot beautiful sleepy angels
What would you like to know
Yo @somber heath which browser is ur default browser on ur windows or laptop?
And @jovial merlin u?
i use firefox most of the time
although zen is nice
Is it safe?
and if your on windows or mac, arc is really good
Yes security
@jade prism 👋
:_(
@sick otter 👋
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"
@royal vine 👋
# 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
- 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 !...
the main point of the exercises is to solve it without involving regular lists
however, yes, you can do it with a conversion too
tell me about link list
look at the comment at the start of the code
# Definition for singly-linked list.
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
@primal sphinx @odd patrol 👋
ok
i stell dont undrstnad
yeah but what thats that mean
!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)
:white_check_mark: Your 3.13 eval job has completed with return code 0.
ListNode(val=3, next=ListNode(val=2, next=ListNode(val=1, next=None)))
each ListNode in a linked list has a value (val) and a next node (next)
so wan a list is in calls it will be list node
!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
:white_check_mark: Your 3.13 eval job has completed with return code 0.
001 | ListNode(val=3, next=ListNode(val=2, next=ListNode(val=1, next=None)))
002 | ListNode(val=2, next=ListNode(val=1, next=None))
003 | ListNode(val=1, next=None)
@timber oasis 👋
hello
don't know
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
voice gate failed need to send more message to verify the voice
👋
Do people stream when doing code?
- I just started watching tutorials yesterday, so this is insanely new to me
Sometimes.
@vernal bear 👋
hellow good sir
i was wonderin how one gains the means to speak it feels like im behind bars
@sick otter 👋
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Yes I want to speak !
@valid canyon 👋
thank yyou for explaining it to me father
Less than 3 days and 25 msg
I do not acknowledge you as my offspring.
no ofc just ment as mentor
😟 but if i was would that be an issue
like think about this
What's happening sir ?
what if you taught me the basics of proggraming think about the projects you could tell me to do
think about it
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
thank you sire
oh dude thats awesome
Yess that's awesome
@somber heath are you dev? if yes then love know more about what you do.
i want to learn how to code python and i got so much dedication but no guides and youtube helps but it gets to a point
Same here !
i'm also a backend dev 🙂
Need a proper guidance about it...
goooddammit everyones is so ahhead😭
in a fintech company
🥲
did you go to school for it??
?
like to get to where u are now @upper gate
yes i have completed my engineering but it doesn't matter...
@fossil plover 👋
it doesnt?? but i could see it now me sitting Infront of an interviewer
well ill take your word for it, its also not the first time ive Hurd you don't need a degree
@idle breach 👋
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
Y mine 9 min block what's that ?
Sir where are you from ?
@mental prawn 👋
How are the spiders there haha
Haha Peter Parker
huntsman spidersssss😟
Dr octopus ?
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
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
my soul would leave my body
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
what is usually talked about in the voice channel @somber heath
@mild chasm 👋
understood
@thin salmon 👋
anything and everything
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. "
@manic parrot 👋
Thanks 🙏
chaooo
would it be a smart move to launch a win xp vm or something to develop half life mods
i have so many questions and so eager to talk lol ig ill just be patient
what do you wanna talk about
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
i mean yeah but i got no answer
so sorry just in case
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.
dammint
time to conversate
you can talk to me or with me
yeah so uh you should probably follow the instructions
lol
so spelis
is everyone here muted by choice or just some
Ok How can the problem be solved?
Yeah sure
dude you just text here and
in lil bit of time
some of the requirments will be met and
some have the voice verified role and some dont
youll be free to voice verify
Okay thank u
yea for me i have the 3 day thing
whic should go away today
and the 9 min block
9 ten min blocks
Omg
which im still kinda trying to understand
we must remain commited brother
only than will we
i think it means that you gotta be active for 10 different 10-minute periods
How is everyone doing today?
I am working on backend with python django and i am suffering , what u wanna ask ?
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
The suffering is caused by django's clumsy code mess, I am soon gonna switch to fast api , but the question i might ask u is How secure u think is fastpi against django framework
Breaking bad , say my name
Dexter Dshawn ? The Night City's best and dead handler ? or Dexter from Dexters labs
HHH >>> THICCC HANDS MAN
it depends what you're using and how you're using it?
what you really want to know?
Buddy are u glorifying melting people ? Thats my no no square
Python !
fastapi is secure ad it depends how you use it.
No brooo 😭
SO broski , understand my pain !
Click here to see this code in our pastebin.
haha got ya , weak heart
Not weak bro ! Tell me which was your all time fav series?
cant say it here or they will burn me at witch stake
Haha that's point
Better read this post i made , ANd this is just one issue i have with django lolz
https://www.reddit.com/r/django/comments/1mbjpma/django_2025/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button
@upper gate what are ur thoughts
what i think you're making it complicate.
Sure explain
i can hear you
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
How everybody feeling today
Doing fine, man. Having breakfast, reading Python discord chat😂
12 pm, having breakfast, reading chat.. Thats a beautiful start of the day
How do u do?
I’m doing good as well bro
Hell yeah 😂
i'm new in this group
I’m doing good I’m just out with my lil brother why he sell cars
so what you guys do??
your lil bro sell cars fr.
Cars is a good investment
I’m a trader but I’m learning python for I can get a quant trading job 😭
Just like a real estate
Pulse build my own trading bot for meme coins
But I do a lot of things I guess lol like investing and stuff
What you do
So investing - it's financial instrument analysis?
ohhh thats cool and did you used any api to track the stocks price??
Nah I want to be a quant trader not a analyst
But I need to learn c++ as well lol
But I’m only focused on python right now
I guess I need it too.. Will make my projects work much faster, and be able to run them without installation of python interpreter
Yeah you might as well!!!
I was learning C long time ago.. After I started working with pointers, I just left and chose python for data analysis
Hey first of all thanks for a reply , But , I can show you in more depth why this argument dont hold up and how i am bound by frameworks CLUNKINESS .. wanna have a freindly discourse ?
@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
goldsrc my beloved (dont have an actual game currently lol)
opinions on this logo? (chatgpt made it cause i suck)
@scarlet halo
Missing an opportunity to use the O in Gold and the O in Portal to do this
@wind raptor
@scarlet halo
?
lm arena ai
ah
better
Yes
what the hell is a Python 💀
@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
Experimenting with portals, for science.
The project is available here: https://github.com/SebLague/Portals/tree/master
If you'd like to get early access to new projects, or simply want to support me in creating more videos, please visit https://www.patreon.com/SebastianLague
Resources I used:
http://tomhulton.blogspot.com/2015/08/portal-rende...
JavaScript makes fun of itself
@wind raptor and so does DHH
make random notes appear across the map
with logs
peak debuggability
Typeof null // object
tell apart minified JS and average Perl: an impossible challenge
Btw which language do you prefer the most!
Language H
Even some of it's behavior changes for node
from code
!src user
src code for our Python bot ^^
nice
@wind raptor @rapid iron i host things like https://github.com/spelis/skolmaten on my website, also i pay for a subdomain (my friends domain) and my current approach has worked fine for months now.
i also got a blog on there
and some fun games, like wordle
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
how can i dowload pygames?
github is down, but why
i want to tryand use pyghame
what's stopping you?
i dont know how?
have you tried?
what am i suppost to try
?
did you open the link?
yea but what do i do ?
it says in the link what you should do
ok
have you opened the link?
yes
i think what we need is an AI that does everything for us, then we don't even have to do anything
????
yes, imagine having an AI that would literally do everything for us
@lavish rover @burnt marsh was curious what you think about the tables mentioned in this paper
#voice-chat-text-0 message
hi
hi
hello
hi
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
guys does anyone knows about java
i cant
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
The Kindling projects page contains a list of projects and ideas programmers can tackle to build their skills and knowledge.
sup
i cannot code anything
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
you still have 1 more day too go!!
you need to learn basics of Programing languages after that you can start Hack the box
bye
byee 
@somber heath i'm sorry the topic was not interesting enough. maybe i should ask you about your interests next time.
Hi there
which library is necessary to study first
I am a beginner in python
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
I like http://docs.python.org/3/library/ a lot.
@ocean solar 👋
@quiet lance 👋
@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
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
@pallid agate 👋
haha
Looking for timeless comedy classics? 😂
Here’s a scene from the legendary POLICESQUAD! series, featuring Detective Frank Drebin 👮🏻♂️ – brought to life by the one and only comedy legend Leslie Nielsen🐐
Drop a like if you've enjoyed the video and want to see more videos like this. ❤️
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
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
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!
sup
@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
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?
no
what u guys doin?
guys may i ask a question?
@haughty pier thanks for the conversaion aaron. It was fun
'count()' 'int c sharp is 'len()' in python right?
Yep, cheers!
talk to you later
probably not a lot of C-sharp users here, certainly not me
aww, thanks
hello
@long adder 👋
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@white fjord 👋
what if you already fell asleep by that point and that was just a dream
could be, my days are a bit hazy and sometimes I really don't know what is real and what was dream
@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
I'm almost certain he at some point called himself that unironically
absolutely nothing
0 regular medication
@whole bear 👋
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
Brazil?
@somber heath https://github.com/dcramer/mangodb

