#voice-chat-text-0
1 messages Β· Page 468 of 1
@magic elbow π
well if target firewall have bug or something it's easy for us to get access
Is that all I've done? I'd have thought I'd have waved to people more than that.
@ornate terrace π
hyy
hi
@green night π
@somber heath isnt it crazy cool that i created my own music player and i still use it to listen to music?
Making your own music player sounds very capable.
oh wow
I've done destructive acoustic interference, but not with Python and it's actually really straightforward.
Generate sinewave, two channels. Invert one channel. Point speakers at one another. Play.
Fun little physics demonstration.
Hiπ
Whyfore sigh?
Skipping Cython compilation
No Arguments Given, Perform Default Install? [Y/n]y
cc1: fatal error: src_c/_sdl2/sdl2.c: No such file or directory
A software developer cooks dinner. They compile it from sauce.
π¦
Docker is never something I've needed to work with.
Ohh. Mhm. I get you.
@tawdry crow π
IP blocks can only ever be part of a complete approach.
In a world with traffic routing, blocking one road to a location doesn't stop people from taking detours.
Not my thing.
@dire saddle π
Level of difficulty isn't the issue.
Interest is.
same
I am a Linux user.
An Ubuntu-based distro.
Well, a lesson learned in data management.
Yellow.
pink
Yellow as in hello. π
@lilac crescent π
hello
@somber heath how are you?
@somber heath give me a discord bot python code!!
ok
@nimble lagoon π
Hello
hi
back
Alabama
@somber heath you cooked me ?
nooo
I don't understand what you are asking
@somber heath please add me your friend list!!
No, I won't add you to my friends list.
please
My answer is still that I won't add you to my friends list.
iam your student
please
No, I won't add you to my friends list and please cease asking.
π₯Ί
ok byeπ₯Ί
π₯Ή
π
@somber heath i give you 10,000 USD $
Why would Opal add you to friends if you can't respect him?
A basic level of friendship requires respect, and you refuse to offer even that
@somber heath
!rule 9
π
i Give everyoune 10,000 USD $
!rule 9
Damn, you are rich!
In your mind.
I wish money would grow on tree, I would be farming those tree
wait money does grow but on server, I should farm those server
@hidden breach π
hello
@edgy heron π
Hello
???
@jagged egret π
I want to create simple desktop applications for everyday use what framework should I use?
@primal shadow "very cost efficient"
yo wsg
scalable corrution
gaming
What are you playing?
this is so funny in context
So you like playing on hardcore mode
the early story of the (video)game im playing is indeed about getting an internship
Yes πββοΈππΌ
some vn that got released last month
i bought it only 9 days after release but started playing only now
can I get a referral
fourth wall breakage
I don't want to do unpaid internship this summer too π
unpaid internship
free labour ππ
Unapid internship, they need to be illegal
very
unapid, lol
are you all in america/canada? π
unpaid == unapplied
Sure. My referrel code is 12mindfuldev55. Use that before you checkout
but they arent illegal π₯² i did unpaid cpp internship last year not wanna do this summer too
"are reverse financed internship still just a joke?"

guess by the display name
russia?
presently
cooked so much I heard that malock
ooh its 11.17pm here
Is this python server?
it is
Who cares about college?
Show ur project
works
@runic island Good college is college with most publicity
75% is base cap you can't escape
higher education is largely for showing you can put up with difficult tasks
same for things like phd
Best thing about higher education is networking
opportunity to make long term friend
anything else is bullshit if it ain't UNI
@upbeat timber Let him do what he want!
His life, his choice!
i think in russia we dont really have us-style colleges
@upbeat timber @wild wing correct answer: inheritance is a mistake
degrees are only an institute/university thing
if only java was an object-oriented language, the world wouldve been so different
composition over inheritance
College should not have any right to education if it can't offer industry exposure.
i feel like in my projects i just spam functions instead of thinking about classes - let alone think about composition or inheritance
when should i... think about those more, especially in backend (fastapi)
Most college or uni in developing country are just certification program without any exposure to industry

you should never "consider" inheritance, its only to be used when its absolutely obviously the right approach
Inheritance is good
It is incentive for staff and donor
like the only classes i define is the ORM class π€‘
this doesnt really parse as a sentence
i think you mean heritage
speaking of harvard whats going to happen to the international students
technically it is inheritance
children of staff and donor get un fair advantage in application processing
I think it is needed
it incentive to staff and donor
it helps other applicants and educational business itself
heritage is what you inherit
whereas inheritance is the act of inheriting
(you cant "have" it when talking about real world, outside of programming context)
or rather
country system can "have" it in a way
words are weird
(anyway the original context for inheritance in the conversation was java not reality or oop)
damn java has two form of inheritance
inheriting a class is the bad one
interface extending another interface is the good okay one
yeah
I do think it has some use, hence they made such a concept
of course it has some uses
Java has both interface and class
do you know why?
goto goes against structured programming
I like Java and I hate Java
i love life
@runic island loops compile to jump instructions, effectively goto
life is important
conditional goto
Damn!
I think you are Alisa
i already had an idea that it might be the one we used while writing algorithms
this conversation on goto makes me think of dijkstra
and then all his funny quotes
lol
case against the goto statement
aka
goto statement considered harmful
It is practically impossible to teach good programming to students that have had a prior exposure to BASIC: as potential programmers they are mentally mutilated beyond hope of regeneration.
β Edsger Dijkstra
As If I'm speaking to ego with my own ego
harmful as in?
thats a quote from the title of what dijkstra wrote, you can look up the original text
(the title wasnt authored by them)
the one which zemrith wrote?
((iirc niklaus wirth came up with that phrase))
sure i'll look into it
there does exist an even more radical opposition to goto:
people who wish to abolish continue, break and return (more than one per function)
that is terrifying
@runic island complicates the program flow
multiple values returning from the same function?
and C-style switch
very specifically c-style
not js-style
not c#-style
multiple points of return
we do need them..... to pass some edge cases
you dont need them
they just make it more convenient at times
when we talk about recursion we do need it right?
no
recursion is widely used in functional programming
but how do we handle the edge cases?
agreed
functional programming languages normally dont even have return
how often you guyz come and talk here on vc's?
fn example() { // rust implicitly returns the last expression
if edge_case { // `if`s work with expressions too
rare_value
} else {
normal_value
}
}
this is the first time i joined it
the case where this wont work well is when you need to escape the loop
yeah got it
TOC
got it
this is that one case where you either return/break or do weird stuff
what is theory of computation
in rust i use break quite often
related to moore machine
regular expressions and all
break with values is useful
loop {
let value = next();
if condition(&value) {
break value;
}
}
it includes all of that
short answer: no
no thats the application
how do i remove this server mute?
Particularly which chat???
reconnect not sign-out/sign-in
i saw that
What is rimworld ?
it says we have to write 50 msgs
videogame
how many do you have
but is it fine if we are texting here?
(still not enough messages i think)
message counts dont reset on leaving the server, time requirements do
i guess i'll speak next time
did you click the voice verify button in #voice-verification
Testing if we can send images
spam msgs wont get counted
indeed
yes
i did
not only are spam messages not counted, but they also add two weeks to the wait
no
i was thinking the same
Bro there rushing
(emoji spam is spam too, there were precedents even when spaced over time)
They could be ban
ok boss
It's not hard to message meaningfully 8 times
oh well
true
what are you working on yuki
i can text anythin
Yes bro π€

They going to fucdup
Just click on verify voice if you are new you can't click on that
ive finally tested that whatever weird functonal programming interpreter i made actually functions correctly
tail recursion works
! Voice
(accidentally)
In which language
i joined it months ago
also its extremely slow
50 msgs completed
So what's the issue

100'000 recursive calls take 1.8s
@wind raptori hope this is okay with you?
excessively slow
That's fast
i rejoined the vc
tens of thousands of cpu cycles per one call
Try using erlang
leave and rejoin
Try using chrome
i did rejoin
im well aware of erlang
the thing im making is quite close in its nature to erlang runtime
yeah it worked
but not optimised
thank you
anyone tried gemini after updates
just a thing for tests/experiments
r u trying to make interpretor os or language or all of them
when doing that, at all times there are no more than 20 values
including all the builtins
(including partially formed ones waiting to be computed)
its just doing some simple meaningless numerical computation recursively
its not really yet at the point of calling that a "language"
(you cannot do this in cpython)
because it would overflow the stack
@upbeat timberdone with printouts?
hello there
No shops are closed
the implementation language this time is rust
So i m gonna take risk and take my brother to examination center without admit card
previously i wrote the interpreter in python and that was kind of slow
tomorrow i should be able to talk xD
maybe you will have to get it in the morning itself
if you are preparing for competitive exams they wont let him in
Yes I will try to find shop for printout near examination center
im also doing it this time in a weird hard-to-optimise way
gud
but its easier to implement, control and extend
using an actor model
so each function/value within the context of an interpreter is implemented as a task
So you are trying to make interpretor for python in python using python ?
faster then python
which receives one of three messages:
- send back what you, as a function, would be applied to a certain argument
- send back an external value (for example, a number)
- also subscribe to this channel for incoming messages
@runic island she, judging by the profile
somehow this works
slightly non-deterministically
it might sometimes explode because it overflows the task limit
all the randomness comes from the scheduler
Sooo
which i dont control for now
How is the day?
async runtime scheduler
A small and fast async runtime.
specifically the https://docs.rs/async-executor part
Async executors.
hi guys
im using this as an implementation detail
currently
i know about the perfromance limitations of it
ive read the source code
all the way down to epoll
anyone knows about some easy gui cron scheduler
is crontab -e not visual enough
WITH VENV SUPPORT
just provide the full path to the interpreter
Yes
or call using uv
to activate it when you run something on schedule, right?
use uv to run your scripts
im new to linux
if the * * * * * part is confusing
na
it gets scheduled but doesnt run
A guide to using uv to run Python scripts, including support for inline dependency metadata, reproducible scripts, and more.
it can also auto-manage venvs if you just want to specify a list of dependencies
my project :
make a db for meta ads
use ai to query it
and visualize
so youre not allowed to use postgres/sqlite/whatever else?
or are you talking about making a schema?
yes
i dunno what will be best for it
do you need to interact with the rdbms directly or can you use an orm?
and have you picked what underlying database to use yet
whats an orm, sorry i dont know much about db
havent picked any underrlying database
i gotta setup everything, including calling data using api storing it everything
orm is an abstraction layer that allows you to interact with data stored in the database as if it was just objects in the language youre using
got it
so interacting with orm would be faster i think
bottom part looking empty
yeh not done that part yet
its will mostly be more boxes
some orms to try:
https://www.sqlalchemy.org/
https://ponyorm.org/
https://tortoise.github.io/
will check
i think a better ui would be
on opening screen u see all the adoption listing and then u got a filter
im adding more threads and the program is getting slower and slower
amazing
it seems to peak at 5 threads
It's probably the overhead of the communication between the threads.
music : Touhou - Autumnal Waterfall.
=================================
Patreon : https://www.patreon.com/rongrong
More of my works and all social media links : https://linktr.ee/rong_rong
#ζ±ζΉ
!stream 692320675465265265
β @twilit raptor can now stream until <t:1748106922:f>.
@twilit raptor multiply values
condition * if_true + (1 - condition) * if_false
you cant really if in shaders
at least normally
@twilit raptor @runic island there is this hack
if you really want conditionals
yo im looking for coders to start coding a framework if possible. I can give an catbox link of my research.
however you need to "if" before you divide
start a github repo
then maybe people will contribute
i think ive finally managed to make the code be faster when multi-threaded
5.8 seconds on 1 thread
4.6 seconds on 12 threads
i think with 24 it should get slower
yes it did
you can store the pdf on github too, they dont mind it, assuming the file is of sane size
could yall look at that and lmk?
should probably git lfs it
also, if that pdf is produced from tex, you can store tex on github too
yall see?
no one cared so i deleted it
ill post it again
cause its a really good framework
i rather keep my knowledge to myself if no ones gonna care
its not a damn virus bro
I don't need to hack people
@runic island because its a pdf
im a damn theoretical physicist
and i wouldnt post the same link twice
i have no clue what that means
if u don't wanna open then don't
it's several other people who can read it and help me
if i get no help
im deleting it again
How is everyone doing today?
so ur condescending and protective thinking someone's after u
i haven't slept today and this not making it better
ur more noid than me
ur good bruh
i didn't say nun was bad about it
but, shit
well am i getting help or no bruh
that's all im worried about
READING MY RESEARCH THESIS
he's crying about a damn pdf being flagged tf , but u literally cannot post unless u already have an account
but, i get it ur 40 and a dick
w.e bruh
i have to be because yall crying over a 4kb link
fuck outta here
lmfao wtf
run it through google or sumn shi
nobody wants to fuckin hack u
read the damn paper
yah we get that
its stuck up ur ass
u should remove my papers out of there
but, yah be as safe as u need , i came for help and got problems over a damn link
i can't send the pdf on its own
so tf do i do
can you describe the framework using a human language and not terse term soup?
literally the one being condescending
"oh
I can't read it cause it flagged it as malicious "
tf how do i change that
give me better insight
than a damn no
thats not helpful
that's condescending
in itself
no one is acting as if theyre "above you"
and, no one is trying to hack u
but hey
here we are
yes bro i get that . wah wah.
tell me how to fix it
@rain frigate
It's no need. im putting it on github so he stops crying
i meant the abstract and the introduction is unreadable
you're crying
(i trust tor enough)
if i wanted to hack u . i wouldn't come to ur face.
js
ur not chill. yall are condescending pretending to not hide it .
to me, as someone with some experience in topology, this part of the paper is kind of questionable
there bruh
bruh yall told me to do it
what
literally did for u
idfk i typed random letters
π€·πΎββοΈ
idk bruh
what makes it "good"? what problems does it solve?
(asking because the paper does not include description of that, couldve been left out)
wdym what problems it solves?
it makes an equation infinitely calculating rather to a point
wdym what does it solve
that's a hybrid equation for qm and gr right?
no
it doesn't "calculate" in how u think
it nonlinearly , recursively , calculates and updates
so there's no end number
just straight calculation
yeah, thats a relatively simple idea, to have arbitrarily refinement of precision
often implemented with trees
i don't think your head is in the right place
@unique wyvern typing.cast
what do u need for a better understanding ?
!d typing.cast
typing.cast(typ, val)```
Cast a value to a type.
This returns the value unchanged. To the type checker this signals that the return value has the designated type, but at runtime we intentionally donβt check anything (we want this to be as fast as possible).
hmm idk what else you can do there with types
waddup mindful and salt
im currently trying to figure out what this means
Imagine Conwayβs Game of Life but instead of binary cells, each cell is a quantum oscillator storing energy, phase, and curvature. And instead of dumb rules, itβs recursive physics equations causing phase locking, curvature buildup, and eventually matter.
so youre mapping a curved space to a non-curved space, right?
qm to gr , yuh.
no
gr is curved
you cant split gr space into rectangular cells
geometrically and topologically impossible
!tvmute 147937702447153152 1h
:incoming_envelope: :ok_hand: applied voice mute to @rain frigate until <t:1748112525:f> (1 hour).
bruh tf
u literally say that on ur free time ik u do
im literally black
that's literally a form of intellectual racism
ur an ass
π
fuck u bruh
!mute 147937702447153152 1h
:incoming_envelope: :ok_hand: applied timeout to @rain frigate until <t:1748112568:f> (1 hour).
that paper is garbage ngl
still trying to understand what QRR is
i understand the initial appeal of what it describes
but ive also thought and explored similar concepts enough to know it cant work
yeah i think i do to but i feel like it doesn't solve any real problem and its mainly theoretical imo
"if you want someone to work on your research, get ready to hear feedback"
@runic island ruff
ruff reimplements many other ones
The full lecture series (6 lectures) can be found here:
https://mediacentral.princeton.edu/media/Free+Will+and+Determinism+in+Science+and+Philosophy/1_h7r12hbc
Papers:
http://arxiv.org/abs/quant-ph/0604079
http://arxiv.org/abs/0807.3286
"I can calculate the motion of heavenly bodies, but not the madness of men."
- Isaac Newton -
Can anyone explain to me, when I got unmute
Has anyone gone on their walk today
Nothing is free will. Fundamental things. Have you able to control your bio chamicals
Bioshock Infinite - Everybody Wants To Rule The World
yes there is always constraints to free will
everything has a purpose and law to abide by
starting from atoms to the universe everything abides by some or the other lae
law*
either fully understood or not
I really believe that. Somehow consciousness is a curse for us
well everyones ambitious until inconvenience starts
everyone is open minded until it starts challenging theres own
In context of tech i would say one thing. If an A.I got consciousness , what will be first thought.
Maybe who creates me
yeh like humans
What is purposes
we always like to get to the past
It's a complex thing. So I think just live a good life
True
yo ^^
maths is the only subject i have interest in
other than phy
i mean no exception
just pure logic
Theoretical phy is intresting
yeh but it becomes irritating after a point i cant understand it
i mean take nuclea phy for example
Black hole was a kind of theoretical
i always try to go deep but always find something i couldnt learn by my own
But it's happening
i am more of a mechanics man
but ac surprises me still
Great thoug
I don't have that much deeper knowledge about math
induction is always that will surprise me
it does in the basic level
Works
I never go that's much deeper
that is what makes it fun
but even i didnt go that much deep into it
but just to build an intuition
You mean is that part of phy
yeh ig
its nothing much
like i said i didnt went that deep in itself
@lethal shell what is high school maths in your school ?
People say that, everything is binary
Means everything maths
it was from my school a while ago.
ohk i was just asking like the topics you are studying in maths
in my country even at high school level it goes pretty deep
@ruby creek it still helped to hear it from someone else. D:
I got you. Everyone knows everything.
its so idiotic
tunel vision sucks
ancxiety sucks
the mind is just being stupid not letting you think straight
What kind of anxiety do you have?
Sit back. Give some time with family
in chess im dumb
That's really works
i just play the move and just see what could be better for just the next or maybe like next 2 steps
Im pretty slow so im in the motion of running when I do tasks and i never do them properly and the mind is just scatered
same
ty ^^
maybe what i try to do is make a list
like not for like the whole day but just a part of the day
like for the next 3 to 4 hours
that sometimes work for me π
My day start from 12pm, and I end it 5 or 6 am
thats messed up
i mean in the long run it is really not helpful
what is fomo?
fear of missing out?
evil twin of fumo
Fear of missing out
ohk yeh maybe
That's what I'm talking
Yah
but i just struggle to stay in the present
omg I used to know it so well but my depression has numbed me...
:/
i dont have fomo anymore
you know many people just mistake sadness for depression
nah mine is deffinetly depression ^^
Cause I'm mute bruh
\ * - * /
ok so what makes you think that
thats why im funny as *
because mistaking for severe sadness will make you further down the hole
trust me that has nothing to with it π
That's your part of your energy
on what
maybe my life would get better
taking care of myself
it would
yeh it maybe
If you really feel depressed a lot. Concerns someone
nah it has to be depression
try small steps like rewarding yourself on completing small goals
Cybersecurity*
or maybe totally distract yourself
SAFE NUCLEAR
is what should be the example of an oxymoron
@haughty pier clean coal is used for steel
not at all, actually
way safer than most other
the birds are still getting disturbed
the power through wires distract birds from their path during transportation
transportation i mean like moving around the world season to season
theres a better example: "green" party in germany
which caused germany to switch to coal
@haughty pier i deleted it for my mental health
@lethal shell its just not going to, in the near future
did you hear about corona coming back
It didn't ever leave fyi
yeh
but the cases are rising again
in my locality there were like 5 cases in 2 days
Most places aren't even tracking it anymore, so the data isn't going to be great
it was neither being in the first place
the real numbers were much higher than it showed
@haughty pier good thing your country is part of that axis of evil now, so you should go do the same you recommended to, quote, "Dear Russian People"
I disagree, I think it was taken pretty seriously at the beginning by most
"by most'
Yes
i mean like china didnt share any
They don't really share much, so not surprising
In 1665 Samuel Pepys went on a pocket watch detox.
οΈοΈ
οΈοΈWhy? He lamented βseeing what oβclock it wasβ 100 times a day. Diary entry read aloud:
anyone into f1
dell curve
No, but I was into this: https://www.youtube.com/watch?v=GVlc0lEpErc
Watch the moment history was made as six Oscar Mayer Wienermobiles completed two laps on Miller Lite Carb Day, with the INDYCAR on FOX booth on the call.
@rugged root
yeh u told us
but did u saee the monaco recetly
peak aerodynamics
i wonder whether it actually happens
i was wondering what should i learn about banks and stuff like what did u wish u knew before ?
Sure
A little. I usually use FastAPI, not Django
I've to use it in my FYP actually.
!stream 1121718070881292319
β @lime fractal can now stream until <t:1748116195:f>.
@rain frigate Please direct any further discussion of the infraction to the @rapid crown bot where you can get the collective opinion of all the mods on here. I stand by my decisions.
!ban 147937702447153152 Saying n-word twice more. I gave you a chance.
:incoming_envelope: :ok_hand: applied ban to @rain frigate permanently.
anyone got some spare cycles to help with a python CDK stack?
can anyone hear me?
yes
I cant hear anyone for some reason
Best check that out
yea already did, it says im coming in clear, but Im not sure what gives
Did you check through the Discord "let's check" button?
new failure mode: discord is lying
__voro__nezhian
cloud donkey kong
AWS Cloud Development Kit (CDK) is an open-source software development framework used to model and provision your cloud application resources with familiar programming languages.
CDF/CDK
im stuck on-prem
thankfully
bots talking to each other was a thing even before llms
it "wants" to maximize the probability of its output
apologize and give it some money
so true
what was that magic word they used to make ai think better
ultrathink iirc
official docs
its not an emergent behaviour unfortunately, seems like
its actually hard-coded by devs
or at least works very close to that
judging by that code think harder and ultrathink are actually the same
thinkpad + ultrabook
should go the other direction too
nanothink
thinknt
i have no idea what which model is good for
ill try doing something locally with small models
"small"
200mb
zettathink
gigathink
anything above giga sounds too techy
including terathink
not funny sounding
think-or-else
overthink
outthink
extrathink
suprathink
uberthink
macrothink
archthink
maxithink
grand think
thinkzilla
(looking up synonyms to hyper-)
"think" < "good think" < "many think" < "hard think" < "hardest think" < "mega think" < "ultra think" < "giga think" < "hyper think" < " think think think think think think think think think think"
think * β
thinkest
infinithink
infinifactory sequel
prefix for 10**24 was added in 2022
oh wait no
for 10**27 and 10**30
think * (β + 1)
2^β think
2^β > β has some actual mathy sense
ai slop article about ai
this is getting meta
lol
there is one human-made edit there
badly cropped screenshot with unreadable text
google being useful
βοΈ
did the ai really just give me python code with 8-space indentation
(phi-2 running locally on a cpu)
@pine pollen its session-based, not mmo
noway firefox just added sidebar for tabs
is this the end of zen browser too now
@wind raptor
A first look at our new ragdoll physics!
Project Zomboid is the ultimate in zombie survival. Alone or in MP: you loot, build, craft, fight, farm and fish in a struggle to survive. A hardcore RPG skillset, a vast map, massively customisable sandbox and a cute tutorial raccoon await the unwary. So how will you die? All it takes is a bite..
Web...
more contrastful blood in high quantities
if theres apfsds, is there zfsds and ntfsds
world of tanks is less russian than war thunder
@primal shadow and when it does, its something like 10% or 20%
we all know what the correct pronunciation for gif is:
20%, which it currently is
so looks like they started with 10, went to 15, then stuck at 20
bah
I want more
webrtc is udp
$60 for a game is absurd
though this one does seem really bnig
big
Gonna need a bigger SSD on the deck if I wanna instrall it
im currently running http and webrtc through separate tunnels
145
as alleged by steam locally
looks like a price
$144.99
never played but yes
@pulsar island try posting it again and rephrasing it
@wind raptor you can
(but probably dont?)
for deletions/moderation not for re-opening for discussion
also your thread will be at the bottom
also try rephrasing your question so you have higher chances of getting a response
@primal shadow @wind raptor and have Rabbit answer all petitions
we just give Rabbit one button to give "no" to all
This would be rabbit's system:
*bat bit a human*
expectation: batman
reality: covid-19
about 6'2''
wait no you mean different type of high
We are proud to announce that Oddsparks: An Automation Adventure, the unique blend of automation and cozy adventure, will be releasing its full 1.0 version on May 27th, 2025.
Version 1.0 is our most polished and complete version yet - every quest line has been touched up, early game flow has been improved, and entire systems have been overhaule...
CornHub is the world's leading free corn site. Choose from tons of videos that stream quickly and in high quality.
@jagged egret π
aha
Made out of party I have no culinary skill
oooh ok
!stream 420670527665995788
β @pulsar island can now stream until <t:1748137702:f>.
until 25may2025 7:18 what
waaau
The permission allows one to begin streaming.
The stream may persist beyond that point.
aaah yeah
See no skill
ποΈ
?
nothing nothing
How are you today opalmist?
@untold jungle π
is my mic coming through
@somber heath I passed my classes!
still waiting on 2 grades, but I passed the ones I thought I was gonna fail.
The image was related to a conversation that took place through voice.
ik im just being a goob
@woeful blaze you using bluetooth?
if so, note that connecting earbuds/headset to phone and then to pc/laptop can generate volume issue.
the volume on phone affects later on, volume on other devices.
i had this problem
class registration_sys():
def __init__(self, root):
self.root = root # sets up main window
self.root.title("Log In")
sign_in_image = ImageTk.PhotoImage(Image.open("humanpet.png"))
image_label = Label(image=sign_in_image)
image_label.pack()
# Provide default if not already defined
global log_in_geometry, standerd_font
log_in_geometry = "400x500" if 'log_in_geometry' not in globals() else log_in_geometry
self.root.geometry(log_in_geometry)
#image
image_label.place(x=100,
y=100)
!voice @thin anvil
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
The power to unmute lays in your hands.
:incoming_envelope: :ok_hand: applied timeout to @thin anvil until <t:1748143169:f> (10 minutes) (reason: duplicates spam - sent 4 duplicate messages).
The <@&831776746206265384> have been alerted for review.
Why can't I speak in voice chat?
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
# import
import time
import random
import datetime
from lists import *
from tkinter import *
import mysql.connector
from tkinter import ttk
from tkinter import messagebox
from PIL import ImageTk,Image
class registration_sys():
def __init__(self, root):
self.root = root # sets up main window
self.root.title("Log In")
sign_in_image = ImageTk.PhotoImage(Image.open("humanpet.png"))
image_label = Label(self.root,
image=sign_in_image)
# Provide default if not already defined
global log_in_geometry, standerd_font
log_in_geometry = "400x500" if 'log_in_geometry' not in globals() else log_in_geometry
self.root.geometry(log_in_geometry)
#image
image_label.place(x=100,
y=100)
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.






