#voice-chat-text-0

1 messages ยท Page 758 of 1

cloud stratus
#

Possibly-

#

:D

#

Ehhh ik ik, it's essentially something extremely different

violet spoke
#

is VC less cannibalistic today?

#

the other day yall were tlaking about eating humans

#

no python

cloud stratus
#

I'll dwell on it a while longer

violet spoke
#

i have owned a python irl before

hushed elm
#

people talk about various subjects in this VC, not just python

violet spoke
#

his name was mr chiesel

hushed elm
#

the snake's name?

cloud stratus
#

Macro

#

Whatchu been up to?

hushed elm
#

been working, setting up a new digitalocean server

#

i found ghost-cli, a really cool tool written in javascript and i want to adapt it to automatically setup servers, configure them for web servers, and deploy apps on them

#

you?

cloud stratus
#

Calculator :D

#

It acts a lil weird

#

Hm? @sick dew

whole bear
tacit fog
#

ohhk

#

@sick dew hello

#

@sick dew how are you

#

@sick dew btw what r u doin?

cloud stratus
#
def fin(calculation):
    print(calculation)
    operation_counts = calculation.count(
        "**"), calculation.count("*"), calculation.count("/"), calculation.count("+"), calculation.count("-")
    power, product, division, add, subtract = operation_counts
    if power > 0:
        for _ in range(power):
            for index, (prev, current, next_) in enumerate(previous_and_next(calculation)):
                if current == "**":
                    calculation.insert(
                        index-1, op.power(float(prev), float(next_)))
                    calculation.pop(index)
                    calculation.pop(index+1)
                    calculation.pop(index)
    if product > 0:
        for _ in range(product):
            for index, (prev, current, next_) in enumerate(previous_and_next(calculation)):
                if current == "*":
                    calculation.insert(
                        index-1, op.product(float(prev), float(next_)))
                    calculation.pop(index)
                    calculation.pop(index+1)
                    calculation.pop(index)
    print(calculation)
``` Calculation is a list like `["8", "**", "2", "*", "3", "**", "2"]`
tacit fog
#

@sick dew and can you help me in teachin python

#

@sick dew but plzz help. me i don't mind you are a good teacher or not

#

ok

#

i just need to prepare python in 2 months

#

because i am having exam in may

#

do you want to see the course of python what i am having

cloud stratus
#

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

gentle flint
amber raptor
gentle flint
hushed elm
#

flowcharts ๐Ÿ‘Œ

hoary inlet
#

very dumb problem

#

how do I bring back the files toolbar

fiery juniper
#

@candid venture :'(

candid venture
#

:C

fiery juniper
#

ping

acoustic kestrel
#

oof

#

thought that was the actual hemlock guy

#

yeah the actual mr hemlock guy helped me when my ssd died

#

@fiery juniper do you use linux?

#

ever used it?

#

dont worry then

#

yeah windows is pretty good i still use it

#

rip

fiery juniper
verbal oasis
#

@thorn geyser !code

#

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

abstract cosmos
#

Upper left above the tab key typically

#

Unless you use spaces for indents

#

O why am i in voice chat lel cya latet

hoary inlet
#

WTF ?

#

EU

terse needle
#

!e ```py
import this

wise cargoBOT
#

@terse needle :white_check_mark: Your eval job has completed with return code 0.

001 | The Zen of Python, by Tim Peters
002 | 
003 | Beautiful is better than ugly.
004 | Explicit is better than implicit.
005 | Simple is better than complex.
006 | Complex is better than complicated.
007 | Flat is better than nested.
008 | Sparse is better than dense.
009 | Readability counts.
010 | Special cases aren't special enough to break the rules.
011 | Although practicality beats purity.
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/usovamivod.txt

terse needle
#

!e py import __hello__

wise cargoBOT
#

@terse needle :white_check_mark: Your eval job has completed with return code 0.

Hello world!
uncut meteor
#

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

uncut meteor
#
await guild.fetch_members()
#
async for member in guild.fetch_members():
    print(member.name)
#
members = await guild.fetch_members().flatten() # makes a list

#
Requests
#

^ this pacakge

#

@fallen pilot this is the example of a get endpoint. the post is the same except app.post("/")
https://fastapi.tiangolo.com/#example

#

Their docs seem good although its a long read.

#

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

green leaf
#

this is not really great

#

having to verify voice

#

even for existing members

whole bear
#

Hi rabbit

acoustic kestrel
#

interesting

#

oops wrong chat

cerulean void
cobalt fractal
#

homework folder

honest pier
#

๐Ÿค” ๐Ÿค” ๐Ÿค” ๐Ÿค”

whole bear
#

emoji argument must be str, Emoji, or Reaction not type.

shadow trout
#

.

fiery hearth
#

!e


print(s)
wise cargoBOT
#

@fiery hearth :white_check_mark: Your eval job has completed with return code 0.

21
fiery hearth
#

why is this 21??

whole bear
#

!code

#
from flask import flask
#

error

#

hey

#

can someone help me with pygame?

marsh raft
#

Yo

#

I can hear you, but I can't talk cuz I'm not verified

mossy cargo
#

how can i help you

cloud stratus
#

8**2*3**2

#

8**2*2**2

somber heath
#

PEMDAS

cloud stratus
#
def previous_and_next(some_iterable):
    prevs, items, nexts = tee(some_iterable, 3)
    prevs = chain([None], prevs)
    nexts = chain(islice(nexts, 1, None), [None])
    return zip(prevs, items, nexts)


class Operations:
    def power(self, x, y):
        return x ** y

    def product(self, x, y):
        return x * y


op = Operations()


def fin(calculation):
    print(calculation)
    operation_counts = calculation.count("**"), calculation.count(
        "*"), calculation.count("/"), calculation.count("+"), calculation.count("-")
    power, product, division, add, subtract = operation_counts
    if power > 0:
        for _ in range(power):
            for index, (prev, current, next_) in enumerate(previous_and_next(calculation)):
                if current == "**":
                    calculation.insert(
                        index-1, op.power(float(prev), float(next_)))
                    calculation.pop(index)
                    calculation.pop(index+1)
                    calculation.pop(index)
    if product > 0:
        for _ in range(product):
            for index, (prev, current, next_) in enumerate(previous_and_next(calculation)):
                if current == "*":
                    calculation.insert(
                        index-1, op.product(float(prev), float(next_)))
                    del calculation[index: index+3]
    print(calculation)


c = ["8","**","2","*","3","**","2"]
fin(c)
#

8**2*2**2

past elk
#

!e ```py
tmp = '1'*1000
print(tmp)

wise cargoBOT
#

@past elk :white_check_mark: Your eval job has completed with return code 0.

1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
... (truncated - too long)

Full output: https://paste.pythondiscord.com/yejayisodi.txt

mortal burrow
#

!e

while True: 
  print("hello world")
wise cargoBOT
#

@mortal burrow :x: Your eval job timed out or ran out of memory.

001 | hello world
002 | hello world
003 | hello world
004 | hello world
005 | hello world
006 | hello world
007 | hello world
008 | hello world
009 | hello world
010 | hello world
011 | hello world
... (truncated - too many lines)

Full output: too long to upload

past elk
#

!e ```py
while True:
print('a'*1000)

wise cargoBOT
#

@past elk :x: Your eval job timed out or ran out of memory.

001 | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
... (truncated - too long, too many lines)

Full output: too long to upload

somber heath
vivid palm
rugged root
#

It's going to, don't worry

rugged root
#

@vivid palm #sorrynotsorry

honest pier
#

calculus is cringe

rugged root
#

it's a new mic + talking through my mask

honest pier
#

ah

#

it sounds like you're behind a wall

somber heath
#

You're at a clear muffle.

honest pier
#

.wa short 10000th padovan number

#

oh

#

.wa area of the region between x^2 + 2x + 2 and 2x^2 + 3x - 4

viscid lagoonBOT
honest pier
#

aha

somber heath
#

It's a mathy smile.

honest pier
#

.wa trump curve

somber heath
#

Oh no

honest pier
#

oh well, time for calcus

viscid lagoonBOT
wise glade
#

hi Hemlock, Opal, Rabbit, everyone else

rich cloud
#

drop the psn gamertag lemon_sweat

wise glade
#

please register, and post something, so I know you opened it, please ๐Ÿ™

#

your email is secure, I used SSL stuff for email stuff

#

Opal, check it out, I made something

somber heath
#

The link? Pass.

wise glade
#

why pass?

somber heath
#

I'm averse to anything that requires signup.

wise glade
#

common, at least open it

#

yeah, it requires your legit email

#

any legit email address

#

it sends a confirmation email

#

there's a "delete profile" option, which will remove all your data from the database

#
@main.route('/delete-profile', methods=['GET','POST'])
@login_required
def delete_profile():
    if not current_user.confirmed:
        flash("To delete your profile first confirm your account.")
        return redirect(url_for('auth.unconfirmed'))
    form = ConfirmationForm()
    if form.validate_on_submit():
        password = form.password.data
        if current_user.verify_password(password):
            posts = current_user.posts.all()
            for post in posts:
                comments  = post.comments.all()
                for comment in comments:
                    db.session.delete(comment)
                db.session.delete(post)
            db.session.delete(current_user)
            db.session.commit()
            flash("Your account has been deleted.")
            return redirect(url_for('.index'))
        else:
            flash("Incorrect Password")
    return render_template('confirm.html', form=form, message='delete your account')
#

all of it, posts, comments, and user in the end

#

I guess, I can't convince you to sign up no matter what ๐Ÿ˜‚

candid venture
willow light
#

assert not os.env, "error: computer unsuccessfully failed

wise glade
candid venture
rich cloud
#

murica!

somber heath
#

@candid venture Why is using gparted not an option?

wise glade
candid venture
#

the arch live cd has no gui

somber heath
#

Then parted

candid venture
somber heath
#

Do you have the facility to download and burn a livecd that has a gui environment?

candid venture
#

wdym

short gate
#

Hello.

candid venture
wise cargoBOT
#

Hey @short gate!

It looks like you tried to attach file type(s) that we do not allow (.jpglarge). We currently allow the following file types: .3gp, .3g2, .avi, .bmp, .gif, .h264, .jpg, .jpeg, .mov, .mp4, .mpeg, .mpg, .png, .tiff, .wmv, .psd, .ai, .aep, .xcf, .mp3, .wav, .ogg, .webm, .webp, .flac, .afdesign, .m4a, .csv.

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

candid venture
wise glade
#

Hemlock, ever deployed on Heroku?

rugged root
#

I have not

dreamy trail
#

What's poppin?

#

@wise glade An Ubuntu user? :p

#

Hold on lemme boot into Ubuntu

violet oasis
#

why are you in here

dreamy trail
#

Why not?

fierce summit
wise glade
dreamy trail
#

Oh wow

violet oasis
#

did you just join mv?

coarse ridge
#

i a xubuntu

dreamy trail
#

Hold on brb

willow light
#

KASH 161156Z 00000KT 1 3/4SM -SN BR BKN005 OVC014 01/01 A2977 RMK AO2 UPB13E31SNE13B31 CIG 003V008 PRESFR SLP088 P0006 60020 70020 T00060006 10006 21022 56031

#

that's here

violet oasis
#

mv is switching to ubuntu using dual boot rn

#

mofo

wise glade
#

anyone deployed on Heroku?

willow light
#

"temperature": {
"value": 0.59999999999999998,
"unitCode": "unit:degC",
"qualityControl": "qc:V"
},

wise glade
fierce summit
wise glade
#

โ˜๏ธ use google

dreamy trail
#

๐Ÿ˜Ž

violet oasis
#

called it

#

mv

short gate
#

Hey guys.

violet oasis
#

scroll up

dreamy trail
#

Yeah hold on

#

Watch this

#

jp2a + lolcat

#

equals

#

Hold on give me some random image

short gate
dreamy trail
#

Idk I'll use the Discord logo for example

violet oasis
#

lmao nice pic

dreamy trail
#

So watch this

willow light
dreamy trail
#

I convert to ascii from a jpeg source image

#

Then lolcat randomly displays the terminal text in rainbow

short gate
#

Hey guys.

dreamy trail
#

EZ

#

Speaking of disk partitioning

#

I just used Gparted

short gate
#

What are you doing?

dreamy trail
#

I'm not doing anything right now

#

Just messing around

#

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

gentle flint
#

"breaks into the house like the mossad or the cia" what did I just join

short gate
#

Through voice chat.

#

Answer through voice chat.

dreamy trail
#

Give me a simple image I can translate to ascii and then lolcat

short gate
#

How about this?

#

Picture of a squid.

dreamy trail
#

Won't work well

#

Too complex

#

Well

#

Let me try

candid venture
#

i got one

short gate
#

You can wait.

gentle flint
#

@fierce summit thought hungary had a big thing with burning books

dreamy trail
#

Squid doesn't work well

rugged root
#

@short gate I feel like this isn't the first time I've mentioned to you to keep the pictures appropriate

dreamy trail
#

Let me try Arch logo

candid venture
somber heath
#

I saw a video of someone burning a pile of Doritos, which to my D&D-loving heart was blasphemy.

gentle flint
#

that's the germans, not the hungarians @candid venture

dreamy trail
#

Lol

candid venture
short gate
#

@dreamy trail Alright, squid girls later.

dreamy trail
#

Give me a simple image of a squid girl

candid venture
dreamy trail
#

Sure hold on

candid venture
somber heath
#

@candid venture Look up unetbootin

dreamy trail
#

:p

short gate
#

Here. Very simple.

#

Just black and white.

willow light
#

what's with all the inklings?

dreamy trail
#

They're probably horny for inklings

short gate
willow light
#

i mean, inside you are two gamer wolves. one wants good gameplay, and the other is friggin horny

short gate
#

Yes.

willow light
#

According to Trash Taste at least

dreamy trail
#

Let me just try jpeg 2 ascii by itself

#

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

short gate
dreamy trail
#

Yup

#

:kek

short gate
#

[voice chat] Hey.

dreamy trail
#

Glad you caught onto that xD

rich cloud
#

yo

short gate
#

[Voice chat] Yo.

dreamy trail
#

@candid venture are you trying to dual boot?

short gate
#

[Voice chat] It's pronounced oo-BOON-too

willow light
dreamy trail
#

Hold on let me talk in chat

#

voice chat*

short gate
#

[Voice chat] I don't know if my Windows 8 PC has any virus.

gentle flint
short gate
#

[Voice chat] Anyways...

#

[Voice chat] This is the only way I can talk to you guys through voice chat.

gentle flint
#

why are you saying [Voice chat] in front of all your messages?

willow light
#

[Voice chat] because it is fun

gentle flint
#

I am majorly triggered

#

mutes channel

short gate
#

Voice chat Because I can't do direct voice chat.

willow light
#

[Voice Chat] You need to do it like this

sick dew
#

[Voice chat] [Voice chat] Hello

#

[Voice chat] [Voice chat] xD

short gate
#

I have been in this server for a few days.

gentle flint
#

@short gate and what else do you think this channel is meant for that you need to specify that your messages are destined for the voice chat

rich cloud
#

poggersss

short gate
#

I cannot speak.

sick dew
willow light
short gate
#

So there is no way to do direct voice chat at all.

gentle flint
willow light
#

[Voice chat] /tts comes to mind, but I don't think this server has it enabled.

sick dew
short gate
#

Voice chat @rugged root Hello.

willow light
#

[Voice chat][Voice chat][Voice chat][Voice chat][Voice chat]Indeed

gentle flint
#

[Voice chat] [Voice chat] [Voice chat] [Voice chat] [Voice chat] apparently

sick dew
#

[Voice chat] [Voice chat] [Voice chat] [Voice chat] [Voice chat] [Voice chat] 1-up

willow light
#

[Voice chat][Voice chat][Voice chat][Voice chat][Voice chat][Voice chat][Voice chat][Voice chat] /me sips tea "Indeed"

short gate
#

/tts

gentle flint
#

[Voice chat] [Voice chat] [Voice chat] [Voice chat] [Voice chat] [Voice chat] [Voice chat] that's what you thought

short gate
#

Voice chat Hey.

rugged root
#

Stop

#

Just

#

Stop

short gate
#

Why? I can't speak.

gentle flint
#

hemlock is not amused

willow light
#

This is no longer funny, admin has spoken.

short gate
#

Alright, just stop.

gentle flint
#

joy, vanish henceforth!

short gate
#

This has gone too far.

willow light
#

Thus spoke the Admin

short gate
#

Voice chat Hey @rugged root.

#

Voice chatWhat are you doing?

sick dew
#
for message in "voice-chat-0":
  message += "[Voice chat] "

I have revolutionized the vc

dreamy trail
#

echo [Voice chat] | lolcat -a

#

-a to animate the text ๐Ÿ˜Ž

short gate
dreamy trail
#

But anyway

short gate
#

Voice chat Not everyone is Americans.

willow light
#

Katsumi, stop

short gate
#

You really think I am a Japanese?

#

Or an American?

whole bear
#

can i speak.

short gate
whole bear
#

oh my bad...

vivid palm
#

patpat hemlock

gentle flint
short gate
#

Alright, this whole voice chat thing stops right now.

#

Right here, right now.

whole bear
#

Can i speak just one time, i have a question.

gentle flint
#

just ask it in text

short gate
whole bear
#

I CANT

gentle flint
#

ask
in
text

whole bear
#

no.

short gate
#

No, SPEAK in text.

gentle flint
#

then don't

whole bear
#

i wanna say it.

gentle flint
#

up to you if you do or don't wanna ask

whole bear
#

what?

#

what?

gentle flint
#

voice is not gonna happen

#

just ask in text

whole bear
#

im confused???

gentle flint
#

type out your question

whole bear
#

ok fine.

gentle flint
#

thanks

rich cloud
#

this isreali guy is pretty blunt, luv this dude

whole bear
#

๐Ÿคก

rugged root
#

!ban 805240748734939136 Wasting my time as well as asking inappropriate questions

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @native burrow permanently.

wise glade
#

f*** him, if he's ban

sacred bison
#

fuck u

wise glade
#

and its a "he", we all know it

sick dew
rugged root
#

@sacred bison Do I have to ban you as well? I'm really not in the mood for this shit

gentle flint
#

hemlock rn on the warpath

wise glade
#

Hemlock, I thought people in america have something called a "thermostat" which heats up the whole house or something?

rugged root
#

!ban 801480741757386812 You've been here for 6 minutes and all you've said is "stfu kid" and "fuck u". You have no place here.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @sacred bison permanently.

gentle flint
#

if the heater/furnace is broken the thermostat is powerless

wise glade
#

right time to buy a heater, I would say

#

oh, man, kinda feel bad for you now, after hearing your voice

rich cloud
#

oh ohhhh

gentle flint
#

oh no

#

rip mina

rich cloud
#

someones breaking in

vivid palm
#

mom broke a glass lol

#

all good

gentle flint
#

k

rugged root
#

Oh fair enough

candid venture
gentle flint
#

aluh?

#

or

wise glade
gentle flint
#

arch

gentle flint
# wise glade

but it makes your nose cold; besides, when it's that cold, it feels like there's sellotape in your nose
at least for me it does

#

what is the coldest you can remember it being where you are?

wise glade
#

and hot both

gentle flint
#

where's that?

wise glade
#

India

gentle flint
#

how cold does it get?

wise glade
#

it got 4 C, where I live

gentle flint
#

ah

wise glade
#

not these days. its 17 right now

candid venture
vivid palm
#

Rick and Morty Full Episodes: http://asw.im/5YhIE8
Enjoy this extended clip of Justin Roiland struggling to keep it together.

SUBSCRIBE: http://bit.ly/AdultSwimSubscribe

About Rick and Morty:
Rick and Morty is Adult Swim's most scientifically accurate animated comedy. Created by Justin Roiland and Dan Harmon, it catalogues the bizarre misadve...

โ–ถ Play video
gentle flint
#

then it makes sense that you can live with no heaters, tho 4ยฐC is still a pain

amber raptor
#

It still boots

rugged root
gentle flint
#

brb

wise glade
#

bye guys ๐Ÿ‘‹

#

I hope you "heat up" somehow Hemlock

#

praying for it, Indians have like 100 gods, someone would do something, ๐Ÿ™‚

rugged root
#

You think they'd make it look better

wise glade
#

how do you share your discord info with others?

#

just my name?

#

or my name + 4 digit tag thingy?

rugged root
#

I think the latter

mint bolt
#

Hi

rugged root
#

Yo

cyan quartz
mint bolt
#

I have issues with my hp energy star

cyan quartz
#

@torpid cosmos

mint bolt
#

I can't dual boot

honest pier
#

i have returned from calcus

rugged root
#

Did you have fun?

honest pier
#

it is what it is

rugged root
#

Fair

mystic marlin
#

You all know the best config files are ini and csv don't lie

honest pier
#

csv for config ๐Ÿค”

#

config separated values

mystic marlin
honest pier
#

It's called hirony

mystic marlin
#

AAAA

#

sorry I cannot properly type

rugged root
#
var fibonacciNumbers = new List<int> {1, 1};
```This bothers me.  I don't like creating a list using curly braces
#

Why, C#

#

Why

honest pier
#

var fibNums = new LinkedList<Integer>(Arrays.asList(1, 1))

#

java

rugged root
#

Fair point

rugged root
#

Possibly, I never learned the old C's

amber raptor
#

You sure you canโ€™t do []

cyan quartz
#
vector<int> vect{ 10, 20, 30 };```
rugged root
#

Possibry, let me check

honest pier
#

that looks right

#

alternatively

#

Vec::new()

cyan quartz
#

there are like 6 ways to init a vector in cpp because cpp

honest pier
#

or let vec = vec![1, 1]

cyan quartz
#
int arr[] = { 10, 20, 30 };
int n = sizeof(arr) / sizeof(arr[0]);
 
vector<int> vect(arr, arr + n);```
honest pier
#

๐Ÿ˜” c style array definition

cyan quartz
#
vector<int> vect1(10);
int value = 5;
fill(vect1.begin(), vect1.end(), value);```
mystic marlin
#

In C you can easily type out of bounds, you get sigkilled

honest pier
#

yep

#

segfault asap

mystic marlin
#

yes

#

60% of executions of c programs:
S E G F A U L T

honest pier
#
def sort(L):
  return L
versed island
#

so many people write garbage code
what a waste

#

why isnt code like physics ... just a few laws

torpid cosmos
#

people do garbage physics too. Like Newtonian physics.

honest pier
#

i mean...

versed island
#

newtonian physics is perfectly fine for normal day to day stuff ... unless you are going super large or small

honest pier
#

yeah

#

also, he kinda invented calculus

versed island
#

and also leibnitz

torpid cosmos
#

wasnt calculus invented by someone else around the same time?

versed island
#

leibnitz

torpid cosmos
#

yeah right

opaque iron
#

does anyone know why tesseract is not working?

versed island
#

once they offered me the admin ROLE on this server
but then i denied it

honest pier
#

did they?

opaque iron
#
       print(pytesseract.image_to_string(Image.open('sssd.png')))
       quit()```
#

i have this code

#

it doesnt give error

#

its just not printing

versed island
#

@vivid palm may be thats a question you should ask CHINA

honest pier
#

without vaccines you'll die before growing old enough to get a job lmfao

scarlet drift
#

Hey guys, is there a way to format a date/time like "1 hour ago" in python without using time delta?

rugged root
#

Without using time delta?

versed island
#

im my country gov has gone bonkers ... nobody has any accountability as far as COVID is concerend

rugged root
#

I mean... possibly, but is there a reason why you wouldn't want to use it?

scarlet drift
#

So instead of having multiple checks I wanted something cleaner

rugged root
#

I mean you can specify only the minutes or what have you

#

There's ways to normalize it

versed island
#

nobody talks about the side effects of vaccines ... i mean viruses are used to alter DNA

rugged root
#

They do

honest pier
#

๐Ÿค”

rugged root
#

However the risks are considered significantly smaller than the benefits

honest pier
#

dna? what's that

scarlet drift
rugged root
#

pendulum

versed island
rugged root
#

If you ever have to deal with dates or time

honest pier
#

๐Ÿค”

rugged root
#

Pendulum is friggin' amazing

scarlet drift
#

I'll check that out

#

Otherwise I'll just go with checks and use timedelta

honest pier
#

why not use timedelta though

scarlet drift
somber heath
#

Attenuated (live) & inactivated (pulverised dead)

rugged root
#

Hold on, Calm. Let me double check something

scarlet drift
versed island
honest pier
#

pfft, google doesn't give you accurate information

#

Read the question again, fucktard, it is ill-formed. If you cannot see that it
is ill-formed then you can't properly comprehend the fucking English language.

  • Mr Flibble
#

*not related to anything someone said, just something funny i saw

versed island
honest pier
#

they're both shit

#

formall called: ModeRNA Therapeutics

torpid cosmos
versed island
#

be scared when programmers are talking about medicines

honest pier
#

๐Ÿค”

torpid cosmos
scarlet drift
#

Oh shit I think I found it

#

@rugged root dateparser

somber heath
#

We're already something like 10% viral DNA.

rugged root
#

More than that

#

Like

#

A lot more

honest pier
#

ah yes

#

99% banana

rugged root
#

I am

#

Oh no no

#

You're right Opal

rugged root
#

I'm misremembering

versed island
rugged root
remote lion
#

hehe

honest pier
#

pfft, printing things in 2021

scarlet drift
#

I've hit the jackpot

#

lmao

#

Again thanks for your input as well mr hemlock

rugged root
#

Happy to help! What'd you end up doing?

scarlet drift
#

Found a package called dateparser

#

it does the exact same thing that I want

#

it's built by guys at scrapinghub

versed island
#

are discord mods essential ๐Ÿ‘€

#

why do we have mods during covid

rugged root
#

@versed island Dude, DISCORD isn't essential

#

Let alone mods

honest pier
#

imagine what would happen if all the mods disappeared ๐Ÿ˜”

versed island
#

discord is very essential for me

honest pier
#

python general would become even worse ๐Ÿ˜”

#

also yeah, some people use discord to communicate

#

so it is essential

#

like zoom

#

heat transfer coefficient heat shmansfer coefficient

paper forge
#

xD

#

I wouldn't mind either

somber heath
#

When you said "Unlimited power", I was thinking Palpatine, not Genie. That'd be a mismatched crossover.

#

The idea of Robin Williams being Darth anything just doesn't really sit. Though he did a good job of 2-hr Photo

paper forge
#

If you do a "_" method in a class, and create a child class, you can't call this method

#

Happen to me some days ago while i was trying to create a ML class

#

yeah

#

Ho. I'll test it right now then

somber heath
#

If you make something foolproof, somebody is going to make a better fool.

paper forge
#

Ho yeah you're actually right (i had no doubt but to see it IRL is something else haha)

somber heath
#

It's never been something I've done outside of learning about it and confirming how it works.

#

You can prepend things with a single underscore as a way of saying to users "Don't futz with this, directly."

#

Without double underscoring it and 'forcing' the point.

paper forge
#

Hmm ok.
I was searching online for a way to create a private class that is not accessible to the user BUT can still be used in child classes. Is this doable ?

somber heath
#

Even when you double underscore something, you can still access the method in question. Put the class into dir.

#

You'll see how the mangling works.

#

As to inheritance...probably.

#

I'd be surprised if it blocked you on that.

#

Give it a go.

vivid palm
#

hi griff~

paper forge
#

I would have some more question but won't spam it here. I'll try to find the answers on my own. Thank you for the answer as it helped me know that my parent private class is detected by my children class!

#

For rich

#

Good images to see what it does

honest pier
#

apparently, out.write(integer) writes a char with ascii value integer

#

๐Ÿ˜”

#

out.write("" + integer)

paper forge
#

I'll leave you here. See you guys !

versed island
#

griff ... mr hemlock ... laundmo ... an opalmist are the reason why im still on this server ๐Ÿฅฒ

uncut meteor
#

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

left sierra
#
Command raised an exception: TypeError: '>' not supported between instances of 'Context' and 'int'
versed island
#

ive never eaten a pancake ... i like spicy things

rugged root
#

You could in theory make spicy pancakes

#

They're just bread more or less

left sierra
#
from discord.ext import commands

class CommandEvents(commands.Cog):
    def __init__(self, bot):
        self.bot = bot
    @commands.command(
        description="Deletes the given amount of messages")
    @commands.has_permissions(manage_channels=True)
    async def clear(ctx, amount=5):
        if amount > 200:
            await ctx.send(
                '**Big limit**')
        else:
            await ctx.channel.purge(limit=amount + 1)
            await asyncio.sleep(2)
            await msg.delete()
    #--------------------------------------------------------------------------------------------------------

def setup(bot):
    bot.add_cog(CommandEvents(bot))
#
clear was invoked incorrectly
Command raised an exception: NameError: name 'asyncio' is not defined
clear was invoked incorrectly
Command raised an exception: NameError: name 'asyncio' is not defined
uncut meteor
left sierra
#
Command raised an exception: AttributeError: 'Context' object has no attribute 'msg'
left sierra
#
Traceback (most recent call last):
  File "d:\Discord Bot Project\Bot 1\BotDiscord.py\bot2.py", line 106, in <module>
    bot.load_extension('cogs.Unmute')
uncut meteor
vivid palm
left sierra
rugged root
#

Damn iiiiiiiiiittttt

#

Now I have to look for Quicken

mild citrus
#

your files

left sierra
#
Traceback (most recent call last):
  File "C:\Users\Shahe\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\client.py", line 343, in _run_event
    await coro(*args, **kwargs)
TypeError: on_ready() takes 0 positional arguments but 1 was given
mild citrus
#

are in the wrong directory

left sierra
#
from discord.ext import commands
import asyncio

class CommandEvents(commands.Cog):
    def __init__(self, bot):
        self.bot = bot
    @commands.Cog.listener()
    async def on_ready():
        print('Bot is Online')

def setup(bot):
    bot.add_cog(CommandEvents(bot))
uncut meteor
#

and

#

self

mild citrus
#

cogs.misc

uncut meteor
#

to on_ready

mild citrus
#

it's not probably defined in the path

uncut meteor
#
async def on_ready(self):
left sierra
vivid palm
#

rabbit fax

uncut meteor
#

Rabbit is the fax bandito

#

๐Ÿฐ

#

๐Ÿ‘•Gunright

#

๐Ÿฆต

rugged root
uncut meteor
#

dude

#

why would you put that

left sierra
#

bro its a troll bot

uncut meteor
#

smh

left sierra
#

hey hey hey

#

im gonna change all statements after i make it

uncut meteor
#

but that message is still on this server

left sierra
#

because i also wanna get it verified

uncut meteor
#

and with your discord name, it's probs best to stop with that talk

vivid palm
#

agree

uncut meteor
#

it's cringe bruv, __init__

left sierra
rugged root
vivid palm
#

rise of the guardians

tall latch
uncut meteor
#

"Rods are for night" - Hemlock 2021

whole bear
#

same error

plain ferry
#

@rugged root ineed help

whole bear
#

@plain ferry

#

what?

olive hedge
rugged root
#

@plain ferry Hmmmmmm?

whole bear
plain ferry
#

@rugged root how i can speack in your voice ?

rugged root
#

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

whole bear
#

#voice-verification

olive hedge
# whole bear

you need to somehow pull your change sinto your local branch. You may need to specify the origin branch.

You may wish to rebase instead.

This is happening because you made changes to your local, but your local is not up to date with your remote.

plain ferry
#
Write a program that allows you to enter a matrix
M by N positive integers (with 2โ‰ค N โ‰ค10 and N is
odd) then displays the sum of its two diagonals.

The program will display: The sum of the two diagonals is = 153
With 153 = 12 + 3 + 50 + 6 + 14 + 4 + 8 + 50 + 5 + 12
#
def saisir():
  n = int(input("write entier n : "))
  while not   2< n < 10
    n = int(input("write entier n : "))
return n
  code...
def remplire():
  code ...
#
def Rem_Matrix(n):
Matrix = [0]*n
 for i in range(n):
      Matrix[i] = [0]*n
return Matrix

uncut meteor
#
def my_function(matrix):
  # Calculate the diagonal sums here
  ...

my_matrix = [
  [12,52,9,47,4],
  [0,3,210,8,7],
  [39,88,50,92,11],
  [4,5,22,6,29],
  [12,71,10,32,14]
]

assert my_function(my_matrix) == 153
plain ferry
#
def affichage(n,Matrix):
for i in range(n):
  print("\n")
  for j in range(n):
      print(Matrix[i][j],end="| ")
print(Matrix)

@uncut meteor

vivid palm
#

development team just messaged/called me asking ?s because the owner had a meeting with them saying to tokenize our CC payment system

#

apparently wants them to maybe even write a whole new accounting system from scratch

#

why

rugged root
#

No

#

Nooooo no no no no

#

No

#

Why do they want that

vivid palm
#

yes i agree "no"

#

i suspect

#

bc we are going thru a (voluntary) audit

#

they just want to pass

#

and then maybe sell the company eventually?

#

i really don't know

rugged root
#

Refresh my memory, Fred

plain ferry
#

@uncut meteor

#Fonction Saisir N
def saisir():
    n = int(input("Donner Longure de Matrice : "))
    while not (2<n<10):
        n = int(input("Donner Longure de Matrice Again : "))
    return n
#Fonction get MatriceN
def remplir(n):
  m=[0]*n
  for i in range(n):
      m[i] = [0]*n
  for i in range(n):
      for j in range(n):
            m[i][j] = int(input(f"Donner votre entier de some M[{i}][{j}] : "))
  for i in range(n):
    print()
    for j in range(n):
      print(m[i][j],end="|")
        
    
  return m
def some(m,n):
    s=0
    for i in range(n):
        s = s+m[i][i]
    for i in range(n):
        s = s+m[i][n-i-1]
            
    print("Some Matric: ",s)

#Programme principale
n=saisir()
#m=n*([0]*n)
m=remplir(n)
print("\n")
some(m,n)


rugged root
#

Hmm

uncut meteor
#

!e

wise cargoBOT
#
Command Help

!eval [code]
Can also use: e

*Run Python code and get the results.

This command supports multiple lines of code, including code wrapped inside a formatted code
block. Code can be re-evaluated by editing the original message within 10 seconds and
clicking the reaction that subsequently appears.

We've done our best to make this sandboxed, but do let us know if you manage to find an
issue with it!*

rugged root
#

Are you able to make Clojure code that is accessible by Java or Kotlin?

#

Like cleanly I mean

#

Neat

vivid palm
#

MISTUH GRIFF!

flat sentinel
rugged root
#

Huh

#

That doesn't seem too bad then

#

It's not awesome, but

#

Although in Java it wouldn't be terrible

olive hedge
#

@plain ferry change your inputs to hard coded variables.

input("enter n")
# should be
my_n = 5
#

@plain ferry

my_matrix = [
  [12, 52, 9, 47, 4],
  [0, 3, 210, 8, 7],
  [39, 88, 50, 92, 11],
  [4, 5, 22, 6, 29],
  [12, 71, 10, 32, 14]
]


# Fonction Saisir N
def saisir(n):
    # BAD! n = int(input("Donner Longure de Matrice : "))
    while not (2 < n < 10):
        #BAD! n = int(input("Donner Longure de Matrice Again : "))
    return n


# Fonction get MatriceN
def remplir(n):
    m = [0] * n
    for i in range(n):
        m[i] = [0] * n
    for i in range(n):
        for j in range(n):
           # BAD! m[i][j] = int(input(f"Donner votre entier de some M[{i}][{j}] : "))
           my_matrix[i][j]
    for i in range(n):
        print()
        for j in range(n):
            print(m[i][j], end="|")

    return m


def some(m, n):
    s = 0
    for i in range(n):
        s = s + m[i][i]
    for i in range(n):
        s = s + m[i][n - i - 1]

    print("Some Matric: ", s)


# Programme principale
n = saisir(5)
# m=n*([0]*n)
m = remplir(n)
print("\n")
some(m, n)
shut goblet
#

how long of a number do I need so it never repeats itself?

uncut meteor
#

one digit?

#

1

shut goblet
#

no.

#

like example 1-10

#

i have 1/10 chance of repeating it

uncut meteor
#

oh

shut goblet
#

if i randomly pick on between that range

uncut meteor
#

just use uuid

shut goblet
#

what is a big enough number

#

okok

#

uuid is best?

faint ermine
#

you mean in a randint? yeah, no guarantee its not gonna repeat.

uncut meteor
#

!e

import uuid

print(uuid.uuid4())
amber raptor
#

UUID is gold standard to get ID that won't repeat

shut goblet
#

i know no "Guarentee" but very unlikely

wise cargoBOT
#

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

f2c72f2f-e4ba-444e-b712-2e222d9f7c36
shut goblet
#

ok so i just generate a uuid?

#

anything better than that?

amber raptor
#

UUID Seed include time in their seed

shut goblet
#

by better i mean less long

uncut meteor
#

What is this for?

amber raptor
#

!e python import uuid for x in range(0,15): print(uuid.uuid4())

wise cargoBOT
#

@amber raptor :white_check_mark: Your eval job has completed with return code 0.

001 | 869e2457-c88a-49c3-a072-10f5e1650b85
002 | 5d100f11-82ff-4b5b-8bd3-7409434551d1
003 | 893dd6de-2e5e-43c1-a2e8-4626f3d56ff0
004 | fa00f117-8d78-4009-884d-763584cadb06
005 | edd7e1dd-9958-4513-b0a1-bb95718f6bb0
006 | aca12798-ff2a-400f-bfd1-79c2e8da3f92
007 | 52d572c1-619a-4adc-bb0b-81e94be93d07
008 | 75c4aacf-b9a1-41e7-bf55-a6cfe28a4125
009 | f41711af-bef0-407f-8aca-b3e6e68e6793
010 | 646053d0-53db-4271-abf1-fba1223ef452
011 | 3f1a115a-fb82-4a17-b680-223b7ad3065c
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/osebekiluq.txt

shut goblet
#

So basically its a code. Every session I have i want a code for that specific session

#

so if I have 100 session i want 100 different codes

uncut meteor
#

uuid is probs best

shut goblet
#

i want it to be unpredictable too

#

so not just 1, 2, 3...

uncut meteor
#

uuid is 100% the way to go

shut goblet
#

gotchu. where can I go to generate it?

#

any website?

faint ermine
#

minhas, theres literally a example above

#

its a python import

shut goblet
#

ok

flat sentinel
shut goblet
#

are uuid just a random bunch of numbers and letters or do they mean anything?

vestal pulsar
#

i fucking hate js

flat sentinel
#

pip flip over is still pip

uncut meteor
#

just get pre-configured envs

vestal pulsar
#
import React from 'react';
import { Text, View } from 'react-native';

const YourApp = () => {
  return (
    <View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
      <Text>
        Try editing me! ๐ŸŽ‰
      </Text>
    </View>
  );
}

export default YourApp;
#

Fuck javascript for real

#

fuck

olive hedge
#

chill out, plz

vestal pulsar
green bone
#

typescript is fine

terse needle
#

for (int i; i < x; i++){} for (int i = 0; i < x; i++){}

flat sentinel
#

daspecito
#2187

faint ermine
#

!verify@acoustic zodiac

#

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

regal badge
#

for(int i = 0; i <= 20; i++)
{
int[] numbers = new int[1, 2, 3, 4, 8];
int MyIndex = Random.Range(0, 4);
randomKodiya = numbers[MyIndex];
}

#

halp

terse needle
#

whats your error?

faint ermine
regal badge
#

cannot implicitly convert int[,,,,*] to int[]

#

@terse needle

#

csharp

#

actually

#

im sorry im desperate for help

smoky dust
#

try int*

#

instead of int[]

#

does the error still show up?

regal badge
#

not working

#

yes

smoky dust
#

same error?

regal badge
#

yes

dusk burrow
#

Guys if i have this list [2,4,5,6,7] and want to remove 4 and 5 and 6 how to do iit?

uncut meteor
#

change to @regal badge

int[] numbers = {1, 2, 3, 4, 8};
terse needle
regal badge
#

thanks @terse needle

smoky dust
#

griff was probably right

#

i never wrote in csharp

regal badge
#

mhm

#

@uncut meteor are saying assign Random.range a class

smoky dust
#

void myFunc(int myArg){}
void myFunc(char myArg){}

uncut meteor
#
for (int i = 0; i <= 20; i++) {
  var rand = new Random();
  int[] numbers = {1, 2, 3, 4, 8};
  var index = rand.Next() % numbers.Length;
  var randomNumber = numbers[index];
}
regal badge
#

love you @uncut meteor

cloud crown
#

i need help please

dusk burrow
regal badge
#

wow that knowledge

#

pow pow

cloud crown
#

i installed python 3.9, and no matter what i do, pip doesn't work

uncut meteor
#

just wanted to explain

#

rather than just give

cloud crown
#

and yes, i tried running it in administrator mode

dusk burrow
terse needle
#

x : int = 5

regal badge
#

it says Random is ambiguous to Unity.collection & system.collection @uncut meteor

#

๐Ÿ˜ญ

#

a dice roller

uncut meteor
#

Unit.collection.Random

regal badge
#

Severity Code Description Project File Line Suppression State
Error CS0104 'Random' is an ambiguous reference between 'UnityEngine.Random' and 'System.Random' Assembly-CSharp C:\Users\Shivam\Changay Ashtay\Assets\kodiyaroller.cs 44 Active

#

yes

regal badge
#

ok

uncut meteor
#
            for(int i = 0; i <= 20; i++)
            {
                int[] numbers = {1, 2, 3, 4, 8};
                var index = Random.Range(0, numbers.Length);
                var randomNumber = numbers[index];
            }
regal badge
#

@uncut meteor love you dude

#

๐Ÿ˜˜

uncut meteor
faint ermine
#
    false       =>  ![]
    true        =>  !![]
    undefined   =>  [][[]]
    NaN         =>  +[![]]
    0           =>  +[]
    1           =>  +!+[]
    2           =>  !+[]+!+[]
    10          =>  [+!+[]]+[+[]]
    Array       =>  []
    Number      =>  +[]
    String      =>  []+[]
    Boolean     =>  ![]
    Function    =>  []["filter"]
    eval        =>  []["filter"]["constructor"]( CODE )()
    window      =>  []["filter"]["constructor"]("return this")()
dreamy flax
#

hi

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @dreamy flax until 2021-02-16 22:25 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

faint ermine
open heart
#

Also ngl the raid was ass nobody knew what to do and they all just copied my old username it was dry as lmao

left sierra
faint ermine
#

!d discord.ext.commands.Bot.command

wise cargoBOT
#
command(*args, **kwargs)```
A shortcut decorator that invokes [`command()`](#discord.ext.commands.command "discord.ext.commands.command") and adds it to the internal command list via [`add_command()`](#discord.ext.commands.GroupMixin.add_command "discord.ext.commands.GroupMixin.add_command").

Returns A decorator that converts the provided method into a Command, adds it to the bot, then returns it.

Return type Callable[โ€ฆ, [`Command`](#discord.ext.commands.Command "discord.ext.commands.Command")]
terse needle
#

!d discord.ext.commands.Command

uncut meteor
#

aliases=('m',)

wise cargoBOT
#
class discord.ext.commands.Command(func, **kwargs)```
A class that implements the protocol for a bot text command.

These are not created manually, instead they are created via the decorator or functional interface.

`name` The name of the command.

Type [`str`](https://docs.python.org/3/library/stdtypes.html#str "(in Python v3.9)")

`callback` The coroutine that is executed when the command is called.

Type [coroutine](https://docs.python.org/3/library/asyncio-task.html#coroutine "(in Python v3.9)")

`help` The long help text for the command.

Type [`str`](https://docs.python.org/3/library/stdtypes.html#str "(in Python v3.9)")

`brief` The short help text for the command.

Type Optional[[`str`](https://docs.python.org/3/library/stdtypes.html#str "(in Python v3.9)")]

`usage` A replacement for arguments in the default help text.

Type [`str`](https://docs.python.org/3/library/stdtypes.html#str "(in Python v3.9)")

`aliases` The list of aliases the command can be invoked under.... [read more](https://discordpy.readthedocs.io/en/stable/ext/commands/api.html#discord.ext.commands.Command)
uncut meteor
#

[]

terse needle
#

['m']

winged fjord
#

@willow light why cant i hear you guys?

somber heath
#

Things to try: Check Discord's audio settings, volume, output device, etc. Operating system's audio settings, etc.

#

Restarting Discord.

#

Restarting your computer.

winged fjord
#

Oh thanks for some reason my os settings were off

#

vulkan

#

What do you guys think of rust?

somber heath
#

It's a pretty colour.

#

Or collection thereof.

willow light
#
function mandelbrot(a)
    z = 0
    for i=1:50
        z = z^2 + a
    end
    return z
end

for y=1.0:-0.05:-1.0
    for x=-2.0:0.0315:0.5
        abs(mandelbrot(complex(x, y))) < 2 ? print("*") : print(" ")
    end
    println()
end
#

example julia code

#

so yeah, it has very familiar syntax

clear shadow
#

aliases=('m',)

#

!d discord.ext.commands.Command

wise cargoBOT
#
class discord.ext.commands.Command(func, **kwargs)```
A class that implements the protocol for a bot text command.

These are not created manually, instead they are created via the decorator or functional interface.

`name` The name of the command.

Type [`str`](https://docs.python.org/3/library/stdtypes.html#str "(in Python v3.9)")

`callback` The coroutine that is executed when the command is called.

Type [coroutine](https://docs.python.org/3/library/asyncio-task.html#coroutine "(in Python v3.9)")

`help` The long help text for the command.

Type [`str`](https://docs.python.org/3/library/stdtypes.html#str "(in Python v3.9)")

`brief` The short help text for the command.

Type Optional[[`str`](https://docs.python.org/3/library/stdtypes.html#str "(in Python v3.9)")]

`usage` A replacement for arguments in the default help text.

Type [`str`](https://docs.python.org/3/library/stdtypes.html#str "(in Python v3.9)")

`aliases` The list of aliases the command can be invoked under.... [read more](https://discordpy.readthedocs.io/en/stable/ext/commands/api.html#discord.ext.commands.Command)
clear shadow
#

aliases=('m',)

somber heath
#

@lime yarrow Chat in here. ๐Ÿ™‚

lime yarrow
#

haa

#

ok

#

ok

#

it is easier if you type and I put on google translator rsrsrs

viscid perch
#

โ€ข You have sent less than 50 messages.```
somber heath
lime yarrow
#

but no need, I'm already leaving

#

rsrs

#

laughs

viscid perch
#

i think i have more then 50 messages but it still shows me this, does text messages in in voice-chat-* Chanel dont count ?

lime yarrow
#

in Brazil we use 'kkkk' to laugh

#

but 'kkk' means something else there

viscid perch
#

lets

#

make

#

it

#

50

#

messages

#

in

severe pulsar
#

uh

viscid perch
#

total

severe pulsar
#

please dont

#

PLEASE

#

also you need 3 days

lime yarrow
#

bye guys

severe pulsar
#

in the server

lime yarrow
#

ow

severe pulsar
#

so you'll probably get it

lime yarrow
#

tchau tchau

severe pulsar
#

tchau

#

ciao

viscid perch
#

more then 2 weeks

pure anchor
#

I tried staying silent. xD
To lurk. but idiocy really cracks me up.

severe pulsar
#

@ SOFT jojo!

small sedge
#

big fan

severe pulsar
#

yeet

#

gappy is like

#

too good

#

but i didnt like how araki fully destroyed the og jojo world

#

and just moved on in sbr

#

like nothing happened

small sedge
#

i think he will explain in the next part if there is

severe pulsar
#

hmm yeah maybe

#

but joseph joestar best jojo

#

(in my opinion)

small sedge
#

will he was my favorite untill gappy

severe pulsar
#

aah nice

versed basin
zealous wave
#

!voice @west mason

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
#

@west mason You'll have to chat via text for a while before you can be voice verified/unmuted.

#

Then there's also the three days you have to have had on the server.

west mason
#

what are you guys talking about now ?

teal veldt
#

Hello folks ๐Ÿ‘‹

west mason
#

I'm starving so guys I'm leaving now. see you later! :3

teal veldt
#

Bye @west mason

zealous wave
#

sorry, I forgot I have a test in 5 min, so i need to study rq

lunar pendant
#

@nocturne thunder my mic is not working

#

and i never talk generally

#

I just here to listen @somber heath

#

I am a fan of him

nocturne thunder
#

y tho ?

lunar pendant
#

ask him

#

you got it

nocturne thunder
#

From today me too

dense ibex
#

!source

wise cargoBOT
lunar pendant
#

opalmist is always a motivation to me

nocturne thunder
#

nixw

#

nice*

#

!source

wise cargoBOT
nocturne thunder
#

!invite

somber heath
#

BASIC

lunar pendant
#

I think no one never learn a language fully

#

There is always something to be know

faint olive
#

Truly inspiring!!! @faint ermine

lunar pendant
#

can we sign a petition for opalmist fan club

#

+1 for approval

nocturne thunder
#

+1

lunar pendant
#

Here we go

#

come to opalmist fan club

faint olive
#

I am new to this server
How can I get to know all of you ?

somber heath
#

Hanging out here is a good start.

faint olive
lunar pendant
#

nicname

somber heath
#

?

faint olive
lunar pendant
somber heath
#

Who says?

faint olive
lunar pendant
#

oh one person vote more than onces?

faint olive
lunar pendant
#

no it's not like that

#

I'm from india

faint olive
lunar pendant
#

world largest democracy

#

ok, I got it

rain comet
#

guys know anything about Mono?

lunar pendant
#

I think we can replace fan with enthusiast

somber heath
#

@rain comet I've had more success with Wine.

faint olive
#

o/

hushed elm
#

Luv u opal

severe pulsar
#

bro OPAL IS TOO GOOD

hushed elm
#

hey back off, i'm the biggest opal fan

lunar pendant
#

no doubt

hushed elm
#

you too

flat sentinel
#

!source

wise cargoBOT
hushed elm
#

there can be only one opal fan

#

and that's me

lunar pendant
#

I started opalmist fan club

hushed elm
#

๐Ÿ”ซ

#

no you didn't, i did

#

y u lying

lunar pendant
#

i did

#

ask opal

hushed elm
#

'murica

somber heath
#

FUCK YEAH!

wise glade
#

sup people

flat sentinel
hushed elm
flat sentinel
wise glade
#

hey laundmo

hushed elm
#

this kid is really funny

#

haha

lunar pendant
#

haha

hushed elm
#

@flat sentinel hey you're funny

wise glade
#

remember we talked about Flask like 15-16 days ago, you talked about a lot of webstuff, and told me about fastAPI, that day? @faint ermine

faint ermine
#

aye?

paper forge
#

X)

#

I came here for python. I ended up having political courses

#

xD

wise glade
lunar pendant
faint ermine
#

.topic

viscid lagoonBOT
#
**What would you do if you know you could succeed at anything you chose to do?**

Suggest more topics here!

flat sentinel
#

.topic

viscid lagoonBOT
#
**What was the last movie you saw in a cinema?**

Suggest more topics here!

wise glade
#

oh, this parent-teacher conference bull***

lunar pendant
#

.topic

viscid lagoonBOT
#
**What is your favourite color?**

Suggest more topics here!

amber raptor
wise glade
flat sentinel
#

.topic

viscid lagoonBOT
#
**Tell us 5 things you do well.**

Suggest more topics here!

lunar pendant
#

@wise glade hello prateek

paper forge
#

I realized that weeks ago haha. I'm just doing russian roulette, trying to connect at the right time

wise glade
# viscid lagoon

Make Tea
Workout
Clean
Program (its says "well")
fly_kite? (there was a festival yesterday)

somber heath
#

@faint ermine Quite easily.

wise glade
flat sentinel
#

.topic

viscid lagoonBOT
#
**What is the title of the last book you read?**

Suggest more topics here!

flat sentinel
#

.topic

viscid lagoonBOT
#
**What is your favourite Easter candy or treat?**

Suggest more topics here!

flat sentinel
#

.topic

viscid lagoonBOT
#
**If you could be anyone else for one day, who would it be?**

Suggest more topics here!

wise glade
#

OpenCV is c++ stuff right?