#voice-chat-text-0
1 messages · Page 553 of 1
@somber heath still muted lol
i mean i joined like yesterday
is it possible to do tts
nah it's not
yeah
why is there a need for this anwyays
were there some hecklers that abused htis
years ago damn 😭
@swift tree 👋
they gone lmao
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
oh thats a shame
why tf would people wnat to scream and stuff
i can try my best but i dont know if ill be able to be active an hour half a day
thats fair tho
i just wanted to say whats up
im not much of a coder these days but id really love to get back into it
wait half hour a day??
yeah i have to wait 3 days lmao
@somber heath that makes sense
still a little disappointing how i have to just sit here
maybe i should just send voice messages here
let me test if it would work
i have to go to bed for work tomorrow but ill try my best to be more activeq
doesnt' exist
maybe you guys can give me some coding tips sometime id love that
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
!kindling
The Kindling projects page contains a list of projects and ideas programmers can tackle to build their skills and knowledge.
!pep8
PEP 8 is the official style guide for Python. It includes comprehensive guidelines for code formatting, variable naming, and making your code easy to read. Professional Python developers are usually required to follow the guidelines, and will often use code-linters like flake8 to verify that the code they're writing complies with the style guide.
More information:
- PEP 8 document
- Our PEP 8 song! :notes:
!zen
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!
are slash commands not implemented in this thing yet
oh thank you opal ill pin these if i can
Yo Guy's
because discord supports resource pages
hello
hey man
it would be easier to redirect people to them than to repost the same embed over and over again ithink
Can U help me making a discord bot
😭
Pls 😭
Can u @heavy citrus
@somber heath alr alr
thanks lmao
just wondering
there were a lot of people who were like
like there's less in other servers
but a lot of the people here seem to be like
very very beginnerish
both in python skills and mannerisms
i had some guy tell me that there was a syntax error in some js code i wrote when it was tested to work
and then they said some more nonsense before saying "build big apps and then you will understand"
and then when they sent me what they "made" it was all vibe coded
like 😭😭
no wonder they dont know syntax bc they arent even writing it
what are you doing at the moment @somber heath
are you trying to get a server running
like on somewhere
gl with your drive formatting
are you still formatting your drive
yeah
bc i'm muted
a small metal what?
a metal splinter sounds terrible
where do you even get a metal splinter
@brave fractal 👋
@frail bear 👋
Yo
lol
@dull lance 👋
Hi
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
did someone say hi
lol true
i left the vc to hang out with jerry for a bit
apparently we knew each other already
but havent met in like over a year
like i just kept forgetting who he was
for the most part i forgot who he was every time i met with him
every few months i used to say to him "who are you again" and then he would say "we met on xyz"
so this time we were like wait i recognize you and decided to hop into our dm vcs
lmaoooo
"hiii"
😭😭😭😭
ik
imagine being recognized for going to every concert lol
@heavy citrus Waassup
hello
i think like we just caught up with each other again
becuase it's easier when we're able to talk and stuff ofc
but also because it's easier to just continuously talk without another topic going in
like we were gone for a while bc halfway through we were like playing games and stuff
i might head out though because it's quite late
1 am for me at the moment
i just came here bc alamin pinged me lol
cya lol
I don't have much thing to say
me neither
Are you working on any
So how is it going
Good it’s 3:22 am I need to go sleep I have a computer science test today at school
First period too
😭
What y’all up to
What you guys working on
Anyway though am gona clean up and go to sleep now gn
I'm sorry for you
I'm on holiday working on python
@cursive harbor 👋
i don't know why i can not switch on my mic
!voice 🙂
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@somber heath yeah
@somber heath hey can you help me in API acutally i am a newbie and i am working on a project its like trivia game
so i need help on generating questions
what with the API??
import os
import requests
import random
API_URL = "https://router.huggingface.co/v1/chat/completions"
headers = {
"Authorization": f"Bearer {os.environ['token_key']}",
}
def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.json()
response = query({
"messages": [
{
"role": "user",
"content": """Generate a trivia quiz question in Hinglish.
- Topic: Mostly Indian (90%) and some International (10%).
- Provide EXACT format only:
Q: <question>
A: <correct answer>
W: <wrong1>, <wrong2>, <wrong3>"""
}
],
"model": "moonshotai/Kimi-K2-Thinking:novita",
"max_tokens": 200,
"temperature": 0.8
})
raw = response["choices"][0]["message"]["content"]
--- Parsing ---
try:
q = raw.split("Q:")[1].split("A:")[0].strip()
correct = raw.split("A:")[1].split("W:")[0].strip()
wrong = raw.split("W:")[1].strip().split(",")
wrong = [w.strip() for w in wrong]
options = wrong + [correct]
random.shuffle(options)
print("\nQUESTION:", q)
print("\nOPTIONS:")
for i, op in enumerate(options, 1):
print(f"{i}. {op}")
print("\nCORRECT:", correct)
except Exception as e:
print("❌ Parsing error:", e)
print("Raw response:\n", raw)
@paper wolf application programming interface
!code @cursive harbor
im aware
api given me this every time when i call the api fuction
Please react with ✅ to upload your file(s) to our paste bin, which is more accessible for some users.


hinglish is like hindi + english
actually i can not know about more API but i found a way to get new question every time
yes i know that but its just a first project for me and want to run this game as i think
so you can help me in this
@somber heath tf you mean i need my brain??
My focus is divided if I'm on call. I listen, I try not to make noise.
oh.... lol
Oh, you know. Simmering in a months-long panic attack.
I've been not okay for the past 15 years.
15 years?
I mean is there something wrong with your life?
Because it is definitely not normal to be not okay for straight 15 years
@simple escarp 👋
I wish I could help you by any means.
Nothing for it.
@earnest sierra Hi hi.
sympathy. i can suggest basic mental troubleshooting if that helps?
I don't mind either way as to speaking vs typing.
Evil Potato and helper?
I do enjoy potatoes, prepared in certain ways, at least.
Steamed and boiled are regrettable ways to eat potatoes.
What about potato salad with croutons?
Croutons are the shit.
What about with bacon?
Bacon bits
I'm not too hot on potato salad, either, but egg and bacon can go a long way.
22:30
Halfway.
I have.
Heck on.
I've not heard it described thus.
Mm.
Take the wrench and poke things with it.
Mm.
I like how you describe your mental health as maintenance
The body supports the brain supports the body.
The difficulty is that mine is...situational, and its also worn ruts.
and there are other circumstances looming
Your company is pleasing.
I guess the big problem for me is financial security and a sense of purpose
"That's a very pretty drawing, Ursa."
"Tell me how it makes you feel, mommy."
Fair enough
Neurotypicals are from earth, neuroatypicals are from the oort cloud.
I just made it up.
So great minds.
Oh, my limit on doing things is one thing a day.
Like, in terms of Things, as opposed to things.
Yeah, some smells are...yech. Like brewing coffee.
I don't mind the smell in small amounts.
Pedal or motor?
Motion generation.
Hand?
Ohh, so there's a weight and you spin the weight?
I'm avoiding disturbing other people in the house.
I was in a place I could talk before.
I'm doing a computer thing.
Attempting to install Linux to a thumbstick under less than ideal hardware conditions.
Thumbdrive.
I have to futz around with grub.
Hello, child.
From top juggling is magical
Nap then coffee. Otherwise you'll only have the coffee.
Hip gnosis.
That's not me, just so you know, but I could probably do that if I set my mind to it. I do similar sorts of things.
gotta go, tc.
Cheers, guys!
bye!
beeeep
We like Osyra.
I respect that
@neat prairie @dusk spruce 👋
why i can't unmute
!voice 🙂
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
What's that
I’m not great at engaging outside of vcs so I’m not optimistic
It's said not enough time on server
Sewing crocheting knitting and on occasion weaving
I have avoided spinning for my wallet’s sake
Okay that’s a good price 👀
looove the style
Lol I put “fiberholic” in my bio
USA
The thing is, I would get so obsessed with being my own complete creation loop
My friend’s boyfriend has a hair style I envy
I want to have super long hair on top and clippers on the side
A dramatic genderqueer undercut
Oooo thank you, @dusk spruce
Relationships as soup. Hm. Then I suppose it helps to have a nice bone broth.
I consider relationships as investments
Tell me about the soup and I’ll talk investments
I have a feeling that there’s crossover lol
Oh the odds are high we will be friends
You just said “Homestuck”
I view relationships as investments in that I am investing my time and energy
And so is somebody else
I never entered the fandom lol
I started reading Homestuck a year before it ended
Yes agreed
It is genre breaking
.
Like I am investing my time and energy in a person and yes
I want it to be in people I like
I don’t want to be ambiguous about it
I want the people in my life to be people I am not weird about and who are not weird about me
Older than that
Nah
Sorry, y’all are internet oldies /joking
Y’all are actually pree young
It’s just. The net
D&D?
Do they not understand the history of fandom????
.
bad words about holy book?
I took a class on zines in college
We learned about fix history
I’m pretty sure my professor was a nerd
Okay
So
Harry Potter fanfic > Twilight
Twilight fanfic > 50 Shades
What’s next in the white female deevolution chain?
I support them in their writing
That doesn’t mean I have to like it
Like, it’s great that they wrote it. The publishing is the weird bit to me
….Wtf
That’s so not okay
I am tiiiiiiired
Rising “apologists” is such an interesting way to put it
Ye
Just woke up
Ye
It’s nearly 8 am here
I don’t mind sharing time zone
I LOVE THAT
My dad came up with a joke while I was in incubation about what time I’d arrive. My mum said babies aren’t trains. I was 2 minutes late 😂
This is excellent
Lol
Coffeeeeeeeeeeeeee
Dang that’s long
@peak depot do you have any fun nursing stories?
I mean. Fun is relative
Yay new life
What life are you creating?
Lol
Oooo
I got accepted into a UX grad school
Oh I have that too!
I am also autistic as hell :3
Oh you’re peer reviewed then
Yeah
Sensory issues?
Ye
It could also be an ion channel thing
Or work accommodations
I tell my friends being neurodivergent is a friendship requirement
You can’t like me socially otherwise
I need a 3.0 to stay enrolled as a grad student
Which. I’ve always had, but still. Masters =/= undergrad
Lol nah it’s true
I have bugs in my apartment which is weird because I haven’t been here for a few months
Ooooo
It’s been lovely talking with y’all
I need to head out though
Well i don't know what you are talking about
Well in bible preview pops like high honour secret deceiver men do changes by hand so it not 100p correct
@router.get(
"/contacts/directory/",
status_code=status.HTTP_200_OK,
response_model=PaginatedResponse[ContactDirectoryItemResponse],
)
def contact_directory(
limit: int = Query(default=100, ge=1, le=1000),
offset: int = Query(default=0, ge=0),
client_id: UUID | None = Query(default=None),
search: str | None = Query(default=None),
auth=Depends(require_auth),
) -> PaginatedResponse[ContactDirectoryItemResponse]:
"""Get contact directory with primary contacts from all clients."""
# Verify CRM permission
auth.can("CRM")
directory_uc = CRMUseCaseContainer.list_contact_directory()
return directory_uc.exec(
limit=limit, offset=offset, search=search, client_id=client_id
)
auth.can("CRM") this really should happen declaratively
@router.delete(
"/contacts/{contact_id}",
status_code=status.HTTP_204_NO_CONTENT,
)
def delete_contact(
contact_id: UUID,
auth=Depends(require_auth),
) -> None:
"""Delete a contact by ID (soft delete)."""
# Verify CRM permission
auth.can("CRM")
delete_uc = CRMUseCaseContainer.delete_contact()
try:
delete_uc.exec(contact_id)
except ValueError as e:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail=str(e))
what method are you sending?
router.delete
yeah, then it's going to 405
"GET /crm/contacts/directory?offset=0&limit=5 HTTP/1.1" 405
missing /
or remove / from here
also why contacts/directory?
why not just contacts?
or contacts/
semantically, /crm/contacts is the list of contacts
I try to avoid using trailing / anywhere in route definitions
for consistency
@charred verge 👋
i have returned
now i cannot speak
wooo!!!
indeed
yeah my husband is teaching a thing in zoom
well. presumably chemistry
of some sort
meanwhile
i cannot sleep
for the next three minutes
bc there's bread in the oven
and i must take it out
three hours ago and i still haven't managed a nap
tragic
local person has never had nap ever!!
thing is. maybe i should do things
but i am paralyzed by indecision and anxiety
hi baguette
Helou
mm, for me the ritalin mostly removes the necessity of adrenaline
oh fuck i need to pick up my vyvanse
oh bread time brb
bread retrieved
vyvanse is adhd medication
not same as ritalin but similar effect
it's a stimulant basically
yup.
okay see
so the effect of stimulants on adhd ppl is often calming
because the way it works
so adhd is basically "no dopamine" disorder. not having dopamine fucking sucks
(press x to skip cutscene)
well you do
that's a risk
you become desperate
for dopamine
oh me neither not my thing
it is!
fun fact, untreated adhd is comorbid with a bunch of unpleasntness including addiction
bc you look for something to make your brain feel okay, when the baseline is "everything sucks" bc no dopamine
(disclaimer i am not a neurologist and i'm simplifying too)
but yeah, untreated adhd can srsly mess up a person's life
it's not just "ooh squirrel" disorder
nah you don't have to
you just happened to remind me of something i love talking about
it's mysterious!
you
no your message is mysterious
the subject i like talking about is adhd (and brain weirdnesses in general)
you said you received a message and you didn't know who sent it
dads do that on occasion
i should call mine
my mom gets frequent updates about my kid
we don't really have much else to talk about
no, she misses my kid since we moved countries
so she demands we update
nah ur ok
good wishes
well
nah you're okay
well, if you want kids, i suggest planning it
it's good, i'm glad i've done it
but yeah it's hard
but also
srsly. two friends of mine were going to have a kid
and i was like. you are both totally overwhelmed right now.
do you really want to deal with everything you've got going on + crying baby
they were also doing the "if it happens it happens"
it's complicated
like. life is always insane
sup
why is there a timer
stc connecting 🥲
this is me rn
i am the buffering cat gif
trying to scrape together the ability to do a task
cya
omg you can do the thing!
hi meu
'wait bro lemme restart the server rq bro'
a minecraft server written to run on a cheap aliexpress wifi lightbulb that features the bl602 microcontroller also i use arch btw.
learn more : https://github.com/vimpop/UCraft
Also, the HDMI cord is below table
Most of the time, you keep display cable visible
Also, where is display cable plugged in?
hi
Nationwide Cookie Delivery! Send handcrafted gourmet gifts from Cookies by Design. Our cookie bouquets and arrangements are perfect for any holiday, birthday or special occasion. Same/Next day gift delivery available. Send a cookie gram today!
that is pre-1.88 Rust sounds like
or whenever chaining happened
@gilded rivet they do
not can, do
@amber raptor Sync?
ai produces 8 nested if statements?
Wild
if Sync happens, usually someone has gone way too wrong on generics
Phones seriously need a lock on the hangup buuton. Give me a swipe to lock.
nesting issues were mostly because of if let
if let Ok(b) = a.stuff() {
if let Ok(c) = b.stuff() {
if let Ok(d) = c.stuff() {
/* ... */
}
}
}
if let Ok(b) = a.stuff()
&& let Ok(c) = b.stuff()
&& let Ok(d) = c.stuff() {
/* ... */
}
before 1.88/since 1.88
Hi
step 1. lightbulb datacenter homelab
step 2. productionize, cloud-scale
step 3. open a hosting company
step 4. compete with Hetzner / AWS
step 5. ???
step 6. profit
I have a client now. Cheers everyone.
"that is horrifying, maybe it's time for me to quit already"
or I should just forget I ever did Pascal
@peak depot baguette
@gentle flint "ghosting (but respectfully")
100% of criticism I heard about this specific game part was unrelated to that,
people (specific two people because I don't actually follow game journalism) were just complaining
that it's just another Assassin's Creed again
I can't type
there is so much s's in there
aaaa
difficult game name
I rarely ever see it in writing, and, as usual, I default to basing it off phonetics
decilitre
where did you even pull that unit out of
SI but quirky
Hey
@primal shadow that sounded so much like Michael Costa with this intonation
How can I speak?
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
the combination of intonation and, well, words
@scarlet halo it was ~400ms delay from my viewpoint
So that I can be verified?
@peak depot this film
https://en.wikipedia.org/wiki/The_Producers_(1967_film)
The Producers is a 1967 American satirical black comedy film written and directed by Mel Brooks, and starring Zero Mostel, Gene Wilder, Dick Shawn, and Kenneth Mars. The film is about a mild-mannered accountant and a con artist theater producer who schemes to get rich by fraudulently overselling interests in a stage musical designed to fail. To ...
I think it's written there
literally close to 0ms on my part
I never had anything in terms of xbox/sony stuff except the bare minimum required to play some Microsoft games
i.e. just the account itself
and the whatever installable thing that's required
which works better on Linux
thanks, Microsoft
@scarlet halo time to remind: Forza Horizon 5 doesn't work on my Windows installation, only works on Linux for me
lol
Microsoft game 🚀
wait what platform are you running horizon 5 from
why does the exam program have a code editor inside it 🙏 https://exam.net/tools
Exam.net has an integrated set of tools such as Geogebra, Desmos, spell checking, and more to enrich and simplify the exam experience.
where I work, most devs are expected to use Linux
but there is also the other part of the company where ✨who knows✨
@peak depot VNC
@peak depot "that's not a bug, that's THE feature"
in school and university we only had these dummy computers for which all the actual files were elsewhere on the server
convenient enough
"let's hope they don't ban minesweeper.online"
the better gambling
I was about to suggest "I should try to make my own Pascal compiler" but your comment "invasive bullshit" described that thought well enough already
(didn't hear the context prior to that)
I started with Pascal; 16~19 years ago (I don't remember the exact year)
COBOL
Pascal is the language that you can re-implement in C with macros
@junior cypress 👋
dude my wallpaper is too good (two different operating systems, two different systems)
left one = windows
right one = linux (i3wm)
anyways i gtg now. goodnight!
@somber heath there might also be an aspect of somewhat forcing "neutrality" upon oneself based on the position
which kat clearly doesn't suffer from
@hard sandal 👋
Hey!
slight mismatch
or, as we call it, French million 🥖
(very cursed inside meme)
((someone from a French-speaking country was trying to convince me that 500'000 is 50 million))
which, despite all the peculiarities of numbers in French, I obviously don't believe to be a culture thing
As a french person, i do NOT approve of this.
I have no clue where they got it from
Yeah, they we’re probably high asf lmao
this went on for more than one day
Wow, maybe baguette overdose..
I'm french too 🤝
Je commençait à me sentir seul 😭
tkt pas
W singing mate
@lavish gazelle
Welp, I’m gonna head to sleep as tomorrow i’ll have to wake up at like 5..
Thanks for the concert :D
Finally something useful
https://www.youtube.com/watch?v=FPjwSDvopGc
A specialized lab at the University of Wisconsin-Milwaukee is giving students the chance to experience computing history firsthand, from late 1970s machines to early 2000s technology.
The Retrolab, housed in UWM's History department, serves as a space where people can explore and interact with vintage computing technologies that shaped the digi...
@somber heath if your mode awesome, have leisure time and not exhausted come to talk
I will be along momentarily.
take your time, not importnce when you came, the imprtance you came
CS50P - Lecture 0 - Functions, Variables
Take your time.```Would be best.
Take your time. It's not important when you come. It's important that you come.```This reads a little demanding.
It's important that you came.```
Less is more.
my aim
ohno
anyway not today then
@vocal basin welcome prof
(I was only going to join for, like, a minute anyway)
@jaunty socket can I DM you?
of course
@jaunty socket Your internet is shit.
let me check it
let me check my net again
I was listening in, I thought it was my connection lol
@jaunty socket
@jaunty socket these exercises can be found in the edex version of the course. I don't know if they are available in youtube, but if not, just sign in to edex and the same course, and you will find the exercises there
whole number , decimal point
What has been the most fun thing to learn in Python so far?
so far = until
until now
Alice's hairdrier. - Posessive
It's a boy! - Contraction of "it is"
Its colour was unusual. - Posessive
It's Sunday. - Contraction of "it is"
sinsi's book
ITS -> their color is / its color is// IT'S = it is red / its color: it is red / its color: it's red
basically it's means it is
this one
brazil
country: brazil
capital: state of brasilia
If a word ends in "s", you would only have the apostophe and not the extra "s": sinis' book
"Weird Al" Yankovic's new album "Mandatory Fun" out now on iTunes: http://smarturl.it/MandatoryFun
Amazon: http://smarturl.it/MandatoryFunAMZ
Google Play: http://smarturl.it/MandatoryFunGP
http://www.WeirdAl.com
Music video by "Weird Al" Yankovic performing Word Crimes. (C) 2014 RCA Records, a division of Sony Music Entertainment
Ghazi's book
The students' classroom
Students' is plural, possessive.
The student's classroom. The classroom of the student. Singular, possessive.
discuss
jungle
the most fun thing I'm fiding yet is doing puzzles
cooperation
Nobody ever asks "How is y?"
It's important to pronounce "ChatGPT" with care, otherwise, you may end up pronouncing it as "ShatGPT".
😂
I'll never forget this
fala
sou brasileiro
iam from brasil
what your name?
my name is Augusto
my nickname is : snikaimlock
e ae, hello fellow brazilian
Sh not ch.
Ch not sh.
Satisfied.
Superfluous.
disappointment
@woven solstice 👋
I'm going to sleep. Bye everyone
I'm interested in python
Cal Kestis is a fictional character in the Star Wars franchise. He is the playable protagonist of the Star Wars Jedi game series which includes the 2019 video game Star Wars Jedi: Fallen Order and its 2023 sequel, Star Wars Jedi: Survivor, developed by Respawn Entertainment. The character has also appeared in other media of the franchise, such a...
@somber heath they were not aware of the no return policy
Long timeline/memory summary of programming
https://www.youtube.com/watch?v=UNOsiQfvnX0
Software development seems to be going away. With AI, massive layoffs, and just a lower need for coders in general, it would seem like the end is in sight. But is it?
Do you still have the opportunity to be like Ken Thompson, or Dennis Ritchie?
🔎 Get Big-brained!
› Written articles: https://github.com/bcionescu/guides
› Reading is cool:...
not even 8 minutes long
quite brief, but he covers a bit of ground
(yes, if it was 1:29:38, I would still say "not even 90 minutes long")
@covert sigil 👋
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Bruh.. it's saying I am not on the server enough 🥲
maybe that's true
I was here since 2024 july
I tried watching the series, the concentration of that character being herself was a bit too high
you need to be in VC, not just the server, you also need to have a certain amount of text messages
you need to be in VC
wrong
oh?
being in the voice channels does nothing towards the verification
well then
Been consistently active for 1 hour 30 minutes in text chats.
this must be it
@covert sigil have you been consistenly active for 1h30min in text?
going to LHC to talk about chakras
"am I wasting your time?"
"yes"
cloudflare is down
ohhhhh thats why leetcode isn't working...
(this is, like, nearly entirely unrelated to what's actually the problem)
((just overlapping))
going through some random meme channel, there is so much of this
who what
oh wait I need to remember the place
I might even remember
I remembered
don't ask why
@open warren 👋
@real valve 👋
Hello
overseas
in a container
Nah
@somber heath what if it's a VM not a container
I think it's a kind of container
women are like a vm
I keep getting "Please unblock challenges.cloudflare.com to proceed.".
you fuck with them then get a new one when ur done
Not sure if I messed with something somehow, or cloudfare is having issues.
yea cloud flare is having issues, I tried to submit an appeal on dyno.gg and got an error
Are you able to go to chatGPT for instance?
I get errors on ALL websites using cloudfare.
yea idk enough about what ur doing to help
Are you able to open chatGPT website?
It's a simple question.
no I'm not I get please unblock as well
however the application works fine
well if I'm getting the error as well I'm sure the problem isn't on ur end
Welcome to Cloudflare's home for real-time and historical data on system performance.
someone probably ddos their hose domain
Cloudflare generally doesn't suffer form DoS attacks, those issues for them usually come from internal fuckups
"Nuh uhh, we got DDoS-ed."
"Definitely not a deployment fuck-up thanks to Coderabbit."
I think they would rather say they messed up than admit to being susceptible to attack
too bad it doesn't
free off day from work
what u use GitHub for
like personal projects? if so what kind
@upper basin
Personal projects + client work + open-source contribs
I use it probably 8 hours a day.
ahh client work is a bit different then
I think corporations would be forced to pause local repo contributions
could u imagine the nightmare of merge conflicts after it came back up
hi opal 🙂
I used to talk to opal in my teens now I'm in my 20s
time flies
why don't you have admin or something
or at least voice lead
this is actually a rhino
@edgy flume @olive sandal 👋
I see
they upped the voice verification so much
it's good though keeps the server tame
yea like 9 activity blocks required
it was getting a bit rowdy at one point I remember
Do you guys want to watch the talk I'm watching?
They're introducing Loom (for quantum error correction).
Can you hear it?
If not, lmk.
audio is existent
oof quantum error correction
yo why am i supressed
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
soooo what's quantum error correct xP
@shrewd imp I don't accept friend requests from people I haven't met nor know, sorry.
quantum computer was invented by IBM to keep itself in business
circ~~lej-~~ular financing
B2B QaaS
they're incentivising ✨monorepos🚀
@amber raptor "store everything in one repo so you don't have to require approval each time"
@tepid edge
✅ attackers can inject exploits declaratively
@tepid edge just copy the list of versions you want from Debian
and use those versions in Nix, they're likely available
@haughty pier I'd just assume that to be a misformulated claim
not misinformed
"you can't[ by default without extra tweaks]"
Monorepos are hell
🔥
burning hell
@tepid edge Arch + his configs
r aliased to bin/rails
and, like, installation scripts that actually work
Windows has a thing for tiling now too
(part of PowerToys)
thanks to the location, I avoid many of the serious Windows problems
(including Crowdstrike)
.
just have two computers
or more
I think most of the games I would play anyway, would run well enough through Proton
and FH5 would run better than on Windows, thanks Microsoft
Steam's Wine fork
or approximately that
nvm, it's layered on top of wine
https://github.com/ValveSoftware/Proton
Wine with (possibly) some patches
@tepid edge within same org
from what I saw
(some)
(ValveSoftware/Proton/wine points to ValveSoftware/wine)
given very high profits per very few employees, possibly
(looking up profit per employee stuff)
Intel 📈
some company is managing to achieve -$760'535 per employee
guess the industry
blockchain 📈
pivoted to bitcoins
Strategy was reported to own over 650,000 bitcoins, worth roughly $59.69 billion, and is the largest corporate holder of the asset
Revenue per employee is better to look at
two highest revenue per employee companies that I see in that random list are healthcare-related
novo nordisk?
Welltower $11.6M
McKesson $6.1M
but that is from a somewhat weirdly selected list
those are not necessarily highest overall
just from that list
real estate investment trust that invests in healthcare infrastructure
and Saudi Aramco somewhere around there
'anti-healthcare'-related
it's a channel
I haven't read that one
can likely get re-implemented in Go in, like, a week
regardless of complexity
Rust provides some conveniences for dumb re-formatting stuff
but I have some concerns, from previous descriptions, that this is not how it got used
serde
Does the OS always reclaim memory leaks when the executable is killed?
this is useful when you know the structure well and want to enforce it
kubёrnetes

Yes
@queen fox 👋
hello @somber heath
I cannot speak
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
It says
I need to be in server more than 3days
I just join today
You're welcome to hang around.
People in voice chat here tend to know to pay attention to this channel.
@steady dragon 👋
@real plume 👋
@unique sage @fallen temple 👋
hey bro
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
yo
do i literally have to just talk in text channels nonstop for 1h30m
i am brazilian bro
Welcome
thanks
is my name against the rules
I'm just a guest here
ok
so wdym i gotta be active for an hour 30 tho
like how long of a duration can i have between each message
like the rule is so unclear
That's the point
wdym
what does that even mean
do not not chat and wonder why it did not work
the more you chat, the more likely you are to have chatted enough, if not, then more chat is needed
but im asking like how long can i wait between messages
like if i have 5 second durations between messages vs 5 minutes
like wheres the line
It's more than a second
?????
Hola I am new
yoo @somber heath
I am trying to get my voice verfied 🥲
oh so I have to be texting over here
ohk
I think everyons offline
I am online
oh yeah nice
oh I am learing ML algorithms and bulding web applications
Ohh that's great machine learning it's not easy I am a teenager so starting from basics
I mean it need some math and stats but okay
Then you must be an adult
Nahh
I am weak in math 🤧
I am in my 2nd year of college
Ohh cool I read class 10th
oh that's too a big head start
I think you are studying for school exams right
or Curious ??
Yeah but I learning basics sonin future I don't need learn basics and I will not waste my time
I have some problems with my exam so I don't go for exam
I am free right now
Nice
Problems?
Yeah I changed my school in boards so I can't sit on board exams
I mean 10th boards are important. So you need to sit agian through exams??
Well that sounds like an administrative issue that ought to have been dealt with. Who is dragging their feet?
Yeah but next year in India its November 19 i rejoin after January
I can not get the access of microphone why
You have't got voice verified
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
do anyone play space engineers
I don't play Space Engineers.
Click on the channel name, Voice Chat 0
You can join and talk in voice chat if your voice is verified
hmm I get it.. I get it
i mad 4k out of it
@jaunty brook You may need to adjust your audio settings.
Not setting actually currently I am in village so in here internet isn't work properly
Your voice is so deep 🥶
It didn't sound like a network problem. But okay.
So what I need to do with my settings?
Sensitivity. Volume at which audio starts being sent.
Hi☺️
@forest plover 👋
yo
✅ Become a member! ✅
https://www.youtube.com/channel/UCahJ9IsvXnaQiuNyWQSkrkw/join
⭐ Support independent news today! ⭐
🔖 See more on my blog! https://norlund.substack.com
🧋 Buy me a coffee 🧋 https://ko-fi.com/norlund
⭐ Check out my book Positive Angle on Amazon.
https://www.chrisnorlund.com/book
And if you've already read ...
Hello
Ah
I was gonna say, doesn't look like you missed much
I mean in terms of VC0/text0
this morning
unless you've been here since 1
Many good chats bout the world
You should check out randy's bio from last night
round here
It is a good insult at someone
just click the thing