#voice-chat-text-0

1 messages · Page 819 of 1

wise cargoBOT
#

@gentle flint :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: incomplete format
gentle flint
#

bruh?

#

I think I messed up

#

!e

name = "John"
print("my name is %s" % name)
wise cargoBOT
#

@gentle flint :white_check_mark: Your eval job has completed with return code 0.

my name is John
gentle flint
#

there we are

#

that's for strings

#

for floating points, you do

#

!e

age = 38.43264893754
print("my age is %f" % age)
wise cargoBOT
#

@gentle flint :white_check_mark: Your eval job has completed with return code 0.

my age is 38.432649
gentle flint
#

Note that I now use %f instead of %s

#

it's a floating-point number (decimal number) not a string

#

If I want to round the floating-point number, let's say to 3 decimals, I would do

#

!e

age = 38.43264893754
print("my age is %.3f" % age)
wise cargoBOT
#

@gentle flint :white_check_mark: Your eval job has completed with return code 0.

my age is 38.433
gentle flint
#

So that's what the %.2f is doing for you

#

inserting a value and rounding to 2 decimal places

lament tusk
#

Aaaaaaaaah, my brain right now melting, but i got it

gentle flint
#

nice

#

if you want to do f-strings you would do

#

!e

age = 38.43264893754
print(f"my age is {age:.3f}")
wise cargoBOT
#

@gentle flint :white_check_mark: Your eval job has completed with return code 0.

my age is 38.433
lament tusk
#

Look like complicated

gentle flint
#

Not really

lament tusk
#

why we have {}?

gentle flint
#

I showed you earlier

#

Remember?

#

told you all about f-strings

lament tusk
#

see

gentle flint
#

!e

name = "john"
print(f"hi {name}")
wise cargoBOT
#

@gentle flint :white_check_mark: Your eval job has completed with return code 0.

hi john
gentle flint
#

the {} indicated that there's a variable inside

#

or at least some python code

lament tusk
#

Aah

gentle flint
#

not a string

#

so with the {age:.2f}, you're taking the age, but then the : says you'll format it in a certain type

#

after the : comes the type you will format it in

#

which is .2f

#

aka a floating point number with 2 decimal places

#

Got it?

lament tusk
#

Little bit

gentle flint
#

well, see how far you get

vagrant relic
#

how to past code here

#

without removing lines

#

like other users

whole bear
vagrant relic
#

on this topic

whole bear
#

what topic?

vagrant relic
#

how to send code

whole bear
#

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

vagrant relic
#

ok

#
print('Hello world!')
flat sentinel
#

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

flat sentinel
#

you can use that to run your code

#

!e

print('Hello world!')
wise cargoBOT
#

@flat sentinel :white_check_mark: Your eval job has completed with return code 0.

Hello world!
flat sentinel
#

or just

#

!e print('Hello world!')

wise cargoBOT
#

@flat sentinel :white_check_mark: Your eval job has completed with return code 0.

Hello world!
vagrant relic
#

!e var = int(input())
print(var)

wise cargoBOT
#

@vagrant relic :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | EOFError: EOF when reading a line
vagrant relic
#

!e print('NIKHIL')

wise cargoBOT
#

@vagrant relic :white_check_mark: Your eval job has completed with return code 0.

NIKHIL
vagrant relic
#

got it

#

thanks guys

latent geode
#
print('i luv u all')
flat sentinel
#
print("no you dont and ues \" not \'")
gentle flint
#
Traceback (most recent call last):
  File "/home/eli/Documents/python/flightplandb-python/tests/test_user.py", line 43, in test_self_info
    plansLikes=0
  File "<string>", line 12, in __init__
  File "/home/eli/Documents/python/flightplandb-python/flightplandb/datatypes.py", line 84, in __post_init__
    if self.lastSeen else self.lastSeen
  File "/home/eli/Documents/python/flightplandb-python/venv/lib/python3.7/site-packages/dateutil/parser/isoparser.py", line 37, in func
    return f(self, str_in, *args, **kwargs)
  File "/home/eli/Documents/python/flightplandb-python/venv/lib/python3.7/site-packages/dateutil/parser/isoparser.py", line 134, in isoparse
    components, pos = self._parse_isodate(dt_str)
  File "/home/eli/Documents/python/flightplandb-python/venv/lib/python3.7/site-packages/dateutil/parser/isoparser.py", line 208, in _parse_isodate
    return self._parse_isodate_common(dt_str)
  File "/home/eli/Documents/python/flightplandb-python/venv/lib/python3.7/site-packages/dateutil/parser/isoparser.py", line 213, in _parse_isodate_common
    len_str = len(dt_str)
TypeError: object of type 'datetime.datetime' has no len()
sly gale
#
def commonChars(A):
    length = len(A)
    output = []
    for i in A[0]:
        check = True
        for j in range(1, length):
            if i in A[j] and check:
                A[j] = A[j].replace(i, "", 1)
                check = i
            else:
                check = None
        if check == i:
            output.append(i)

    return output


print(commonChars(["bella","label","roller",'ella']))
gentle flint
#

Mersey egg

#

Scotch egg

#

air quality egg

gray pecan
#

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

gray pecan
#

e!voice

#

!e voice

wise cargoBOT
#

@gray pecan :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 'voice' is not defined
whole bear
#

hi

runic forum
#

ahyoa

sonic heath
#

Hi

dense ibex
#

!remind Hello 4m

wise cargoBOT
#
Missing required argument

content

#
Command Help

!remind [mentions]... <expiration> <content>
Can also use: reminder, reminders, remindme

Commands for managing your reminders.

Subcommands:

!remind delete <id_>
Delete one of your active reminders.
!remind edit
Commands for modifying your current reminders.
!remind list
View a paginated embed of all reminders for your user.
!remind new [mentions]... <expiration> <content>
Set yourself a simple reminder.

dense ibex
#

!remind @dense ibex 1m Hello

wise cargoBOT
#
Nuh-uh.

Sorry, you can't do that here!

flat sentinel
#

!yes

sick cloud
#

Its kinda rare to see the Staff vc full of ppl

gentle flint
#

always happens on sunday night

sick cloud
gusty token
#

heyo

gritty finch
#

if anyone could hop in a VC with me right now to help me with my code real quick that would be epic, thanks.

novel echo
hollow bison
#

charles babbage the father of computing!!!

runic forum
#

wassup @somber heath

somber heath
#

Little of import.

runic forum
#

Ok

raven hatch
#

i have already been in this server for three days, why i can't verify my voice

graceful grail
#

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

gusty token
raven hatch
#

i've done that

gusty token
#

Great

raven hatch
#

but doesn't verify me

#

maybe tomorrow

#

ut i've been here since 23

somber heath
#

@raven hatch Does it give you a specific reason why it's rejecting you?

raven hatch
#

yeah

#

the three days thing

somber heath
#

You're probably close to, but not over that threshold.

raven hatch
#

but idk if it's about the hours

#

it should be with amount of hours left, not amount of days left

#

because anxious people as me, can't wait

somber heath
#

One moment.

raven hatch
#

ok

raven hatch
#

XD

#

hi

#

how are u

#

i don't know the command xd

#

bro

#

are u good at python?

#

@somber heath

#

cool

#

Joined: 2 days, 13 hours and 31 minutes ago

#

cooul

#

could you help me with smth?

#

i tried to program

#

but it send me error

#

sure

#

now doesnt even let me load my program

#

hahaha

#

nope

#

it was directory

#

let me check

#

/usr/local/bin/python3.9 /Users/francorojkes/Desktop/bot.py
/usr/local/bin/python3.9: can't open file '/Users/francorojkes/Desktop/bot.py': [Errno 2] No such file or directory

Process finished with exit code 2

#

im a mac user

#

yes

#

but it doesn't recognize it

#

but one day it worked

#

my id

#

?

#

yeah

#

i want to screenshare hahaha

#

idk

#

nope

#

let me look

#

do you mean in ,y terminal?

#

i usepycharm

#

yes

#

but it doesn't allows me

#

yeah

#

hahahah

#

potatoes computers be like

#

i have a mac mini

#

yeah

#

the problem is

#

the knoledge

#

i mean

#

i installed the idle

#

yeah

#

but cant run it

#

i can open idñe

#

idle

#

nut i cant run codes in idle

#

SyntaxError: multiple statements found while compiling a single statement

somber heath
#

!code

wise cargoBOT
#

Here's how to format Python code on Discord:

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

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

raven hatch
#

/usr/local/bin/python3.9 /Users/francorojkes/Desktop/pythonProject/bot.py
/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/rubicon/objc/ctypes_patch.py:21: UserWarning: rubicon.objc.ctypes_patch has only been tested with Python 3.4 through 3.8. You are using Python 3.9.4. Most likely things will work properly, but you may experience crashes if Python's internals have changed significantly.
warnings.warn(
Traceback (most recent call last):
File "/Users/francorojkes/Desktop/pythonProject/bot.py", line 6, in <module>
pyautogui.press(enter)
NameError: name 'enter' is not defined

Process finished with exit code 1

#

like it just let me run my code in pycharm

#

but before it didn't

#

it's a simple code

#

import pyautogui, time
time.sleep(5)
f = open("/Users/francorojkes/Desktop/lol/shrek", 'r')
for word in f:
pyautogui.typewrite(word)
pyautogui.press(enter)

somber heath
#
print('Hello, world!')```
#

~ `

raven hatch
#

print("lol")

#

the actual code is like this

#

.

#

import pyautogui, time
time.sleep(5)
f = open("shrek", 'r')
for word in f:
pyautogui.typewrite(word)
pyautogui.press(enter)

#

but before, this exactly code worked

#

i think is probably storage

#

because i get various errors

#

thanks

#

if not i could dm you, but idk if you would feel ok with it

#

ok

somber heath
#

For the record, as I've said before, I have the observational powers of a peanut.

whole bear
#

cool

stuck furnace
whole bear
#

ehehhehehehehe

cerulean moth
#

lol, edited msg can be seen in the mod log

#

🙃

stuck furnace
#

@whole bear Please try to follow our rules and code of conduct. Thanks.

whole bear
#

каммон мэн

#

я пишу на с++

#

кто меня забустит

faint ermine
#

!rules 4

wise cargoBOT
#

4. This is an English-speaking server, so please speak English to the best of your ability.

cerulean moth
#

kammon man
i write in c ++
who will forget me

faint ermine
#

!voice @upbeat sleet

wise cargoBOT
#

Voice verification

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

upbeat sleet
#

hello

#

:)

faint ermine
#

saw your name 🙂

upbeat sleet
#

good

#

haha yes

#

yeah

sick cloud
#

@whole bear hello

#

u know its

#

12:40 pm

#

rn

#

for me

#

^^^ clicks on it

#

im voice verified ;-;

#

its only Oooooohhh

upbeat sleet
#

hii

sick cloud
#

helo gamer

upbeat sleet
#

can i ask for help here or is this the wrong place

sick cloud
#

just ask it

upbeat sleet
#

so i have a function that i loop but i want a variable to change a lot in it
i need to make it before i use the function but it doesn't recognize it in the func

#

if that make sense

#

it is the "old value" it compares a new value to

sick cloud
#

hmm

#

or use the global scope var

#

which is not recommended

upbeat sleet
#

called what

#

uhm

#

yeah

#
import random
from pychroma import Sketch
import cryptocompare
oldprice = 0

old_var

class MySketch(Sketch):
    config_path = 'hej.json'
    def setup(self):
        self.constraints = ((1, 21), (0, 5))
        self.frame_rate = 30
        self.keyboard.color_mode('rgb')
        self.r = random.randint(0, 255)
        self.g = random.randint(0, 255)
        self.b = random.randint(0, 255)

    def update(self):
        self.r = 255
        self.g = 0
        price = cryptocompare.get_price('BTC')['BTC']['EUR']
        if float(price) > float(oldprice):
            self.r = 0
            self.g = 255
        oldprice = price
    def render(self):
        for i in range(self.constraints[1][0], self.constraints[1][1] + 1):
            for j in range(self.constraints[0][0], self.constraints[0][1] + 1):
                self.keyboard.set_grid((j, i), (self.r, self.g, self.b))```
#

like that?

#

its the old price thing that messes up

sick cloud
#

why dont u format the code or smth

#

ye self.oldprice

upbeat sleet
#

where?

#

def setup

#

like that

#

pycharm

sick cloud
#

hes on pycharm ;<
using the default theme

upbeat sleet
#

actually dont know my friend set it up for me

sick cloud
#

same, im also on vsc and atom

#

do u still remember where u wrote ur first piece of code?

#

Hmm

#

lol

upbeat sleet
#

yeah

sick cloud
upbeat sleet
#

i have that as my music list

sick cloud
whole bear
#

SeKsHuN--EiGhT

upbeat sleet
#

now my keyboard is only green but idk if it is broken code or if btc only goes up

#

bc it should be red if goes down

#

oh code broke

sick cloud
#

GG

upbeat sleet
#

i forgot self.old

#

i had old

#

on one place

#

yeah hahah

#

Yup

#

:D

#

u want?

#
import random
from pychroma import Sketch
import cryptocompare
oldprice = 0



class MySketch(Sketch):
    config_path = 'hej.json'
    def setup(self):
        self.oldprice = 0
        self.constraints = ((1, 21), (0, 5))
        self.frame_rate = 30
        self.keyboard.color_mode('rgb')
        self.r = 0
        self.g = 0
        self.b = 0

    def update(self):
        self.r = 255
        self.g = 0
        price = cryptocompare.get_price('BTC')['BTC']['EUR']
        if float(price) > float(self.oldprice):
            self.r = 0
            self.g = 255
        self.oldprice = price
    def render(self):
        for i in range(self.constraints[1][0], self.constraints[1][1] + 1):
            for j in range(self.constraints[0][0], self.constraints[0][1] + 1):
                self.keyboard.set_grid((j, i), (self.r, self.g, self.b))```
#

i am

#

i have a github

#

should i post?

sick cloud
#

ye

upbeat sleet
#

oh no

sick cloud
#

lol

upbeat sleet
#

i lost my py files when i fucked up my ssd

#

but i had most saved on discord dm:s

sick cloud
#

m discord bot is private ;p

#

my bot is in 90 servers rn ;)

#

totally not advertising btw

whole bear
#

I am actively asking about the bot

sick cloud
#

heroku most of the time

#

its free lol

#

i use json and sqlite3

upbeat sleet
#

i think more files are needed for this to work like some json file how do i do that on git

#

oh i can just have it as comments

sick cloud
#

!e

import sqlite3
print(dir(sqlite3))
wise cargoBOT
#

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

['Binary', 'Connection', 'Cursor', 'DataError', 'DatabaseError', 'Date', 'DateFromTicks', 'Error', 'IntegrityError', 'InterfaceError', 'InternalError', 'NotSupportedError', 'OperationalError', 'OptimizedUnicode', 'PARSE_COLNAMES', 'PARSE_DECLTYPES', 'PrepareProtocol', 'ProgrammingError', 'Row', 'SQLITE_ALTER_TABLE', 'SQLITE_ANALYZE', 'SQLITE_ATTACH', 'SQLITE_CREATE_INDEX', 'SQLITE_CREATE_TABLE', 'SQLITE_CREATE_TEMP_INDEX', 'SQLITE_CREATE_TEMP_TABLE', 'SQLITE_CREATE_TEMP_TRIGGER', 'SQLITE_CREATE_TEMP_VIEW', 'SQLITE_CREATE_TRIGGER', 'SQLITE_CREATE_VIEW', 'SQLITE_CREATE_VTABLE', 'SQLITE_DELETE', 'SQLITE_DENY', 'SQLITE_DETACH', 'SQLITE_DONE', 'SQLITE_DROP_INDEX', 'SQLITE_DROP_TABLE', 'SQLITE_DROP_TEMP_INDEX', 'SQLITE_DROP_TEMP_TABLE', 'SQLITE_DROP_TEMP_TRIGGER', 'SQLITE_DROP_TEMP_VIEW', 'SQLITE_DROP_TRIGGER', 'SQLITE_DROP_VIEW', 'SQLITE_DROP_VTABLE', 'SQLITE_FUNCTION', 'SQLITE_IGNORE', 'SQLITE_INSERT', 'SQLITE_OK', 'SQLITE_PRAGMA', 'SQLITE_READ', 'SQLITE_RECURSIVE', 'SQLITE_REINDEX', 'SQLI
... (truncated - too long)

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

sick cloud
#

sqlite3 is a default lib

#

ye

#

i wish i can use mongo
but i dont think heroku has support for it

whole bear
#

!verify voice

#

!verifyvoice

sick cloud
upbeat sleet
#

how do i add file to github

whole bear
#

ok

upbeat sleet
#

or do i create projekt first

#

i can only add 'collumn'

sick cloud
#

btw, im probably younger than all of u

#

i'd not be here if im 11 lol

#

discord tos

upbeat sleet
#

oh

sick cloud
#
true ig
upbeat sleet
#

i have to 'go' to physics now

#

might come back when i succeed

#

yeah

sick cloud
#

meanwhile:

#

try solve that

#

yes

whole bear
#

i make meth

#

that's nice lol

#

thats easy

sick cloud
#

this is grade 10 chem

#

i meant

whole bear
#

Mrs Walter White

sick cloud
#

in the vc

whole bear
#

MR*

sick cloud
whole bear
#

We'll still accept you if you chose mrs 🙂

#

lmao

sick cloud
#

\🥰

#

hmm

#

soo

#

wat u doing

#

and i wonder smth:

#

!e

import os
os.system("vim")
wise cargoBOT
#

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

[No output]
sick cloud
#

hmm

whole bear
#

?

#

@whole bear you know you can still be in the voice chats without verification right?

#

yes

#

i have to go

sick cloud
#

@whole bear i think my internet gave up

dense ibex
gloomy vigil
#

hi r4y

clever needle
#

hi

#

learning java rn

dense ibex
#

cool, how is that going for ya?

clever needle
#

well, i can create simple GUI

dense ibex
#

That's good.

#

Is Java your first language?

clever needle
#

No. It's my fifth.

dense ibex
#

oh ok, so it's not gonna be too bad.

gloomy vigil
#

cool

#

i only know 4

clever needle
#

Yeah. I'm gonna continue learning Java tomorrow because my brains doesn't want to remember anything right now.

#

I'm gonna continue programming with python rn

dense ibex
#

You working on anything cool?

clever needle
#

I'm working on a bot for my discord server.

flat sentinel
dense ibex
#

Hey @tiny socket 👋

tiny socket
#

!e

class NewSyntax:
    def __matmul__(self, other):
        return getattr(self, other)

    def __imatmul__(self, values):
        setattr(self, values[0], values[1])
        return self

obj = NewSyntax()

# setting an sttribute
obj@="num",10

# getting an attribute
print(obj@"num")
wise cargoBOT
#

@tiny socket :white_check_mark: Your eval job has completed with return code 0.

10
sick cloud
#

@clever needle sooo, what r we talking about

clever needle
#

Something random

#

caffeine i guess

#

idk

sick cloud
#

hmm

#

\👍

#

@clever needle also, if u see very carefully

#

everyone here is voice verified

#

kinda rare to see that

rugged root
undone idol
#

ok

flat sentinel
undone idol
#

57 mb F

clever needle
undone idol
#

!voice

dense ibex
#

hemshakeChamp

wise cargoBOT
#

Voice verification

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

rugged root
flat sentinel
sick cloud
sick cloud
#

this server has like 3 million ppl

#

add mee6

tiny socket
#
class EvilSyntax:
    def __matmul__(self, other):
        return getattr(self, other)

    def __imatmul__(self, values: tuple):
        setattr(self, values[0], values[1])
        return self

    @classmethod
    def patch(cls, obj: object) -> None:
        obj.__matmul__ = cls.__matmul__
        obj.__imatmul__ = cls.__imatmul__

# Patch existing classes
import discord

EvilSyntax.patch(discord.Client)
sick cloud
#

Red Bull

#

@spare pollen welcome

spare pollen
tiny socket
#
def syntaxpatch(cls):
    def __matmul__(self, other):
        return getattr(self, other)

    def __imatmul__(self, values: tuple):
        setattr(self, values[0], values[1])

    cls.__matmul__ = __matmul__
    cls.__imatmul__ = __imatmul__

    return cls


@syntaxpatch
class MyClass:
    pass
sick cloud
#

cuz return is outside the function

zealous wave
tiny socket
#

nope

#

its in the parent function

zealous wave
#

if you're going to typehint values to a tuple why not just use *args?

tiny socket
#

!e

def syntaxpatch(cls):
    def __matmul__(self, other):
        return getattr(self, other)

    def __imatmul__(self, values: tuple):
        setattr(self, values[0], values[1])

    cls.__matmul__ = __matmul__
    cls.__imatmul__ = __imatmul__

    return cls


@syntaxpatch
class Test:
    pass

a = Test()

a @= "name", 1234

print(a @ "name")
wise cargoBOT
#

@tiny socket :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 22, in <module>
003 | TypeError: unsupported operand type(s) for @: 'NoneType' and 'str'
tiny socket
#

!e

def syntaxpatch(cls):
    def __matmul__(self, other):
        return getattr(self, other)

    def __imatmul__(self, values: tuple):
        setattr(self, values[0], values[1])
        return self

    cls.__matmul__ = __matmul__
    cls.__imatmul__ = __imatmul__

    return cls


@syntaxpatch
class Test:
    pass

a = Test()

a @= "name", 1234

print(a @ "name")
wise cargoBOT
#

@tiny socket :white_check_mark: Your eval job has completed with return code 0.

1234
#

Hey @whole bear!

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

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

whole bear
#

oh

dense ibex
#

!e
print("1234")

wise cargoBOT
#

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

1234
#

Hey @whole bear!

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

zealous wave
zealous wave
tiny socket
#

because that doesnt take args

#

it takes an arg

zealous wave
#

ok just use arg then lol

tiny socket
#

arg doesnt make sense

zealous wave
#
def __imatmul__(self, *values):
#

how about that lol

tiny socket
#

wont work

#

i mean it would but it would only ever be a list of one arg

#

remember you're not calling Class.__imatmul__()

#

youre using a piece of python which calls that for you

zealous wave
#

ohh true

whole bear
paper tendon
whole bear
#
def array_diff(a, b):
    c = []
    for element_a in a:
        for element_b in b:
            if element_a != element_b:
                c.append(element_a)
tiny socket
#
for ea, eb in zip(a, b)
flat sentinel
#

BRUHHHH

faint ermine
#

@whole bear i have a solution

#

<>

rugged root
#

@rugged root

#

@rugged root

faint ermine
dense ibex
#

what about the staff one?

#

is there still that client side bug?

rugged root
faint ermine
paper tendon
#

🙂

dense ibex
#

#!

rugged root
#

[#412375055910043655](/guild/267624335836053506/channel/412375055910043655/)

paper tendon
#

<#!751591688538947646>

#

or

rugged root
#

#! voice

paper tendon
#

821020782741291008

rugged root
#

No space

#

That's my bad

#

I thought it was with

faint ermine
#

An individual's server-wide permissions are determined by adding up all the allows for roles assigned to that individual along with the allows for @everyone.

#

Channel permissions start with server permissions as a base. Then, the hierarchy is as follows:

Apply denies of `@everyone` on channel
Apply allows of `@everyone` on channel
Sum up all the denies of a member's roles and apply them at once
Sum up all the allows of a member's roles and apply them at once
Apply denies for a specific member if they exist
Apply allows for a specific member if they exist
whole bear
#

hello friends

#

im new on server

rugged root
#

Welcome to the server!

sick dew
#

hi

whole bear
#

what next?

#

how to stream/voice ? you code here on python?

dense ibex
#

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

im new in python, but want learn

dense ibex
#

follow that and you should be able to talk.

whole bear
#

!voice

dense ibex
#

You have to go to the #voice-verification and follow the instructions there

rugged root
#

!resources Oh if you're wanting to learn, we have a bunch of resources listed on our site. We typically suggest "Automate the Boring Stuff" and "A Byte of Python"

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.

rugged root
#

@whole bear

faint ermine
rugged root
faint ermine
somber heath
#

I have self control, but given a fitting opportunity, I will just gorge myself on bananas.

faint ermine
zealous wave
somber heath
#

Hemidemisemicolon.

sick cloud
#

whoes?

#

why did u rmv it tho?

#

but it was kinda cool to have a dev role
xdd

#

thx tho

clever needle
#

Hello!

dense ibex
#

Hey

sick cloud
#

Nasa Computers

#

imagine getting that folder

#

and editing it

dense ibex
#

@faint ermine so should I use the unreleased Psycopg 3 or just use 2?

faint ermine
#

2

dense ibex
#

Alright thank you!

rugged root
#

@zealous wave -thump rollllllll-

zealous wave
#

Ugh it takes so long to get to my pc

rugged root
#

Do you need someone to carry you to your desk, princess?

zealous wave
#

yes

#

honestly that message deserves a pin

faint ermine
#

why not just, scoot the desk over

rugged root
#

Which, mine?

zealous wave
#

yea, hemlocks

faint ermine
#

chilis

dense ibex
#

Postgres's default port is 5432 correct?

faint ermine
#

aye

#

which is a really nice port ngl

dense ibex
#

what 5432?

faint ermine
#

yea

dense ibex
#

oh ok

zealous wave
#

its missing 1

#

and I dont like it

dense ibex
#

ik 😦

#

it bothers me

rugged root
#

@zealous wave You've got some background noise

sick cloud
#

domain name server

rugged root
#

Back later, got some deliveries to take care of

undone idol
grand granite
#

@manic lichen niceee

remote glen
#

voice 0 guys

manic lichen
#

yes

sick garnet
#

what should i do to be able to speak?

undone idol
wise cargoBOT
#

Voice verification

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

sick garnet
#

oh i see

#

whats him doing

sick cloud
sick garnet
#

yeah idk either

undone idol
#

smhh

sick garnet
#

ohh ig is i guess

#

its about performance:))

#

where are you guys from

sick cloud
#

u?

warped saffron
#

Guys

#

please

#

just take a look at this meme

flat sentinel
warped saffron
#

I mean

#

no one could actually predict these kind of things from his point in time

#

think about how crushing it would be to a young Bill Gates if he travelled forward in time to see this

#

or maybe just really funny

#

or inspirational

#

who knows?

sick cloud
#

@whole bear what's up

whole bear
#

hi

#

nm

#

wbu

sick cloud
#

Finee

#

x)

whole bear
#

noice

#

working on sth rn?

sick cloud
#

yes, i have finish this paper

whole bear
#

oh good

sick cloud
#

im deing rn

#

very thirsty

whole bear
#

how much left?

#

oh good luck ;p

sick cloud
#

im in grade 10

#

yepp

#

im south africa

#

whaaa

orchid barn
#

what r u guys doin?

sick cloud
orchid barn
#

oh

#

i'm just chillin

sick cloud
#

copying the answere rn

orchid barn
#

XDDDDDD

sick cloud
#

i was doing it in the past

#

what is this voodoo

orchid barn
#

omg long time ago

#

doing logic design

#

bad old days

#

XD

#

what r u studyin gi?

sick cloud
#

its called logic gate

#

0_0

orchid barn
#

ah i see

sick cloud
#

last question gg

orchid barn
#

i finished my Bachelors in CS this semester

#

CS IS FUN

#

it's 4 years

#

yee

#

XDD

sick cloud
#

did u see that vid in yt?

#

about elon musk

#

talking about uni

orchid barn
#

i disagree WALKABOUT

#

you get helped by others in UNI much easier than in online settings 😄

#

especially in deep theoretical stuff

paper tendon
#

Ydks Yaas Yas

whole bear
#

my uni just provides me a structured syllabus and curriculum, thats it

sick cloud
paper tendon
sick cloud
#

use assembly for the kernal lol

whole bear
#

i ll b8r go complete my uni project

orchid barn
#

good luck

whole bear
#

criticising uni wont help me pass this semester

orchid barn
#

hahahah

#

i agree

whole bear
#

ye

sick cloud
whole bear
#

will the python server be able to help me with cpp

orchid barn
#

i studied c++

orchid barn
#

depends on the hardness of the problem

terse needle
orchid barn
#

there you go @whole bear

whole bear
#

i got 0 interest to do my prjct

sick cloud
orchid barn
#

Btw, rust is insanely fast and memory efficent

#

with no fudgin garbage collector

whole bear
#

this convo is just hilarious and nothing

orchid barn
#

it's so good to run on embeded devices

sick cloud
#

brb

shy wing
#

This is the best video to get started with Polish language https://goo.gl/ZABYUy Click here to learn Polish twice as fast with FREE PDF! ↓Check how below↓

Step 1: Go to https://goo.gl/ZABYUy
Step 2: Sign up for a Free Lifetime Account - No money, No credit card required
Step 3: Achieve Your Learning Goal and master Polish the fast, fun and easy...

▶ Play video
orchid barn
#
  • Krakow Poland
gentle flint
whole bear
#

my house view

orchid barn
terse needle
shy wing
gentle flint
orchid barn
gentle flint
orchid barn
#

XDDDDDDD

gentle flint
#

Boring is an unincorporated community in Clackamas County, Oregon, United States. It is located along Oregon Route 212 in the foothills of the Cascade mountain range, approximately twelve miles (19 km) southeast of downtown Portland, and fourteen miles (23 km) northeast of Oregon City. A bedroom community, Boring is named after William Harrison...

orchid barn
#

lubic lody?

terse needle
#

Penistone in scunthorp

orchid barn
#

XDDDDDDDDDDD

paper tendon
#

Fugging, formerly called Fucking (German: [ˈfʊkɪŋ] (listen); officially renamed in 2021), is an Austrian village in the municipality of Tarsdorf, located in the Innviertel region of western Upper Austria. The village is 33 km (21 mi) north of Salzburg and 4 km (2.5 mi) east of the Inn river, which forms part of the German border.
Despite having ...

terse needle
#

in yorkshire

orchid barn
rugged root
#

!tvmute 425201093929205780 1M Revoked your voice perms since you had noise coming through your mic

#

!echo you alive?

wise cargoBOT
#

you alive?

uncut meteor
#

!help tvmute

wise cargoBOT
#
Query "tvmute" not found.

Did you mean:
mute
tempmute
unmute
vote
time

rugged root
#

!tvban 425201093929205780 1M Revoked your voice perms since you had noise coming through your mic

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @sly gale until 2021-04-26 17:46 (59 seconds).

rugged root
#

Your video you were watching was coming through, and you didn't seem able to hear us to turn it off

sly gale
#

oh i am very sorry for the inconvenience

manic lichen
paper tendon
#

Activists use 'Fucking' for good
The small village largely escaped the notice of the wider world until the birth of the internet, when it was frequently included on lists of the funniest or most explicit place names.

Last year, some local residents used the unusual name to help in their activism, for example, by putting signs above and below the sign to read message like "Our climate is — Fucking — important!"

Fugging apparently better reflects the pronunciation of the town by locals. It is unclear what will happen to the current town signs.

terse needle
terse needle
harsh hazel
#

@manic lichen Patrick Volkerding

sick cloud
#

!echo you alive?

#

;-;

whole bear
#

?

gentle flint
#

!

orchid barn
#

verbose

#

do you exercise?

gentle flint
#

barely

#

do you?

orchid barn
#

i don't

wise cargoBOT
#

Hey @whole bear!

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

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

gentle flint
#

I should though

orchid barn
#

i'm trying to correct my habit

gentle flint
#

occasionally I go cycling for an hour

#

but that's about all

orchid barn
#

i'm so amazed

whole bear
#

I have a habit of using cisco routers and cisco switches

gentle flint
orchid barn
#

how dedicated i was for colleuge or work

#

but never to my health

#

is so weird

whole bear
orchid barn
#

its*

whole bear
#

im also pretty good with linux when it come's to osint

gentle flint
#

what distro do you use?

gentle flint
whole bear
#

Ubuntu even though kali seem's more preferable

#

I have both of the disk images

orchid barn
#

i'm reading Atomic habits,Deep work, Can't hurt me.
it's so enlightening

#

do you exercise @dense ibex ?

dense ibex
#

Yeah, I work out almost everyday

#

I have a gym in my basement so that's why

orchid barn
#

what keeps you going?

dense ibex
#

I just like to be in shape, since I spend a lot of time on the computer I want to at least be in shape.

orchid barn
#

nice self-awarness!

#

keep up the good work

whole bear
#

use reverse tcp meterpreter to listen on hosts for dns tracerouting and information gathering

#

my bad a nerd is on my computer

flat sentinel
#

i will not call ѓ

gentle flint
#

gj?

#

why gj

flat sentinel
#

ytes

#

yes

#

weary dark past

manic lichen
gentle flint
#

Ѓемал

manic lichen
#

👉 👈

flat sentinel
#

Ќ

gentle flint
#

Ќемал

flat sentinel
#

Ш

#

Ж

gentle flint
#

у пичку материну

manic lichen
#

Luke Robert Burgin (but with a line over the u) Bretschnieder Haus is my ful name

flat sentinel
#

“„

flat sentinel
orchid barn
#

kemal how do you write OOF in your langauge XDDDDDDD

#

?

gentle flint
#

уф

flat sentinel
#

ОФФ

#

ООФ

gentle flint
#

no no

#

Уф

#

uf

flat sentinel
#

well yes

manic lichen
#

Owe (I'm) Fucking Feeling (pain)

orchid barn
#

my new nickname

#

the Уф cult

#

join in

#

verbose have you finished your tests? XD

gentle flint
#

some of them

#

I have 7 so far

orchid barn
#

nicee

#

how much left

gentle flint
#

Uh

#

lemme check

#

14 functions to test

#

I wildly overestimated the necessary number yesterday

orchid barn
#

CF

#

xDD

#

push the changes on your git

gentle flint
#

I did

#

yesterday

orchid barn
#

oh

#

ok

gentle flint
#

they're on the feature branch of flightplandb-py, if you care to check

#

let's see

#

Yeah, I remembered

#

hurrah

orchid barn
#

i'll mess with it see if i can contribute

gentle flint
#

k

#

I mean, tests are pretty simple

#

a third is already finished

#

so the rest can mostly use the same template

orchid barn
#

ye

#

but i want to understand the project

#

incase it got bigger

#

i can help

gentle flint
#

ah ok

#

it does http requests and shows the data to the user as dataclasses

#

and vice versa

orchid barn
#

ah

dense ibex
orchid barn
#

don't wish

#

change your presence

#

verbose

#

your wrote the doc?

gentle flint
#

which doc?

orchid barn
gentle flint
#

yeah

orchid barn
#

you r insane

#

good job

gentle flint
#

no I'm not

#

thx

orchid barn
#

XDD

#

i'm learning from you

#

man

gentle flint
#

lol

#

I've been working on this since last August

#

or smth like that

orchid barn
#

it's like 4-5 month?

gentle flint
#

smth like that think

orchid barn
#

hahahahahah

#

you r funny too

#

XDDDDDDDDDDDDD

gentle flint
#

o

#

k

#

then

orchid barn
#

hhhhhhhhhhhh

#

omg

#

did he just do that?

orchid barn
#

verbose do you have nice tut for making docs?

gentle flint
#

not really

#

uh

#

I used sphinx

orchid barn
gentle flint
#

there's this

orchid barn
#

me while reading your doc

flat sentinel
uncut meteor
orchid barn
#

why u takin 3rd gene?

#

generation

#

for ryzen 5

#

take 5600x

uncut meteor
#

wasn't out when I go it

#

or I woulda

#

probs

orchid barn
#

oh

#

sorry i wasn't there when u were talkin

#

XD

#

ah i see

#

i'm buildin a new pc

#

i'mma take your

#

opinion

uncut meteor
orchid barn
dense ibex
#

!src

wise cargoBOT
orchid barn
gentle flint
stuck furnace
#

We have a sweat-shop full of helpers.

#

Lemon said if I make 1000 pairs of socks I can see my family...

gentle flint
#

quickly and sneakily multiplies by a factor of 10 from 100 to 1000

stuck furnace
#

Called what?

gentle flint
#

Grote

stuck furnace
#

Oh, is that how it's pronounced? 😄

#

At least he's not called ᘣᘏᗢᕦᘏᗢ🐈ᓇᘏᗢᓇᘏᗢᓇᘏᗢ🐈ᓇᘏᗢ

gentle flint
#

@elfin fractal I have a strong suspicion that you chose your name simply so that non-Dutch people would be unable to pronounce it

stuck furnace
#

They're making offerings.

elfin fractal
#

I'm not sure anymore why I chose it.

gentle flint
#

k then

#

less sadistic than I thought

elfin fractal
#

I am pretty tall, that may have been it.

#

189cm

gentle flint
#

ah, 2 taller than me

elfin fractal
#

Grote is dutch for big

gentle flint
#

I know

stuck furnace
#

👨‍🎨

gentle flint
#

I'm Dutch

elfin fractal
#

ah

gentle flint
#

which is possibly why I'm almost as tall as you

tiny socket
gentle flint
#

burrrrrning

dense ibex
#

fire

elfin fractal
#

Yeah, I'm not that tall compared to others in this country

stuck furnace
#

Rude, Jake 😄

olive hedge
# tiny socket

oh yeah, where even are you, you have cell service? xD

#

when I camp I need to go completely dark, haha

dense ibex
orchid barn
#

@harsh hazel just fell

#

XD

harsh hazel
#

no that was my dad at the door

#

in case you're wondering why it was rattling, that's my lock. It's a latch lock, and they can bash on the door to open it whenever they want

#

the lock physically doesn't work because it's a barn door with a latch lock

#

i hate it

gentle flint
#

that's where it all went when the tourists stopped coming to smoke it

#

surface='GRASS'

tiny socket
#

!remind 18h random space font

wise cargoBOT
#
Alright.

Your reminder will arrive in 18 hours!

#
Missing required argument

expiration

#
Reminders for _jake#0001

Reminder #2012: expires in 28 days, 18 hours, 56 minutes and 54 seconds (ID: 2012)
Hello

dense ibex
#

oops

stuck furnace
#

Erm, I usually start by making an inventory of the concepts required.

wise cargoBOT
#
Yep.

That reminder has been deleted successfully!

orchid barn
#

fisher program time complexity

#

O(n!)

#

verbose O(n^n)

olive hedge
orchid barn
#

xD

#

hahahahaah

#

meanwhile my program

harsh hazel
#

Also, to bring up something random, my browser, chrome, has been running like DOGSHIT recently. A friend of mine has also been reporting that his browser runs like ass.

orchid barn
#

study data structures and algorithms

harsh hazel
#

Don't know what caused it, but it's probably just google servers being dumb.

orchid barn
#

or abstract the problem

#

then search for solutions

#

or problems that are similair

#

then see what ppl has done

#

and get good at searching google

#

I agree with @rugged root

#

even if you had taken a course like DS and Algo

#

if you don't practice u will lose the knowledge

terse needle
orchid barn
#

@sly gale

harsh hazel
#

Also, for some reason, chrome stopped showing up in hidden icons and stopped running in the background

#

because windows dumb stupid

terse needle
orchid barn
#

ot

#

it's insane

#

i'll restart my pc

#

brb

terse needle
harsh hazel
#

the fact that i haven't updated to the newest windows update which is just a microsoft edge legacy patch

#

but still

#

i dunno

terse needle
#

anyone have any idea how I can cut selected text with vim, cant find iy anywhere

orchid barn
#

verbose

#

when i went to tests and ran python -m unittest

#

it errored

#
Ran 3 tests in 0.001s

FAILED (errors=3)
#
ERROR: test_weather (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: test_weather
Traceback (most recent call last):
  File "C:\Users\CreativeSelf\miniconda3\lib\unittest\loader.py", line 436, in _find_test_path
    module = self._get_module_from_name(name)
  File "C:\Users\CreativeSelf\miniconda3\lib\unittest\loader.py", line 377, in _get_module_from_name
    __import__(name)
  File "D:\Program files on HDD\git-contrib\flightplandb-py\tests\test_weather.py", line 3, in <module>
    from flightplandb.submodules.weather import WeatherAPI
ModuleNotFoundError: No module named 'flightplandb.submodules
gentle flint
#

Well, yes

#

you'll need to install the module first

orchid barn
#

hmm i installed it

#

0,0

gentle flint
#

locally?

#

in a venv?

orchid barn
#

ye

#

not in venv

gentle flint
#

I'm intrigued

#

Oh

#

Wait

#

I had a thought

orchid barn
#

once sec

olive hedge
#

hooray for flight

orchid barn
#

i'll try something

#

oh everything worked nvm @gentle flint

hard locust
#

using the apple silicon python (opencv) pyautogui I am trying to get a screenshot, but having no luck

gentle flint
#

oh

#

ok then

paper tendon
#

off and uf thats so uwu 😄

gentle flint
#

was it the venv that fixed it?

harsh hazel
gentle flint
harsh hazel
#

no stop

gentle flint
#

you're literally called fluffball

#

who are you to complain

harsh hazel
#

it's an inside joke

#

what about it

gentle flint
#

uh-huh

#

when furball

paper tendon
pliant crane
#

Does anybody know how to make a chat server that can be accessed globally?

dense ibex
harsh hazel
pliant crane
#

😦

harsh hazel
#

well, you asked.

tiny socket
pliant crane
#

I meant how to make one.

orchid barn
#

@gentle flint i'm gonna do plan test

harsh hazel
#

nah i've got no clue

gentle flint
#

k

#

I'm in the middle of the nav one
mind you git clone off the feature branch @orchid barn

paper tendon
gentle flint
#

so that's all to the good

orchid barn
#

nice

gentle flint
#

ah fuck I found a bug

paper tendon
#

uf team 🙂

gentle flint
#

forgot to cast one dict to dataclasses

olive hedge
paper tendon
gentle flint
#

@paper tendon lol yes

#

all it'll crash is any app which uses it and doesn't handle incorrect input

#

lol

stuck furnace
#

Yes, Griff 😄

pliant crane
#

So no one can give me tips and/or tell me how to make a global chat server in python?

gentle flint
#

I can't.

harsh hazel
#

mans really used magenta fill tool and then drew the copyright logo in orange in fuckin ms paint

stuck furnace
#

Could you explain it in relation to fish and chips?

harsh hazel
#

it's like if you put an entire citrus fruit onto chips

olive hedge
#

actually that would have been easier

#
Sour patch is like fish and chips without the chips, but the fish is like a gummy bear and the batter is a mix of citric acid and sugar.
stuck furnace
#

Ah right. Now I understand.

#

"Don't ping Joe" hemshake

olive hedge
#

jake just ghost pinged you

#

on accident

hard locust
#

so can anyone help with M1 silicon pythong screen capture (position)

whole rover
#

WOW

#

wow jake

#

wow.

gentle flint
#

wow indeed

dense ibex
#

Sorry 😦

gentle flint
#

the monster has been awoken

dense ibex
#

lmao

tiny socket
whole rover
#

apology accepted

#

wtf???? what did the brits do

gentle flint
#

exist

#

colonise the USA

whole rover
#

y'all should be happy I didn't rebel after you passed the 3rd amendment

#

i liked lodging in your houses without permission

harsh hazel
#

what

olive hedge
#

😠

#

dont you dare quarter in my house, dammit

harsh hazel
#

you can't come in

#

no

#

not allowed

gentle flint
#

he'll just put it in law

#

then he'll be allowed

#

as prescribed by law

tiny socket
harsh hazel
#

i don't want you in my house

gentle flint
#

tuff

olive hedge
#

list.amend()

gentle flint
#

law.amend()

dense ibex
#

hi @vivid palm 👋

gentle flint
#

constitution.amend()

olive hedge
#

!rule 0

wise cargoBOT
#

:x: Invalid rule indices: 0

gentle flint
#

constitution.pop("gun laws")

olive hedge