#voice-chat-text-0

1 messages · Page 26 of 1

short oasis
#

ok

#

could you help me with something small real quick, i need to find values in a dictionary and gain a # of variable dependent on whats in it

#

okay

warped raft
#

hello @outer orbit

stray niche
#

@tacit rampart I think your internet is spotty

#

And FabSam here : )

#

I live on Earth

#

and I breathe

#

😄

#

People around, it's noisy at the moment

#

oh yes, I try to never use my phone

#

ahhh

#

Everyone is on mute now

#

oops

#

@tacit rampart Where have you gone

frosty star
#

gotta let the cat out

#

brb

stray niche
sweet lodge
neon orbit
#

@torn grove I guess Imma go to AFK for a while so that people won't leave the VC thinking it's dead

torn grove
#

gl tho c:

neon orbit
#

Yo Opal!

dense parrot
#

Ola

somber heath
#

@blissful escarp 👋

blissful escarp
#

hello

#

@somber heath How u doin ?

warped raft
#

hello @somber heath

blissful escarp
#

@whole bear Idk just bored

warped raft
#

how are you doing opal

blissful escarp
#

@somber heath ohh ok

rugged root
#

Just quickly saying hello. I'm not in call. Just letting you folks know I'm alive. Been sick, and found out yesterday that my Lucky buddy has intestinal cancer, and that the vet said that we may be in his last month of life. So not really in a good talky headspace

sweet lodge
#

Hello! Good to hear from you!
So sorry to hear that
Get well soon and our thoughts and prayers will be for you and Lucky firBless
Let us know if there's anything we can do

warped raft
whole bear
somber heath
#

"Tim Chook" 😄

#

Moral/amoral/immoral

#

@onyx granite 👋

#

@random elm 👋

random elm
somber heath
#

@austere summit 👋

austere summit
#

I just joined the server a few secs ago

somber heath
#

Excellent choice.

austere summit
#

ty

somber heath
#

@onyx geode 👋

onyx geode
#

Does anyone think that firing Parag Agarwal was the right decision that Elon made?

austere summit
#

what is Parag Agarwal ?

onyx geode
onyx geode
#

The ex-CEO of Twitter

#

Elon fired him right after acquiring Twitter today!

austere summit
#

How he do that ? is Elon Co Owner or something on twitter?

onyx geode
austere summit
#

what's that 3 ten-minute blocks means ?

somber heath
austere summit
#

ok

somber heath
#

It's more about making sure you've had a reasonable base level of community engagement beforehand.

austere summit
#

ok

somber heath
#

So just interact normally and it'll be done in no time.

austere summit
#

I see

somber heath
#

Make war, not love? Righto...😕

austere summit
#

🥹 i hate the word "love" thats why i changed it a little bit

somber heath
#

@nocturne fox 👋

rugged root
frosty star
#

😌

#

woa woa woa

pale sigil
woeful salmon
#

looks slower than 3 times for me

#

assuming this really old looking benchmark website is accurate

subtle stone
#

Sorry I forgot I was unmuted

#

N started classes my apologies

stray niche
#

Ohh I havent been using discord calls of late

#

must try just for this

#

Has Mr. Hemlock been missing

frosty star
#

U ok dude

quasi condor
#

!resources

wise cargoBOT
#
Resources

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

south wing
#

yo

#

i dont have perms to talk ;(

#

@subtle stone i gotta leave ;(

#

gl for the class!

subtle stone
#

Bye mate

vagrant sentinel
#

Hello

#

How are you?

#

Lmao

#

This is cool

#

Yes

#

No

#

How to make ticket 🎫?

#

I know

#

Hello hello

somber heath
#

!code

wise cargoBOT
#

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.

vast light
#
def quetelet(height, weight):
    thin = str(weight // ( height ** 2 ))
    normal =str(weight // ( height ** 2 ))
    overweight = str(weight // ( height ** 2 ))
    obese = str(weight // ( height ** 2 ))
    if thin < 20:
        return (thin)
    if normal >= 20 and normal <= 25:
        return (normal)
    if overweight > 25 and overweight <= 30:
        return (overweight)
    if obese >= 30:
        return (obese)
#

TypeError: '<' not supported between instances of 'str' and 'int'

#

TypeError: normalize() argument 2 must be str, not float

#

100.0%. [

somber heath
#
a <= b <= c
#roughly equivalent to
a <= b and b <= c```
vast light
#

if >= 20 normal < 25

somber heath
#

20 <= normal <= 25

#
normal in range(20, 26)```
#

Where normal is of type int

vast light
#

thin, normal, overweight, obese =

somber heath
#

!e py for i in range(10): print(i, i % 3)

wise cargoBOT
#

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

001 | 0 0
002 | 1 1
003 | 2 2
004 | 3 0
005 | 4 1
006 | 5 2
007 | 6 0
008 | 7 1
009 | 8 2
010 | 9 0
somber heath
#

!e py result = [] for i in range(48): result.append(i % 12) print(result)

wise cargoBOT
#

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

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
tulip plover
#

7 & 4

somber heath
#

%

#

!d max

wise cargoBOT
#
max

max(iterable, /, *, key=None)``````py

max(iterable, /, *, default, key=None)``````py

max(arg1, arg2, /, *args, key=None)```
Return the largest item in an iterable or the largest of two or more arguments.

If one positional argument is provided, it should be an [iterable](https://docs.python.org/3/glossary.html#term-iterable). The largest item in the iterable is returned. If two or more positional arguments are provided, the largest of the positional arguments is returned.

There are two optional keyword-only arguments. The *key* argument specifies a one-argument ordering function like that used for [`list.sort()`](https://docs.python.org/3/library/stdtypes.html#list.sort "list.sort"). The *default* argument specifies an object to return if the provided iterable is empty. If the iterable is empty and *default* is not provided, a [`ValueError`](https://docs.python.org/3/library/exceptions.html#ValueError "ValueError") is raised.
somber heath
#

!e py print(max([10, 5, 12]))

wise cargoBOT
#

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

12
somber heath
#

!e py print(max(5, 10))

wise cargoBOT
#

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

10
somber heath
#

Back soon.

vast light
#
def fine(authorized_speed, actual_speed):
    speed = authorized_speed % actual_speed

    if speed = authorized_speed:
        return None
    if speed > authorized_speed:
#

15 % 10 = 5 ?

somber heath
vast light
#



from os import access


def fine(authorized_speed, actual_speed):
    diff = actual_speed - authorized_speed
    if actual_speed == authorized_speed or actual_speed < authorized_speed:
        return 0
    if actual_speed > authorized_speed:
        for i in range(0,3):
            return 12.5
    if actual_speed > authorized_speed:
        for i in range(3,101):
            if i > 10:
                10*i
        return 5*i
somber heath
#

Returning terminates the execution of a function.

#

!e ```py
def func():
for _ in range(9001):
print("Hello, world.")
return

func()```

wise cargoBOT
#

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

Hello, world.
somber heath
#
#An if chain consists of...
if condition: #Exactly *one* if
    ...
elif some_other_condition: #Zero or more elifs
    ...
else: #Zero or one else
    ...
#Only one block will be run, if any. The conditions are assessed in order from top to bottom, executing the block of the first condition satisfied.
#

So if condition was truthy and some_other_condition was also truthy, the condition block would be run only.

#

But if condition was falsy and some_other_condition was truthy, the some_other_condition block would be run.

#

If neither were truthy, the else block would run.

barren carbon
#

how do I call this ```
a = {
'b': {'snow': [1, 2, 3]}
}

#

to get 1

whole bear
#

Hello

#

ı have a question @somber heath ı did the fundational things python like snake game ,tetris ,pacman, pong game, space invaders , youtube bot, what is the next step right now do you have any idea because ı am little bit stuck ı can't find a project idea with python what they are doing the python developer ( meanwhile 2 months ago ı was coming here and asking the same question to you and then you are giving to me a really good speech later ı am doing that things )

somber heath
#

There is no next step so much as it's just steps.

whole bear
#

so what should ı do

somber heath
#

But let me think.

whole bear
#

ı am not reading book about that or take a course ı am just make project

somber heath
#

Let's have a look at what resources and kindling has to say. Because there are suggestions in there.

#

!resources

wise cargoBOT
#
Resources

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

somber heath
#

!kindling

wise cargoBOT
#

Kindling Projects

The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.

somber heath
#

Oh, Kindling is the only thing in there.

#

I thought there were others. Hm. Something to be expanded, I think.

#

How far have you made it through the standard library?

#

You won't have to cover everything, but there are some things in there that you should have a familiarity with.

#

Specific algorithms would be a good topic.

whole bear
#

ı just now the pygame

somber heath
#

pygame isn't standard library

#

standard library is things like random or itertools

#

string

whole bear
#

ı just use the when ı need it

#

can you quick

#

look my project and then

somber heath
#

The pins.

#

So I take a look at your project and...

#

?

whole bear
#

and then you give advice maybe

#

or homework ı am sorry

#

ı am little bit a stuck ı can't figure out what should ı do

graceful vigil
#

hi

wanton trout
#

can you hear me?

graceful vigil
#

no

#

sorry mate

#

is it on my side or your side?

wanton trout
#

I believe it is your side

#

Cuz it is showing me that I am speaking

graceful vigil
#

ok i will try from phone

#

i think it might be the server mate cause it doesnt work on phone either

wanton trout
#

how about a vc in dms?

graceful vigil
#

ok

grizzled smelt
#

#bot-commands

whole bear
#

yes, i can check it out.

wise cargoBOT
#

Hey @wintry socket!

You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.

whole bear
#
x = [1, 2, 3]
x.insert(0, "hi")
print(x)
#
del x[0]
barren carbon
whole bear
#

@barren carbon Congrats on being a Hustler University student. Surely you'll be a top-G soon one day.

barren carbon
#

so defined it

tepid spoke
#

jesus

#

can we not talk about mr andrew

somber heath
#

@patent otter

patent otter
#

yeah

#

why am i not able to unmute myself

somber heath
#

!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.

patent otter
#

i get how to

#

enable voice chat for me

#

we must be active for 3 days and some other critirea with it

somber heath
patent otter
#

what command ?

#

can active my vc now ?

somber heath
#

!voiceverify I think. It says in the room.

#

I don't have access to the room, having the voice role.

patent otter
#

ok,

#

I will be back when my vc get turned on

main elm
#

i cant unmute

somber heath
#

!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.

dense parrot
#

!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.

tulip plover
#

!placeholders

#

!placeholder

finite jolt
#

!voice @whole bear

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
#
#

"The Elements" is a song by musical humorist and lecturer Tom Lehrer, which recites the names of all the chemical elements known at the time of writing, up to number 102, nobelium. It was written in 1959 and can be found on his albums Tom Lehrer in Concert, More of Tom Lehrer and An Evening Wasted with Tom Lehrer. The song is sung to the tune of...

#

Flash cards.

gentle flint
quasi condor
#

that was actually what I was thinking of

#

the name Howard Giles brings back all the memories

somber heath
#

Everything decays.

quasi condor
dusk raven
#

The armadillo girdled lizard (Ouroborus cataphractus), also commonly known as the armadillo lizard, the armadillo spiny-tailed lizard, and the golden-armadillo lizard, is a species of lizard in the family Cordylidae. The species is endemic to desert areas along the western coast of South Africa. In 2011, it was moved to its own genus based on mo...

gentle flint
#

The sand cat (Felis margarita) is a small wild cat that inhabits sandy and stony deserts far from water sources. With its sandy to light grey fur, it is well camouflaged in a desert environment. Its head-and-body length ranges from 39–52 cm (15–20 in) with a 23–31 cm (9.1–12.2 in) long tail. Its 5–7 cm (2.0–2.8 in) short ears are set low on the ...

dusk raven
#

The rusty-spotted cat (Prionailurus rubiginosus) is one of the cat family's smallest members, of which historical records are known only from India and Sri Lanka. In 2012, it was also recorded in the western Terai of Nepal. Since 2016, the global wild population is listed as Near Threatened on the IUCN Red List as it is fragmented and affected b...

rugged root
dusk raven
gentle flint
quasi condor
gentle flint
rugged root
quasi condor
rugged root
gentle flint
somber heath
#

Guinea pig or kitty cat?

gentle flint
#

not sure

rugged root
#

"They'll never know."

quasi condor
rugged root
#

Just want to quickly say that

quasi condor
#

they love cats, I love...

gentle flint
quasi condor
gentle flint
quasi condor
gentle flint
molten pewter
#

Martin Shkreli (; born March 17, 1983) is an American former hedge fund manager and convicted felon. Shkreli is the co-founder of the hedge funds Elea Capital, MSMB Capital Management, and MSMB Healthcare; the co-founder and former chief executive officer (CEO) of the pharmaceutical firms Retrophin and Turing Pharmaceuticals (now Vyera Pharmaceu...

quasi condor
#

Swaffelen (or zwaffelen or dick slap) is a Dutch term meaning to hit one's soft or semi-hard penis—often repeatedly—against an object or another person's body. Swaffelen was named as the word of the year in the Netherlands and Belgium in 2008.
The act of swaffelen often takes place in the form of teasing, crude humour or a degrading context, but...

stray niche
#

Whats the topic on the vc

#

👀

quasi condor
#

Ernesto "Che" Guevara (Spanish: [ˈtʃe ɣeˈβaɾa]; 14 June 1928 – 9 October 1967) was an Argentine Marxist revolutionary, physician, writer, guerrilla leader, diplomat, and military theorist. A major figure of the Cuban Revolution, his stylized visage has become a ubiquitous countercultural symbol of rebellion and global insignia in popular culture...

rugged tundra
quasi condor
rugged tundra
quasi condor
gentle flint
#

George Smith Patton Jr. (November 11, 1885 – December 21, 1945) was a general in the United States Army who commanded the Seventh United States Army in the Mediterranean theater of World War II, and the Third United States Army in France and Germany after the Allied invasion of Normandy in June 1944.
Born in 1885, Patton attended the Virginia Mi...

quasi condor
gentle flint
#

more sashes

quasi condor
pale sigil
gentle flint
amber raptor
#

Only true emperor

rugged root
#

The Banana Repulic

rugged root
vast light
#

could someone jump over in Code/help to help me out ? Thanks

rugged root
zenith radish
#

webms have h264 and opus inside

#

can also be other formats

rugged root
#

Oh nifty

zenith radish
#

Also VP8/VP9

rugged root
#

@vast light Only reason I asked in text is because this convo's going to be a bit

zenith radish
#

AV1 for the future

rugged root
#

Compression formats?

zenith radish
#

Yee

#

Codecs

rugged root
#

Neat

zenith radish
#

@amber raptor @quasi condor you just use this

#

$0.0075/minute

rugged root
#

@quasi condor "Z-ray eyes?" "They're like x-ray but better. It two more than x!"

#

@pastel plover What's the question?

#

Or what's it in regards to?

pastel plover
rugged root
#

You have me curious

pastel plover
#

i was going to ask if any1 has some experience with css

rugged root
#

Right but what's your question about it

pastel plover
#

cuz im facing a slight problem that i need to fix

#

i could show you if im able to stream

rugged root
#

Not overly great for me to do that kind of help at the moment, about to go on a delivery run for work

pastel plover
#

see how my sub nav is slightly to the right and i dont really want that

#

i want to fix it to be almost centered with the menu element

rugged root
#

What framework are you using?

pastel plover
#

IDE u mean ?

#

Vs code

rugged root
#

No no, I mean are you just writing this in pure CSS or are you using something like React, Vue, etc

pastel plover
#

no no pure css

rugged root
#

Neat

#

!paste

wise cargoBOT
#

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.pythondiscord.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.

rugged root
#

Can you toss your css file in that site?

pastel plover
#

i did

#

do i save it ?

#

ok i did save

#

and i saved my html if u might need it

rugged root
#

Yeah, you paste, save, then copy the URL and dump it here

pastel plover
#

oh lmao one sec

#

html

#

and this would be the css

rugged root
#

I'll look in a bit, working on something at the office

#

Looking now

#

Still poking around

#

Thought I had it, apologies

pastel plover
#

no problem<3

#

ty for ur time

rugged root
#

Any time.

quasi condor
#

@dusk raven

dusk raven
#

Thx

quasi condor
#

95 vs 80 vs 67

dusk raven
#

I see

#

interessig

rugged root
#

Oh wow, the pound bounced back up

#

Euro and USD are almost one for one

dense parrot
#

Hello

dusk raven
#

Maybe I had a special position in mind

rugged root
#

Back in a bit

wintry pier
#

@dusk raven in brain

dusk raven
zenith radish
#

@pulsar island

languid locust
#

?verify

#

-veryfiy

#

-verify

#

@wise cargo

#

!voiceveryfiy

wise cargoBOT
#

Voice verification

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

languid locust
#

!voiceverify

gentle flint
mild quartz
molten pewter
dusk raven
rugged root
#

!tvmute 683806442012409901 1w "My bad for earraping xD I've never done it before wanted to try it out". If this happens again you're losing your permissions entirely.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice mute to @shadow sable until <t:1667850604:f> (7 days).

mild quartz
#

In probability theory, the Kelly criterion (or Kelly strategy or Kelly bet), is a formula that determines the optimal theoretical size for a bet. It is valid when the expected returns are known. The Kelly bet size is found by maximizing the expected value of the logarithm of wealth, which is equivalent to maximizing the expected geometric growt...

rugged root
#

!stream 152515077512232960

wise cargoBOT
#

✅ @quasi condor can now stream until <t:1667248933:f>.

vast light
#
def words():
       with open("README.txt","r") as file:
        list = []
        for i in file.readlines():
            coords = i.strip("\n")
            coords = coords.split(",")
            list.append(coords)
        print(list)
words()
dense parrot
#

Ala

#

@ripe nexus u there?

ripe nexus
#

im here

dense parrot
#

How you doin sr

ripe nexus
#

everything great and you

dense parrot
#

Nothing much

#

just trying to fix this server (linux)

ripe nexus
#

and me trying to solve a problem in my pycharm version

#

😭

#

I'm tired, I'm going to rest

dense parrot
#

Ughh

#

alright

#

GN I guess then

ripe nexus
#

thanks! I'm already very tired, I need to sleep urgently, accept the friendship invitation there

dense parrot
#

Hello @whole bear

whole bear
dense parrot
#

Ola

#

Would you like to see my root

#

What are you learning my friend

#

nop

whole bear
dense parrot
#

I can hear you

#

I am waiting for you to type it kekw

whole bear
#

Which Operating Soystem are you using.

dense parrot
whole bear
#

Owned by Microsoft

#

Traitor

dense parrot
#

wut ?

#

No way

#

opensuse

#

I know that

#

but I don't remember the reason

#

No they don't

whole bear
#

Microsoft will buy $100 million worth of Linux support certificates from Novell to redistribute to Microsoft Windows Server customers for Novell for SUSE Linux Enterprise Server (SLES). Novell has promised "tools, support, training and resources" for SUSE Linux Enterprise Server users seeking "optimal interoperability" with Microsoft Windows Ser...

dense parrot
#

Defo

#

Yeah

#

What does that even mean?

#

Wait but that's SUSE

whole bear
dense parrot
#

not openSUSE

#

open == good

#

good + bad == good

whole bear
#

good + bad == neutral

dense parrot
#

Nooo

#

1 + 0 == 1

#

Or if we are in bool algebra

#

true + false == true

whole bear
dense parrot
#

And == True

whole bear
dense parrot
#

!e
print(True + False == True)

wise cargoBOT
#

@dense parrot :white_check_mark: Your 3.11 eval job has completed with return code 0.

True
dense parrot
#

False == neutral

whole bear
#

!e
print(True + False)

wise cargoBOT
#

@whole bear :white_check_mark: Your 3.11 eval job has completed with return code 0.

1
dense parrot
#

!e
print(True + True)

wise cargoBOT
#

@dense parrot :white_check_mark: Your 3.11 eval job has completed with return code 0.

2
dense parrot
#

python stupid

#

dogo

#

True + True == True

whole bear
#

!e

print(True == 1)
wise cargoBOT
#

@whole bear :white_check_mark: Your 3.11 eval job has completed with return code 0.

True
dense parrot
#

Why is python such a dog

#

True + True is not 2

#

wtf

whole bear
#

True, when forced into an int, is the number 1

dense parrot
#

Hmm

wise cargoBOT
#
Missing required argument

code

whole bear
#

bro

dense parrot
#

!e
print(True | True)

wise cargoBOT
#

@dense parrot :x: Your 3.11 eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     print(True || True)
003 |                 ^
004 | SyntaxError: invalid syntax
whole bear
#

!e
bool("hello")

wise cargoBOT
#

@whole bear :warning: Your 3.11 eval job has completed with return code 0.

[No output]
whole bear
#

!e
print(bool("hello"))

wise cargoBOT
#

@whole bear :white_check_mark: Your 3.11 eval job has completed with return code 0.

True
dense parrot
#

Good

#

Hello is good you see

whole bear
#

!e
print(bool(""))

wise cargoBOT
#

@whole bear :warning: Your 3.11 eval job has completed with return code 0.

[No output]
dense parrot
#

!e
print(bool("openSUSE"))

wise cargoBOT
#

@dense parrot :white_check_mark: Your 3.11 eval job has completed with return code 0.

True
dense parrot
whole bear
#

!e
print(bool("Arch"))

wise cargoBOT
#

@whole bear :white_check_mark: Your 3.11 eval job has completed with return code 0.

True
whole bear
toxic bluff
#
import sys
line=sys.stdin
aa=input("Enter the value here: ")
print(line.read())
forest zodiac
#

line.read(2)

#

apple

#

ap

#

help()

river palm
#

so how does this voice chat thing work?

lavish rover
#

I'm here and can hear you

#

Is my voice not coming through?

gentle flint
#

y no speak

#

no it isn't

dusk raven
quasi condor
#

For all of Germany

#

Didn't check how many salaries were submitted though

dusk raven
#

thx

frosty star
#

Gboard チームからの新しいご提案、Gboard 棒バージョンをご紹介します。
Gboard 棒バージョンは、すべてのキーを一列に配置することにより、入力したい文字を探しやすくした画期的なキーボードです。

詳しくは紹介ページとGoogle Japan ブログをご確認ください。

Gboard 棒バージョン: https://g.co/____/
Google Japan ブログ:https://japan.googleblog.com/2022/10/gboard-2022.html

Today, we are proud to announce the new Gboard Bar Version.

Gboard Bar Version: https://g.co/___...

▶ Play video
rugged root
#

That rolling

#

@lavish rover BSS segment?

lavish rover
rugged root
#

No rush, getting coffee

#

Coffee done got gotted

hearty scroll
#

how do you get permission to speak in vc?

#

off nvm just saw

vast light
#
def avg():
    conteur = 0
    while True:
        user_num = input("Entrez de nombres : ")
        if user_num == '':
            break
        try:
            user_num = float(user_num)
        except ValueError:
            print("Tu n'as pas rentré un numero, essayé encore une fois")
            continue
        conteur = (conteur + user_num) // #Something but idk what
    print(conteur)
avg()
zenith radish
#

nǐ hǎo

whole bear
#

Hi everyone

rugged root
#

How goes it

whole bear
#

Can someone help me, i'm a beginner and i dont understand why my code doesnt work?

lavish rover
rugged root
#

So u = 0.9 * u + 1.8 rather than u = 0.9u + 1.8

#

The * needs to be there in order for Python to know what to do

rugged root
#

It's an easy thing to miss when you're starting out and used to just doing math

whole bear
lavish rover
green bone
#

2cm is the best cm

whole bear
#

Im tired it still doesnt work

somber heath
#

Are you calling main?

frosty star
lavish rover
somber heath
#

!e ```py
def func():
return 5

result = func()
print(result)```

wise cargoBOT
#

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

5
whole bear
#

function?

somber heath
#

Your main function, yes.

#

Functions don't run if they aren't called.

whole bear
#

like this

#

?

frosty star
#

shrimps are sea cochroaches

whole bear
#

It steel not working

rugged root
somber heath
#
def func():
    ...

func() #This is a call to func. It becomes what the function returns.```
wise cargoBOT
#

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

[No output]
rugged root
#

@lavish rover Nooooooo

#

I'm sorry

frosty star
#

schroos?

terse needle
#

@rugged root

zenith radish
frosty star
#

looks like a cross between a chick and a rat

gentle flint
#

found the original

rugged root
#

Back in a sec, sorry

#

Working with the printer guy on something

#

Two guesses as to what we're working on

#

First one doesn't count

gentle flint
zenith radish
#

The brown marmorated stink bug (Halyomorpha halys) is an insect in the family Pentatomidae, native to China, Japan, Korea and other Asian regions. In September 1998 it was collected in Allentown, Pennsylvania, where it is believed to have been accidentally introduced. The nymphs and adults of the brown marmorated stink bug feed on over 100 speci...

gentle flint
frosty star
#

black

#

or with matcha

#

u'll get the hang of it it just takes practice

#

Here's a good video on recursion that I like: https://www.youtube.com/watch?v=_JtPhF8MshA

Improve the efficiency of recursive code by re-writing it to be tail recursive. Professor Graham Hutton explains.

EXTRA BITS: https://youtu.be/eoi3s_4mAAc

https://www.facebook.com/computerphile
https://twitter.com/computer_phile

This video was filmed and edited by Sean Riley.

Computer Science at the University of Nottingham: https://b...

▶ Play video
gentle flint
frosty star
#

is this person elon musk

gentle flint
frosty star
#

I'd say just pick one and go for it, become so good that you can't be ignored

#

thats crazy

#

aren't they also enforcing stricter lockdowns these days

vast light
#

Hey

#

someone mind helping me

#
def words():
    my_list = []
    with open("README.txt", "r") as file:
        t = file.readlines()
        for i in t:
            my_list.append(i.strip())
        return my_list
words()

def search():
    w = words()
    print(w)
    mot = str(input("Mot a chercher: "))
    for i in w:
        if i == mot:
            print(i, "est dans README.txt")
        else :
            print("Ce mot n'est pas dans la list")
search()
rugged root
#

Hey hajaa

frosty star
#

whats the error

#

Hi Mr Hemlock how are you these days

rugged root
#

Less sickly, still not 100% but getting there

#

You?

vast light
frosty star
frosty star
frosty star
# rugged root You?

Marking season again. And I picked up Github Actions recently I really like it :3

rugged root
#

Oooo, nice

#

Still need to toy with that

#

All the devops stuff is spooky to me

#

Dude, how do I keep forgetting that doctest is a thing

frosty star
#

Try this

#

for i in w[0].split(' '):

gentle flint
#
def words():
    my_list = []
    with open("README.txt", "r") as file:
        t = file.readlines()
        for i in t:
            my_list.append(i.strip())
        return my_list
words()

def search():
    w = words()
    print(w)
    mot = str(input("Mot a chercher: "))
    if mot in w:
        print(mot, "est dans README.txt")
    else:
        print("Ce mot n'est pas dans la list")
search()
vast light
#

Thank you very much everybody ❤️

rugged root
#
@bacon
def ham():
  ...

# same as

ham = bacon(ham)
#

More or less

frosty star
rugged root
#

True

frosty star
#

Did u guys hear about that stampede in Seoul?

#

150 people died

rugged root
#

Jesus

frosty star
#

because of bad crowd control

rugged root
#

Wait

#

Human stampede?

frosty star
#

Humans

#

crushed

#

Lemme find a link

hearty scroll
#

is anyone here familiar with jupyter notebook configuration and could help me with something?

frosty star
#

It's really sad. Something that could've been prevented.

#

And it could happen to anyone. Some of the victims were just visiting the city.

hearty scroll
#

yes hello

#

i sadly dont have voice haha

frosty star
hearty scroll
#

i think its an issue with python venv tho it might be a quick fix

frosty star
#

oh

hearty scroll
#

Let me type it up:

somber heath
frosty star
#

!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.

hearty scroll
#

1/2:

I'm trying to convert a sage ipynb into latex via nbconvert inside the sage docker container and want to use bibtex for including citations.
I basicially followed the advice in this GitHub repo, which is a little older but still seems relevant.
Except, instead of using regular jupyter notebooks, I am using a modified version of the sage docker container as my base install.

You can find my own repo with the example I'm trying to compile here: https://github.com/jimkoen/sagemath-thesis-template/tree/test-sage-ipynb-to-latex-conversion

Switch to the branch 'test-sage-ipynb-to-latex-conversion' (its default selected).
The notebook I want to convert is called "QuadraticEquations.ipynb"

If you look into the dockerfile, you can see the changes I made to the default sage container. I installed nbconvert to enable direct conversion of notebooks to latex then to pdf, and also texlive and some addons, including latex-bibtex-extra.

When I now want to convert my Sage notebooks via the WebGUI (File > Download as... > PDF via Latex) the conversion works and a PDF is generated, albeit with the citation missing. I'm sure the version of nbconvert I installed through sage -pip3 is used for this, as it didn't work in a previous version of the Dockerfile, without nbconvert. I assume the citations are missing, because nbconvert is not passed the bibtex references I created (which makes sense, given I trigger the conversion via UI).

So, I run the conversion via bash, which makes a little more sense, but this yields a much weirder error, which I don't understand.
When trying to invoke nbconvert like so:

#

sage --jupyter nbconvert --to latex --template testnotebook.tplx QuadraticEquations.ipynb

#

I get the following error log:

#
...
File "/home/sage/sage/local/var/lib/sage/venv-python3.10.5/lib/python3.10/site-packages/jinja2/loaders.py", line 575, in load
    raise TemplateNotFound(name)
jinja2.exceptions.TemplateNotFound: index.tex.j2

Sry the output is huge

#

jinja2.exceptions.TemplateNotFound: index.tex.j2

#

^^the above error message is weird though, because the file is clearly there. this also only occurs when converting with the --template param

#

Yeah nvm this is really jupyter specific and more latex oriented.

#

You must build additional pylons

#

POWER OVERWHELMING

#

READY TO MOOOOVE OUT

frosty star
#

that hihi was cute

hearty scroll
frosty star
#

oh I was taking about opal's little hihi

hearty scroll
#

wait u guys talking about cowsay

#

omg

#

HEY anyone here worked on ansible? since this is a python discord

frosty star
#

I used to now I moved on to Github Actions

hearty scroll
#

imagine using python to write a DSL for devops

#

instead of using python

vast light
#

how could I print("Hello word") in red + bold ?

frosty star
#

I only ever played the sims and roller coaster tycoon. And some pokemon games on the gameboy emulator.

#

oh gtg I can;t keep my eyes open no more

#

bye guyss

sullen pivot
#

nobody cares about offical rules from monopoly xD

#

@serene glade

#

sorry for ping btw

rugged root
#

Like

#

It would stop so many holiday arguments

sullen pivot
#

i mean, yes, but to be honest, most people only care about themself and their own rules. wich is dumb, (kinda like me), but we cant change people. the only people we can change are ourself

rugged root
#

But it does kind of fit in with the capitalism theme

sullen pivot
#

yeah

rugged root
#

!projects

wise cargoBOT
#

Kindling Projects

The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.

rugged root
#

A useless machine or useless box is a device which has a function but its direct purpose is deliberately unknown. The best-known useless machines are those inspired by Marvin Minsky's design, in which the device's sole function is to switch itself off by operating its own "off" switch. Such machines were popularised commercially in the 1960s, so...

serene glade
#

Rose Marie "Rosemary" Kennedy (September 13, 1918 – January 7, 2005) was the eldest daughter born to Joseph P. Kennedy Sr. and Rose Fitzgerald Kennedy. She was a sister of President John F. Kennedy and Senators Robert F. and Ted Kennedy.
In her early young adult years, Rosemary Kennedy experienced seizures and violent mood swings. In response to...

quasi condor
whole bear
#

Gtg, Good luck Charlie!

rugged root
#
onyx glen
uncut meteor
#

ATX

rugged root
#

Regular motherboard and big ass gpu

quasi condor
sweet lodge
#

Why mini DP?

rugged root
#

Because god hates the users of that card

#

I really hope they're able to help

#

Niiiiiiice

sweet lodge
#

Oof

✈️
🐕‍🦺

#

Ooh, ic
Nice

rugged root
#

Ah yeah

#

That's always an interesting task

wind raptor
#

G2G have some dinner. Cheers!

uncut meteor
terse needle
#

@uncut meteor valid ape

(extern printf Str ...)
(printf "%s %s\n" "test" "xyz")
uncut meteor
#

!e

import inspect

def test():
  try:
    return 1
  except:
    return 2
  else:
    return 3
  finally:
    print(inspect.stack())
    return 4

print(test())
wise cargoBOT
#

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

001 | [FrameInfo(frame=<frame at 0x7fcfbb97c880, file '<string>', line 11, code test>, filename='<string>', lineno=11, function='test', code_context=None, index=None, positions=Positions(lineno=11, end_lineno=11, col_offset=10, end_col_offset=25)), FrameInfo(frame=<frame at 0x7fcfbb7185c0, file '<string>', line 14, code <module>>, filename='<string>', lineno=14, function='<module>', code_context=None, index=None, positions=Positions(lineno=14, end_lineno=14, col_offset=6, end_col_offset=12))]
002 | 4
uncut meteor
#

!e

import dis

def test():
  try:
    return 1
  except:
    return 2
  else:
    return 3
  finally:
    return 4

print(dis.dis(test))
wise cargoBOT
#

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

001 |   3           0 RESUME                   0
002 | 
003 |   4           2 NOP
004 | 
005 |   5           4 NOP
006 | 
007 |  11           6 LOAD_CONST               1 (4)
008 |               8 RETURN_VALUE
009 |              10 PUSH_EXC_INFO
010 | 
011 |   6          12 POP_TOP
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/zifevuzixa.txt?noredirect

uncut meteor
#
>>> import torch

>>> torch.cuda.is_available()
True

>>> torch.cuda.device_count()
1

>>> torch.cuda.current_device()
0

>>> torch.cuda.device(0)
<torch.cuda.device at 0x7efce0b03be0>

>>> torch.cuda.get_device_name(0)
'GeForce GTX 950M'
#

nvidia-smi

#

pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117

uncut meteor
#

pip3 uninstall torch

#

!e

print("Hello world")
wise cargoBOT
#

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

Hello world
outer hamlet
vast light
#
def triangle(n):
    my_list = []
    my_list1 = []
    
    for i in range(0,n+1):
        my_list.append(i)
    print(my_list)
triangle(4)
#
!e
def triangle(n):
    my_list = []
    my_list1 = []
    
    for i in range(0,n+1):
        my_list.append(i)
    print(my_list)
triangle(4)
wise cargoBOT
#

@vast light :white_check_mark: Your 3.11 eval job has completed with return code 0.

[0, 1, 2, 3, 4]
outer hamlet
#

brb for 2 minutes getting a drink

vast light
astral plank
#
FROM SALES_REP
WHERE EXISTS (SELECT*
                  FROM CUSTOMER
                        WHERE(CREDIT_LIMIT = '500')AND(CUSTOMER.REP_ID = SALES_REP.REP_ID));
#

Use a subquery to find the sales rep ID, first name, and last name of each sales rep who represents at least one customer with a credit limit of $500. List each sales rep only once in the results.

vast light
#

!e def triangle(n):
my_list = []
for i in range(0,n+1):
for j in range(n):
new_list = []
new_list.append(i)
print(new_list)
triangle(3)

wise cargoBOT
#

@vast light :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | [0]
002 | [1]
003 | [2]
004 | [3]
astral plank
uncut meteor
#
SELECT REP_ID, FIRST_NAME, LAST_NAME
FROM SALES_REP
WHERE EXISTS (SELECT * FROM CUSTOMER WHERE(CREDIT_LIMIT = '500') AND (CUSTOMER.REP_ID = SALES_REP.REP_ID));
#

REGEX

outer hamlet
vast light
#

!e def triangle(n):
my_list = []
for i in range(0,n+1):
for j in range(i,n):
new_list = []
new_list.append(i)
new_list.append(j)
my_list.append(new_list)
print(my_list)
triangle(3)

wise cargoBOT
#

@vast light :white_check_mark: Your 3.10 eval job has completed with return code 0.

001 | [[0, 0], [0, 1], [0, 2]]
002 | [[0, 0], [0, 1], [0, 2], [1, 1], [1, 2]]
003 | [[0, 0], [0, 1], [0, 2], [1, 1], [1, 2], [2, 2]]
004 | [[0, 0], [0, 1], [0, 2], [1, 1], [1, 2], [2, 2]]
uncut meteor
#

!stream @scenic wind

wise cargoBOT
#

✅ @scenic wind can now stream until <t:1667343046:f>.

outer hamlet
#

nvcc fatal : Cannot find compiler 'cl.exe' in PATH

#

CUDA version: 11.7

astral plank
#
FROM CUSTOMER
WHERE EXISTS (SELECT CUST_ID
              FROM INVOICES
              WHERE ITEM_ID IN(SELECT ITEM_ID
                                FROM ITEM
                                  WHERE (CUSTOMER.CUST_ID = INVOICES.CUST_ID)AND(DESCRIPTION = 'Wild Bird Food')));
#

Find the ID, first name, and last name of each customer that currently has an invoice on file for Wild Bird Food (25 lb).

#

ERROR 1054 (42S22) at line 1: Unknown column 'ITEM_ID' in 'IN/ALL/ANY subquery'

#
FROM CUSTOMER
WHERE EXISTS (SELECT ITEM_ID
              FROM INVOICE_LINE
              WHERE ITEM_ID IN(SELECT ITEM_ID
                                FROM ITEM
                                  WHERE (ITEM.ITEM_ID = INVOICE_LINE.ITEM_ID)AND(DESCRIPTION = 'Wild Bird Food (25 lb)')));

uncut meteor
#
SELECT CUST_ID, FIRST_NAME, LAST_NAME
FROM CUSTOMER
WHERE EXISTS (
    SELECT *
    FROM INVOICE_LINE
    JOIN ITEM ON INVOICE_LINE.ITEM_ID = ITEM.ITEM_ID
    WHERE ITEM.DESCRIPTION = 'Wild Bird Food (25 lb)'
);
astral plank
uncut meteor
#

!stream @astral plank

wise cargoBOT
#

✅ @astral plank can now stream until <t:1667346038:f>.

uncut meteor
limpid sparrow
#

Is anyone good with AWS-SAM / Lambda?

#

I literally just want to configure some environment variables, i'm probably being stupid

#

but i've wasted so much time on this now 😠

#

this sucks xD

robust heath
pallid hazel
#

hey opal..

#

it's been awhile, but I think you were using some cad program?

#

anyways, I just ran across a free web based one, seems ok so far.. onshape ... worth checking out.

frosty star
#

My internet connection is unstable atm so I can't really hear what you're saying Hemlock :/

limpid sparrow
#

Similar, yes but this issue is pretty specific to AWS Sam

frosty star
#

Everyone's like beep boop 😔

robust heath
#

@rugged root @frosty star Hey, doesn't let me talk as I joined recently :/

limpid sparrow
frosty star
#

Yeah like the voices are cutting off

#

So apologies if I don't respond 😦

robust heath
#

Yeah a bit from my side too

frosty star
#

brb

wise cargoBOT
#

Voice verification

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

robust heath
#

@somber heath Thanks, I already did this, need more messages or more activity.

rugged root
#

I'll be back on in a bit, currently seeing what our devops folks are doing

#

Trying to learn by watching

whole bear
#

hello yes

#

i just joined

stray marsh
#

ohh

#

we talk in here

#

ok

rugged root
#

Yeah sorry sorry.

#

I disabled the built in text channel voice thing because it's just...

#

Not good

molten pewter
#

Respiratory syncytial virus

stray marsh
#

im having an issue with my program rn. is anyone free to help in voice chat

#

my object just stops executing code after

s = ball("ball"+i,screen,space,objects,1280/2,720/2,1,1,0)
#

ball is another class

rugged root
#

Respiratory syncytial (sin-SISH-uhl) virus,

stray marsh
#
def update(self,screen,space,objects,getevent):
        if getevent != None:
            if getevent.type == pygame.MOUSEBUTTONDOWN:
                
                s = ball("ball"+i,screen,space,objects,1280/2,720/2,1,1,0)
                
                self.balls.append(s)
                objects[1].append(s)
                self.i += 1
                print("ball spawned")
#
class ball():
    def __init__(self,screen,space,objects,x,y,sx,sy,r):
        self.body = pymunk.Body(1,100,body_type = pymunk.Body.DYNAMIC)
        self.body.position = (x,y)
        self.shape = pymunk.Circle(self.body,50)
        space.add(self.body,self.shape)
    def update(self,screen,space,objects,getevent):
        pos_x = int(self.body.position.x)
        pos_y = int(self.body.position.y)
        pygame.draw.circle(screen, (0, 0, 255), (pos_x, pos_y), 50)
swift valley
#

G'evening

rugged root
#

!paste

wise cargoBOT
#

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.pythondiscord.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.

stray marsh
rugged root
#

Looking

stray marsh
#

wiat

#

i pasted the same script twice in haste bun

#

bin*

#

^use this one sorry

rugged root
#

Hmm... nothing's jumping out at me.... #game-development might be able to spot it better than me, sorry

stray marsh
#

thanks

rugged root
#

Sorry I couldn't be more help

swift valley
#

lol

drifting zinc
#

ducky_ghost hello

rugged root
#

Debug Mode
Start a new game on Medium difficulty. Call it .Wampa..Stompa (Case sensitive). Start in a level and as soon as it starts press pause. Now press and hold all at once C up, C right, C down, C left, L, R, Z and Left on the d-pad. While holding these down gently move the control stick left halfway, and hold all this until you hear a sound. Do the same thing with the joystick facing right, then left, right and finally left. Make sure you keep the other buttons held down during this time.
If it worked pink writing will come up, and using L, R and A you can select cheats such as 50 lives, wall ghost, next level, gravity, jump power etc. To make the menu reappear each time you go back to the pause screen C up, C right, C down, C left, L, R, Z and Left on the d-pad.

swift valley
#

On the topic of cheat codes

frosty star
#

I'm contemplating whether I should eat the ramen. It is 10.30 PM.

sour willow
#

chess?

swift valley
#

Always a good time to eat ramen

#

I haven't eaten ramen in a while 😄

winged shard
#

so yall telling me you' never asked an ai for the infinite money code

winged shard
#

try it

sour willow
#

who has the time

winged shard
#

true af i already did it so yall dont have to

#

correct answer

ivory vessel
#

did ya all code in python ?

rugged root
#

Ideally

sour willow
#

AAAAHHHHH

#

its all hemlocks fault

ivory vessel
#

i use arch btw

#

so i dont really like python ig?

frosty star
ivory vessel
#

altho i use qtile: )))

sour willow
#

xmonad > qtile

#

i used to use arch, btw

ivory vessel
ivory vessel
#

:)))

sour willow
#

kde sucks

swift valley
#

I use MacOS

#

Because work laptop

sour willow
#

gnome > literally the universe

sour willow
#

ubuntu 16 :)

ivory vessel
#

i like arch

swift valley
#

Yes

#

But I was issued a MacBook for work

ivory vessel
swift valley
#

Not necessarily

#

Just that my company had some spares from their last project

ivory vessel
#

ubuntu not the guy, but arch is the best

sour willow
#

no

ivory vessel
#

ok i think gentoo more

sour willow
#

i learned one thing from linux

swift valley
#

Ubuntu is too commercial-feeling, Arch breaks too much

sour willow
#

the harder you make it , the bigger the waist

swift valley
#

NixOS + GNU Guix is my jam

ivory vessel
sour willow
#

windows is the best operating system

ivory vessel
sour willow
#

by miles

#

but i prefer fedora, since potato laptop

ivory vessel
#

windows is the best, for gaming

whole bear
#

Mint Xfce...

ivory vessel
whole bear
#

Juoy

rugged root
#

I need to try Mint again

#

Just didn't click with me before

ivory vessel
#

and kde for extra working

whole bear
ivory vessel
sour willow
ivory vessel
#

but it feels like a ubuntu clone

sour willow
#

use something like opensuse

ivory vessel
#

FOSS is the best

sour willow
#

opensuse is prob the best linux distro, but zypper aint the way

swift valley
sour willow
#

imagine opensuse with apt ❤️ ❤️ ❤️

swift valley
#

It's really good

ivory vessel
sour willow
#

you must have a lot of time to use gentoo

frosty star
sour willow
#

popos, i had issues due to drivers

#

arch is nice, but brakes alot

ivory vessel
sour willow
#

i think the longest arch install i had was like 6 months

ivory vessel
#

:))

sour willow
whole bear
#

@swift valley u do compilers and stuff.... Huh

swift valley
#

Yes

whole bear
#

Nice 👍

sour willow
#

show ur emacs setup?

ivory vessel
swift valley
ivory vessel
ivory vessel
#

yummy

#

:)))

#

btw arch is the best

#

:)))

sour willow
frosty star
ivory vessel
#

show yur text editor setup

swift valley
frosty star
#

oh gtg

#

byeeee

ivory vessel
#

i just setup my neovim in windows only. the arch, none, cause that's enough for me.

swift valley
sour willow
ivory vessel
#

i wrote an interpreter :))

#

in python

swift valley
#

I mostly just work on the type checker

#

I haven't really written a language from scratch

#

Well, I did but I scrapped it

sour willow
#

:how hard is a type checker

ivory vessel
#

i think it shouldnt that hard ...

sour willow
#

i do backend

ivory vessel
#

i write apps

#

:)))

swift valley
#

It requires a bit of background knowledge

#

But once you get past a certain point, it becomes relatively easier

sour willow
#

i also tried nextjs but i failed MISERABLY

ivory vessel
#

yea

#

after trying deno and next, i have to say dat

swift valley
#

gtg

ivory vessel
#

properly

sour willow
#

deno sucks

ivory vessel
#

anyway arch is the best

#

hehe

sour willow
#

stop trolling

#

hehe

#

anyone chess?

glossy lion
#

heyoo

#

hi

#

how r u

rugged root
#

Good, you?

glossy lion
#

fine thnks

#

do u know fast typing?

rugged root
#

Eh.... relatively. I think I average around 60 to 70 wpm? But just depends on the day or how coherent I am

glossy lion
#

aa got it

#

agree

#

really depends how much are typing for example

#

when im typing

rugged root
#

And coding typing speed is like... way lower for me

glossy lion
#

coding typing wow

rugged root
#

Yeah, watching some of the folks code here is crazy

glossy lion
#

but normally my record is 85

glossy lion
rugged root
glossy lion
#

i know some

glossy lion
#

im doing in monkeytype too

rugged root
#

Love that site

#

Open source, too

forest zodiac
#

try type racer

#

if you really wanna get your speed up

glossy lion
forest zodiac
#

150 what

rugged root
#

@vivid palm can you link your monkeytype profile? I forgot what your top speeds were

glossy lion
#

still

#

cant talk

rugged root
#

Yeah it's 50 messages over three 10-minute blocks

glossy lion
#

50?

#

wait i will count now

rugged root
#

You can do !user in #bot-commands

glossy lion
#

thanks

#

so

#

which programming

#

language

#

do

#

you

#

know?

rugged root
#

Do not do it that way

#

Get it normally.

glossy lion
#

but i know to talk

rugged root
#

I typically add 2 weeks to the verification time for folks who try to spam the way to it

glossy lion
#

okay

glossy lion
#

for example about the programming language

#

i learned python

#

with the help of a book called "boring stuff " or sth like this

limpid sparrow
#

messages

glossy lion
#

really?

limpid sparrow
#

I forgot to mute this server when joining

glossy lion
#

it was so hard

limpid sparrow
#

I guess you're trying to reach to 50 count too right

rugged root
#

!resources

wise cargoBOT
#
Resources

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

glossy lion
#

yessss

amber raptor
#

or just learn JS

rugged root
#

A Byte of Python

limpid sparrow
#

Is it a legit use case to write a python script to reach the 50 message count

glossy lion
#

what is it

rugged root
#

JS as in JavaScript

glossy lion
#

i want python

amber raptor
glossy lion
#

or c++

amber raptor
#

Do you want a job?

amber raptor
glossy lion
#

or python

#

which books do you know to learn c++?

#

first of all

#

which programming language to learn?

rugged root
#

Depends on what you want to do

glossy lion
#

i want to create robot

#

i have lots of idea

#

but i need programming

limpid sparrow
#

LinkedIn Learning has some great content

amber raptor
glossy lion
limpid sparrow
#

I learn loads on there, compared to youtube content it's broken down

rugged root
limpid sparrow
#

this helps me to learn content much more effectively

#

It's expensive, but nag your boss to buy it for you

rugged root
#

YouTube's big issue is that you have so much content, a majority of it is either out dated or just poorly presented

gentle flint
glossy lion
#

woow

#

btw @rugged root

rugged root
#

Hmm?

glossy lion
#

why ii still cant talk?

rugged root
#

It's not auto granted

glossy lion
#

a

mild quartz
gentle flint
glossy lion
#

matlaaaab'

mild quartz
#

lol i dont use the matlab library

rugged root
#

@whole bear 👋

whole bear
rugged root
#

On a work call, otherwise I would have said hello with my face hole

whole bear
#

You're good :D

rugged root
#

Back on in a bit, getting prepped to do a delivery run

molten pewter
#

Draw lines, and divide a large shape into small shapes.You need to observe what kind of parts the whole is composed of.Various symbols are waiting for you to explore.Feature-There is no tutorial, the level itself is a tutorial.-Conciseness is maintained. -Occasional brain teasers.-A total of 49 different level areas, each level area has a uniqu...

Price

$2.99

▶ Play video
whole bear
#

inside

vivid palm
#

personal bests

#

i broke the 130wpm barrier for 60s recently in october

sullen pivot
#

wait what

#

is abortian actally illigal

#

in what places?

#

@rugged root ?

#

wait what. i missed smth, what is happening with walmart and sexist?

#

@rugged root i am so confused rn

molten pewter
#

the lethal dose of menthol is one gram per kilogram of body weight

#

one cough drop typically contains about three to 10 milligrams

stray niche
#

ah

#

pretty difficult to get to the lethal dose then

molten pewter
#

So probably about a thousand or so cough drops...

#

yes

#

very unlikely

stray niche
#

unless you have it for breakfast lunch and dinner