#voice-chat-text-0
1 messages ยท Page 576 of 1
I've heard FastAPI mentioned in a positive light.
so
what is your stack?
?
lol
more understandable
python is super understandable
so your super understandable lang is just for simple scripts?
how did you make it?
rn iโm just making apis on drf and some golang
and i want to make mobile clients
for ios and android

guys
do you have something in production right now or you just working in companies
project
idk
STARTUP๐
so do you make money on your projects or just get salary
in company
wow
what is your company do?
thats great
how much traffic u get?
like in
last month
maybe
idk
im just writing text for vc
for verification
You know about #voice-verification?
i hate voice verification
for real
itโs just destroying my life
guys
lets text about something
please
i need verif
โtyping random shitโ
im OpenAI ceo
lol
@tender cypress ๐
Yeah.
@thorny quarry ๐
hi
I tried to download it to flash
why verif? guide pls
(
@fair locust ๐
Sudoku game in captcha itโs best idea of all time
heyyyyyyy
I'm not looking to engage you in a semantic debate.
It has been updated with specific intent to form a component of it.
I am done.
I am done.
It's destroying planet
NO, privacy.
Information will be accessible easily.
@somber heath What lies ahead is more dangerous.
We will loose control at somepoint.
@potent tapir me robo el otro dia
no, not me
float Q_rsqrt( float number )
{
long i;
float x2, y;
const float threehalfs = 1.5F;
x2 = number * 0.5F;
y = number;
i = * ( long * ) &y; // evil floating point bit level hacking
i = 0x5f3759df - ( i >> 1 ); // what the fuck?
y = * ( float * ) &i;
y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
// y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
return y;
}```
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@inner horizon @cyan gale ๐
oh alr
I sent the idea in discussion
what?
open stream
stream code
shy
No code stream: No point staying. Next time stream
Stay secure. I go make my code
lol
โฎ๏ธ
Yes
Gotta catch the first 4 seasons
gore
graphic content
more graphic than the hills have eyes
woke antifa nonsense
Saw it
waiting for them to show up
boo meeting inc
Hello @somber heath
How's your day going?
Thats an interesting response
Oh
What happened?
Oh
Afternoon @inner hill
It's 10 PM over here , man
Good Afternoon
Fair enough, had a good day?
Very very good day
WHat about you
Good good,
`import winsound
winsound.PlaySound("Legacy.wav", 0)`
import winsound
winsound.PlaySound("./Legacy.wav", 0)
what are you building
@gleaming parcel ๐
Hi! There r built-in text accompanying chats too:)
Oh, u r right! Now I don't know where my 1st msg went to:)) Yeah, my right to speak was removed, I guess, or I never earned it in the 1st place. Anyway, thanks. I hoped to talked about codebase architecture.
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@latent flame ๐
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Im taking a python class in college. So I figure i return back to the discord world.
I'll see you around
@dense zinc check #voice-verification
Hello guys!
@cosmic bison chat bot ??
ohhh
Cool , i just start learning about those , not much clue about it
kinda
just exploring new staffs of programing
i should go now , i have exam tomorrow have nice day and good luck with ur work
@open elk ๐
@clever raven ๐
n: int)
def is_prime(n: int) -> bool:
numbers = [50_000_000, 40_000_000, 30_000_000]
!code
numbers = [50_000_000, 40_000_000, 30_000_000]
def is_prime(n):
if n < 2:
return False
if n == 2:
return True
if n % 2 == 0:
return False
sqrt_n = int(math.floor(math.sqrt(n)))
for i in range(3, sqrt_n + 1, 2):
if n % i == 0:
return False
return True
def total_primes():
for is_prime() in numbers:
if is_prime() == True:
def main():
#calculate times and output stuff
start = time.time()
# results = [sum_of_squares(n) for n in numbers] """sequential method no optimazation """
with ProcessPoolExecutor() as executor:
results = list(executor.map(sum_of_squares, numbers))
end = time.time()
print("Results:", results)
print(f"single thread time: {end - start:.2f} seconds")
#15.78 seconds no optimazation.
#basic process poolExecutor gives high 9(low nine with main function optimazation) seconds lets try math for a function of Is Prime.
:x: Your 3.14 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File [35m"/home/main.py"[0m, line [35m4[0m, in [35m<module>[0m
003 | [31mfoo[0m[1;31m()[0m
004 | [31m~~~[0m[1;31m^^[0m
005 | [1;35mTypeError[0m: [35mfoo() missing 1 required positional argument: 'bar'[0m
def is_prime(n):
n == numbers
....
!e ```py
def foo(bar):
print(bar)
foo("Hello, world.")```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
Hello, world.
def total_primes(value):
for value in numbers:
if is_prime(value):
total_primes += 1
def total_primes(range_):
for value in range_ :
if is_prime(value):
total_primes += 1```

@ancient hedge ๐
Hyy
hello
def total_primes(a, b):
for value in range(a, b):
if is_prime(value):
total_primes += 1```
- return
import math
import time
from concurrent.futures import ProcessPoolExecutor
numbers = [50_000_000, 40_000_000, 30_000_000]
def is_prime(n):
if n < 2:
return False
if n == 2:
return True
if n % 2 == 0:
return False
sqrt_n = int(math.floor(math.sqrt(n)))
for i in range(3, sqrt_n + 1, 2):
if n % i == 0:
return False
return True
def total_primes(range_):
for value in range_ :
if is_prime(value):
total_primes += 1
def main():
start = time.time()
# non optimized
results = total_primes(numbers)
end = time.time()
print("Results:", results)
print(f"single thread time: {end - start:.2f} seconds")
!d timeit
Source code: Lib/timeit.py
This module provides a simple way to time small bits of Python code. It has both a Command-Line Interface as well as a callable one. It avoids a number of common traps for measuring execution times. See also Tim Petersโ introduction to the โAlgorithmsโ chapter in the second edition of Python Cookbook, published by OโReilly.
!e ```py
def func():
pass
print(func())```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
None
!e ```py
def func():
return 123
print(func())```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
123
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
@ancient hedge ๐
#voice-verification ๐
import math
import time
from concurrent.futures import ProcessPoolExecutor
def is_prime(n):
if n < 2:
return False
if n == 2:
return True
if n % 2 == 0:
return False
sqrt_n = int(math.floor(math.sqrt(n)))
for i in range(3, sqrt_n + 1, 2):
if n % i == 0:
return False
return True
def total_primes(numbers):
total_primes = 0
for value in numbers:
if is_prime(value):
total_primes += 1
return total_primes
def main():
numbers = [50_000_000, 40_000_000, 30_000_000]
start = time.time()
results = total_primes(numbers)
end = time.time()
print("Results:", results)
print(f"single thread time: {end - start:.2f} seconds")
results = str(for total_primes in numbers) -> int
start = time.perf_counter()
end = time.perf_counter()
!pypi qrisp
@wind herald ๐
i dont understand u speak english
I don't understand English very well.
I'm sorry. It's the only language I know. ๐
I'm new to Python and Visual Code.
@tardy coral ๐
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
thanks
Nothing I say is of consequence, anyway.
I want to write malware to retaliate against those who wronged me.
!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.
oh
By doing so, you risk placing yourself in legal jeopardy.
Ask it.
I'm using Windows and I want security like hackers do.
Which one should I use?
Linux?
I use a ThinkPad X270
very laggy
There is no such thing as secure. There is only more secure and less secure. If you want security, discard Windows.
use what
Linux, depending on the distribution, is generally a better choice.
how to download
i dowload now
wait me
I share my screen
Maintain good data management practices. Data loss is a risk when installing an operating system.
why
!starify 1259470947736490046
:incoming_envelope: :ok_hand: applied superstar to @wind herald until <t:1776353346:f> (1 hour).
Your previous nickname, โ, was so bad that we have decided to change it. Your new nickname will be Nicki Minaj.
You will be unable to change your nickname until <t:1776353346:f>. If you're confused by this, please read our official nickname policy.
How computer literate are you?
hmm
User mistakes can cause data and function loss.
40%
it ok
I can reload
@somber heath
where are you
i need you
hey @worldly sky
@winter plinth
Do I need a USB drive to download Linux?
i dont understand
chat pks
pla
pls
yo
hassan
@hexed dust
@hexed dust
Yes. But to install Linux
I have a Windows recovery USB.
Can it be used on Linux?
No. Windows and Linux have different files filesystems format
i can delete window in usb and dowload file linux ?
Can you open you mic?
no
Better I would speak
Ohhh
I can share my screen with you.
What's your language?
viet nam
oke
@somber heath i made a pretty cool python script but it looks a bit rough
import sys
import os
import math
file = sys.argv[1]
name = os.path.basename(file).split('/')[-1]
bmpHeader = bytearray(b'\x42\x4D\x86\x00\x00\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\x00')
bmpInfoHeader = b'\x01\x00\x18\x00\x00\x00\x00\x00\x50\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
if file.endswith('.raw'):
with open(file, 'rb') as binary_file:
source = bytearray(binary_file.read())
rawdata = os.path.getsize(file) + 54
bmpsize = math.floor(math.sqrt(rawdata / 3))
bmpDimension = bytes.fromhex(bmpsize.to_bytes(4,'little').hex())
bmpHeader.extend(bmpDimension)
bmpHeader.extend(bmpDimension)
bmpHeader.extend(bmpInfoHeader)
bmpHeader.extend(source)
nameconvert = name.removesuffix('.raw') + '.bmp'
with open(nameconvert, "wb") as binary_file:
binary_file.write(bmpHeader)
else:
print("not raw")
exit
converts a raw headerless file into a bmp
by constructing the bmp header properly
audio as a image
the result is basically it makes an image where the x axis is the wave data, and the y axis is time.
its very interesting further you zoom in
Most Linux distro supports ntfs and fat
@jaunty socket what do you think of my script
cocking
do not cock the food
fair, i forgot about pep 8
i shoudl read pep 8 again
is this what you mean opal
https://pypi.org/project/pillow/
ah cool
hey gang, cant chat right now, just thought i might listen in for a bit
what i did was i didnt really modify the data of the source file, i just build a bmp header from scratch
its been a while, maybe even a year
i divide the file size measured in bits by 3 since rgb
and square root that
and floor it
and boom thats the dimensions
the biggest challenge was getting it in little endian format
a lot of languages like to write binary in big endian which is annoying
because in the bmp specification the data needs to be little endian for it
hi @somber heath
that's not russian
clion
colonoscopy
semicolon
from romantic (?) to possibly cannibalistic
smill wear
Smell good?
This reminds me of this
ppm-image-processing
cologne
@somber heath what do you think of this video
Weird
im not sure what a ppm is
I just say "I spray perfume"
what is this
It's a super simple image format
@jaunty socket i knew someone who wore cologne after exiting a swimming pool
im assuming this code creates a ppm image from code
right?
Yes
ah
mine is a bit different, it slurps up a source file and generates a bmp header for it
and creates a file with that header attached
during my course cologne
The idea was manually processing files without libraries
ah ok
Ghazi's accent sounds nicer now
Is there a practical purpose to wearing cologne while I study?
it keeps the mosquitos away presumably
Lol ๐
Ah, yes. After all, study attracts mosquitos.
mosquitos and in your case, magpies
What's the difference between cologne and perfume????
Well, they're on the lawn right now.
We use word "perfume" here mostly
gender
cologne is a type of perfume
Oh
"english isnt a gendered language" /j
@somber heath what do you think of monty python
10 languages in a trench coat
We should use latin or something same as global language.....
butler and housemaid
you arent wearing a bicycle helmet so ig you are safe @somber heath
Yum
i just realized
being up for something is the opposite of being down for something
well
not exact opposites
there's also "what's up"
Oh cool
.
But they still use ext4. I don't know if some deep level distros support ntfs.
I was able to open windows partition with my kubuntu ._.
I tried it with debian and fedora, both worked
I didn't knew that. I would also try
@somber heath can not getting voice verification
hi
I'm from Pakistan
wbu
wondering how did u ping me out of air lmao
i was never active in this thread ๐ค
how old are u
nice
are u also in web dev
wondering......
hmm fullstack web?
do u freelance or remote work btw
hmm
u have tech skills and major in bio
"The starc contrast amazes me" lmao ๐
well, you've a skill so why don't u try getting some bucks
Actually I'm 19 yrs old the pfp I've is like from 2016 or 2017 idr exactly
I'm new to tech learning html rn so web development i'm gonna learn finna
hmm if u're comfortable u should try
u certainly know about freelance stereotypes here
"dollars mei kamaana"
CS ๐
I've just took this major cuz I had no other choice
BUt its interesting
@tribal osprey bro
hi
oh alr
and my pfp was a bit uncanny thats why?
๐
!beginner
Here are the top free resources we recommend for people who are new to programming:
- Automate the Boring Stuff โ an online book (also available to purchase as a physical book)
- Harvardโs CS50P course โ video lectures (slides and notes provided) with exercises
- Python Programming MOOC 2026 course โ text-based lessons with exercises
- Corey Schafer's YouTube playlist
For a full, curated list of educational resources we recommend, please see our resources page!
wait its broken
im asking @autumn heron is it your first time, or you have atleast expereince on programming in general
@somber heath pork and beans
corey schafer is amazing source
heres my attemp
K
@fallow zealot ๐
it doesnt work
@junior hatch ๐
@whole bear ๐
Hello @final oracle
Hi there
How are you?
I am my in this srv
Ya 3 days to go
Fine how about you?
Btw which skills you have? Like programming,web dev?
Etc etc
can we build real UI's with python?
like i mean
tkinter and django are the things that come to my mind
Why would you think of django's mean to create UI , i don't understand
it is used to create robust backend systems
tkinter works for games or desktop apps (maybe)
tkinter is library of python for creating GUIs
whereas django is backend framework
Here are the top free resources we recommend for people who are new to programming:
- Automate the Boring Stuff โ an online book (also available to purchase as a physical book)
- Harvardโs CS50P course โ video lectures (slides and notes provided) with exercises
- Python Programming MOOC 2026 course โ text-based lessons with exercises
- Corey Schafer's YouTube playlist
For a full, curated list of educational resources we recommend, please see our resources page!
Thanks
@silent hawk ๐
yooo
where the mic
def is_prime(n):
if n < 2:
return False
if n == 2:
return True
if n % 2 == 0:
return False
sqrt_n = int(math.floor(math.sqrt(n)))
for i in range(3, sqrt_n + 1, 2):
if n % i == 0:
return False
return True
def main():
numbers = [50_000_000, 10_000_000]
true_count = sum([is_prime(n) for n in numbers])
start = time.time()
result = print(true_count)
end = time.time()
print("Results:",result)
print(f"single thread time: {end - start:.2f} seconds")
if __name__ == "__main__":
main()
@somber heath , Hey you there
Hey , If you wondering why i pinged you , it was because somebody asked for help for the above is_prime code , i thought that you can help him
@hearty flame ๐
hello @somber heath
@fair badger ๐
@somber heath hello
Ok
haha not active enoguh
@arctic salmon ๐
hiii @somber heath
1:30 hour with just 1 chat can be verified?
damnnn
bruhhh
๐คฃ i just active todaay it gonna be a while
finally passed my voice verification
Nice talking with you guys, I gtg
there exist such people
๐๐ป
@somber heath , do you think set thoery a good thing to have for programming?
Hii
@narrow abyss ๐
hi
hi
i want learn 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.
OwO
what bird is this
@astral flume ๐
!beginner
Here are the top free resources we recommend for people who are new to programming:
- Automate the Boring Stuff โ an online book (also available to purchase as a physical book)
- Harvardโs CS50P course โ video lectures (slides and notes provided) with exercises
- Python Programming MOOC 2026 course โ text-based lessons with exercises
- Corey Schafer's YouTube playlist
For a full, curated list of educational resources we recommend, please see our resources page!
dp?
@somber heath bro why your carring about my dp
...
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@desert shard ๐
Describe the issue
Lmao ๐ญ
though I cannot talk because for some reason I am not very much active in this server
Also can I send the screenshot of my error and code in here?
@somber heath @quartz beacon
!code
I probably am over the sea.
As you can see in the code I think my looping logic is pretty much on point but when I am checking the output on terminal I can see some words getting repeated what should I do. Even in the screenshot of output you can see the word 'expenditures' is getting printed twice
.
@somber heath sure I can send the code in text
def count_word(path):
"""Creating a list and count of unique words in the book"""
try:
contents = path.read_text(encoding='utf-8').lower()
except FileNotFoundError:
print(f"File {path} is not avialable at given location")
else:
words = contents.split()
for word in words:
word_count = words.count(word)
print(f"Word '{word}' is repeated {word_count} times.")
path = Path("CIA_facebook.txt")
count_word(path)
!code
Like this
How are you doing this
!code
Guys hold on tight I am trying to create the code in chat
Here you go guys
No I haven't tried using set
yes 100%
what is regex?
Ohh thanks for that but can you also tell me what is the issue in this code?
I got to knew why it's happening
thanks for talking me out of it
really helpful guys
so what's the issue
word_count = words.count(word)
print(f"Word '{word}' is repeated {word_count} times.")
Here I am using word but word can be there multiple times in the list that's why it's getting repeated
like "the" could be at first index or at the last index or many in between so that's why it's happening
so if I just take the unique word out of every list and then count it, it will work right guys?
How about I do the fix and get back to you @somber heath
If didn't came back it must have broken my computer by that time
hahahahaha
what happened to your cat
@peak depot Why are you getting surgery?
ohk my bad sorry for that
You will be fine I can assure that
too much info is pain
but I guess the odds of dying in surgery is less than 10%
how about we google it
!d collections.Counter
class collections.Counter(**kwargs)``````py
class collections.Counter(iterable, /, **kwargs)``````py
class collections.Counter(mapping, /, **kwargs)```
A `Counter` is a [`dict`](https://docs.python.org/3/library/stdtypes.html#dict) subclass for counting [hashable](https://docs.python.org/3/glossary.html#term-hashable) objects. It is a collection where elements are stored as dictionary keys and their counts are stored as dictionary values. Counts are allowed to be any integer value including zero or negative counts. The `Counter` class is similar to bags or multisets in other languages.
Elements are counted from an *iterable* or initialized from another *mapping* (or counter)...
How can I also get better at oops
i found that topic hard
I am reading "Python Crash Course - Eric Matthes" the book was too good to be true
but sitll I know everything what you just told me deeply
but using Oops is getting hard
Oh. Didn't know about Counter.
also does anyone know how long do I need to be active in the server to activate my microphone in voice chat
Since 3.1. How did I not know about this ๐ฅฒ
@peak depot are you russian? Your accent sound like that
3 days damnnnnn
like it is counted by hours
or just days
Does anyone know how is server was created?
@somber heath How old are you now it feels like my grandpa is telling me a story of how coding started
How old are you guys?
can someone ask this in server or not
But I will react very well
@somber heath your voice is so suitable to give a speech for president of USA
i will be back
you should give a speech right now
about how you will solve the war
Like you are president of usa @somber heath you should do that
Current US President needs translator for english to english translation
@inner hill maybe we should send a resume of @somber heath
We will send USA to you @somber heath
If they need you they should come to you
why you going to them we will setup USA as your neighbour
why mine doesn't use the colors
That jealousing
None
```python
None
```
and that's the simplified version too lol
It said you can speak after 3 days of login
After having joined the server, plus having the text-based social interaction amount.
๐
An unfortunade barrier to participation that tends to keep out the screamers while permitting the genuinely interested.
@snow eagle ๐
๐
๐
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Oh fuck
?
Bro my gmail cannot be verified
Bro i cannot verify gmail
I don't understand what is meant by verifying your gmail.
I mean it's asking to verify gmail and plus i need to be in server for atleast 3 days
What's asking to verify gmail? Discord?
Am giving gmail it says to change
What kind of verification? That bullshit id facescan shit?
Normal discord verification we do with gmail
Btw which country you belonged? Btw am Indian
๐ฆ
Bro is again judging my dp
๐ฆ๐บ
If a meteor of sufficient size hit Melbourne, I'd know about it briefly.
I sent a friend request join it
No one's "judging" you
Would you survive
The idea here being no, hence "briefly".
I would know about it for a time, then I would not.
I thought you'd kind of move on lol ๐
This joke only works in USA because of how many places are desolate
Like wyoming
Desoontide is what they say in Germany when you sneeze
Though when arriving at a location, I prefer to aim for five minutes early.
Give or take.
I almost always arrive too early
Finaly I saw my country guy which state bro?
ok
hi
Hi
munroe island
@modest shale
Hello guys
hi
hi
#voice-verification
@pale needle
I know
I still dont have the requirements
Ok
You have been here for more than three days
@long quartz ๐
@safe hound ๐
No
I haven't heard that
I saw that website and it looks good and i will look into it
@somber heath did u know where is debarshi?
Occurred on September 9, 2025 / Johnstown, Colorado, USA
"Chuey thinks heโs a good helper by pretending heโs a spray bottle while Iโm cleaning."
Contact licensing@viralhog.com to license this or any ViralHog video. ViralHog is based in Bozeman, Montana, USA.
Make money from your videos! Submit footage here: https://viralhog.com/submit
...
What horror show is this?
@pure dew ๐
Are we just creating programming nightmares now?
"ni i tok e si!
nak ni i su e nak es Kinu os!
nak si i su e ke?
si i sik e ke?"
"||i [v] greet [o] you!
name me [v] is [o] (Kinu)!
name you [v] is [o] what?
you [v] seek [o] what?||"
Qwhy i cant speak
because you cant talk
guys @amber raptor @limber anchor @calm ginkgo @undone frost CAN u guys talk about how people get hire instead of how they get rejected........
idek how lol
im self employed
they don't get rejected
Talking about what gets rejected is how you don't get rejected
@amber raptor auction
@mighty robin ๐
hi
i dont have permision to talk
๐
im lazy to
๐
;-;
btw i dont have mic in pc, i need login in my cellphone to talk too
milien, you have a diferent acent
yes yes, but its remember some latin brazilian acent
@fading spear ๐
๐
@cursive trout ๐
nugget?
dog name is nugget?
is good name to dog
xd
funny i will adotpt this adjective
i can get ban if i dont verificate?
guess I'll sit for a few days first
yeah, summer
I guess so, it's still kinda cold here
I just started getting into programming a few days ago
i wondering is cool here ๐
live near beach in tropical zone is not to cool
i expected more
;-;
bye
have gn
what you do for living opalmist?
oh
like python professor?
xd
i use python for some studies or little projects
im trying doing a dotfile manager for linux
but it hardly than i expected
YES REQUIRE A LOT OF MENEGERING XD
its realy a headache
but im patienly building
its like
wut
i dont get ir
it*
its not all .files
some espefics
.configs
to be honest
idk if i understand correctly (lenguage barrier), but im doing to this to make easier to backup rices
its like to much manual
XD
in the worst case i just will get crazy
;-;
backrooms?
oh

@obtuse perch ๐
You could try asking in one of the offtopic category channels, alternatively, you might get lucky in #data-science-and-ml.
What sort of prompt engineering are you aiming for?
What kind of image are you interested in generating?
Virtual Try On
@wise heron ๐
hi
So "Here's a photo of me, what do I look like in these various outfits?" kind of thing?
Kind of but more professional scale
Professionalism is not neccesarily commensurate with scale. That aside, I'm not sure I understand.
This is like kiosk
Which I placed at textiles
And customers come and try on dress
I'm not sure what you mean by kiosk in this context. I'm also not sure what is meant by placing kiosk at textiles.
So I need to perfect my prompt
@obtuse perch Not #data-science-and-ml. There's a new channel. #agents-and-llms.
I only just now saw it.
@sudden bison ๐
ola
Whoops, I meant in #off-topic-lounge-text
Hi
Sry I had to go that second
Hi
Umm can u unmute me
Hmm
Idk how to do all that stuff cause im 16
Soo
Just saying that cause i dont really wanna spend time doing that
And just wanted to say hi
Hi
How r u doing
?
Ig ur feom the uk
From*
An i right ?
Us ?
Hmm
Tell me bro
Ohh
Nice
I an from Pakistan
Ant tips on being mature
?
Hmm
Well
Thanks for ur time bro appreciate it
Hope u have a great day
Bye
@charred silo ๐
Hi
I cant voice tho
@covert river ๐
I havent been active for long enough here
@ebon patrol ๐
why i cant talk
voice get failed
what's minmam of massage
1.5 hours
a7a
Been consistently active for 1 hour 30 minutes in text chats.
@somber heath did you go to a college?
i have a course of computational complexity
did you
is it even useful?
you;re a cs bachelor ?
i solve every problem with log n time
@dusty lava ๐
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
why should i
i ain;t evel
evil
i'm not mean
why
i always thought it like a betrayal
!voice @ebon patrol
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
am i stupid or i do smth wrong
nah you good you good
yup
i think so
you know it's kinda sad when someone who is nice to u leave
@somber heath
lol
this college that you told
?
it's a goof buddy
chilkl
lol
less amusing ?!
am i a clown to you ? ><
to entertain you
mb
not in that way
but i kinda resemble
to what they do
lol
rami malek?
or
Elliot
alderson
indeed?
rami malek is legend
You have not been active enough on the server yet.
am i not active enough
yo
so meticulous
i am calm
i have patience
nah
ain't possible
every 20 mins
what an anarchy
sounds bloody interesting
@somber heath
i gotta go
i will have final tomorrow on cc
cya
mate
o/
lol
Lord save me
sweet fuck
50 fuckin dollars
tbh it's not like discord's ui was unique
yeah
they hired a designer
hellow
yo
looks like I can't speak yet
need to be active for 1 hour and 30 minutes is
uhhh
yeah
3 days, need one more
dang
do you code?
or nah
nice
whoops
everyone's busy around me
a
kinda, maybe I need to do something too?
I'm in front of mmy laptop while everyone's preparing food
lol
alright
for my own satisfaction I think
yeah
our kitchen's kinda big but uhh
there's 4 people
doing stuff
oh well
they're eating
a
they're calling me out
"come eat"
lol, I'll be off for a while
brb, dinner time
You are not allowed to use that command here. Please use the #bot-commands channel instead.
man
i wish it would show me the hours i have on this
i wanted to share my screen coding
im coding an offbrand oregon trail
no idea
whats happening
not taking my verification
oh
actually yes ig
i am going ig my mom wake up
bye
The white-breasted woodswallow (Artamus leucorynchus) is a medium-sized passerine bird which breeds from the Andaman Islands east through Indonesia and northern Australia. The name "woodswallow" is a misnomer as they are not closely related to true swallows. Instead, they belong to the family Artamidae, which also includes butcherbirds, currawon...
@timber osprey ๐
๐
@manic remnant ๐
@quartz beacon are you ukranian?
yup
๐
Orchiectomy
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
@swift kayak ๐
hi
.
Idk why this doesnt work, the original frame size is still there even though it should be smaller
Hide:
self.widgets_to_hide_size_policies = []
self.widgets_to_hide_visible = []
self.widgets_to_hide_maxsize = []
for wd in self.widgets_to_hide:
self.widgets_to_hide_size_policies.append(wd.sizePolicy())
self.widgets_to_hide_visible.append(wd.isVisible())
self.widgets_to_hide_maxsize.append(wd.maximumSize())
wd.setMaximumSize(1, 1)
wd.hide()
wd.setFixedSize(0, 0)
wd.setSizePolicy(QSizePolicy.Ignored, QSizePolicy.Ignored)
self.master.window.layout().update()
Show
for i in range(len(self.widgets_to_hide)):
self.widgets_to_hide[i].setMaximumSize(self.widgets_to_hide_maxsize[i])
self.widgets_to_hide[i].setSizePolicy(self.widgets_to_hide_size_policies[i])
self.widgets_to_hide[i].setVisible(self.widgets_to_hide_visible[i])
self.master.window.layout().update()
hello someone use mysql here i want to ask what project i should i make for data analyst like linking it with python
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.