#voice-chat-text-0

1 messages · Page 762 of 1

tall latch
#

Hey any good twitter user here

#

im stuck at twitter

#

edge is keep trying to login its not stopping

#

its wrong password or something

uncut meteor
#
import fastapi
import uvicorn
import threading

from api import images, words
from views import main

api = fastapi.FastAPI()

def configure():
    api.include_router(main.router)
    api.include_router(images.router)
    api.include_router(words.router)


configure()
if __name__ == "__main__":
    uvicorn.run(api, host="0.0.0.0", port=80)
#

@router.get("/", include_in_schema=False)
async def index(request: Request):
    return templates.TemplateResponse("index.html", {
        "request": request,
        "word": await word_of_the_day(),
        "image": await image_of_the_day(),
    })


@router.get("/countdown", include_in_schema=False)
async def countdown(request: Request):
    return templates.TemplateResponse("countdown.html", {
        "request": request,
        "image": await image_of_the_day(),
    })
tall latch
#

can anyone help me out i got a twitter issue i dont know where to ask for help

swift valley
#

As someone who sucks at web design, my experience was more from observing and doing

uncut meteor
swift valley
#

People like familiarity, it's not evil to take inspiration from things, just don't overdo it

tall latch
#

edge is trying to login as me but its the wrong password or something but edge is not stopping its repeats to login again and again

#

and i closed and opened edge still its not stopping

hoary inlet
molten tinsel
#

So each of the containers are a self-contained docker?

uncut meteor
#

yes its literally just a clean data for it

#

removes all the other bs

tall latch
dense ibex
#
Cloning into 'verificationbot.'...
Warning: Permanently added the RSA host key for IP address '140.82.114.4' to the list of known hosts.
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
swift valley
tall latch
#

@hoary inlet bootstrap i guess

#

or maybe w3.css

hoary inlet
tall latch
#

as w3.css looks easier

hoary inlet
#

what is the error like incorrect password or ?

tall latch
tall latch
#

its too quick

hoary inlet
swift valley
#

This is more of personal preference but bare CSS is hell, something like tailwind makes designing things feel more human than hardcoding stylesheets themselves

tall latch
#

well that would be my most precise ss timing then

hoary inlet
#

like are there modules or ??

stuck furnace
#

No purring in voice chat 😄

hoary inlet
tall latch
tall latch
swift valley
#

Tools shouldn't matter for now, but you'll come across them once you start to use npm

#

Well, for projects at least

tall latch
#

if you dont know what npm is its pip of js world

hoary inlet
# tall latch yeah

try clearing data of edge, other than that it's really hard to figure out

swift valley
tall latch
hoary inlet
tall latch
swift valley
#

HTML, I can excuse

#

It's markup

#

It has syntax

hoary inlet
#

especially since I have been moving around in so many languages lately

uncut meteor
stuck furnace
#

Yeah I wasted too much time on that stuff @whole bear

#

But that's mostly because I'm useless at configuring software lemon_pensive

hoary inlet
#

well it's been fun listening to you guys ✌️ ✌️

stuck furnace
uncut meteor
#
cogs/ -
     |-> verification.py

main.py
.gitignore
whole bear
#

salut Griff

uncut meteor
#

Bonjour

stuck furnace
#

Internet archive 😄

uncut meteor
#

wayback machine inc

uncut meteor
#

my fizzbuzz

amber raptor
#

Both, .cs is source, .dll is compiled

rugged root
#

IT meeting, back in a bit

dense ibex
#

have fun

rugged root
#

Probably will, honestly

dense ibex
#

@uncut meteor

tall latch
#

Im making a twitter bot suggest a name pls hihi

#

what the seriously there is a name generator

#

imagine using that for finding a name for a baby

#

yeah

#

i could name my child google though

#

chittur bot

#

this is the name i came up with rn

#

oh no

#

i named mine ChwitterBot

paper tendon
#

!e print(ord("a"))

wise cargoBOT
#

@paper tendon :white_check_mark: Your eval job has completed with return code 0.

97
paper tendon
#

!e print(chr(1))

wise cargoBOT
#

@paper tendon :white_check_mark: Your eval job has completed with return code 0.


paper tendon
#

here it is a character 1

#

!e print(ord("A"))

wise cargoBOT
#

@paper tendon :white_check_mark: Your eval job has completed with return code 0.

97
paper tendon
#

lol

sick cloud
#



#

!e print(char(69))

wise cargoBOT
#

@sick cloud :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | NameError: name 'char' is not defined
sick cloud
#

Hmmmmm

#

!e print(chr(69))

wise cargoBOT
#

@sick cloud :white_check_mark: Your eval job has completed with return code 0.

E
hushed elm
whole bear
#

me too

fallen sphinx
#

are the code helpers mostly done for the night?

stuck furnace
#

The sun doesn't set on PyDis.

unborn socket
topaz schooner
#

^_^\

dapper python
#

@somber heath do u know about websocket shit

#

im tryna make an automated trade bot but dont understand the api im using

#

it does yes

#

but i cant find the specifics/put the pieces together

#

i wish i could screenshare u and talk to u what im tryna doi

#

but i dont have voice permissions

#

its web api

#

im trying to get historic data and apply that to create predictions

#

yes

#

basically

#

lotta math bs

#

but outside of the math is a basic websocket connection

#

to feed data into my python script

#

and i cannot figure out how to request specific data into my script

#

are you a cs major @somber heath

#

what made u want to learn coding then

#

im just curious

#

good for u

#

seriously

#

coding is the future

#

a big part

#

a part is an understatement lets be honestr

#

im not trying to be a motivational speaker but

#

i wouldve never learned coding being a finance major if i didnt feel it willl have relevance in the future

#

exponential growthj

#

@somber heath how many msgs do i need to use vc?

#

shit is bunk af

#

yeah dont understand that technical bs

verbal oasis
#
import React from 'react';
import AddedTask from './AddedTask.js';

const getValue = () => {
    let task = document.getElementById('taskinput');
    console.log(task.value);
    <AddedTask tasks={task.value}/>
}

const AddTask = () => {
    return (
        <div className="addtask">
            <input type="text" id="taskinput" placeholder="what would you like to add?"></input>
            <button id="addtask" onClick={getValue}>Add todo</button>
        </div>
    )
}

export default AddTask;
uncut meteor
uncut meteor
uncut meteor
#

htop

#

sudo apt-get install -y docker

#

docker run -d --name=grafana -p 3000:3000 grafana/grafana

#

systemctl status docker

crystal fox
dense ibex
#

lines 1-21/21 (END)

uncut meteor
#

sudo docker run -d --name=grafana -p 3000:3000 grafana/grafana

crystal fox
#

sudo docker ps -a

uncut meteor
#

docker run -d --name graphite --restart=always -p 80:80 -p 2003-2004:2003-2004 -p 2023-2024:2023-2024 -p 8125:8125/udp -p 8126:8126 graphiteapp/graphite-statsd

crystal fox
#

sudo usermod -aG docker $USER

uncut meteor
#

sudo apt-get install -y collectd

crystal fox
lunar pendant
#

hey laundmo

#

hi opalmist

faint ermine
#

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

faint ermine
sick cloud
#

Chill ppl

#

nope

#

nope imao

#

i've used a bit of js before

faint ermine
teal veldt
#

It's fun @uncut meteor

#

most of the time until it breaks

#

🤣

uncut meteor
#

tell @dense ibex that

teal veldt
#

you should try it @dense ibex 😛 try with linux mint

dense ibex
#
version: "3"
services:
 # telegraf:
  #  image: telegraf
   # restart: always
   # environment:
     # HOST_PROC: /rootfs/proc
     # HOST_SYS: /rootfs/sys
     # HOST_ETC: /rootfs/etc
   # command: --config https://influxdb.yadamiel.com/api/v2/telegrafs/06b8fa042f2e7000
   # networks:
     # - internal
   # volumes:
     # - /var/run/docker.sock:/var/run/docker.sock:ro
     # - /sys:/rootfs/sys:ro
     # - /proc:/rootfs/proc:ro
     # - /etc:/rootfs/etc:ro
   # env_file:
     # - telegraf.env
faint ermine
#

docker-compose up -d influxdb

somber heath
#

Derker cernterner!

faint ermine
#
    environment:
      - INFLUXD_CONFIG_PATH=/influxdbconfig/
#

killall -CONT nano

#

ps | grep nano

#

ps ugx | grep nano

stuck furnace
#

Maybe we could ask Stelercus?

dense ibex
stuck furnace
#

Ah, right 😄

vestal mason
#

what are you working on @dense ibex

dense ibex
vestal mason
#

ohhhh docker 😦 I have to get practice with that

#

Whats the name of the app?

stuck furnace
#

Vim! 😄

vestal mason
#

Nooo VIM, use gedit

#

VIM is great but its too much for the average guy

#

nano or gedit

stuck furnace
#

Ok 😑

vestal mason
#

This guy does a whole conference with VIM https://www.youtube.com/watch?v=cKPlPJyQrt4

www.pydata.org

PyData is an educational program of NumFOCUS, a 501(c)3 non-profit organization in the United States. PyData provides a forum for the international community of users and developers of data analysis tools to share ideas and learn from each other. The global PyData network promotes discussion of best practices, new approaches, and...

▶ Play video
#

Freaking crazy how he cuts through this stuff working with python with VIM live

#

fucking crazy

#

Hey so back to my orginal question, why would you use InfluxDB?

tall latch
#

my twitter bot is running now

vestal mason
#

I built a few bots for discord myself

stuck furnace
#

PIL?

vestal mason
#

you can edit photos with PIL?

#

hmmmm, I thought it was only use to display images if needed

#

He might need a vpn right?

uncut meteor
#

nope

stuck furnace
#

Same Laundmo, I'm pretty sure I have a 25 hour body clock 😄

#

You need a daemon, or service.

#

Daemon is a cool word 😄

faint ermine
#

agree

tall latch
#

how make a fake microphone input

tiny socket
#
FROM python:3.8

RUN mkdir /app
RUN pip install -r requirements.txt
COPY . /app

WORKDIR /app

CMD ["python", "main.py"]```
faint ermine
#
FROM python:3.8

WORKDIR /app

COPY requirements.txt /app/requirements.txt

RUN pip install -r requirements.txt

COPY . /app

CMD ["python", "main.py"]
#

Dockerfile

#
version: '3'
services:
  name:
    image: my-project-name
    build: .
    restart: always
    env_file:
      - .env
dense ibex
faint ermine
#
discord.py==1.6
python-dotenv
vestal mason
#

he was giving u an idea

idle ermine
#

d

vestal mason
#

@faint ermine I ran into issues before attempting to push code to a prod server with github, the versions got screwed up. do you think this is best practice?

tall latch
#

one of my OBS studio scenes

vestal mason
#

I have heard from more senior engineers that you should manually pull your main version from GIT and install manually

faint ermine
vestal mason
#

ahhhhhhhhhh, I see that was the part I screwed up on

#

sorry guys, my wife is listening to music so I have my mic off

tall latch
#

its alright

vestal mason
#

But yeah, I have been doing a manual merge with "Meld" for my local environment. Its very basic but it works

tall latch
#

i never hosted anything yet

#

so i have no idea what you talking about

#

and im bad at using github

vestal mason
#

@tall latch I never used it in conjunction with git yet, but just being able to have a copy on the prod server, and using an app like Meld to compare versions and push changes has been working for me...Since I'm running on Linux, I haven't figured out how to deal with permissions yet, but that's the only downfall to it

#

My goal is to be able to manage the code, and make updates with GIT, but when I roll code, just do it old school until I get more experience with how to manage GIT

dense ibex
#
Building name
ERROR: Couldn't connect to Docker daemon at http+docker://localhost - is it running?

If it's at a non-standard location, specify the URL with the DOCKER_HOST environment variable.
royal sphinx
#

Hire someone to setup CI/CD for you and you will no longer need to worry about deployment, only focus on development pydis_strong

vestal mason
#

whats CI/CD

#

my job is still using tortise SVN lol

#

when it works it works I guess

royal sphinx
#

Continuous integration and continuous development/delivery. It's a DevOps practice.

vestal mason
#

@royal sphinx thanks for that, I never knew the short hand for it

#

I find it rough in my practice environment to keep upgrading things after I already have code running that I use everyday. I think this might hurt me in the long run though

dense ibex
#
Step 2/6 : WORKDIR /app
 ---> Running in 9e8e0975dead
Removing intermediate container 9e8e0975dead
 ---> b1703cd42fc5
Step 3/6 : COPY requirements.txt /app/requirements.txt
ERROR: Service 'name' failed to build: COPY failed: file not found in build context or excluded by .dockerignore: stat requirements.txt: file does not exist
vestal mason
#

that will do it

#

sorry guys, my wife is washing clothes lol

#

I can't win today lol

#

I am lol

#

just doing both

dense ibex
#
|ERROR: yaml.scanner.ScannerError: mapping values are not allowed here
  in "./docker-compose.yml", line 4, column 10
royal sphinx
#

You need to map out the ports through cli i guess

faint ermine
#

@royal sphinx what are you talking about, i sent a few working docker-compose further up that map ports

royal sphinx
#

My bad.

dense ibex
#
version: '3'
services:
  name: verificationbot
    image: verificationbot
    build: .
    restart: always
faint ermine
#
version: '3'
services:
  verificationbot:
    image: verificationbot
    build: .
    restart: always
#

@royal sphinx were you responding to voice? because you're in the chat for voice 0, but you are in voice 1

royal sphinx
#

Nop

idle ermine
#

nice

faint ermine
#
alias dc='docker-compose'
alias dcl='dc logs -f --tail="100"'
alias dcb='dc build --parallel'
alias dcu='dc up -d'
alias dcx='dcb && dcu && dcl'
alias dcd='dc down'
alias dcr='dcd && dcu'
#

nano ~/.bash_aliases
source ~/.bash_aliases

#

docker-compose logs -f --tail="100"

dense ibex
#

doc

faint ermine
#
    env_file:
      - .env
stuck furnace
#

Stopped now.

vestal mason
#

I just turned on my p2T feature, this is great 🙂

#

it's the little things

#

why don't you just use the noup command on with a bot.py file

#

your already neck deep into docker though

#

you're*

stuck furnace
#

Laundmo, fasting has also been shown to help reset your body clock.

zealous wave
#

Just OD on melatonin

stuck furnace
#

Oxygen slowly kills you over the course of your life.

dense ibex
zealous wave
#

Aww

dense ibex
stuck furnace
#

American houses are huge 😄

vestal mason
#

What do they do? tech?

stuck furnace
#

By UK standards lemon_pensive

dense ibex
#

version: '3'
services:
verificationbot:
image: verificationbot
build: .
restart: always
end_file:
- .env

zealous wave
stuck furnace
#

Got a loud echo @zealous wave

dense ibex
#

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

dense ibex
stuck furnace
vestal mason
#

nice 🙂

stuck furnace
#

Cya Laundmo 👋

dense ibex
icy axle
nova spoke
stuck furnace
#

Unless they have one weird rule to catch you out.

icy axle
stuck furnace
#

They're wearing medieval armour 😄

#

Yep

#

;-;

vestal mason
#

sorry guys, had to drop off, I have to get to adulting now lol

stuck furnace
#

Alright guys, I'm jumping ship to VC1 😄

#

Cya

digital jackal
#

hey guys, quick question: is this the right syntax to use to check if the word inputed is in this list?```py
russian = ["apple", "juice", "something"]
elif text in russian:
print("This word is available")

honest pier
#

not elif, just if

dense ibex
#
@tasks.loop(seconds=30)
async def activity():
    await bot.change_presence(status=discord.Status.online, activity=discord.Game('WORK IN PROGRESS'))
    await asyncio.sleep(15)
    await bot.change_presence(status=discord.Status.online, activity=discord.Game('twitch.tv/stockimag3'))
main vortex
#

hey @whole bear it's me bond
accept the request

topaz schooner
#

^_^

tall latch
#

do anyone wanna chat in dogehouse

#

??

uncut meteor
#

why?

rough verge
#

x

gentle flint
#

y

winged fjord
gentle flint
#
msgsdict = {input1: response1, input2, response2, etc}

while true:
    wait for input
    if input in msgsdict.keys then print(msgsdict[input]}
#

smth like that @thorny pulsar

winged fjord
#

Robots should only have rights if the robots start affecting our lives in negative ways as a result of them not having rights

potent torrent
#

is atom macos only?

gentle flint
#

cross-platform

#

windows, linux, macos

potent torrent
#

oh right

#

for clion u need a license right?

gentle flint
#

no idea, sorry

winged fjord
#

I want your guys opinion on my pixel art

#

its from pikmin

uneven urchin
#

pynput

winged fjord
#

hes using c++

uneven urchin
#

windows has a hook function then

#

hunter2

winged fjord
#

I wish i had dual booted before i completely wiped windows from my system

#

How do manjaro differ from ubuntu? @graceful grail

whole bear
#

Do messages here count towards the voice gate?

#

I'm not really super active outside of voice

uneven urchin
#

I think they do

#

Most of mine are here I think and I verified ok

whole bear
#

Nice, thank you

uneven urchin
potent torrent
#

yo

#

how u doing

#

im not really up to much atm

#

yeah

whole bear
potent torrent
#

are there any videos to go with it? @whole bear

#

would u say its help u develop ur understanding in python?

#

yeah

#

is it best to use one source to learn or multiple?

#

oh right okay

#

what stage of learning are u on?

#

imma head off

#

see you soon sharpie!

#

yeah thats fine

#

thanks again

fiery hearth
#

!e

russian = ["apple", "juice", "something"]

if text in russian:
  print("This word is available")
wise cargoBOT
#

@fiery hearth :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 3, in <module>
003 | NameError: name 'text' is not defined
fiery hearth
#

!e

russian = ["apple", "juice", "something"]

if juice in russian:
  print("This word is available")
wise cargoBOT
#

@fiery hearth :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 3, in <module>
003 | NameError: name 'juice' is not defined
zealous wave
#

like this

#

!e ```py
russian = ["apple", "juice", "something"]

if "juice" in russian:
print("This word is available")

wise cargoBOT
#

@zealous wave :white_check_mark: Your eval job has completed with return code 0.

This word is available
cedar umbra
#

i need some help

#

yea

#

it's a face tracking program

#

ok

whole bear
#

i need help someome

edgy radish
#

@paper tendon

#

I am not voice verify

edgy radish
clear shadow
#

I think its ok now @somber heath

cedar umbra
whole bear
#

hi

somber heath
#

lo

whole bear
#

lo

flat sentinel
whole bear
#

idk what i'm doing

flat sentinel
#

Р = p

#

Б = b

uncut meteor
#

P = Бx^2

flat sentinel
mild zephyr
#

i can't Unmute !

#

why ?

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.

mild zephyr
#

!voice

#

!voice

#

!voice

lunar pendant
#

hello my master opalmistpydis_strong

mild zephyr
#

which channel should i have to talk ! or send messagge

lunar pendant
#

he is

mild zephyr
#

in which channel ?

#

just tell the name

#

yeah

#

i am listening you !

flat sentinel
#

just tallk

#

in the txt

mild zephyr
#

in this or in which channel ?

flat sentinel
#

yes

#

it is fine

mild zephyr
#

is there is any specified channel !

#

oh i got

#

now

#

i am just new in this server

#

i am the beginner in the python

#

i am a web_dev !

flat sentinel
#

nice

mild zephyr
#

noone texting why ?

lunar pendant
mild zephyr
#

just easy

#

i don't know

#

lol ,,

rugged root
lunar pendant
mild zephyr
#

check my website !

uncut meteor
#

Prepare to be utterly annihilated

#

💥

flat sentinel
#

Prepare to be utterly annihilated
ducky_devil

mild zephyr
#

just visit the website and can you tell the icon are working or not ?

#

i dont know but the fontawesome icon are not working properly

terse needle
mild zephyr
#

what is this going on?

#

did anybody checked

#

my portfolio

#

website

lunar pendant
#

Mr Hemlock : - I go to bed at 9 or 10.
Opalmist at midnight - that's good

mild zephyr
#

are the fontawesome icon working ??

#

i dont know why noone texting !

#

how much chat i have got

#

its so shit that i am alone texting in the server

#

what the heck is going on !

#

Yep

#

actually !

uncut meteor
flat sentinel
#

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

vivid compass
#

heyy

mild zephyr
#

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

flat sentinel
#

#voice-verification

mild zephyr
#

yep

flat sentinel
#

this one

mild zephyr
#

but its saying i should talk 50

#

times

#

alone

vivid compass
#

indeed

mild zephyr
#

just like the passenger movie i am alone in the space and talking alonne

#

what we do in here ?

vivid compass
flat sentinel
mild zephyr
#

oh really ,

#

what is that shit

vivid compass
mild zephyr
#

LOL ,

#

any ethical hackers here ?

vivid compass
#

lmao

mild zephyr
#

LMAO

vivid compass
mild zephyr
#

i dont know how much message i got

#

can you count how much times that i messaged in this server

vivid compass
#

55

mild zephyr
#

Do any one play CSGO here

#

oh

#

okay

fiery juniper
#

57

vivid compass
mild zephyr
#

what should i search ?

fiery juniper
#

:)

vivid compass
rugged root
#

from:neeschal

flat sentinel
#

yes

fiery juniper
vivid compass
lunar pendant
uncut meteor
lunar pendant
#

lol

fiery juniper
vivid compass
uncut meteor
#

may have just changed the search options after

#

@flat sentinel Simplock

vivid compass
#

dont swallow mic

mild zephyr
fiery juniper
#

Mic is tasty

uncut meteor
#

why

vivid compass
fiery juniper
mild zephyr
#

check it and say are the fontawesome icon working or not ?

fiery juniper
#

wha....?

vivid compass
fiery juniper
flat sentinel
#

nice you have made a bot but have you been simping for Hemlock

vivid compass
#

valorant eww

flat sentinel
somber heath
#

I propose a successor to memes.

#

Youmes.

terse needle
fiery juniper
mild zephyr
#

see you later i am going to have my dinner !

vivid compass
#

XD

mild zephyr
#

see you soon !

fiery juniper
#

Imagine using Linux Linux

uncut meteor
#

I use ClubPenguinOS

fiery juniper
#

bruh ;-;

#

Hemlock has a point, don't

uncut meteor
#

||u nerd||

vivid compass
#

this is not nsfw

fiery juniper
#

Hypixel be like

flat sentinel
vivid compass
#

is it funny tho

uncut meteor
vivid compass
uncut meteor
#

I prefer to do VoiceUnders

vivid compass
#

anime dubbing

#

XDD

vivid compass
fiery juniper
#

active chat

uncut meteor
fiery juniper
#

it has a fun command

vivid compass
#

mod mail is above all

fiery juniper
#

and currently working on an automatic voice channel system

fiery juniper
#

DON'T QUESTION THE ELEVATED ONE

vivid compass
fiery juniper
#

dorime

vivid compass
#

lmao dorime meme

fiery juniper
vivid compass
#

meth is hard

fiery juniper
#

COLLEGE

vivid compass
#

Colgate

fiery juniper
#

🦷 paste

#

colgate

vivid compass
#

im unemployed

lunar pendant
#

same here

fiery juniper
#

I'm 14, can't really work sad

somber heath
#

Sooner or later, there'll be a gategate, then the madness can end.

lunar pendant
#

what is going on, lol

vivid compass
lunar pendant
#

you didn't help me, No man i did

fiery juniper
vivid compass
#

joe

#

m

#

a

#

m

#

a

lunar pendant
#

you tried to help me, but you didn't help me

fiery juniper
#

LMFAOOOOO JOE MAMA

vivid compass
#

hehehehe

#

unpossible

#

surfing unfair

fiery juniper
#

The bot knows something...

vivid compass
fiery juniper
#

I mean...

#

maybe...?

#

Discord is so laggy when changing status

#

and cpu spikes

vivid compass
#

jeff bezos stuck in washing machine

fiery juniper
#

JEFFINA

uncut meteor
#

Geofina

fiery juniper
#

Hemlock right

#

he's always

#

right

versed island
lunar pendant
#

There was always an asian better than you
Mr hemlock - there are two countries with trillion people
Me as indian - Hehe china
Me again - wait wait a minute

fiery juniper
#

hold up-

#

@thorny pulsar Hemlock can't hate you, he's a god

honest pier
#

is it just me or is hemlock sounding kinda....sultry

somber heath
fiery juniper
vivid compass
uncut meteor
#

where is :lemon_short:

fiery juniper
#

Nice

#

just like this :)

whole bear
#

y'all are hilarioussdjdshfioheadscxbfisudzfjxk

#

lmoaosjakdsjl

vivid compass
#

🧄 🍞

uncut meteor
#

stop making me hungary

whole bear
#

i m potato

fiery juniper
#

🥔

whole bear
#

i m biscuit

vivid compass
lunar pendant
#

I heard that too

#

you want money from elon musk

versed island
fiery juniper
#

Hemlock hyperlemon

versed island
vivid compass
fiery juniper
whole bear
#

i m toxic

versed island
fiery juniper
#

:sad_cat:

vivid compass
#

--

fiery juniper
#

no emoji for me sad

uncut meteor
#

im a simp ScaredRoo

vivid compass
#

yea

#

got em

mild zephyr
#

oh really

vivid compass
#

.

mild zephyr
#

i am restarting my PC

fiery juniper
#

The user bellow me is a simp

versed island
vivid compass
#

wow

mild zephyr
#

i have to update my PC right now

#

i am leaving

uncut meteor
#

hi leaving

mild zephyr
#

see you 3 min later

uncut meteor
#

im G++

vivid compass
#

windows 10 update oof

fiery juniper
vivid compass
#

--

fiery juniper
#

Coding on nintendo switch

gentle flint
#

k

vivid compass
#

coding on calculator

fiery juniper
versed island
fiery juniper
#

I'm legit :)

#

I like the fact that school is in zoom

#

because

#

I talk with my friends in discord

#

but

#

for the teachers

#

discord is much better

vivid compass
#

true

fiery juniper
#

Like, you can mute, disconnect, lock channels, automate stuff, have several rooms and easy access

#

and a lot more

vivid compass
fiery juniper
#

yeah

vivid compass
#

but schools are dumb

fiery juniper
#

Agreed

lunar pendant
#

yes

#

college too

versed island
whole bear
#

python should hv been an esoteric language ngl

lunar pendant
#

my love c++

whole bear
vivid compass
#

👇 Eats tacos with mayo

fiery juniper
#

just give the teachers role to the teachers, the student role to the students, and remove all perms for others, done
no matter who joins, the can't do anything

fiery juniper
dense ibex
#
dense ibex
#

if you need a free resource

versed island
fiery juniper
#

Imagine if schools were using discord for everything they do online, (announcements and classes)

#

that would so much easier for them

gentle flint
#

for us, yes, for them no

fiery juniper
#

Why?

gentle flint
#

imagine a 65-year-old teacher trying to use discord for the first time

fiery juniper
#

but it's the same with zoom, teach it

gentle flint
#

zoom is significantly easier to use

lunar pendant
#

@mild zephyr plz bro mute yourself

vivid compass
#

i luv my right hand

fiery juniper
#

or maybe they should make discord--education

gentle flint
#

discord has a completely different interface from almost anything else

#

because it's based on irc, not web conferencing

#

although I know there are many schools which do use Discord atm

gentle flint
#

yeah

vivid compass
#

damn

gentle flint
#

but the majority uses either zoom or ms teams

vivid compass
#

yea

gentle flint
#

everyone hates ms teams

whole bear
#

i seriously feel like if hemlock levs vc, the vc average iq will drop by 1000

gentle flint
#

without exception

versed island
#

hate is a strong word

gentle flint
gentle flint
versed island
#

why is "hate" still in dictionary

lunar pendant
vivid compass
#

the only light i follow = rgb

versed island
#

hi guys

whole bear
#

hola

vivid compass
#

lmao

lunar pendant
versed island
#

you got me

whole bear
#

so tempted to make a nsfw joke

vivid compass
whole bear
#

lmao

lunar pendant
#

allow?

versed island
#

hîïíīįì

gentle flint
#

hēllō hārrȳ

lunar pendant
#

Then you never forget your birthday

vivid compass
#

(⓿_⓿)

#

im losing brain cells

lunar pendant
#

you have

whole bear
#

i never had a brain

lunar pendant
#

I don't

vivid compass
somber heath
whole bear
#

can u sell urs

rugged root
vivid compass
whole bear
#

ok sell it

lunar pendant
#

Biscuit loves tea

whole bear
#

i like coffee

#

more

wise cargoBOT
#

Hey @junior kayak!

Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:

• If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)

• If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:

https://paste.pythondiscord.com

lunar pendant
#

Then change your name to cookie

whole bear
#

where is the coffee of my life lemon_hearteyes

whole bear
#

so turned off

uncut meteor
#

Guys! Opal is typing

lunar pendant
#

opalmist is typing....

versed island
#

h͖͐͠ï͉͋
̓̇̋

uncut meteor
#

OpalMist is typing...

vivid compass
#

lmao

honest pier
#

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

junior kayak
vivid compass
#

opal is typing shrek movie script

somber heath
#
value = 546664
with open('value.txt', 'w') as file:
    file.write(str(value))

with open('value.txt', 'r') as file:
    value = int(file.read())```
vivid compass
#

ohh hehe

uncut meteor
#

it doesn't even have to be a .txt file right?

mild zephyr
#

i can't join the voice lobby what just happened

honest pier
#

you are in it?

vivid compass
#

ok

whole bear
#

zalgo bannn

fiery juniper
#

Try to deafen yourself and undeafen yourself, for me it plays the same sound

whole bear
#

the romanian kid left

#

kekw

vivid compass
#

ded

fiery juniper
vivid compass
#

i use blue stacks

#

lmao

#

XD

whole bear
#

mac

#

mac is smooth

junior kayak
#

MAIN MENU
1. NEW ACCOUNT
2. DEPOSIT AMOUNT
3. WITHDRAW AMOUNT
4. BALANCE ENQUIRY
5. ALL ACCOUNT HOLDER LIST
6. CLOSE AN ACCOUNT
7. MODIFY AN ACCOUNT
8. EXIT
Select Your Option (1-8)
4
Enter The account No. : 36987
Your account Balance is = 15900
Enter your choice : 2
MAIN MENU
1. NEW ACCOUNT
2. DEPOSIT AMOUNT
3. WITHDRAW AMOUNT
4. BALANCE ENQUIRY
5. ALL ACCOUNT HOLDER LIST
6. CLOSE AN ACCOUNT
7. MODIFY AN ACCOUNT
8. EXIT
Select Your Option (1-8)
2
Enter The account No. : 36987
Enter the amount to deposit : 200
Your account is updted
Enter your choice : 4
MAIN MENU
1. NEW ACCOUNT
2. DEPOSIT AMOUNT
3. WITHDRAW AMOUNT
4. BALANCE ENQUIRY
5. ALL ACCOUNT HOLDER LIST
6. CLOSE AN ACCOUNT
7. MODIFY AN ACCOUNT
8. EXIT
Select Your Option (1-8)
4
Enter The account No. : 36987
Your account Balance is = 16100
Enter your choice : \

rugged root
#

!server

wise cargoBOT
#
Server Information

Created: 4 years, 1 month and 13 days ago
Voice region: europe
Roles: 82
Member status: status_online 40957 status_offline 110476

Members: 151432

Helpers: 90
Moderators: 27
Admins: 13
Owners: 3
Contributors: 37

Channels: 205

Category: 25
News: 8
Staff: 55
Text: 108
Voice: 9

junior kayak
#

MAIN MENU
1. NEW ACCOUNT
2. DEPOSIT AMOUNT
3. WITHDRAW AMOUNT
4. BALANCE ENQUIRY
5. ALL ACCOUNT HOLDER LIST
6. CLOSE AN ACCOUNT
7. MODIFY AN ACCOUNT
8. EXIT
Select Your Option (1-8)
4
Enter The account No. : 36987
Your account Balance is = 15900
Enter your choice : 2
MAIN MENU
1. NEW ACCOUNT
2. DEPOSIT AMOUNT
3. WITHDRAW AMOUNT
4. BALANCE ENQUIRY
5. ALL ACCOUNT HOLDER LIST
6. CLOSE AN ACCOUNT
7. MODIFY AN ACCOUNT
8. EXIT
Select Your Option (1-8)
2
Enter The account No. : 36987
Enter the amount to deposit : 200
Your account is updted
Enter your choice : 4
MAIN MENU
1. NEW ACCOUNT
2. DEPOSIT AMOUNT
3. WITHDRAW AMOUNT
4. BALANCE ENQUIRY
5. ALL ACCOUNT HOLDER LIST
6. CLOSE AN ACCOUNT
7. MODIFY AN ACCOUNT
8. EXIT
Select Your Option (1-8)
4
Enter The account No. : 36987
Your account Balance is = 16100
Enter your choice :

noble copper
#

!e

from random import shuffle


suits = ["♠️","♣️","♦️","♥️"]
ranks = [r for r in range(2, 11)]+["J","Q","K","A"]
deck = [(r, s) for r in ranks for s in suits]

shuffle(deck)
print(deck)
wise cargoBOT
#

@noble copper :white_check_mark: Your eval job has completed with return code 0.

[(5, '♣️'), (3, '♥️'), (4, '♦️'), (6, '♠️'), ('K', '♠️'), ('J', '♥️'), (5, '♦️'), ('J', '♠️'), ('A', '♣️'), (10, '♣️'), (5, '♥️'), ('K', '♥️'), (3, '♠️'), ('K', '♣️'), (4, '♣️'), ('Q', '♥️'), ('Q', '♦️'), (7, '♦️'), (7, '♠️'), ('Q', '♣️'), (7, '♥️'), (6, '♥️'), ('A', '♥️'), (8, '♥️'), (2, '♠️'), ('J', '♦️'), (9, '♠️'), ('K', '♦️'), (3, '♣️'), (6, '♦️'), (7, '♣️'), (9, '♥️'), ('Q', '♠️'), (2, '♦️'), ('A', '♦️'), (10, '♦️'), (8, '♣️'), (10, '♥️'), (2, '♣️'), (5, '♠️'), ('J', '♣️'), (6, '♣️'), (2, '♥️'), (9, '♦️'), (4, '♥️'), (8, '♠️'), (3, '♦️'), (10, '♠️'), ('A', '♠️'), (9, '♣️'), (4, '♠️'), (8, '♦️')]
noble copper
#

woot!

somber heath
#
objects = [...]
objects = sorted(objects, key=lambda object: object.index)

def func(object): #This function behaves the same as the lambda
    return object.index
objects = sorted(objects, key=func)```
whole bear
#

biscuit speaks

stuck furnace
#

Hey 👋

flat sentinel
stuck furnace
#

Technically, concurrency not parallelism, due to the GIL.

#

Maybe just a function/callable?

#

Btw, there's also asyncio, which has coroutines and tasks.

#

Which is another way to do concurrency in Python.

#

Gtg to put dinner on. See ya 😄

graceful grail
#

@somber heath Did I scare you off? sorry.

somber heath
#

No, a youtuber I follow is live.

graceful grail
#

ok

#
import asyncio

async def main():
    print('Hello ...')
    await asyncio.sleep(1)
    print('... World!')

# Python 3.7+
asyncio.run(main())
uncut meteor
junior kayak
#

value = account.accno
with open('value.txt', 'w') as file:
file.write(str(value))

with open('value.txt', 'r') as file:
value = int(file.read())

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.

junior kayak
#
value = account.accno
with open('value.txt', 'w') as file:
    file.write(str(value))

with open('value.txt', 'r') as file:
    value = int(file.read())
#

File "C:/Users/arshb/PycharmProjects/pythonProject/main.py", line 220, in <module>
value = account.accno
NameError: name 'account' is not defined

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.

junior kayak
uncut meteor
harsh sigil
#

ygy

#

thickkkkkkkkkkkkkkkkkkkkk boyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy

uncut meteor
junior kayak
uncut meteor
#

!doc str

wise cargoBOT
#
class str(object='')``````py
class str(object=b'', encoding='utf-8', errors='strict')```
Return a [string](#textseq) version of *object*. If *object* is not provided, returns the empty string. Otherwise, the behavior of `str()` depends on whether *encoding* or *errors* is given, as follows.

If neither *encoding* nor *errors* is given, `str(object)` returns [`object.__str__()`](../reference/datamodel.html#object.__str__ "object.__str__"), which is the “informal” or nicely printable string representation of *object*. For string objects, this is the string itself. If *object* does not have a [`__str__()`](../reference/datamodel.html#object.__str__ "object.__str__") method, then [`str()`](#str "str") falls back to returning [`repr(object)`](functions.html#repr "repr").... [read more](https://docs.python.org/3/library/stdtypes.html#str)
uncut meteor
#

!e

my_string = "Testing 5 Cool"

print(all(char.isalpha() or char.isspace() for char in my_string))

my_string = "Testing Cool"

print(all(char.isalpha() or char.isspace() for char in my_string))
wise cargoBOT
#

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

001 | False
002 | True
graceful grail
#
while account_number.is_integer() == False:
  account_number = input("enter a number (no words):")

uncut meteor
#

isdigit()

violet spoke
#

alnum, etc

#

he just wanted to check input it sounded like

amber raptor
#

!e python account_number = "5667884asdf" try: int(account_number) except ValueError: print(false)

wise cargoBOT
#

@amber raptor :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 3, in <module>
003 | ValueError: invalid literal for int() with base 10: '5667884asdf'
004 | 
005 | During handling of the above exception, another exception occurred:
006 | 
007 | Traceback (most recent call last):
008 |   File "<string>", line 5, in <module>
009 | NameError: name 'false' is not defined
graceful grail
#

108098.999

amber raptor
#

!e python account_number = "5556634asdfa5" if isinstance(int(account_number), int): print("Is Number") else: print("Is not")

flat sentinel
wise cargoBOT
#

@amber raptor :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 2, in <module>
003 | ValueError: invalid literal for int() with base 10: '5556634asdfa5'
violet spoke
#

why not split the input

uncut meteor
#

!e

print(ord("0"), ord("9"))
print(ord("a"), ord("Z"))
wise cargoBOT
#

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

001 | 48 57
002 | 97 90
amber raptor
#

!e python a = 555.64354653 print(int(a))

wise cargoBOT
#

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

555
graceful grail
#

02/21/2021

#

02.21.2021

terse needle
#

!e

a = 555.64354653
print(isinstance(a, float))
wise cargoBOT
#

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

True
junior kayak
#

um

#

i m trying to validate ```
def createAccount(self):
self.accNo = int(input("Enter Account number "))
self.name = input("Enter the name on this account : ")
self.type = input("Enter the type of account (Chequing or Saving): ")
self.deposit = int(input("Enter The Initial amount(>=500 for Saving and >=1000 for chequing "))
print("\n\n\nAccount Created")

uncut meteor
#

!e

def is_number(s: str) -> bool:
  return 48 * len(s) <= sum(ord(char) for char in s) <= 57 * len(s)

print(is_number("Test"))
print(is_number("123"))
print(is_number("Apple"))
wise cargoBOT
#

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

001 | False
002 | True
003 | False
junior kayak
#

how would i valdate it

graceful grail
#

-> int

terse needle
uncut meteor
#

kek, its a funny way to check for a number

violet spoke
#

.split the users input and check

junior kayak
#

ar u talking to me

terse needle
#

!e

o = [0,1,2,3,4,5,6]
print(o[1:3])
wise cargoBOT
#

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

[1, 2]
fast gyro
#

[1:3]

terse needle
uncut meteor
#

!e


o = [0,1,2,3,4,5,6]
print(3 in o[1:3])
wise cargoBOT
#

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

False
fast gyro
#

eval

uncut meteor
#

!docs eval

wise cargoBOT
#
eval(expression[, globals[, locals]])```
The arguments are a string and optional globals and locals. If provided, *globals* must be a dictionary. If provided, *locals* can be any mapping object.... [read more](https://docs.python.org/3/library/functions.html#eval)
olive sentinel
#

@fast gyro ?

fast gyro
#

missclick

#

sry

olive sentinel
#

Alright

fast gyro
#

An introduction to computer and programming, Problem solving skills and software development methods, Data type operators and simple s, input/output statements and expressions, Selection structures and switch statements, Selection structures and switch statements continued, Repetition and loop statements, Functions and modular programming, Arrays applications, and Multidimensional arrays

terse needle
#

!e

k = [[1,2],[3,4]]

print(k[0][1])
wise cargoBOT
#

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

2
uncut meteor
#

!e

my_list = [
  [0.0, 0.1, 0.2],
  [1.0, 1.1, 1.2], 
  [2.0, 2.1, 2.2],
]

for x in range(len(my_list)):
  print(my_list[x][x])
wise cargoBOT
#

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

001 | 0.0
002 | 1.1
003 | 2.2
ocean panther
#

for in array

#

for x in array

uncut meteor
ocean panther
#

xd

uncut meteor
fast gyro
ocean panther
#

for x in range(0, len(array)):
y = x
array[x][y]

#

Nixdorf

#

Heinz Nixdorf

terse needle
uncut meteor
#

1 of your 5 a day

terse needle
junior kayak
#
    def createAccount(self):
            self.accNo = int(input("Enter Account number "))


            print("Invalid")
            self.name = input("Enter the name on this account : ")
            self.type = input("Enter the type of account (Chequing or Saving): ")
            self.deposit = int(input("Enter The Initial amount(>=500 for Saving and >=1000 for chequing "))
            print("\n\n\nAccount Created")
uncut meteor
#
my_data = "Test"

def valid_data(data) -> bool:
  ...

#

@junior kayak replace my_data with example data

terse needle
#

!e

class X:
    k = 10
print(X.k)
wise cargoBOT
#

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

10
ocean panther
#

!e

class X:
k = 10
print(X.k)

wise cargoBOT
#

@ocean panther :white_check_mark: Your eval job has completed with return code 0.

10
short canopy
#

sooo what's better work with eel or electron !!

terse needle
#

!e
x = 10
print(x << 2)

wise cargoBOT
#

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

40
terse needle
#

!e
x = 1
print(x >> 1)

wise cargoBOT
#

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

0
short canopy
#

!e x = 1

uncut meteor
#

!e

test = bytes(1011)
print(test)


print(int(test))
wise cargoBOT
#

@uncut meteor :x: Your eval job has completed with return code 1.

001 | b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
... (truncated - too long)

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

uncut meteor
short canopy
#

!e lambda x : x**2 (5)

ocean panther
#

bitwise operating

0001 AND 1001 = 0001

#

bitwise comparison

#

first bits: 0 1

#

= 0

uncut meteor
ocean panther
#

yes

#

exacrtly

uncut meteor
#

ah

ocean panther
#

just like bitwise adiditon

terse needle
#

!e

x = 8
print(~x)
wise cargoBOT
#

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

-9
hallow karma
#

hi again

uncut meteor
#

@ocean panther FFmpeg

ocean panther
#

QT,
GTK
WX
TKinter (no)
electron

what else=

#

?

hallow karma
#

whats gtk?

uncut meteor
#

exist.exe

somber heath
#

Extant

ocean panther
#

this is what i want it to look ilke, its exactly like discord but just for prototyping

short canopy
#

btw u can use html css ans js with python with eel

#

@ocean panther can u show us the app !!

graceful grail
#

rnnoise

ocean panther
short canopy
short canopy
whole bear
#

i need help with a code guys

short canopy
whole bear
#

python

uncut meteor
#

what with specifically?

short canopy
#

what's the problem !

whole bear
#

it still says my code is wrong?

hallow karma
#

try having the input arguments empty

whole bear
#

i can't speak

#

ok

#

it shows this

short canopy
#

try it without write

whole bear
#

ok ill try

short canopy
#

try it empty

uncut meteor
#

it is using Standard out

whole bear
#

oh it worked

uncut meteor
#

so the printing from input is being recorded

whole bear
#

i removed the write

uncut meteor
#

which is disgusting

whole bear
#

and it worked

#

hmm, yeah thank you guys :3

noble copper
grizzled vessel
#

!voiceverify

whole bear
#

dang when someone joins the vc and see you muted then leaves

uneven zenith
#

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

#

@uneven zenith :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 4, in <module>
003 | ModuleNotFoundError: No module named 'thread'
whole bear
#
class Player():
  def __init__(self,NAME,XP,LEVEL,GOLD,WEAPON,ARMOUR,INVENTORY):

    self.NAME = NAME
    self.XP = XP
    self.LEVEL = LEVEL
    self.GOLD = GOLD
    self.WEAPON = WEAPON
    self.ARMOUR = ARMOUR
    self.INVENTORY = INVENTORY

  def __attack__():
    Player.WEAPON = "Wooden Sword"
    


Player.__attack__()
#
# TODO
# BLA BLA BLA
steel meteor
#

@whole bear whatsup, wyd

graceful grail
#
self.img_mic = SVGimage.CreateFromFile("graphics/mic.svg")
#
self.bmp_mic = self.img_mic.ConvertToScaledBitmap(self.icon_size)```
#
#!/usr/bin/env python3
import wx
import wx.svg

def main():
    app = wx.App()
    wx.ArtProvider.Push(ArtProvider())
    window = Window(None)
    window.Show()
    app.MainLoop()

class Window(wx.Frame):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.MinSize = (240, 300)
        self.Title = wx.App.Get().AppName
        self.SetIcon(wx.ArtProvider.GetIcon('ICON'))

class ArtProvider(wx.ArtProvider):
    def CreateBitmap(self, artId, _client, size):
        if artId == 'ICON':
            svg = wx.svg.SVGimage.CreateFromFile('mic.svg')
            size = wx.Size(32, 32)
            return svg.ConvertToScaledBitmap(size)
        return wx.NullBitmap

if __name__ == '__main__':
    main()
uneven urchin
#

self.button_thing.Bitmap

graceful grail
#
#!/usr/bin/env python3
import wx
import wx.svg

def main():
    app = wx.App()
    wx.ArtProvider.Push(ArtProvider())
    window = Window(None)
    window.Show()
    app.MainLoop()

class Window(wx.Frame):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.MinSize = (240, 300)
        self.Title = wx.App.Get().AppName
        self.SetIcon(wx.ArtProvider.GetIcon('ICON'))
        self.butt = wx.Button(self)
        self.butt.SetBitmap(wx.ArtProvider.GetIcon('ICON'))

        
class ArtProvider(wx.ArtProvider):
    def CreateBitmap(self, artId, _client, size):
        if artId == 'ICON':
            svg = wx.svg.SVGimage.CreateFromFile('mic.svg')
            return svg.ConvertToScaledBitmap(wx.Size(32, 32))
        return wx.NullBitmap

if __name__ == '__main__':
    main()


little ridge
#

how can i use my vim config on tmux?

graceful grail
#
#!/usr/bin/env python3
import wx
import wx.svg

def main():
    app = wx.App()
    wx.ArtProvider.Push(ArtProvider())
    window = Window(None)
    window.Show()
    app.MainLoop()

class Window(wx.Frame):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.MinSize = (240, 300)
        self.Title = wx.App.Get().AppName
        self.SetIcon(wx.ArtProvider.GetIcon('ICON'))
        self.butt = wx.Button(self)
        self.butt.SetBitmap(wx.ArtProvider.GetBitmap('ICON'))

        
class ArtProvider(wx.ArtProvider):
    def CreateBitmap(self, artId, _client, size):
        if artId == 'ICON':
            svg = wx.svg.SVGimage.CreateFromFile('mic.svg')
            return svg.ConvertToScaledBitmap(wx.Size(32, 32))
        return wx.NullBitmap

if __name__ == '__main__':
    main()
#
self.mute_b.SetBitmap(wx.ArtProvider.GetBitmap(self.bmp_mic))```
#
self.img_mic = SVGimage.CreateFromFile("graphics/mic.svg")```
whole bear
#

yes thats true

#

lol

uneven urchin
#

@graceful grail

craggy light
#

How do I get permission to talk

#

In voice chay

#

Chat

#

@graceful grail

#

Never mind

#

!voiceverify

#

!voice verify

graceful grail
#

sorry my mic is broke 😦

#

give me a sec.

#

I got it fixed.

lapis tiger
#

@rugged root I have bone to pick with you.

mossy cargo
#

hello

winged fjord
#

hello

winged fjord
#

Cute froggy pixel art i made

paper tendon
#

wxwidgets?

graceful grail
hidden cove
whole bear
#

i live in poland, that counts?

rugged root
#

!server

wise cargoBOT
#
Server Information

Created: 4 years, 1 month and 14 days ago
Voice region: europe
Roles: 82
Member status: status_online 43505 status_offline 108331

Members: 151835

Helpers: 89
Moderators: 26
Admins: 13
Owners: 3
Contributors: 37

Channels: 205

Category: 25
News: 8
Staff: 54
Text: 109
Voice: 9

tiny socket
whole rover
#

smh vco in voice

tiny socket
honest pier
#

😔

whole rover
tiny socket
#

ew

#

maths

honest pier
#

lol, partial fractions are terrible

#

worse than trig sub, don't @ me

whole rover
#

fact

honest pier
#

😔

vivid palm
#

gmgmgmgm

#

it's mondaymondaymondaymonday

#

coffeecoffeecoffeecoffee

honest pier
vivid palm
#

what ⤴️ day is it

#

todd the hero we need

tiny socket
rugged root
#

!voice @modest fulcrum

wise cargoBOT
#

Voice verification

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

vivid palm
#

cashmonay

tiny socket
wise glade
#

bonjour people !!

honest pier
#

salut

wise glade
#

does unnecessary white-spaces increase the overall file size after compilation?

#

not 500, kinda like millions

#

all the Kieper Belt stuff (spelling might be wrong)

modest fulcrum
#

I can’t talk

#

Fuck

zealous wave
wise cargoBOT
#

Voice verification

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

bold mauve
tiny socket
bold mauve
#

shouldve known not to click on that 😔

zealous wave
#

dude you tempted me

#

fuck

bold mauve
#

lmao

faint ermine
#

my dumbass

wise glade
#

but, seriously, possibility of 9th planet is awesome

zealous wave
zealous wave
river arch
#

According to Rick And Morty pluto is not a planet. lol

faint ermine
zealous wave
faint ermine
zealous wave
faint ermine
#

why reddit yikes?

zealous wave
#

bc reddit users hurt me

wise glade
#

reddit's best

#

you almost always find ||pirated|| stuff links on it

honest pier
#

libgen is awesome

#

i probably have saved at least 1000 dollars by now

zealous wave
vivid palm
#

@severe veldt mute yourself pls

zealous wave
#

^