#voice-chat-text-0

1 messages Β· Page 51 of 1

whole bear
#

So backend in python
Wouldn't be faster with nodejs?

#

Damn you still Opal?

#

Just use python for data science

#

Imagine ML pipeline with python scripts?

somber heath
whole bear
#

You still here Opal*

#

ChatGPT makes Yahoo Directory great again

somber heath
whole bear
#

Microsoft is combing ChatGPT result to Bing, meaning that we can see directory-ish result on web just like Yahoo Directory

#

Why ChatGPT if you can invent ChadGPT

#

50th

worthy token
#

hello

foggy plover
#

i can't speak

#

im not verified

sour willow
foggy plover
#

I have meet all the criteria except send 50 messages

#

lol

quasi tulip
#

@foggy ploveryou can probobly come back now right?

sick cargo
#

hey

#

sorry I can't talk yet πŸ˜…

#

yeah

#

It's just im quite stressed with one of my python assignments

#

i need to have texted 50 messages

#

and I haven't

#

yeah

#

im pretty passive when it comes to servers

#

yes

#

tho its a case of full desperation

#

im so lost

#

its for my college programming class

#

oh the sweet dilema of siblings

#

lol

#

for me its 8 am

#

i am already on college trying to figure this thing out

#

nope

#

ill send u the link to the assignment if u want

#

yeah l

#

like instructions

#

I feel like such an idiot rn hahaha

#

i used to code in C long ago but somehow Python just fumbles me up hahaha

#

EXACTLY my point

#

yes but she is as lost as I am so I'll try to do it all

#

oh okay

#

lol

#

idk who galactus is hahaha

whole bear
#

@quasi tulip Celestial

#

I like Galactus

#

So powerful

sick cargo
#

@somber heath do u think u can help me with this mess of an assignemt

#

oh okay

#

motif is a nucleotide sequence

#

like a bunch of A T G C

sick cargo
#

yeah Im taking Bioinformatics

#

thank u guys !!!

#

yeah

#

nope

#

and this is already chinese to me. god help me hahaha

#

what?

#

like a base what?

#

yeah i think so

#

I have no idea on how to do that

#

lol

#

like idk

#

me neither

#

but that I can ask the teacher

#

but like I wanted to have something done πŸ˜…

#

yeah

#

oh its non important

#

dw πŸ˜…

#

let me try and find it

#

let me move to another room and I'll voice

#

lol

somber heath
#

You'll have to leave and rejoin.

#

Then it'll let you unmute.

quasi tulip
#

for loops

somber heath
#

@peak juniper πŸ‘‹

#

!e py print("abcdefghij"[3:8])

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

defgh
sick cargo
somber heath
#
#main.py
import sys
print(sys.argv)``````
$python3 main.py abc``````
['/path/to/main.py', 'abc']```
#

!e py print("abc"[1])

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

b
quasi tulip
#
def text_var():
  '''test'''
print("test")
somber heath
#

REPL

#
>>>```
#

@dry flint πŸ‘‹

peak juniper
#

Read evaluate print line?

quasi tulip
#

ye

peak juniper
#

print (help) ?

somber heath
#
>>> help(print)```
peak juniper
#

help (print+

#

I always get it backwards , I find the python docs rather difficult to read, as I'm just beginning to course it. Feel like a whole class could be given on docs alone.

somber heath
#
>>> help(print)
Help on built-in function print in module builtins:

print(...)
    print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
    
    Prints the values to a stream, or to sys.stdout by default.
    Optional keyword arguments:
    file:  a file-like object (stream); defaults to the current sys.stdout.
    sep:   string inserted between values, default a space.
    end:   string appended after the last value, default a newline.
    flush: whether to forcibly flush the stream.

>>> ```
#
>>> help("in")
Membership test operations
**************************

The operators "in" and "not in" test for membership.  "x in s"
evaluates to "True" if *x* is a member of *s*, and "False" otherwise.
"x not in s" returns the negation of "x in s".  All built-in sequences
and set types support this as well as dictionary, for which "in" tests
whether the dictionary has a given key. For container types such as
list, tuple, set, frozenset, dict, or collections.deque, the
expression "x in y" is equivalent to "any(x is e or x == e for e in
y)".

For the string and bytes types, "x in y" is "True" if and only if *x*
is a substring of *y*.  An equivalent test is "y.find(x) != -1".
Empty strings are always considered to be a substring of any other
string, so """ in "abc"" will return "True".

For user-defined classes which define the "__contains__()" method, "x
in y" returns "True" if "y.__contains__(x)" returns a true value, and
"False" otherwise.

For user-defined classes which do not define "__contains__()" but do
define "__iter__()", "x in y" is "True" if some value "z", for which
the expression "x is z or x == z" is true, is produced while iterating
over "y". If an exception is raised during the iteration, it is as if
"in" raised that exception.

Lastly, the old-style iteration protocol is tried: if a class defines
"__getitem__()", "x in y" is "True" if and only if there is a non-
negative integer index *i* such that "x is y[i] or x == y[i]", and no
lower integer index raises the "IndexError" exception.  (If any other
exception is raised, it is as if "in" raised that exception).

The operator "not in" is defined to have the inverse truth value of
"in".

Related help topics: SEQUENCEMETHODS```
#
>>> help()

Welcome to Python 3.8's help utility!

If this is your first time using Python, you should definitely check out
the tutorial on the Internet at https://docs.python.org/3.8/tutorial/.

Enter the name of any module, keyword, or topic to get help on writing
Python programs and using Python modules.  To quit this help utility and
return to the interpreter, just type "quit".

To get a list of available modules, keywords, symbols, or topics, type
"modules", "keywords", "symbols", or "topics".  Each module also comes
with a one-line summary of what it does; to list the modules whose name
or summary contain a given string such as "spam", type "modules spam".

help> ```
whole bear
#

what is it

#

happend

#

!voice

wise cargoBOT
#

Voice verification

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

peak juniper
#

No voice

quasi tulip
somber heath
#
>>> def func():
    """I am the documentation. I can live on multiple lines."""

    
>>> help(func)
Help on function func in module __main__:

func()
    I am the documentation. I can live on multiple lines.

>>> ```
whole bear
#

It is boring

#

Maybe I have to be here for 3 day

#

s

peak juniper
#

I like it.

#

Gotta pay the troll toll!

whole bear
#

what should I do

somber heath
#

Troll toll. I like that.

gentle flint
#

hello

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @whole bear until <t:1672909901:f> (10 minutes) (reason: burst rule: sent 8 messages in 10s).

The <@&831776746206265384> have been alerted for review.

quasi tulip
#

i was bout to say that wont work

peak juniper
#

Whoa! What is this sorcery?

#

awe kitty.

somber heath
#

@rich kettle πŸ‘‹

rich kettle
#

i need to get voice verified

gentle flint
peak juniper
#

Well it's 3 am here in the states. Goodnight everyone.

#

Some in the same city

#

Oops late for work again!

gentle flint
peak juniper
#

Accidentally left the server now it won't let me type on the desktop app.

quasi tulip
#

weird

peak juniper
#

Had to log out and log back in.

whole bear
#

hey

#

I want to be added in voice

#

How can I do that?

#

I want to know

#

!voice

wise cargoBOT
#

Voice verification

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

somber heath
#

@unborn pier πŸ‘‹

#

@viral stone πŸ‘‹

foggy plover
#

@winged hinge i can't talk et

#

yet

#

still need 50 messages

winged hinge
#

!voice

wise cargoBOT
#

Voice verification

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

foggy plover
#

idk

#

yeah

#

soo what about ur life

#

tell me

#

it would be enough

#

I have yet not seen the show

#

lol

#

my name's inspiration was undertale

#

and a bit of spelling mistake

#

but i embraced it and didn't change

#

the worst is when people pronounce it "T-light" its as if they forget the w

#

my old pfp was a hand drawn candle

#

well i gtg

#

hope next time i am able to talk

subtle stone
#

whats this diameter?

#

hi

winged hinge
#

Well I am revamping my website and I am seeking feedback from opal

foggy plover
#

are you screen sharing i can't see anything

subtle stone
#

no we arent

foggy plover
#

oh

#

i seriously need a better system my laptop's gonna fry

#

I am still suppressed

winged hinge
#

!voice

wise cargoBOT
#

Voice verification

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

foggy plover
subtle stone
#

welcome to the land of talking

foggy plover
#

i still gtg

subtle stone
#

byebye

foggy plover
#

time for classes

subtle stone
#

opal are u doing something

#

ima go ill be back eventually

cosmic lark
#

hi

winged hinge
#

!voice

cosmic lark
#

pain

#

anyone familiar with django here?, i had a question to ask

#

will ask when i face any errors lol

#

sure thing

stray niche
somber heath
#

@warm lagoon

#

πŸ‘‹

warm lagoon
#

Hey

rugged root
#

Hai

#

Maybe

#

Prefer to think of myself as Mimelock

#

So uh... do you happen to know how to get out of invisible boxes? Asking for a friend

#

The money lender?

#

Used to be

#

Theater broke me of that

#

As theater breaks a lot of things

#

True

#

Either I have toxoplasmosis or my meds just numb me but I'm not as afraid of things as I once was

#

@austere lava πŸ‘‹

#

I have an inexplicable attraction to the things that produce it

#

The last pic. "The hell YOU lookin' at?"

#

That's good

#

Hopefully oof will as well. I bet his housemates are tired of him clawing up the furniture

#

Was it like... question mark tail, though?

#

Gotcha

#

There we go

#

Yo Dia

#

Yes I'm lazy

#

One sec

#

!stream @winged hinge

wise cargoBOT
#

βœ… @winged hinge can now stream until <t:1672927699:f>.

rugged root
#

@austere lava I can grant it

#

5 min to start

#

After 5 min the role is removed - yeah

#

What opal said

#

Sounds right

#

Trying to figure out how position my extra monitor

#

I'm saying fuck it, I need at least two

#

But the power cables are always so short

#

And if I want a longer one (which I don't even know if I have one that's longer) I'd have to go dig around the garage again

rugged root
#

I no wanna

somber heath
#

"Position!"

rugged root
#

Nevermind, I'm an idiot

#

The power cable is longer than I thought

#

Forgot it's got the power brick

somber heath
#

@hollow agate πŸ‘‹

hollow agate
#

Hi

rugged root
#

One sec, headset off to plug this in

#

I'm now 2/3rds of the way to feeling whole again

#

Monitor wise

#

I've missed you, second monitor friend

#

I've missed you so much

somber heath
#

@exotic bay πŸ‘‹

#

@gloomy bramble πŸ‘‹

rugged root
#

Opal, remind me of what I was trying to think of

somber heath
#

Hats? Rabbits?

rugged root
#

Hmm

#

Ah, got it

#

Keyboards

#

Huh

#

Microsoft Blend for Visual Studio (formerly Microsoft Expression Blend) is a user interface design tool developed and sold by Microsoft for creating graphical interfaces for web and desktop applications that blend the features of these two types of applications. It is an interactive, WYSIWYG front-end for designing XAML-based interfaces for Wind...

#

Didn't know this was a thing

#

Also, I hate my brain

#

"Hey, you know how you were going to remake that database picker in C# so that you didn't have to lug around Python with it? Do it in F#. That's in no way a terrible idea that'll suck all of your time and motivation"

somber heath
#

Microsoft Macerate. Doesn't have quite the same ring to it.

rugged root
#

Man, Microsoft really doubles down when it comes to XML

somber heath
#

@inland flower πŸ‘‹

rugged root
#

Not going to be typing for a sec (or at least not as much as I have been).

#

Trying to activate a feature on our client portal so they can access certain data

#

Sup AF

somber heath
#

@modern chasm πŸ‘‹

vocal basin
#

r.i.p. my hand
100 wins in minesweeper in 1281 seconds

rugged root
#

Jesus christ

#

That's impressive

vocal basin
#

this one is somewhat more mad of a record

rugged root
#

You make me want to step up my minesweeper game

#

I'm going to be eating my words regarding how easy this client access thing is

#

Not really keen on eating crow today

somber heath
#

"Time to sweep those mineshafts, kids!"

#

"I want these floors clean enough to eat off!"

rugged root
#

"Man, this meal is the BOMB"

winged hinge
#

@rugged root my stream got stopped :(

rugged root
#

!stream @winged hinge

wise cargoBOT
#

βœ… @winged hinge can now stream until <t:1672929470:f>.

winged hinge
#

thank you :D

rugged root
#

i fix

#

That's what she said

#

Eh

vocal basin
#

what about cobalt mining today?

foggy plover
#

...

rugged root
#

We've only really cared about kids regarding work, for... actually less than 100 years

#

When did child labor laws first come out, anyway

#

Shoot

#

Typo?

#

Ah

foggy plover
#

no

rugged root
#

Gotta love shit websites

#

Rookie mistake

#

Eh

#

If it's not his fault

#

And yeah, new systems always fuck stuff up

#

17 correct out of 70?

foggy plover
#

*70

#

not 17 lol

rugged root
#

Ah, gotcha

#

Was gonna say

foggy plover
#

If he hadn't gotten into that mess

#

I would be the topper lmao

rugged root
#

Possibly a small hiccup that's been fixed

#

Or an isolated event

#

I think anymore it'd just void the card

#

(one would hope)

foggy plover
#

the worst part is that the test was a social science test

#

the hardest test out of all the tests

rugged root
#

It's something in Accounting CS

#

Social Science?

sweet lodge
rugged root
#

Eh

#

@somber heath Again, but slower

foggy plover
#

xd

vocal basin
#

"as opposed to anti-social science"

rugged root
#

Less sensual the last time

#

I choose number 2

rugged root
foggy plover
#

yk i recently broke my phone in such a way that the SIM card fried up
happened like 5 weeks ago

rugged root
#

That's... actually impressive

#

I've never heard of that happening

#

@somber heath Olive oil usually

foggy plover
#

like the sim card died or smt

hearty scroll
#

idk, i think

hearty scroll
foggy plover
#

no

rugged root
#

"How do you fry one"

foggy plover
#

i even tried putting it in rice

#

lol

hearty scroll
#

idk these things dont really look like reliable computing devices

foggy plover
#

had to change it

hearty scroll
#

they run java embedded, i bet that about half the code on there was like written as a half measute in the 2000s

rugged root
#

Back in a sec

#

Damn right

foggy plover
#

"Due to disturbances in the background I've switched to writing again"

hearty scroll
rugged root
#

Except we don't really charge

hearty scroll
#

but you do you

somber heath
#

@main turtle @harsh tulip @daring star πŸ‘‹

vocal basin
#

GPT can't and you will lose the bet

#

it's not a tool

#

it's a toy

#

(at least for coding purposes)

#

oh, pulling the package from npm, the glorious

somber heath
#

@lone geyser πŸ‘‹

vocal basin
daring star
#

@somber heathfeel u

vocal basin
#

.innerText?

vocal basin
winged hinge
#

you can use spotify adblocker

#

works like a charm all the time

vocal basin
#

sounds like copyright infringement

#

innerText not innerHTML

#

setting inner html will lead to problems

vocal basin
winged hinge
#

hello @stray niche

stray niche
vocal basin
#

safe start

stray niche
#

Byeeee

winged hinge
#

hello @rugged tundra

#

Cant talk gonna reply here

#

not particularly bound to any language

#

when I am dealing with product either I am writing ts or rust

if on the deployment side then most of my time goes writing specs

sharp urchin
#

@rugged tundra like me

winged hinge
#

I dont really have any kinda love or hate relationship with ts, I just find it helpful in terms of javascript cause most of the time I can be confident that whatever I am writing is actualy gonna work as intended

sharp urchin
#

m the one takes those surveys

winged hinge
#

google uses ts

sharp urchin
#

lmao

vocal basin
#

well, rust for web front-end is still not very applicable

sharp urchin
#

nahh not much

#

was learning abt it

winged hinge
#

its not that you learn a language for a job ,, you find a job or work on a project that uses the same language you know

vocal basin
winged hinge
#

or if you are assigned to a project that uses a lang that y dk then you learn it

#

kinda need basis

sharp urchin
#

i thought they meant the game"rust" on those surveys:)

rugged root
#

If I'm not careful, I'm going to get used to all of my tech crap being out in the garage

#

If I get to that point, I want you to shoot me

sharp urchin
#

thats cool

#

go for the contest for beat boxing

rugged root
#

@rugged tundra Possible tick?

sharp urchin
#

u may get it

rugged root
#

But you can't

#

It just makes it worse

#

It's like an itch you can't scratch

#

And it's not old tech stuff, it's all my cables and switches and everything

#

Network switches

#

What kind of computer?

sharp urchin
#

threw it out?

#

😦

rugged root
#

Oh you can for sure

#

You can still find old Apple IIs

#

Oh then not THAT old

#

The ATX form factor has been around for quite a long time

#

Won't look that different than modern, honestly

winged hinge
#

I have a old sony crap lying around my home, I am long procrastinating to convert it to a mini server for all my nonsense crap builds

sharp urchin
#

wait how old are yall?

rugged root
#

Except replace SATA cables for IDE ribbon cables

#

32

sharp urchin
#

ohh cool

rugged root
#

Oh and the ram slots will look different

#

Yep

#

"Why did they 3d print save buttons?"

#

Oh honey

#

Floppies are still used on some planes to load in flight plans

winged hinge
#

the sony laptop crap that I have that has a floppy disk thingy where I can insert those floppy disks

sharp urchin
#

get a 27inch one

rugged root
#

Floppies are still alive and well in certain sectors.

subtle stone
#

anyone got experience with macs?

rugged root
#

Old tech and industrial equipment may still be using all that stuff

winged hinge
#

if you get a 27inch, make sure to get 4k or at least 2k

rugged root
#

Hell, even parallel or serial cables

winged hinge
#

1080p really sucks on 27ich monitor

sharp urchin
#

yeh being an ex gamer

winged hinge
#

macs or emacs? @subtle stone

sharp urchin
#

i do have a 4k

rugged root
#

@amber raptor yo

sharp urchin
#

πŸ™‚

subtle stone
#

mac as in apple os

rugged root
#

I got my exercise

#

Had to climb over all kinds of shit to find a network switch.

#

Had to go in twice because I grabbed the wrong power adapter the first time

amber raptor
#

watching screen, chuckles in powershell

sharp urchin
#

is everyone here a developer or students as well?

#

atm

subtle stone
#

im not

winged hinge
#

I am a ex student

#

forever learner

sharp urchin
rugged root
#

Mmmm.... PowerShell....

sharp urchin
#

what course or what uni if i may ask?

subtle stone
#

im the weirdo that joins every now and then @sharp urchin

winged hinge
#

some random college from india

vocal basin
#

powershell is cross-platform

rugged root
#

Hard to teach an old dog new tricks

winged hinge
#

welp I dont have powershell

rugged root
#

Especially if they're neckbeards

vocal basin
rugged root
#

Entirely different scripting languages

rugged root
#

POSIX

#

Meant to be a standardized format, yeah

#

Supposed to be

#

I think there's only a few that are truly POSIX

vocal basin
rugged root
#

Supposed to

vocal basin
#

windows has POSIX compliance layer or something

#

but its not full, I'd guess

foggy plover
#

Hemlock yk how I told my phone died

rugged root
#

Can't remember

rugged root
foggy plover
#

Yea

#

I bought a new one

vocal basin
foggy plover
#

Which I'm using rn

rugged root
#

Oh right right

#

Neat, what kind?

foggy plover
#

M33

rugged root
vocal basin
#

WSL1 without heavy virtualisation, WSL2 with

foggy plover
#

Samsung

rugged root
#

Nifty

#

In soviet russia, ram gets you

#

Consistent convention

#

Dorker

#

Doable but the desktop gives you a nice interface to see the container statuses

#

systemdeeznutz

vocal basin
#

Docker daemon?

rugged root
#

Background running process

vocal basin
#

pronounced like demon, I guess

rugged root
#

Either or

#

Not to be confused with Matt

vocal basin
#

I'm gradually doing the right thing and separating the bot and the web API

#

it was one container, now it's going to be four

rugged root
#

I know it's the right thing to do, but it just feels like so much additional overhead.

#

And I know it's really not, but I still haven't broken that mentality

vocal basin
#

asynchronous intraprocess communication does similar things to interprocess
so, like, if you can't comprehend communications between processes, then you probably don't know what happens inside of an asynchronous process

vocal basin
amber raptor
#

A Unix domain socket aka UDS or IPC socket (inter-process communication socket) is a data communications endpoint for exchanging data between processes executing on the same host operating system. It is also referred to by its address family AF_UNIX. Valid socket types in the UNIX domain are:
SOCK_STREAM (compare to TCP) – for a stream-oriented ...

vocal basin
vocal basin
vocal basin
amber raptor
uncut meteor
#

do it

#

write it in Rust

#

rewrite the world in Rust

vocal basin
amber raptor
uncut meteor
#

Redis gasp

vocal basin
lavish rover
#

@rugged root hello fren

thin drift
#

Looks like he isnt online right now

lavish rover
#

😦

uncut meteor
#

@rugged root become online

lavish rover
#

how sad

stray niche
#

@lavish rover hello fren

lavish rover
stray niche
lavish rover
#

PowerShell PowerShell PowerShell
@rugged root I summon you

vocal basin
#

with only the functionality I need
and, like, with a fixed hard-coded number of queues

lavish rover
amber raptor
vocal basin
#

I wasn't going to apply to your company

#

or sell anything to you or anyone else

vocal basin
#

there's always a thing of "doing it for learning purposes"

lavish rover
#

sounds like usual rabbit

amber raptor
lavish rover
thin drift
vocal basin
winged hinge
#

finally made this shit working

#

getting the expected data lol

amber raptor
rugged root
#

Sorry, having to run around the office a lot today

#

Same

#

@amber raptor Breathe, old man

narrow salmon
wise cargoBOT
#

@low gale Per Rule 6, your invite link has been removed. If you believe this was a mistake, please let staff know!

Our server rules can be found here: https://pythondiscord.com/pages/rules

narrow salmon
stray niche
rugged root
#

Hey Sammy

winged hinge
#

welp, imma be afk for a while now

rugged root
#

Most of what I'm seeing in their commits is like.... cleanup mostly

stray niche
stray niche
rugged root
#

Fair

#

@uncut meteor I accept this responsibility

#

PDM

#

It has to be executed via PDM

#

Sadly

#

Science

#

Yep

whole bear
#

Yo folks 🀟

stray niche
#

Bye

rugged root
#

Back soon

#

Customer support hell

amber raptor
#

@uncut meteor .xkcd 1987

#

.xkcd 1987

viscid lagoonBOT
#

The Python environmental protection agency wants to seal it in a cement chamber, with pictorial messages to future civilizations warning them about the danger of using sudo to install random Python packages.

rugged root
#

Hate being on hold

#

It's feast or famine with these guys

#

Either I get connected instantly or it takes 2 hours

lavish rover
#

RabbitMQ is basically Rabbit + my initials, idk how I feel about that

uncut meteor
#

I ship it

lavish rover
#

No

#

Bad griff

uncut meteor
#

@olive hedge

#

hi

amber raptor
undone valve
uncut meteor
#

Ah yes

#

very American

rugged root
#

@olive hedge What are you losers doing?

#

Shots fired

#

Griff laying down the mad truth

#

Hey Noodle

narrow salmon
rugged root
#

@stark plover What's your question

#

You can say it

rugged root
stray niche
#

Cold I think

rugged root
#

Also yes

narrow salmon
narrow salmon
uncut meteor
#

have you tried being warm?

rugged root
#

That's what all the cool people are doing

narrow salmon
rugged root
#

No wait

uncut meteor
#

keep it up

narrow salmon
stray niche
rugged root
#

Just light a fire in the middle of the room

stray niche
#

Ahaan

#

Why not

narrow salmon
stray niche
#

Set yourself on fire?

narrow salmon
rugged root
#

Couch

stark plover
#
    with ThreadPoolExecutor(max_workers=3) as executor:
        futures = []
        if client_id == 'FIT':
            for cid in temp_solution:
                print(f'clientId: {client_id} - Processing Bras for {cid}')
                bra = Bras(scan_id, env, scan, raw_scan_data, measure, scan_type, cid, user_id)
                futures.append(executor.submit(bra.process_bras))

            for future in concurrent.futures.as_completed(futures):
                process_json(future.result())
narrow salmon
stray niche
#

Go to the sun

#

If you want warmer

narrow salmon
#

@rugged root How are you doing btw?

rugged root
#

Coping

narrow salmon
stray niche
narrow salmon
stray niche
#

The other day

#

You stood me up

#

πŸ₯Ί

narrow salmon
stray niche
narrow salmon
#

the weather was way too harsh

stray niche
#

🀧

stray niche
narrow salmon
rugged root
#

Just throwing food over the fence at the border

narrow salmon
rugged root
#

Shawarma everywhere

narrow salmon
rugged root
#

I don't think I even know what it is yet

#

Like

#

I'm sure I've looked it up

#

But I just can't remember

narrow salmon
#

Think burrito without rice and beans

rugged root
#

Well then what's the point

narrow salmon
#

like a chicken wrap with arabic spices and sauces

rugged root
#

If there's no rice and beans then it's laaaaaaaame

narrow salmon
narrow salmon
stray niche
#

I've never had burrito or like a proper shawarma

#

I've had what they call shawarma here

rugged root
narrow salmon
dim dirge
#

i need help

rugged root
narrow salmon
dim dirge
#

when i speak he doesn't write

rugged root
#

Not sure, never used that particular library

dim dirge
#

oh

olive hedge
# dim dirge

If I had to guess: you are listening for microphone audio forever (or until the program is manually closed), so it never executes the print statement?

rugged root
#

@vast fog Decent enough. You?

rugged root
junior current
#

aight im incredibly indecisive and im sorry for jumping into a convo but, is windows 11 worth it? is it still as bad as it was on release?

rugged root
#

I haven't really had any issues with it

#

I think my only gripe with Win 11 is how they keep trying to hide away the control panel

junior current
#

aight

uncut meteor
#

!e

import threading
import time

from concurrent.futures import ThreadPoolExecutor

class Thing:
    def __init__(self, x: int, y: int, z: int) -> None: 
        self.x = x
        self.y = y
        self.z = z
        print("Called Thing from", threading.current_thread())
        time.sleep(0.33)
    
    def process(self) -> float:
        return self.x * self.y / self.z


def do_work(x: int, y: int, z: int) -> float:
    thing = Thing(x,y,z)
    return thing.process()


example_data = [(2,3,1), (7,8,10), (3,2,5)]
futures = set()
with ThreadPoolExecutor(max_workers=3) as executor:
    for raw_data in example_data:
        x, y, z = raw_data
        futures.add(executor.submit(do_work, x, y, z))


for future in futures:
    print(future, future.result())
wise cargoBOT
#

@uncut meteor :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | Called Thing from <Thread(ThreadPoolExecutor-0_0, started 140629946607360)>
002 | Called Thing from Called Thing from<Thread(ThreadPoolExecutor-0_1, started 140629938198272)>
003 |  <Thread(ThreadPoolExecutor-0_2, started 140629929789184)>
004 | <Future at 0x7fe6f60c5c90 state=finished returned float> 6.0
005 | <Future at 0x7fe6f60d4d10 state=finished returned float> 5.6
006 | <Future at 0x7fe6f60d5110 state=finished returned float> 1.2
junior current
#

i'll go for the update

vast fog
rugged root
#

That it has

vast fog
#

not sure if you heard, but I kind of took a little bit of a discord / programming break. picked back up a week or two ago. trying to get back in to things hobby wise

rugged root
#

Yep yep

#

Crap, back in a sec.

vast fog
#

kk

rugged root
#

Can't seem to get to sit for more than 20 min today.

olive hedge
rugged root
#

IT stuff galore

stray niche
narrow salmon
vast fog
#

understandable, i have to hop off myself here shortly but i'll be on and off throughout the coming days

uncut meteor
#

@formal loom

formal loom
#

@uncut meteor got it thanks!

#

yeah haha

vocal basin
formal loom
#

im pretty stoked im taking an object orientated programming class this upcoming semester so yay java

formal loom
#

omg haha

#

demineralized water

#

basically homeless?

#

@uncut meteor this is the video https://www.youtube.com/watch?v=LCsqdxhY93s

For the first time in history a Turkey has been cooked to a safe internal temperature using only the heat from the CPU of a gaming PC. Made possible by Micro Center and a turkey.

Shop Micro Center’s Black Friday Deals: https://micro.center/h2y

Submit your build to Micro Center’s Build Showcase: https://micro.center/4yb

Happy Thanksgiving, g...

β–Ά Play video
uncut meteor
#

yes

formal loom
#

linus tech tips at one pointe i believe ran all of his editing rigs on a copper rad and heated the room

#

where can i see my progress on voice perms? ive been directed to the channel once before but im struggling to find it now

vivid palm
#

run !user in #bot-commands

formal loom
#

thx

vivid palm
#

pronunciation

#

pronounciation

uncut meteor
#

its prononsiateon

vivid palm
#

pronunciate

#

enunciate

uncut meteor
#

don't call me that

vast fog
#

have to duck out, will see whats up later!

vivid palm
uncut meteor
#

no

unreal hazel
#

or hardly workin

#

helo

#

united kingdom of griff

uncut meteor
#

yes

#

i agree

unreal hazel
#

yooo

#

griff you put your choice here first

#

fishie put it after

uncut meteor
#

πŸ€™

unreal hazel
#

he did the spiderman emoji

#

thats crazy

uncut meteor
#

βœ‚οΈ

olive hedge
#

πŸͺ¨

vivid palm
#

🧻

unreal hazel
#

that's toilet paper

thin drift
#

so

unreal hazel
#

fishie time to rust

uncut meteor
#

@olive hedge

#

hurry

uncut meteor
unreal hazel
#

bunch of cheaters the lot of you

olive hedge
uncut meteor
unreal hazel
thin drift
#

yea fishie put cloud not paper

unreal hazel
#

hop to it

unreal hazel
thin drift
#

oooo

#

okay

uncut meteor
unreal hazel
#

source?

thin drift
unreal hazel
#

ruh roh

uncut meteor
thin drift
#

narc?

uncut meteor
#

as in like, ur telling on me

unreal hazel
#

snitches get stitches

thin drift
#

goofy ahh dog

unreal hazel
crisp cipher
#

DOGGOS

unreal hazel
#

best channel

#

subscribed

crisp cipher
#

What does he want oop

unreal hazel
#

he wants functional programming

crisp cipher
#

Oh

#

Tell him come again another day

elfin fractal
unreal hazel
#

Can ella write rust ?

crisp cipher
#

Pew pew pew

uncut meteor
#

probs better than Fisher

terse needle
crisp cipher
#

DOG

unreal hazel
olive hedge
crisp cipher
#

The hate

unreal hazel
crisp cipher
#

LOL

uncut meteor
#

its a seal

unreal hazel
#

you're a seel

crisp cipher
#

Seel

elfin fractal
#

seals are called sea dogs in dutch

crisp cipher
#

Dog fishes

unreal hazel
#

sogs

unreal hazel
#

here's the bouncer

#

sea lion more like clion

uncut meteor
unreal hazel
#

thanks

#

i use youtube to edit C++

unreal hazel
#

this is the 3rd time today

elfin fractal
unreal hazel
#

put it on pydis's tab

thin drift
#

its just a site why you have to be mad

unreal hazel
#

he held his breath for too long

crisp cipher
#

Do you have your own websites??

uncut meteor
unreal hazel
#

i do as well yeah

#

astro is based

crisp cipher
#

I have a website and I use GitHub

unreal hazel
#

i use EC2 for my site which is also static
oh and nginx too πŸ₯΄

#

aw hell nah

crisp cipher
#

I’ve only used html and css on it πŸ’€ no JavaScript but I have in the past before

unreal hazel
#

bit expensive

#

i am never going to financially recover from this

thin drift
#

πŸ’€

unreal hazel
#

yeah its insane

#

its static too

#

this thing has 512MB ram lol

#

i have $200 DO credit from student pack

#

i need to put AWS on my resume guys come on

#

i can put griff hosting service too

#

GHS

rugged root
#

Busy day

#

Wait what?

unreal hazel
#

hey hemlock

rugged root
#

Yo

unreal hazel
#

invalid copyright symbol
im gonna steal it now

sour willow
unreal hazel
#

not like its high traffic

sour willow
#

ah 1M?

unreal hazel
#

ec2 scales well so not a big deal if it does

uncut meteor
sour willow
#

lightsail > imo

unreal hazel
unreal hazel
uncut meteor
#

YAY!

unreal hazel
#

people at aws server said it was bad

sour willow
#

yeah bc ec2 is a aws thing lmao

unreal hazel
#

rewrite in Rocket

#

yeah

#

I am learning Rocket and Diesel for ORM

amber raptor
#

If you want cheap, use Linode/DigitalOcean/Vultr

sour willow
#

ah that concludes me prob sucking at this stuff

unreal hazel
sour willow
#

I honestly heard about the whole DigitalOcean incident and decided to try linode

#

its nice ig

unreal hazel
#

astro is pretty cool

#

my first exposure to it here tho lol

#

all these js frameworks are more or less the same

sour willow
#

ive heard alot about it, dont plan on using it

#

i like svelte

unreal hazel
#

who doesn't

#

svelte is great i hear

elfin fractal
#

Test bench

sour willow
#

its awesome

unreal hazel
#

i do mostly web dev

sour willow
#

i really dont understand the whole gist of astro , prob because im a backend dev

unreal hazel
#

@austere lava can you clarify what you mean by "template"?

#

Like flask templates?

elfin fractal
unreal hazel
#

i use tailwind for practically all my projects
it's great

uncut meteor
#

&copy;

#

for future reference

unreal hazel
#

y

uncut meteor
#

i don't think it matters

sour willow
unreal hazel
#

yup

sour willow
#

i dont like having a 1000 html classes

unreal hazel
#

epic auto deploy

#

im still working out CI/CD on mine

sour willow
#

i suck at frontend btw

unreal hazel
sour willow
#

ye

unreal hazel
#

it also indicates a failure to properly abstract

sour willow
#

my css classes are stolen from templates i have bought shhhhhhhh

elfin fractal
#

if you bought them are they stolen?

unreal hazel
#

tailwind takes a mobile first approach

sour willow
#

i take a im fine with pure HTML approach

unreal hazel
#

i found working with a small site and then scaling up made my site look really nice on mobile

uncut meteor
#

@unreal hazel

#

YOU PRANKED ME

#

pls fix

unreal hazel
#

i thought it was the same PensiveBlob

#

fix time

uncut meteor
#

same tbh

sour willow
#

lol

unreal hazel
#

this is why you should've written it in rust

sour willow
#

nice website

unreal hazel
sour willow
uncut meteor
crisp cipher
#

Oooo

unreal hazel
unreal hazel
#

quick mafs

uncut meteor
#

init

sour willow
#

basically

#

set some buffer sizes

uncut meteor
#

feel free to PR it, preferably with some docs or articles explaining it to me.

unreal hazel
#

__init__

unreal hazel
#

commit on ur own branch and merge upstream

sour willow
#

i will definitely not copy paste stackoverflow code since im too lazy to tell you my own configs

#

NEVER

unreal hazel
#

if you say kubernetes cluster one more time i swear

#

when i close my eyes
i see k8s cluster

#

i just see it

#

trust me bro

#

twas revealed to me in a dream

sour willow
#

k8 is amazing

unreal hazel
#

i am he

#

nah that's @sweet lodge 's job

#

the k9s cluster

sweet lodge
#

@unreal hazel voice reveal!?

unreal hazel
#

no

#

why don't you join and talk

crisp cipher
#

Oop

sweet lodge
#

joining VC *RN

unreal hazel
#

come say hi

#

don't let your boss know you're slacking off at work

sweet lodge
sweet lodge
unreal hazel
#

later

#

have fun with the 13k

#

if i were you i'd just take it and go home

elfin fractal
#

podman is my favourite superhero

unreal hazel
#

how come aws RDS has no nosql database engines

sour willow
#

@uncut meteor no gzip? sad

rugged root
#

Bear Metal

#

Would totally listen to that music

unreal hazel
#

oh

#

relational

#

lol

#

but do they have like mongo on a seperate service tho

rugged root
#

HA

uncut meteor
#

guess nginx doesn't do it by default, I agree. sad

sour willow
sour willow
#

i didnt add gzip lol, but i can add it

unreal hazel
#

aight im bouta head out
have fun yall

rugged root
#

A month?

uncut meteor
#

a second

mortal burrow
rugged root
#

All dem dolla biiiiilllllllllls

#

I'm a very tired old man

uncut meteor
#

lol

#

boomer

rugged root
#

It's more like

#

It let's you track trends in the market, assistance with logistics as in which region needs more product at a given time, etc.

#

Unless I'm way off the mark

crisp cipher
#

That makes sense

sour willow
#

Griff i added full explanation to my commit

#

if you didnt understand the code

#

ok gotta go sleep guys bye

stray niche
acoustic sable
#

it's like an opmitization of an already existing database, right

#

you can apply of any kind of company, like a agriculture bussinness

#

street python knowledge

uncut meteor
#

merged

gentle flint
elfin fractal
vivid palm
#

not sure how i got this

#

tried again later and it worked fine

sour willow
#

flappy bird protocol is useful

rugged root
#

I just want to sit on my butt for more than 10 minutes

#

My wife had hers broken into

sour willow
#

na bro its flat

rugged root
#

@uncut meteor You can if you want

sour willow
#

πŸ’€ πŸ’€ πŸ’€

uncut meteor
#

for more than 10 minutes?

stray niche
#

in order for you to fix others

rugged root
#

Can't. Internally I can't do that

#

My brain doesn't let me

stray niche
#

ah

#

too nice

#

when does your brain think its okay to lie

rugged root
#

Defeats the purpose if I say

stray niche
rugged root
#

@gentle flint So you used your fake ID?

gentle flint
#

hmmm

stray niche
#

to get what

#

how easy is it to get a fake id

gentle flint
#

the knife I smuggled to Greece

#

and no I did not use a fake ID

stray niche
#

ah

sour willow
rugged root
#

Company policy to cover their ass

#

HA

#

No

#

Very no

sour willow
#

Yes

#

Very yes

#

C# dev / accountant MAKES SENSE

rugged root
#

Tee hee

#

Duty

#

Way to cut to the chase

gentle flint
rugged root
#

Nerd lands

stray niche
rugged root
#

@tidal shard Dutch does not sound like Simlish

#

It so doesn't

#

So they're kickable

stray niche
#

weepul

rugged root
stray niche
rugged root
#

Yeah

#

I'm pretty sure I can communicate solely via gif

rugged root
#

@gentle flint That sounds like islamabad situation

#

That was low effort, I'll do better

gentle flint
rugged root
#

He's got that on lock

gentle flint
rugged root
#

I can't remember, do you play?

gentle flint
#

I do not

#

only low whistle