#voice-chat-text-1

1 messages ยท Page 109 of 1

misty sinew
#

you cant

#

@raven orbitthat's tough

#

let me increase your volume

#

my bad

dusty apex
#

[alias.asname if alias.asname else alias.name][0] vs next(alias.asname if alias.asname else alias.name)

#

which seems alot more cleaner

raven orbit
#

list(alias.asname if alias.asname else alias.name)[0]

dusty apex
copper chasm
quaint olive
#
SELECT u_c.name ,
       
       CASE h_te.to_pay_to_customer > h_te.pay_from_customer then sum (h_te.to_pay_to_customer - h_te.pay_from_customer)
                     CASE h_te.pay_from_customer > h_te.to_pay_to_customer then sum(h_te.pay_from_customer - h_te.to_pay_to_customer)   end, u_c.owner_id FROM home_transactionentries h_te INNER JOIN home_transaction h_t ON h_te.transaction_id = h_t.id INNER JOIN users_customer u_c ON u_c.id = h_t.customer_id WHERE u_c.owner_id = 1 GROUP BY u_c.name , u_c.owner_id;
#
SELECT u_c.name , sum (h_te.to_pay_to_customer - h_te.pay_from_customer), u_c.owner_id FROM home_transactionentries h_te INNER JOIN home_transaction h_t ON h_te.transaction_id = h_t.id INNER JOIN users_customer u_c ON u_c.id = h_t.customer_id WHERE u_c.owner_id = 1 GROUP BY u_c.name , u_c.owner_id;
umbral rose
#
CASE
    WHEN condition1 THEN result1
    WHEN condition2 THEN result2
    WHEN conditionN THEN resultN
    ELSE result
END;
quaint olive
#
SELECT u_c.name ,
       CASE when h_te.to_pay_to_customer > h_te.pay_from_customer then sum (h_te.to_pay_to_customer - h_te.pay_from_customer)
        when  CASE h_te.pay_from_customer > h_te.to_pay_to_customer then sum(h_te.pay_from_customer - h_te.to_pay_to_customer)   end,  u_c.owner_id FROM home_transactionentries h_te INNER JOIN home_transaction h_t ON h_te.transaction_id = h_t.id INNER JOIN users_customer u_c ON u_c.id = h_t.customer_id WHERE u_c.owner_id = 1 GROUP BY u_c.name , u_c.owner_id;
#
SELECT u_c.name,
       CASE
         WHEN h_te.to_pay_to_customer > h_te.pay_from_customer THEN
         Sum (h_te.to_pay_to_customer - h_te.pay_from_customer)
         WHEN h_te.pay_from_customer > h_te.to_pay_to_customer THEN
         Sum(h_te.pay_from_customer - h_te.to_pay_to_customer)
         ELSE 0
       end,
       u_c.owner_id
FROM   home_transactionentries h_te
       INNER JOIN home_transaction h_t
               ON h_te.transaction_id = h_t.id
       INNER JOIN users_customer u_c
               ON u_c.id = h_t.customer_id
WHERE  u_c.owner_id = 1
GROUP  BY u_c.name,
          u_c.owner_id,
          h_te.to_pay_to_customer,
          h_te.pay_from_customer; 
#

i dont want to group by

#

these two

#
SELECT u_c.name,
       sum(CASE
         WHEN h_te.to_pay_to_customer > h_te.pay_from_customer THEN
          h_te.to_pay_to_customer - h_te.pay_from_customer
         WHEN h_te.pay_from_customer > h_te.to_pay_to_customer THEN
         h_te.pay_from_customer - h_te.to_pay_to_customer
         ELSE 0
       end),
       u_c.owner_id
FROM   home_transactionentries h_te
       INNER JOIN home_transaction h_t
               ON h_te.transaction_id = h_t.id
       INNER JOIN users_customer u_c
               ON u_c.id = h_t.customer_id
WHERE  u_c.owner_id = 1
GROUP  BY u_c.name,
          u_c.owner_id;
quaint olive
#

@misty sinew

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied mute to @misty sinew until <t:1630436174:f> (9 minutes and 59 seconds) (reason: newlines rule: sent 118 newlines in 10s).

tight gazelle
#

!unmute 844265279219302492

coarse hearthBOT
#

:incoming_envelope: :ok_hand: pardoned infraction mute for @misty sinew.

tight gazelle
#

!paste

coarse hearthBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

tight gazelle
#

please use this for long lines of code

quaint olive
#
def turtlegame():
#window settings
    win = turtle.Turtle()
    win.screen.title("Turtle project")
    win.color('White')
#
if ans.lower() == 'yes':
  turtlegame()
else:
    exit()
#
def turtlegame():

    #window settings
    win = turtle.Turtle()
    win.screen.title("Turtle project")
    win.color('White')
dusty apex
smoky bluff
#

I am bit confused in this

elder wraith
#

!e ```python
class Test:
def init(self, a:int) -> int:
self.a = a
self.b = a * 2
return self.b

x = Test(4)
print(x)```

coarse hearthBOT
#

@elder wraith :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 7, in <module>
003 | TypeError: __init__() should return None, not 'int'
mild flume
#

@vestal dawn You're cutting in and out really bad

storm heron
#

lol

#

yeS?

misty sinew
#

ohhhhhhh we were in the wrong voice chat

#

XDDDDDDDDDDDDDDDDDDD

dusty apex
misty sinew
#

the things you mentioned are they GUI?

#

NOOOOOOOOOOOOOOOOOOOOOOOO

fervent notch
stuck bluff
#

tkinter

dusty apex
#

Qt made pyside and pyqt both

stuck bluff
#

kivy

dusty apex
#

pyside6 and pyqt6 are latest

misty sinew
#

i used to use an autoclicker to auto mate my web browsing tasks haha, they were timed clicks

stuck bluff
#

Corey Schafer, youtuber.

misty sinew
#

alright thx

dusty apex
#

pyqt and pyside are same but

for Qt, which is more powerful than tkinter, there are 2 options for python binding, the main difference being license

PyQT(6) is the unofficial 3rd party library thats been around for longer, seems to be made by a single person. its GPL3 which means your project absolutely has to be GPL3

PySide(6) is the official python bindings made by the QT company. licensed LGPL which means your project can be any license. (still read up on license requirements tho)

  • laundmo#7544
misty sinew
#

alright thx guys

#

thank you

#

yeah me too

#

it says muhammed

dusty apex
#

alright i am gonna go and play some games :)

quaint olive
#

the paid or cracked @stuck bluff

#

version

#

heh how?

#

oh

#

bloody $27 dollars

stuck bluff
#

Fringe

quaint olive
#

money heist

#

dark

#

so you dont like college then

#

yeah that is true

#

i like maths but

#

i dont like the college

#

yes that is true ๐Ÿ™‚

#

they just want you to mostly memorise

#

nope

#

there is noise

#

in my background

#

okay i have to go rn my mum is asking to help her

storm heron
#

ngl

peak frigate
#

@void plover

mild flume
#

What's ah.... what's going on down here?

peak frigate
#

@drowsy hazelhi

#

!voice

coarse hearthBOT
#

Voice verification

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

peak frigate
#

read the above

drowsy hazel
#

Thanks

#

Seems I should wait

mild flume
# drowsy hazel Seems I should wait

You can always hang out in the voice chats. Typically if people are in VC, they'll be looking in the paired text channel, so you're still able to join the conversation

drowsy hazel
#

Is there any Data science guy in meeting?

mild flume
#

Not in chat, typically, but we do have a channel specifically for it

violet venture
#
body {
  color: blue;
}

h1 {
  color: green;
}
#

Could also use inline styles

#

Or classes

#

Oohh

mild flume
#
'use strict';
#
document.body.style.color = "color here"
umbral rose
umbral rose
mild flume
#

Oh my god that's amazing

#

(yes I hopped over here in the middle of my meeting to state how fucking awesome that is)

sage shuttle
#

b'{"type: 1}'

elder wraith
#

WWVB is a time signal radio station near Fort Collins, Colorado and is operated by the National Institute of Standards and Technology (NIST). Most radio-controlled clocks in North America use WWVB's transmissions to set the correct time. The 70 kW ERP signal transmitted from WWVB is a continuous 60 kHz carrier wave, the frequency of which is der...

#

70% of the price is the name

mild flume
#

@fair sierra

Is it a py chart?

fair sierra
mild flume
#

You're a man after my own heart

elder wraith
warm tendon
mild flume
#

I still don't get why it's called that

#

That emote I mean

elder wraith
mild flume
#

Ask a silly question...

elder wraith
#

๐Ÿฟ Discord Websocket gateway is sooooooooo last year

#

goes to get massive big big bag of popcorn

#

hell, watching dev contrib is going to be hilarious when change is made

warm tendon
#

what's your favorite popcorn flavor

elder wraith
#

plain with butter

warm tendon
#

classic

elder wraith
#

I'm a simple man, like my code

#

Save 24$ from Aliexpress. Use code "INT58Q4I" or visit: https://a.aliexpress.com/_dTQqywo
๐Ÿ˜
Gilfoye annoyed by Talking and Hacks into Jian Yang's Smart Fridge (Silicon Valley) ๐Ÿค“ โ†“โ†“โ†“

Jian Yang ordered a new Smart Fridge as Erlich's Old Refrigerator is broken.
Dinesh was Excited but Gilfoyle was Annoyed by its Talking, Voice!
As Jian Yang pa...

โ–ถ Play video
raw wren
#

Alright I gotta go pick up the Boston Dynamics grill

#

brb

elder wraith
misty sinew
#

Micheal Reeves made one

#

yeah

#

let me send you a link

#

The first 500 people to click the link will get 2 months of Skillshare for free https://skl.sh/michaelreeves3

Thanks to everyone who helped out with screaming!:
https://www.youtube.com/iDubbbzTV
https://www.youtube.com/maxmoefoePokemon
https://www.twitch.tv/lilypichu

Screaming Roombas are technology that mankind has dreamed about ever since we...

โ–ถ Play video
elder wraith
misty sinew
elder wraith
#

No, I didn't make the GUI, probably some Java framework and toaster requires 4 core processor with 2GB RAM

#

No

#

Just stop

#

STOP

misty sinew
#

LOL

fair sierra
#
WORLD'S FIRST BUILT IN CHICKEN CHAMBER
Never risk letting your chicken go cold again thanks to the patented Chicken Chamber. Utilising the systems natural heat and airflow system you can now focus on your gameplay and enjoy hot, crispy chicken between rounds.
elder wraith
#

Dear PyDis HR, Mr. Hemlock is talking about making IoT oven with Crypto mining, he's not suitable to be admin or living among the general population. Please address.

mild flume
#

@crystal halo

misty sinew
#

Solar panel on a toaster?

violet venture
#

Solar Panel on a smoker

misty sinew
#

i don't think so, most of the IoT devices and embedded systems have very low computing power and most of them have proprietry firmware (closed source) not even a embedded Linux

#

Yeah Smart fridges can be vulnerable to things like this cause some fridges run Android Things OS

#

yup

mild flume
#
sage shuttle
#

Gonna play some Project Winter see ya'

oblique lily
#

!code

coarse hearthBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

oblique lily
#
@bot.event
async def on_ready():
    print(f"Logged in as {bot.user}!")


@bot.command()
async def bigbottone(ctx):
    await ctx.send(
        "Hello, World!",
        components = [
            Button(label = "WOW button!", custom_id = "button1")
        ]
    )

    interaction = await bot.wait_for("button_click", check = lambda i: i.custom_id == "button1")
    await interaction.send(content = "Button clicked!")

mild flume
oblique lily
umbral rose
mild flume
peak frigate
warm tendon
#

exposed

mild flume
#

@hallow anchor You are full of liiieeeeesssss

#

LIIIEEESSSSSSS

hallow anchor
#

eh?

elder wraith
hallow anchor
#

what did I do now?

#

Is mina spreading fake news again?

mild flume
#

She said that you, are in fact, the fake news

hallow anchor
#

hmmm, and who are you gonna believe, innocent ol' me, or the delinquent mina

misty sinew
#

๐Ÿ”ซ

warm tendon
#

mina is cooler

hallow anchor
#

you calling me hot pub?

hallow anchor
mild flume
#

You're both pretty suspicious, honestly

peak frigate
hallow anchor
hearty heath
#

Hello ๐Ÿ‘€

#

How are you all? ๐Ÿ˜„

#

Ah yes, that is true.

#

Erm, uni course

#

Well, I mean, enroll

#

I switched to part-time study.

#

What are you studying?

#

Ah right. It was called informatics at my previous university too.

#

I think that's kind of a continental term.

unborn prairie
#

@peak frigate did ya see that yet?

warm tendon
#

๐Ÿ‘€

peak frigate
#

i watched 20 seconds but will watch the rest at home on decent headphones bc i have a feeling this deserves them

unborn prairie
#

Definitely

#

the queen has come back

devout nimbus
#
    def twoSum(self, nums, target):
         other_nums = []
         for num in nums:
            if num > target:
                other_nums.append(num-target)
            elif target > num:
                other_nums.append(target-num)
            if num in other_nums:
                if target > num:
                    return [nums.index(num),nums.index(target-num)]
                elif num > target:

                    return [nums.index(num),nums.index(num-target)]```
idle beacon
#

Need to search a string and dollar the next line in VBA ...Any code for the 2nd part

warm tendon
#

@azure knoll please stop

azure knoll
sage shuttle
#

Goodnight everyone

azure knoll
north ginkgo
#

hello

#

@placid nymph @devout nimbus What are you guys working on?

sour ledge
#

Hello Guys

remote loom
#

Hi, This is my first message..

wintry sinew
#

@dreamy vault fuck 1 sec

dreamy vault
#

@tender sand

#

@tender sand

#

@tender sand

wintry sinew
#

yes joe exist

dreamy vault
#

Can confirm joe exists

#

very pog

wintry sinew
#

JustaMinx can I stab my whiteclaw?

https://www.twitch.tv/JustaMinxโ€‹โ€‹

Hope You Enjoyed the Clip ๐Ÿ˜ƒ Check Their Videos ๐Ÿ’› ๐Ÿ‘‰ @JustaMinx

Subscribe For Daily Funny Clips :)
๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›๐Ÿ’›

#JustaMinxโ€‹โ€‹ #Twitchโ€‹โ€‹ #Clipsโ€‹โ€‹ #Highlightโ€‹โ€‹ #Livestreamfailsโ€‹โ€‹ #Funnyโ€‹โ€‹

Twitch is a video live streaming service operated by Twitch Interactive. Content on th...

โ–ถ Play video
narrow terrace
#

can confirm that america != us

#

what about west america

#

i've been outside america many times personally

#

our police doesn't wear full auto rifles, doesn't help

#

you remember all the words to correct people, right

dreamy vault
narrow terrace
#

nobody trusts joe ๐Ÿ‘€

#

he is not pgp verified

#

PGP backwards is PGP, not GPG.

wintry sinew
sweet cypress
#

@misty sinew so how many time do you have to be in the server to be able to talk?

sweet cypress
#

ok thx

lost elm
#

ive never seen analyze with an s ๐Ÿค”

misty sinew
quaint olive
#

@sturdy grotto

#

i am soory

#

i was furious back then

sturdy grotto
#

sorry for what

quaint olive
sturdy grotto
#

neither do you have anything to apologise for

#

it's totally cool

#

I know it's frustrating

#

when some rando internet stranger tells you that you're doing things totally the wrong way

#

I used to do what you did (mega one line solutions)

#

it's fun but that's about it

#

so I don't really want anyone else to make the mistakes I did

quaint olive
spice flame
#

@radiant matrix hello!

radiant matrix
#

hey

spice flame
#

do you play clash of clans?

radiant matrix
#

Yep

spice flame
#

ayy same

#

which TH?

radiant matrix
#

just started a few weeks ago

spice flame
#

thats pretty good

#

im at townhall 9 :>

radiant matrix
#

am 8 ๐Ÿ™‚

spice flame
#

did you rush?

pseudo aspen
#

opal mist

pallid urchin
#

how to talk in the voice chat

#

??

#

the vc has fresh topics

split granite
#

helolo

#

how are u

#

what's up

#

ohh

#

cool

#

im ok

#

and u

#

i just typing

#

no spamming

#

lol

#

just for something

#

ok?

#

can i

verbal fjord
coarse hearthBOT
#

Voice verification

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

split granite
#

oh no

pallid urchin
#

k

split granite
#

can i already

#

idk

#

dik

#

but

#

i just

shadow current
split granite
pallid urchin
#

i know its hard to voice verify

split granite
#

gpou

verbal fjord
pallid urchin
#

i really need to voice verify the vc topic are fresh

mild flume
#

!tvban 737331056662937692 2w Spamming to get voice verified instead makes it take longer for you to get verified. Please re-read the #voice-verification channel for more information.

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @split granite until <t:1632234329:f> (13 days and 23 hours).

verbal fjord
split granite
#

why

mild flume
#

Read the channel

split granite
#

don't do me that

#

the bot said me that i had sent 50 mensagges to get in voice channel

#

but i wasn't doing spam

#

whyy

small oak
#

๐Ÿ‡ฎ๐Ÿ‡ณ

hexed anvil
#

Hey everybody

#

how can I be able to speak in the voice channels

shy hemlock
#

check voice-verification channel

mild flume
#

Hnnnnnggggggggggggggggggggggggg

#

When are these things going to be out on delivery

stuck bluff
#

Your new toy?

mild flume
#

Yarp

#

New lappy, backpack for it, stylus for it, and a phone mount/charger for the van

#

So I'm just bouncing in my chair like an impatient child.

stuck bluff
#

"I'd rather be angry with my shit scenario." YAAS, PREACH!

#

@fair heart Telepresence drone.

mild flume
#

I heard "Are you on a space station"

stuck bluff
#

Space. Prime real estate or deadly vacuum? You decide!

mild flume
#

People who live in space stations shouldn't throw stones?

#

Who the fuck writes at a 90 degree angle

stuck bluff
#

Hand models.

#

"U.K.?"
"No, not really."

shrewd star
#

Hey guys i think i found the problem with my mic

#

You see where the cable is damaged?

#

That'd likely be the background "noise"

stuck bluff
#

Farmland...in spaaaaace!

mild flume
shrewd star
#

Ive got new headphones now, and the cat has been nowhere near them yet

#

So i should be good

mild flume
shrewd star
#

But now it's midnight i don't wanna wake people up

mild flume
#

And I do apologize, when I'm not on or I don't have other mods to follow up with, I tend to temporarily disable a problem until I get there to figure it out

shrewd star
#

Aye all good

mild flume
#

I appreciate you being understanding about it

shrewd star
#

Much better mod than me, if there's a big fuss, i press the purge button

#

I purge, and everyone is like aaaaaaaaa

fair heart
stuck bluff
#

Did they ever pay that guy from last time?

#

The guy that did work digging stuff out and got stiffed on his payment.

mild flume
true valley
stuck bluff
#

Sluggish is an interesting term. Because you have gastropod slugs and you have ballistic slugs. On a good day, you don't mix them up.

#

On a bad day, a slug goes on a trip.
"This is a stickup! *splorch splorch splorch*"

fossil citrus
#

Detachable ones are horrible at gaming / etc.

#

Battery Life?

#

I know its sub-par

true valley
cold trellis
#

CSGO is not on source 2 yet T-T

mild flume
#

I made sure to extensively go through reviews, too

true valley
mild flume
#

This ain't my first rodeo

fossil citrus
stuck bluff
#

Quayke.

mild flume
#

This is a good alternative

stuck bluff
#

Sound sound engineers.

#

Their parents...sound sound engineer engineers.

#

Cyborgs.

mild flume
fair heart
#

This player is truly incredible. Challenge ProMode Arena, maybe the fastest First-person experience there is. A movie starring Gaiia, edited by Lunokhod-2.
Lunokhod-2 | https://www.youtube.com/channel/UCv2vj17rjrXUZ-IlCRx5EqA

WASD Gamers Facebook | http://www.facebook.com/wasdgamers
WASD Gamers Twitter | http://www.twitter.com/wasdgamers
WAS...

โ–ถ Play video
elder wraith
#

The hell

deft yoke
#

._.

mild flume
#

Oh shit

#

I found it

#

This is the mod that one of my friends made long ago

#

Was really great

#

He went on to work for Volition for a time

stuck bluff
#

I've always been very slightly disappointed that bazookas have nothing to do with zoos.
"Yer, this is my tactical zebra launcher. It can launch assorted wilderbeast across a football field in under a second."

fair heart
mild flume
fair heart
deft yoke
#

Police: "Moooooooovee."

mild flume
#

Found it

#

After years

deft yoke
#

comma ai makes sense

shrewd star
#

I feel like im on the edge of passing out

#

its kinda wierd

stuck bluff
#

Horizontal is life.

fossil citrus
shrewd star
#

sleep is boring

fossil citrus
#

Depends on if there is a "No Right Turn On Red" sign or not

shrewd star
#

hey you guys, where i live, you can turn left at red, but only if there's a special lane for it

#

we gotta give way to right

#

and when turning right

#

remember not everywhere is america, your model will need a mirror version

#

I set my desktop background and accent to a blood red theme, now it feels kinda ominous

#

ii keep looking at the background thinking aaaaa there's blood

#

of course technology isn't perfect, but same goes for people what's the difference?

#

ok that might be a bit provocative, but that's good for discussion

elder wraith
#

Since we are inventing the tech, Iโ€™m going by our rules

mild flume
#

I mean

#

We've done that for everything else

elder wraith
#

Sure, you canโ€™t port it to other countries which makes it harder

shrewd star
#

so us aussies have to hack ur ai and mirror it if we wanna use it?

elder wraith
#

no, we are leaving you there in the ocean

shrewd star
#

mate that 10 minutes of hackery i coulda gotten a coffee i am a very unhappy client.

#

1 out of 5 stars

#

i failed my first two driving tests

mild flume
#

Guys guys guys guys guys

#

My laptop is 7 stops away

shrewd star
mild flume
#

They should not have implemented this system, I will literally be refreshing this every few seconds

elder wraith
#

No they shouldn't have

#

I now wish for your driver to stop for 7-11

shrewd star
#

eh 54% is good enough someone just said "america"

#

jk

#

but bye anway

#

i slep now

#

wel i try anyway i have insomonina insoomins insmonn sleep issues

cold trellis
#

i've gained 6kg in last 2 years

#

in my case it isn't because of not working out but

#

i just ate alot more junk food

deft yoke
#

nintendo jump rope challenge

#

xD

cold trellis
#

if i ever have a pet i'd starve to death.... that's why i don't get pets :x

shrewd star
shrewd star
#

if only i could put on weight by eatin

cold trellis
fossil citrus
shrewd star
#

i put on weight by running

cold trellis
#

idk why but as soon as first lockdown ended we just started ordering pizza alot more often

misty sinew
#

We may also create a thread called #d0ntb34d1ck

shrewd star
#

i managed to get as far as 51kg last i checked but that's still disastrously underweight for someone my height

unkempt pawn
#

@carmine apex ! voice

#

!voice

coarse hearthBOT
#

Voice verification

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

mild flume
#

Yeah it's good that you put on weight for it then

#

Muscle is heavier than fat

shrewd star
#

I'm still struggling to put on weight though

carmine apex
#

!voice

shrewd star
#

i saw a doctor he said eat more. Like i don't already...

mild flume
#

Weight gain or protein powder

misty sinew
#

๐Ÿถ

mild flume
#

Seriously

shrewd star
#

medical advice is a bit bonkers down under here

mild flume
#

I had to do that for a time

misty sinew
#

Hemlock how fast can you even type dude ๐Ÿคฃ

#

???

shrewd star
#

lol

mild flume
#

On average?

#

70ish

misty sinew
#

DUDE

#

How fast

#

the average

shrewd star
#

must have a customised mechanical keyboard

misty sinew
#

?

fossil citrus
#

Hello world

misty sinew
#

Idc abt average

shrewd star
#

with rainbow lights on the keys like any sensible gamer

fossil citrus
#

This is a text

shrewd star
#

oh that's right im supposed to be sleeping

fossil citrus
#

This is a text

mild flume
misty sinew
#

Dude

shrewd star
#

If is typed really fast like that i wouldn't have much of a keyboard left

misty sinew
shrewd star
#

I can touch type but a lot of that is the backspace key

misty sinew
#

LMAO

#

Imma burn ma disc

shrewd star
#

cos i end up 3 characters in by the time the brain registers it makes a mistake

#

but then it automatically spams the backspace key and then rewrites the stuff

cold trellis
#

i have 100-110 depending with 98% accuracy on a proper keyboard but on this shitty laptop keyboard + while laying on my bad like i am rn its probably like 50-60 wpm with 50% accuracy

shrewd star
#

the more trief eder i am enthe ls
okay im going to sleep now for realzys bye

misty sinew
#

Lets go

coarse hearthBOT
#

Hey @misty sinew!

It looks like you tried to attach file type(s) that we do not allow (.html). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a.

Feel free to ask in #community-meta if you think this is a mistake.

misty sinew
#

Dude

#

There goes my trolling site

#

Fk

mild flume
#

!paste

coarse hearthBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

misty sinew
#

I tried to rickroll yall

#

๐Ÿคฃ

cold trellis
#

thinkmon my github pages is actually a rick roll

#

got many people with it

misty sinew
#

LOL

cold trellis
#

i also tried to use SpeechSynthesizer browser api to

#

make it say something

#

but unfortunately that doesn't work with redirects

fossil citrus
cold trellis
#

both on this server and in my own server and friend group

fossil citrus
#

Just posting the link here will make it get scanned immediately.

cold trellis
#

๐Ÿคทโ€โ™‚๏ธ it worked when i put it here

fossil citrus
#

Meaning it would get a hit even if nobody clicks it

cold trellis
#

ah

#

but they did have reactions

#

so most of them did fall

sacred wolf
#

gys, what should I do after learning python fundamentals ?

fossil citrus
cold trellis
#

probably learn bit more advanced stuff like generators, async, threading, multi processing, standard library modules, and most importantly make projects ^

fair heart
#

while talking with a client about how to plug in some fucking power cables

#

poor score.

#

should be 120 or so

fervent notch
coarse hearthBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

mild flume
cold trellis
#

109 actually but same thing

misty sinew
fervent notch
#

Preptember is here yay!

fair heart
sacred wolf
#

what's your typing speed @fair heart

cold trellis
#

i've been typing for years too but i got introduced to good typing practices quite early

#

i have a few bad practices still like clicking caps->o for newline instead of enter... for vim reasons. which doesn't work on typing speed websites

misty sinew
#

You guys arguing abt clocks?๐Ÿ˜‚

fair heart
#

but i'd say i'd average about 100wpm

sharp lintel
#

love colbert

fossil citrus
#

I love the lack of memory of pulling me back @mild flume *giggle* I forgive you

mild flume
#

I mean I'm the worst person to do it since I'm juggling here and work

fair heart
fossil citrus
sharp lintel
#

we all have our addictions

fair heart
sharp lintel
#

hem where is laptop!

#

!

#

essite

#

goooo

fossil citrus
fair heart
fossil citrus
#

neofetch

#

uwufetch

cold trellis
#

Windows defender hates golang.... i have to compile twice every time because it deletes it once

fair heart
cold trellis
#

if you have brave you can just try opening it in a private window with tor in it even if its blocked

fossil citrus
fair heart
fossil citrus
#

The EICAR Anti-Virus Test File or EICAR test file is a computer file that was developed by the European Institute for Computer Antivirus Research (EICAR) and Computer Antivirus Research Organization (CARO), to test the response of computer antivirus (AV) programs. Instead of using real malware, which could cause real damage, this test file allow...

fair heart
true valley
#

!paste

#

_ = system('cls')

#

clear()

wary fable
#

It seems interesting.

fossil citrus
#
print(end='\b \b', flush=True)
wary fable
#

!e

print(end='\b \b', flush=True)
coarse hearthBOT
#

@wary fable :white_check_mark: Your eval job has completed with return code 0.

 
fossil citrus
fair heart
wary fable
#

Yes, but I was curious to see what would happen if I did it here.

#

FOR SCIENCE

fossil citrus
#

move cursor back 1, put a space, move cursor back 1 again

wary fable
#

I've never been able to figure out playing an FPS with a controller. Aim is soooooo janky.

fair heart
fossil citrus
fossil citrus
wary fable
#

I deep-fried my drive. Exxxtra crispy

mild flume
#

First Rule of English:
Their our know rules.

wary fable
#

First Rule of English: Abandon Hope

#

Right is Right, right?

mild flume
#

Abandon hope all y'all who enter

#

@fair heart https://www.moddb.com/mods/generations-arena This one was pretty cool

Mod DB

Generations Arena is an "ultimate tribute" to id Software (developer of the Quake and Doom series) as well as id's fans. Developed and released under the Quake3 engine, Generations Arena recreates all the classic First-Person-Shooter gameplay styles...

#

Only huge downside of that mod, there were certain classes where you were stuck with one ammo type

#

Like they only used bullets

#

Really turns it into an ammo memorization game

wary fable
#

||| code courtesy of the tf source leak |||
Music: Hall of the Mountain King

channel discord --- https://discord.gg/8TYgJhwA7S
channel patreon --- https://www.patreon.com/shounic
custom files --- https://pastebin.com/raw/e32aG4nP
[ hud / crosshairs / hitsound / killsound / gfx cfg ]

FAQ:
Q: How did you make that? What editing software do you u...

โ–ถ Play video
fair heart
#
float Q_rsqrt( float number )
{
    long i;
    float x2, y;
    const float threehalfs = 1.5F;

    x2 = number * 0.5F;
    y  = number;
    i  = * ( long * ) &y;                       // evil floating point bit level hacking
    i  = 0x5f3759df - ( i >> 1 );               // what the fuck? 
    y  = * ( float * ) &i;
    y  = y * ( threehalfs - ( x2 * y * y ) );   // 1st iteration
//    y  = y * ( threehalfs - ( x2 * y * y ) );   // 2nd iteration, this can be removed

    return y;
}```
mild flume
#

What's that called again?

fair heart
#

fast inverse square root

mild flume
#

Thanks

fair heart
spring quail
#

This dm seems pretty random, does someone know anything about it, some context or smt?

peak frigate
#

hiii lx

hearty heath
peak frigate
#

bongjou

hearty heath
#

Bongjou to you too ๐Ÿ˜„

hearty heath
#

I know a bit of C ๐Ÿ‘€

mild flume
hearty heath
#

Was that a C server you were posting @dusty apex?

hearty heath
#

Sorry, got caught by the spam filter:

dusty apex
mild flume
#

Huh, they must have changed their logo

#

Yeah sure enough. That server is on the list

hearty heath
# dusty apex yeah

Funnily enough, it's a whitelisted domain, so if you hadn't tried to get around the filter, it wouldn't have been blocked pithink

fossil citrus
hearty heath
hearty heath
#

Not sure why that exists either ๐Ÿ˜„

dusty apex
#

haha

fair heart
hearty heath
#

Yeah, we say naught.

fossil citrus
fair heart
#

apocalyptica

fossil citrus
unborn plume
#

Hello, what are we arguing about ?

#

Go ahead

#

What ?

fossil citrus
#

Q: What do pirates like best about programming?
A: ||ARGuments||

unborn plume
#

Why didn't I think of this !

#

I have one for you, I think i told this before but only Hemlock would remember

fossil citrus
#
||spoilered text||
unborn plume
#

What did the blue primary color say to red primary color ?

#

Yellow !

#

Helllo - Yellow

peak frigate
#

๐ŸŸจ

unborn plume
#

I knew it was veerrrrrrry bad joke

cold trellis
#

|| yo ||

#

๐Ÿ˜ฆ didn't work

fair heart
#

||yes it does||

unborn plume
#

no spaces @cold trellis

cold trellis
#

||hello world||

#

what @hearty heath

hearty heath
cold trellis
#

okay..

hearty heath
#

Nice ๐Ÿ˜„

unborn plume
#

That's a good one ! , I'm stealing it

#

Still funny

#

Funny !

#

I had heard that one but didnt want to spoil others fun, its a good one

#

Oh god wait I have a perfect pic for this

fossil citrus
#

e-legal

fair heart
#

eeleagle

unborn plume
#

Loved the joke fest ! Gotta go

#

beware man, you dont wanna risk it

cold trellis
mild flume
#

That one is great

cold trellis
#

i've only seen some gameplay yet gonna buy it tomorrow or day after

#

hopefully will be fun ๐Ÿ™‚

fair heart
fossil citrus
#

jumping to AFK for a while

worldly halo
ocean hedge
#

its loading for your guys?

#

you*

#

just did nvm

austere abyss
#

Awesome

#

Smooth

cold trellis
#

i just refreshed and this happened

#

o-o

#

nvm i think its just loading slow

#

i would recommend fixing the image container's height and probably adding a placeholder for loading so it doesn't look like that

wintry sinew
#

loads of cars are keyed alike

#

the entire nypd fleet of cars are keyed alike

#

(as are half of the NYC taxis because they're ex-pd cars)

mild flume
#

That does make sense

wintry sinew
#

hash collisions are only really useful if you control what collides

#

well

#

there is

#

if you have a really long password at some point you get essentially no gains, and it means that storing it is gonna be a pain

#

either you take more space in a pw manager, or you start writing stuff down

#

neither of which are great

cold trellis
#

meanwhile i've never eaten either pork or beef

fossil citrus
cold trellis
fossil citrus
#

gg

cold trellis
#

we don't' really eat beef in india for various reasons

#

religious reasons

#

we have cows everywhere

#

just don't eat em

fossil citrus
#

You're watching the official music video for The Monkees "Daydream Believer" from the album 'The Birds, The Bees, & The Monkees' (1968)

๐Ÿ”” Subscribe to The Monkees channel and ring the bell to turn on notifications https://Rhino.lnk.to/SubscribetoTheMonkees

Watch all of The Monkeesโ€™ official videos here https://Rhino.lnk.to/TheMonkeesVideos
Lis...

โ–ถ Play video
#
celery + peanut_butter > peanut_butter
cold trellis
#

i watched 18 seasons of pokemon in japanese with subs i don't remember the english names anymore for alot of them

dusty apex
dusty apex
#

in hindi/telugu/tamil....

unborn prairie
#

Sachertorte (UK: , US: , German: [หˆzaxษหŒtษ”สtษ™] (listen)) is a chocolate cake, or torte of Austrian origin, invented by Franz Sacher, supposedly in 1832 for Prince Metternich in Vienna. It is one of the most famous Viennese culinary specialties.

dusty apex
#

cake contains alot of food coloring

cold trellis
#

o-o

dusty apex
#

its big screen

cold trellis
#

also i like subs rather than dubs on my anime

fossil citrus
cold trellis
#

even if its pokemon

dusty apex
#

IPL, test matches are good on tv

cold trellis
#

i guess for sports people do

fossil citrus
dusty apex
cold trellis
#

i am one of the rare indians who hates cricket (cuz i've had way too many injuries playing it) and doesn't like watching others play rather than playing myself

hasty scaffold
#

Hello everyone, guys, please tell me normal colleges for programmers, otherwise I'm already 15 and I think just go to college after the 9th grade.

dusty apex
cold trellis
#

i am bad at chess but i do play it alot

dusty apex
#

i am not very good at cricket though

cold trellis
#

and soccer

fossil citrus
dusty apex
mild flume
#

I'm back, sorry

#

Had to open the door for the shred guy

hasty scaffold
#

No, I have a reason, I just live in Russia myself, and when I enter Google American colleges, they give me instutes

cold trellis
hasty scaffold
#

We have a bad education, that's why I want to leave the 9th grade and enter the American College

elder wraith
#

What is your citizenship?

hasty scaffold
elder wraith
#

Because answer changes depending on your citizenship

#

I don't feel like this is prying question

cold trellis
#

i don't get japan's obsession with monsters

pocket monsters, digtital monsters, monster musume, etc

unborn prairie
#

but as a rule of thumb you can say that without a high school diploma or smt equivalent like the german abi, ib, etc. you cant get into university

mild flume
#

You're free to not answer, Pop, but it gives us context and helps us figure out what we can tell you

hasty scaffold
#

But I have Russian citizenship

elder wraith
#

Ok, American Colleges won't take you unless you have Russian HS equivalent in most cases

#

Also, foreign Exchange Student is hard path, many do it every year

#

but there is a ton who don't

#

so you will need to show great grades from Russian High School to have a chance

hasty scaffold
#

It's clear

mild flume
#

!mute 710585621499871232 Investigating

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied mute to @solemn iris until <t:1631218716:f> (59 minutes and 59 seconds).

unborn prairie
#

ok

#

why

#

just why

mild flume
#

!pban 710585621499871232 Your only messages in the server are inappropriate. That shows you do not wish to properly participate in the server.

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied purge ban to @solemn iris permanently.

mild flume
dusty apex
#

alien wandering along with no cloths @cold trellis do you remember the movie pk?

cold trellis
unborn prairie
mild flume
dusty apex
#

i think peanuts would have been better

mild flume
#

Unless you're allergic

dusty apex
unborn prairie
#

"thats probably not the answer we're looking for" cracks me up every time

mild flume
#

He's just keeping it real

dusty apex
#

well i am gonna go guys goodnight!

elder wraith
#

While it's unclear exactly what ended the buyout talks between Discord and Microsoft, there at least a couple of contributing factors. First, the WSJ's sources claim, Discord is happy with how things are going now. It's "performing well" (though it still is not profitable) and would prefer to stay independent, at least for the time being.

mild flume
elder wraith
#

It's not a matter of "I have data", it's can you use that data to be better then what Google/Facebook offers

random minnow
#

were the discord microsoft talks before ms teams?

elder wraith
#

Biggest thing you need: SSO, EDiscovery of ALL Messages and DMs, control of the users

random minnow
#

i much prefer slack over ms teams

elder wraith
raven orbit
#

baby don't hurt me

elder wraith
#

Google called Alec and said "Challenge accepted"

#

Teams as pure chat app is not all that great

raven orbit
#

teams is a pain and I hate it with a passion

true valley
#

Why?

cold trellis
#

windows 11 taskbar shows it in the center to remind you of your misery

raven orbit
#

for starters, the way image posting automatically becomes image sharing

elder wraith
#

โ€œAn attacker could craft a malicious ActiveX control to be used by a Microsoft Office document that hosts the browser rendering engine. The attacker would then have to convince the user to open the malicious documentโ€ - Microsoft ActiveX, really?

raven orbit
#

and hence, if you wanna post an image again with the same name you overwrite the original shared image

#

@true valley

#

also, formatting (codeblocks, quoting) often doesn't work properly

#

also the application sometimes crashes

#

also you can't change your audio/video setup mid-call

#

you need to disconnect, change setup, reconnect

#

there's some more stuff, but those are the main points

raven orbit
true valley
#

In teams, these are alll the things that drive you nuts?

elder wraith
#

Teams UI is awful

#

hopefully WebView2 will fix it

raven orbit
# true valley ?

it says
you have already shared this image do you wanna overwrite it

elder wraith
#

Teams is switching to WebView2 and React, I feel like their UI has frozen because of that

#

With this change, we are taking a major step in #MicrosoftTeams Teams architecture. We are moving away from Electron to Edge Webview2. Teams will continue to remain a hybrid app but now it will be powered by #MicrosoftEdge. Also Angular is gone. We are now 100% on reactjs

Retweets

273

Likes

983

raven orbit
elder wraith
#

I got massive list with Google Meets

#

Let's shove everything in a browser then wonder why it's god awful experience

#

for example, Meets, YOU HAVE MUTED YOUR MICROPHONE IN OS, YOU CANNOT UNMUTE!

raven orbit
elder wraith
#

Electron is both a browser and not a browser

#

same thing with WebView2

raven orbit
#

it's pretty much a website

elder wraith
#

sure but Electron/WebView2 allows native code

#

sure there is webassembly but that's nightmare

#

that's why I said it's Browser but not

raven orbit
elder wraith
#

because it's compiled app so you can't check the code

raven orbit
#

well hurrah

#

do they block PDFs?

elder wraith
#

no

raven orbit
#

interesting

elder wraith
#

WASM is so new that few people use it, few people use it so security tools are not there, few people can use it so why write security tools

raven orbit
#

what do they do about malicious embedded js in pdfs?

elder wraith
#

I mean, will Adobe run malicious embedded JS? I don't think Edge will

raven orbit
#

think so
not sure

elder wraith
#

PDFs are security nightmare but it's impossible to not allow

raven orbit
#

true

turbid roost
#

hi

#

guys

elder wraith
#

WASM are security nightmare and no one uses it so it's easy to just block

mild flume
#

True dat

raven orbit
turbid roost
#

is there a book with only exercises in python?

#

(or a site)

elder wraith
#

!resources

coarse hearthBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

raven orbit
#

make them all static

cold trellis
#

i'm just gonna go sleep now

#

goodnight ๐Ÿ™‚

elder wraith
#

I'm not a security person but we were playing with WASM at work and found that out

raven orbit
mild flume
elder wraith
#

and when we talked to security, they were like "Do you have to use WASM? No? Just use Javascript"

elder wraith
#

I think Google kind of screwed themselve with v8 JS engine when it comes to WASM

#

it's so good that WASM is such edge case need

raven orbit
#

o

mild flume
raven orbit
# mild flume

what's this about?
servers appear not to be included

#

can't be home desktops with android included

mild flume
#

According to it it's Desktops/Consoles/Tablets

#

I'm assuming that's also including laptop

raven orbit
#

I seriously doubt winxp is currently not being used

elder wraith
#

most people just use browser only

mild flume
#

It's likely in "Other"

raven orbit
#

personally ik at least 6 people who use it

#

No, it's separately listed

#

chops off in '16

#

anyway, I'm going for a swim and then to bed

#

cya

unborn prairie
elder wraith
#

define old laptop?

mild flume
true valley
mild flume
#

The fact that it has Python built in

#

Holy shit that's cool

shell echo
#

WAit a minute, these have python on them?

#

why have I not heard about this

mild flume
#

That's absolutely amazing

stone flume
#

yes

mild flume
#

TI-BASIC 83,TI-BASIC Z80 or simply TI-BASIC, is the built-in programming language for the Texas Instruments programmable calculators in the TI-83 series. Calculators that implement TI-BASIC have a built in editor for writing programs. While the considerably faster Z80 assembly language:120 is supported for the calculators, TI-BASIC's in-calculat...

stone flume
#

my first one :

true valley
#

This was the calculator I had

narrow terrace
#

hi hem๐Ÿ”’

true valley
#

only 18$ on amazon

unborn prairie
#

wtf typescript

stone flume
#

the addiator (got one of these)

#

i also got that one. very cool to have a qwerty to type the formulas

mild flume
stone flume
# mild flume

the calculator is probably quite bigger and heavyer

#

my one compared with my hand

#

and there is an optical illusion because my hand is closer to the camera

#

you can compare with my keyboard's keycaps

#

ok i'm gonna leave ^^

#

bye

mild flume
#

!stream 277886690197110784

coarse hearthBOT
#

โœ… @worthy stump can now stream until <t:1631222222:f>.

unique raptor
#

I hate gnome

waxen moon
dusty apex
spice flame
#

hello!

#

@spare trellis mic not workin

jaunty steeple
#

i can hear people in chat 1 but not chat 0

#

i m not mr haha

misty sinew
#

thats cuz no one is in voice-0 xD

spice flame
#

ima also chat here

misty sinew
#

no

#

no

spice flame
#

oh

jaunty steeple
misty sinew
#

linux is

misty sinew
spare trellis
#

@spice flame NixOS is the most amazing distribution of Linux ever invented

spice flame
misty sinew
#

._.

#

wait

#

is it possible to install linux on windows?

spice flame
misty sinew
#

or like instead of windows

#

what do u guys talk about in python vc?

spice flame
misty sinew
#

street-cred

#

ye

#

u sell drugs?

#

oh

#

lol

spice flame
spare trellis
#

my street cred is on stack overflow

jaunty steeple
misty sinew
#

ยฏ_(ใƒ„)_/ยฏ

jaunty steeple
#

what is street cred

spice flame
#

see im dumb and i dunno what is street cred

jaunty steeple
misty sinew
#

10 yrs wow

spice flame
jaunty steeple
misty sinew
#

yes

spice flame
misty sinew
#

who wants to call it?

#

ye

#

uh

jaunty steeple
misty sinew
#

like in this server?

spice flame
misty sinew
#

ohh

#

oh

jaunty steeple
misty sinew
#

lmao

#

no street cred cuz no streets in canada

spice flame
jaunty steeple
#

i dont listen to them nor do i know them

spice flame
#

Who is jayzee

misty sinew
#

ur a rapper?

spice flame
#

who is drake

misty sinew
#

I don't listen to rap either

jaunty steeple
misty sinew
#

I only know drake

#

cuz meme

jaunty steeple
spice flame
misty sinew
#

loll

spice flame
misty sinew
#

oh yess

spice flame
#

yes wot is python

#

jk

#

aaaaaaaaaaaa

misty sinew
#

hoi
I am using bs4
and wanna get the text from between these tags

<a class="job-title-link break visited" href="/job/Ubuntu-Server-Manager-Urgently-Needed-for-Help-Existing-Unsupported-Server_~0175cfde7c0a18b401/" itemprop="url">
<up-c-line-clamp lines="2">Ubuntu Server Manager Urgently Needed for Help on Existing Unsupported Server</up-c-line-clamp>

this part specifically as a string "Ubuntu Server Manager Urgently Needed for Help on Existing Unsupported Server"

Any help is greatly appreciated, thanks!

#

ye

jaunty steeple
#

plz exaplian aaron

misty sinew
#

what?

#

aaron?

#

hmm

jaunty steeple
#

Aaron right

spice flame
#

aaron is a namee

misty sinew
#

wait

jaunty steeple
misty sinew
#
<a class="job-title-link break visited" href="/job/Python-instructor-needed-for-beginners_~01244bf350d87c244d/" itemprop="url">
<up-c-line-clamp lines="2"><span class="highlight">Python</span> instructor needed: for beginners </up-c-line-clamp>
</a>
#

try this one

#

ask upwork devs ._.

spice flame
#

wait aaron is this dudes name

misty sinew
#

why?