#voice-chat-text-0

1 messages ยท Page 731 of 1

sonic wraith
#

import random
quedictionary = { 1: "How much ocean territory does India occupy?\n\n(a) 70,560,000 square kilometers\n(b) 90,000,000 square kilometers\n(c) 100,000,000 square kilometers\n(d) 23,400,000 square kilometers",
2: "How many countries does India border?\n\n(a) 7\n(b) 12\n(c) 20\n(d) 18",
3: "Third question"}

list_of_random_questions = random.sample(list(quedictionary), 3)
for i in list_of_random_questions:
print(quedictionary[i])

#

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

sonic wraith
#

import random
quedictionary = { 1: "How much ocean territory does India occupy?\n\n(a) 70,560,000 square kilometers\n(b) 90,000,000 square kilometers\n(c) 100,000,000 square kilometers\n(d) 23,400,000 square kilometers",
2: "How many countries does India border?\n\n(a) 7\n(b) 12\n(c) 20\n(d) 18",
3: "Third question"}

list_of_random_questions = random.sample(list(quedictionary), 3)
for i in list_of_random_questions:
print(quedictionary[i])

#

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

frank thicket
#

what is this ?!๐Ÿ™„

sonic wraith
#

import random
quedictionary = { 1: "How much ocean territory does India occupy?\n\n(a) 70,560,000 square kilometers\n(b) 90,000,000 square kilometers\n(c) 100,000,000 square kilometers\n(d) 23,400,000 square kilometers",
2: "How many countries does India border?\n\n(a) 7\n(b) 12\n(c) 20\n(d) 18",
3: "Third question"}

list_of_random_questions = random.sample(list(quedictionary), 3)
for i in list_of_random_questions:
print(quedictionary[i])

wise cargoBOT
#

@eternal bough :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 4
002 |     3: "Third question
003 |                       ^
004 | SyntaxError: EOL while scanning string literal
#

@eternal bough :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 4
002 |     3: "Third question}
003 |                        ^
004 | SyntaxError: EOL while scanning string literal
#

@eternal bough :white_check_mark: Your eval job has completed with return code 0.

001 | How many countries does India border?
002 | 
003 | (a) 7
004 | (b) 12
005 | (c) 20
006 | (d) 18
007 | How much ocean territory does India occupy?
008 | 
009 | (a) 70,560,000 square kilometers
010 | (b) 90,000,000 square kilometers
011 | (c) 100,000,000 square kilometers
... (truncated - too many lines)

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

glossy dragon
#

does any one use pygame

noble copper
#

queDictionary = { 1: { "q": "How much ocean territory does India occupy?\n\n(a) 70,560,000 square kilometers\n(b) 90,000,000 square kilometers\n(c) 100,000,000 square kilometers\n(d) 23,400,000 square kilometers", "a": None }

glossy dragon
#

my pygame doesnt work i can install the library but then python say that there is no module named pygame

dense ibex
rugged root
#

py -m pip install -U discord.py

#

py -0

wise cargoBOT
#

Hey @dense ibex!

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

rugged root
#

py -m pip list

dense ibex
#

Package Version


-ip 20.2.3
astroid 2.4.2
attrs 20.3.0
certifi 2020.12.5
cffi 1.14.4
chardet 4.0.0
colorama 0.4.4
gevent 20.12.1
greenlet 0.4.17
idna 2.10
isort 5.7.0
lazy-object-proxy 1.4.3
mccabe 0.6.1
multidict 5.1.0
pip 20.2.3
pycparser 2.20
pylint 2.6.0
pypresence 4.0.0
setuptools 49.2.1
six 1.15.0
toml 0.10.2
typing-extensions 3.7.4.3
urllib3 1.26.2
wrapt 1.12.1
yarl 1.6.3
zope.event 4.5.0
zope.interface 5.2.0

rugged root
#

py -m pip uninstall chardet

#

py -m pip install -U pip

dense ibex
#

ERROR: Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: 'c:\python39\lib\site-packages\pip-20.2.3.dist-info\entry_points.txt'
Consider using the --user option or check the permissions.

faint ermine
rugged root
#

Back in a sec, this is really bad

amber raptor
#

!venv

#

python -m venv .env

rugged root
#

Honestly kind of surprised we don't have a tag for venv

faint ermine
#

!e ```py
class Base():
def do_sth(self, value):
subclasses_types = {c.TYPE:c for c in Base.subclasses()}
clas = subclasses_types.get(type(value), Base)
return clas(value)

class HandleInt(Base):
TYPE = int
def init(self, val):
self.val = val

a = Base()
b = a.do_sth(15)
print(isinstance(b, HandleInt))

wise cargoBOT
#

@faint ermine :white_check_mark: Your eval job has completed with return code 0.

True
faint ermine
#
def all_subclasses(cls):
    return set(cls.__subclasses__()).union(
        [s for c in cls.__subclasses__() for s in all_subclasses(c)])
rugged root
#

I want to scream at Datto

#

Why can you not more easily pick and choose what you get

amber raptor
#

Heh

rugged root
#

You can get a folder and down, but you can't just cut it off at the folder's root contents and no child folders within and their contents

amber raptor
#

I think selecting the folder and not subfolder will restore all the contents with no recurse

rugged root
#

I think it's straight up recursive

#

I'm really not sure anymore

#

It's in our IT's hands to get the files I need

wooden hornet
#

@faint ermine

#

client <-> server

#

client <-> mitm (server) <-> mitm (emulated client) <-> server

#

client <-> mitm (server) <-> mitm (emulated client) <-> online free proxy <-> server

faint ermine
versed island
faint ermine
#

Slim Launcher

rugged root
#

Oh good. My Discord is going in and out of crashing.

sonic wraith
#
import random 
inputseg1 = input("")
setseg1 = set()
scoreseg = 0
quedictionary = {
    1 : "How much ocean territory does India occupy?\n\n(a) 70,560,000 square kilometers\n(b) 90,000,000 square kilometers\n(c) 100,000,000 square kilometers\n(d) 23,400,000 square kilometers\n",
    2 : "How many countries does India border?\n\n(a) 7\n(b) 12\n(c) 20\n(d) 18\n",
    3 : "Fourth question", 
    4 : "Fifth question",
    5 : "Sixth question"}
ansdictionary = {
    1 : "Option A",
    2 : "Option D", 
    3 : "c", 
    4 : "d",
    5 : "a", 
    6 : "b"}
questions_displayed = 0
while inputseg1 == "/run":
  random_question_num = random.choice(list(quedictionary.keys()))
  if random_question_num not in setseg1:
    setseg1.add(random_question_num)
    print(quedictionary[random_question_num])
    user_answer = str(input())
    if user_answer == ansdictionary[random_question_num]:
      print("\nCorrect!")
      scoreseg = scoreseg+1
      print("\nScore : ", scoreseg, "\n\n")
    else:
      print("\nIncorrect!")
      print("\nScore : ", scoreseg, "\n\n")
    questions_displayed += 1
# to be added if scoreseg > 7 :
  #print("You Passed!\nYour score was,", scoreseg)
#else :
  #print("You failed!\nYour score was,", scoreseg,". At the minimun, 7 points are required to pass.\nYour score was ", 7 - scoreseg, "less, than the required amount.")```
fading mantle
#

I thought you were Irish laundmo lol

sonic wraith
#

yeah, so what can I do to fix it?

eternal bough
#

while the counter thing I did:

sonic wraith
#

could you send it again?

faint ermine
#
questions_left = 4 # how many questions are still left for the user to answer
while questions_left > 0: # only continue the loop of there are more than 0 questions left
    print("a")  # do some work
    if some_condition: # if another questions is added
        questions_left += 1 # add 1 to the question amnount
    questions_left -= 1 # one question done.
sick cloud
#

@hushed elm is dat u in ur pfp ?

hushed elm
#

yes

gusty siren
#

.

hushed elm
sick cloud
hushed elm
#

.

#

.

faint ermine
#

!e ```py
import JUST_IMPORT_ME

wise cargoBOT
#

@faint ermine :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | ModuleNotFoundError: No module named 'JUST_IMPORT_ME'
sick cloud
rugged root
#

@hushed elm Wait is that actually you in your photo?

gusty siren
rugged root
#

Very handsome. Nice beard as well

hushed elm
#

eyyy ty

rugged root
#

I wish I could beard

faint ermine
sick cloud
#

dark hair color is always a gud thing, ig

faint ermine
#

wait what

hushed elm
#

gotta do some push-ups get your testosterone high

sick cloud
rugged root
faint ermine
#

not really

gusty siren
hushed elm
#

patchy is the worst for beard growers :(:(

sick cloud
#

alr, i'll ya'll a few weeks later b y e e e

sick cloud
gusty siren
faint ermine
gusty siren
#

yeah your hair is nice

hushed elm
rugged root
#

Chia-laund

faint ermine
#

chia?

rugged root
versed island
#

Nice laundmo

gusty siren
#

B R U H

hushed elm
faint ermine
hushed elm
#

๐Ÿฅฆ

versed island
#

@sick cloud sup

gusty siren
#

which company you work in @amber raptor

sick cloud
versed island
#

I scared of big business eating my startup

rugged root
#

Om nom nom

hushed elm
hushed elm
rugged root
#

And why would that be bad? Isn't the dream of a startup to get bought out for a crap ton of money?

versed island
hushed elm
versed island
#

i wanna be rich like other but not famous ๐Ÿ˜ฃ

rugged root
#

Then yeah, getting bought up by big business should be your ideal situation

versed island
#

A good startup is something that that drags the mat under the feet of an existing company ... u need a team of good people to execute the stuff

hushed elm
#

drag the mat

#

execute all the stuff

#

execution is king

versed island
# hushed elm why kinda

kinda bcz ... I'm working and upping my skills at the same time ... I know that I can't handle the scale with my current skills

hushed elm
#

marketing is queen

#

hhh

versed island
#

the market is constant

#

and really high tech stuff has a high barrier for entry

#

For normal folks

hushed elm
versed island
#

And for normal people i guess u really have to undercut the existing stuff ... Bypass would be a better word

rugged root
#

I may or may not start screaming here in a bit

#

Not anymad more just.... resigned but still want to scream. The database bs still

versed island
#

Why is no code such a big appeal

#

Simplifying the existing code should be a priority

#

No code is for noobs

rugged root
hushed elm
#

haha yeah

versed island
#

U can't optimize a no code solution

rugged root
versed island
#

Not bad at all

#

I am just saying it's more misguiding people

#

That stuff is possible without coding

rugged root
#

Not really sure anyone wholeheartedly believes that

#

This is more about giving people more power to do things

versed island
#

Hmm

rugged root
#

Hey LX

stuck furnace
#

Hey ๐Ÿ‘‹

#

How goes?

rugged root
#

Could be better

versed island
#

I mean like i just saw a guy using no code app with excel as backend

rugged root
#

Struggling against a database crapping itself inside out

#

Prime, it doesn't have to be pretty. Most people just want stuff that works

#

And if it increases their productivity or serves their needs, what does it matter?

versed island
#

He was trying to start a startup like tinder

rugged root
#

Then he'll find out the hard way

#

Is what it is

#

Trying to get back on, currently talking to our IT folks again. Somehow, despite hitting CTRL + A, it didn't copy all the backup files I just got from them

versed island
#

I have also tried to understand what does the clipboard store

#

And how does it

rugged root
#

Would assume it'd be similar for other OS'

versed island
#

oh thanks

digital jackal
#

quick question

rugged root
#

Quick answer

digital jackal
#

i know weve talked abt it

#

but what does the @ in python do

stuck furnace
#

Would it be inappropriate to just put that information on the resume? ๐Ÿ˜„

rugged root
#

It's a decorator

digital jackal
#

?

stuck furnace
#
@foo
def bar():
    ...
``` is the same as ```python
def bar():
    ...

bar = foo(bar)
digital jackal
#

wait

#

im processing

#

wht is happening

#

what is foo

#

and what is it reffering to

stuck furnace
#

So, foo is a function that takes a function and returns another function. This returned function replaces bar

#

Would you like a couple of examples?

digital jackal
#

ofc

stuck furnace
#

Alright. You might have a decorator that modifies a function so that it prints each time it is called:

amber raptor
#

Bye stel

vestal mason
#

Hey guys

stuck furnace
#

!eval ```python
def trace(fn):
def modified_fn(*args, **kwargs):
print(f"Calling {fn.name}...")
return fn(*args, **kwargs)
return modified_fn

@trace
def factorial(n):
if n <= 1:
return 1
return n * factorial(n-1)

print(factorial(4))

wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

001 | Calling factorial...
002 | Calling factorial...
003 | Calling factorial...
004 | Calling factorial...
005 | 24
digital jackal
#

omg...

rugged root
#

Why do I always forget about __name__

digital jackal
#

what is happening

#

so @trace is calling a function?

versed island
#

rewriting the resume is imp

stuck furnace
#
def trace(fn):
    def modified_fn(*args, **kwargs):
        print(f"Calling {fn.__name__}...")
        return fn(*args, **kwargs)
    return modified_fn

def factorial(n):
    if n <= 1:
        return 1
    return n * factorial(n-1)

factorial = trace(factorial)

print(factorial(4))
digital jackal
#

um

versed island
#

you dont have to be honest in resume ... you just need to get past the HR @faint ermine

digital jackal
#

im kinda a beginner ish

#

not a beginner

#

just...

stuck furnace
digital jackal
#

wanna hop on code help?

stuck furnace
#

See how the trace function defines and returns a new function (a modified version of the argumentfn).

#

Suddenly quiet ๐Ÿ˜„

digital jackal
#

but for what purpose

#

like it calling it

#

then returning it?

stuck furnace
#

The modified version of the function prints out a message each time it is called.

digital jackal
#

but where is trace defined?

#

and what modification is it doing?

stuck furnace
#
def trace(fn):
    def modified_fn(*args, **kwargs):
        print(f"Calling {fn.__name__}...")
        return fn(*args, **kwargs)
    return modified_fn
digital jackal
#

ah k

#

what is fn

#

function?

stuck furnace
#

Yep

digital jackal
#

and *args

#

**kwargs

#

what are those

stuck furnace
#

"I will find you, and I will refactor your code base"

stuck furnace
#

**kwargs produces a dict that contains all of the given keyword arguments.

digital jackal
#

and what keywords is it giving?

stuck furnace
#

Erm, let me demonstrate...

#

The idea is that they allow for any arguments, which can then be passed into the function unchanged.

#

!eval ```python
def foo(*args, **kwargs):
print('args:', args)
print('kwargs:', kwargs)

foo(1, 2, a=3, b=4)

wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

001 | args: (1, 2)
002 | kwargs: {'a': 3, 'b': 4}
stuck furnace
#

Most of the time, you're not writing your own decorators but using ones provided by a library, or from the python standard library.

digital jackal
#

yeah

#

cz see

#

im doing a discord but

#

then i saw this random function

#

i was like what the hell is this

#

i thought it was smth in linux command prompt

stuck furnace
#

Oh right

digital jackal
#

so

#

wait

#

if i puted @foo at the end

#

what will it do

#

print them?

stuck furnace
#

Invalid syntax, if i understand your question.

faint ermine
#

decorators are literally just syntactic sugar for

def my_func():
    pass
my_func = decorator(my_func)

this is what a decorator does, but nicely

digital jackal
#

like just put @foo at the end

faint ermine
#

at the end wont work

digital jackal
#

but its like applying parameters?

faint ermine
#

decorators have to be in front of the function

digital jackal
#

okay

stuck furnace
#

No problem ๐Ÿ˜„

bronze vault
#

can any one join a vc for 1 minute and help me

#

litteraly the easiest question for one of yall

stuck furnace
#

Posted an example earlier @faint ermine

stuck furnace
#

Right, I see

faint ermine
#

!e ```py
def my_decorator(function):
print(function)
return function

@my_decorator
def my_func():
print("func has run")

wise cargoBOT
#

@faint ermine :white_check_mark: Your eval job has completed with return code 0.

<function my_func at 0x7f9c49202af0>
faint ermine
#

!e ```py
def my_decorator(function):
print(function)

@my_decorator
def my_func():
print("func has run")

my_func()

wise cargoBOT
#

@faint ermine :x: Your eval job has completed with return code 1.

001 | <function my_func at 0x7f52d5c6b940>
002 | Traceback (most recent call last):
003 |   File "<string>", line 8, in <module>
004 | TypeError: 'NoneType' object is not callable
stuck furnace
#

!eval
It doesn't even necessarily have to return a function. It is literally the same as my_func = my_decorator(my_func)

def my_decorator(fn):
    return 42

@my_decorator
def foo():
    ...

print(foo)
wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

42
stuck furnace
#

It's just 'syntactic sugar'

faint ermine
stuck furnace
#

Compare:

@decorator1
@decorator2
@decorator3
def foo():
    ...
``` to ```python
def foo():
    ...
foo = decorator3(foo)
foo = decorator2(foo)
foo = decorator1(foo)
#

There are a few useful decorators in the standard library.

#

For example functools.cache, which modifies a function so it saves previous results in a dictionary instead of re-computing them.

rugged root
#

!e

from time import perf_counter, sleep

def time_decorator(func):
  def wrapper():
    start = perf_counter()
    func()
    time_passed = perf_counter() - start
    print(f"The function took {time_passed} seconds.")
  return wrapper

@time_decorator
def tester():
  sleep(2)

tester()
wise cargoBOT
#

@rugged root :white_check_mark: Your eval job has completed with return code 0.

The function took 2.010064730013255 seconds.
stuck furnace
#

It's nice ๐Ÿ˜„

faint ermine
#

ipython gang:

%time tester()
#

!f-strings

wise cargoBOT
#

In Python, there are several ways to do string interpolation, including using %s's and by using the + operator to concatenate strings together. However, because some of these methods offer poor readability and require typecasting to prevent errors, you should for the most part be using a feature called format strings.

In Python 3.6 or later, we can use f-strings like this:

snake = "Pythons"
print(f"{snake} are some of the largest snakes in the world")

In earlier versions of Python or in projects where backwards compatibility is very important, use str.format() like this:

snake = "Pythons"

# With str.format() you can either use indexes
print("{0} are some of the largest snakes in the world".format(snake))

# Or keyword arguments
print("{family} are some of the largest snakes in the world".format(family=snake))
stuck furnace
#

Name of a function:

#

!eval ```python
def foo():
...

print(foo)
print(foo.name)

wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

001 | <function foo at 0x7f01f45cf040>
002 | foo
bronze vault
#

can any one join a vc for 1 minute and help me
litteraly the easiest question for one of yall

rugged root
#

Student()

stuck furnace
bronze vault
#

ok cool

stuck furnace
rugged root
#

``py

stuck furnace
#

The official python tutorial might be good @digital jackal

bronze vault
#

@stuck furnace can you send me a friend request so we can talk?

stuck furnace
#

Uber a twix

bronze vault
#

I just joined so i cant talk but im in need of help

stuck furnace
#

Or a banana

honest pier
#

uber eats

rugged root
#
class Student:
  def __init__(self, name, age):
    self.name = name
    self.age = age

  def introduce(self):
    print(f"Hello, my name is {self.name}!  I am {self.age} years old.")

sally = Student("Sally", 5)
billy = Student("Billy", 7)
honest pier
eternal bough
#

In this Python Object-Oriented Tutorial, we will begin our series by learning how to create and use classes within Python. Classes allow us to logically group our data and functions in a way that is easy to reuse and also easy to build upon if need be. Let's get started.

Python OOP 1 - Classes and Instances - https://youtu.be/ZDa-Z5JzLYM
Python...

โ–ถ Play video
rugged root
#

sally.introduce()

#

Student.introduce(sally)

#

!e

class Student:
  def __init__(self, name, age):
    self.name = name
    self.age = age

  def introduce(self):
    print(f"Hello, my name is {self.name}!  I am {self.age} years old.")

sally = Student("Sally", 5)
billy = Student("Billy", 7)
print(sally.__name__)
wise cargoBOT
#

@rugged root :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 11, in <module>
003 | AttributeError: 'Student' object has no attribute '__name__'
rugged root
#

!e

class Student:
  def __init__(self, name, age):
    self.name = name
    self.age = age

  def introduce(self):
    print(f"Hello, my name is {self.name}!  I am {self.age} years old.")

  def __str__(self):
    return f"{self.name}: Age {self.age}"

sally = Student("Sally", 5)
billy = Student("Billy", 7)
print(sally)
print(billy)
wise cargoBOT
#

@rugged root :white_check_mark: Your eval job has completed with return code 0.

Sally: Age 5
honest pier
#

sally.__class__.__name__

stuck furnace
#

Got there before me ๐Ÿ˜„

honest pier
#

๐Ÿ˜”

stuck furnace
#

So what's everyone up to?

honest pier
#

studying

gentle flint
#

shivering
I'm gonna get some tea

#

how about you?

amber raptor
#
    def __init__(self,tts:bool=None,embed:list=None,allowed_mentions:list=None,messagetype:int=None) -> None:
        if tts is None:
            self.tts = False
        else:
            self.tts = tts
        if embed is None:
            self.embed = []
        else:
            self.embed = embed
        if allowed_mentions is None:
            self.allowed_mentions = []
        else:
            self.allowed_mentions = allowed_mentions
        if messagetype is None or messagetype not in [2,3,4,5]:
            self.messagetype = 4
        else:
            self.messagetype = messagetype```
honest pier
#

do you have no spaces to fit under 79 chars

stuck furnace
#

Coincidentally I'm also wearing bandages on my fingers Hemlock. Gave myself eczema from covid hand-washing lemon_pensive

amber raptor
honest pier
#

๐Ÿ˜”

amber raptor
#
class DiscordReturnMessage:
    def __init__(self, tts:bool=None, 
        embed:list=None, 
        allowed_mentions:list=None, 
        messagetype:int=None) -> None:
        """Acceptable message types for messagetype are:
        2 - ACK a Command with no return
        3 - Respond with Message, don't show user input
        4 - Respond with message, show the user's input
        5 - ACK a command and show the user message
        """``` Happy??
stuck furnace
#

Fixed it in my own favoured style ๐Ÿ˜„

    def __init__(
        self,
        tts:                bool    = None,
        embed:              list    = None,
        allowed_mentions:   list    = None,
        messagetype:        int     = None,
    ) -> None:
        ...
faint ermine
#

black style ^^

amber raptor
#

I'm building Azure Functions for discord slash commands

#

here is some more triggering

#
return func.HttpResponse(json.dumps(DiscordReturnMessage(messagetype=3).message(f"Your Total is {roll}")), status_code=200)```
faint ermine
#

black formatted

        return func.HttpResponse(
            json.dumps(
                DiscordReturnMessage(messagetype=3).message(f"Your Total is {roll}")
            ),
            status_code=200,
        )
stuck furnace
#

79's good because you can have like 4 code files open side-by-side on a normal-sized monitor.

amber raptor
#

That's alot of code to have open

stuck furnace
#

Okay, just tried it. Maybe three not four ๐Ÿ˜„

honest pier
stuck furnace
#

Maybe ๐Ÿ˜„

#

Things that happened at the start of last year (pre-covid) feel like an eternity ago.

#

Gregor Ian?

rugged root
#

It was either Greg or Ian

#

Not sure which

stuck furnace
#

Just got it lemon_pensive

#

Yeah, I should really head to bed to be honest.

#

Also, horns?

honest pier
#

๐Ÿคก

stuck furnace
#

Alright, that's not even a joke Hemlock ๐Ÿ˜„

#

That's like the idea of a joke.

#

Get your blood sugar up.

honest pier
faint ermine
stuck furnace
#

Anyway, I gtg. Cya ๐Ÿ‘‹

dire folio
faint ermine
amber raptor
honest pier
#

๐Ÿ‘€

dire folio
#

๐Ÿ˜„

gentle flint
honest pier
#

:)

gentle flint
rugged root
#

: )

gentle flint
amber raptor
honest pier
#

๐Ÿฅต ๐Ÿ˜ณ๐Ÿ˜ฉ๐Ÿฅต๐Ÿ˜๐Ÿ˜ฉ

gentle flint
amber raptor
dire folio
honest pier
faint ermine
amber raptor
honest pier
#

๐Ÿ˜ฆ

amber raptor
#

LTT when he was young

gentle flint
#

true lol

honest pier
#

!e raise

wise cargoBOT
#

@honest pier :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | RuntimeError: No active exception to reraise
gentle flint
#

repost from the programming server

amber raptor
honest pier
#

pฬธอ˜อ uฬธอ›อbฬดอŒอlฬดฬ“อ iฬดอŒฬšcฬธอฬ” sฬดอฬ•tฬตฬ•ฬ”aฬธฬพอŠtฬตอ€อ‘iฬตฬอ€cฬธฬ”ฬ“ vฬธอ„อ oฬธอ˜ฬ•iฬธอ„อƒdฬธฬฟอ€ mฬดฬ“ฬ’aฬดฬ’ฬพiฬธฬšอnฬดอƒอ 

gentle flint
rugged root
#

Finally going home

#

I'll catch you guys later

dire folio
#

later

honest pier
dire folio
gentle flint
honest pier
#

phy ton

#

/tts 9gqdwuihvqrwbyvhirehi;w

gentle flint
#

phytoplankton

honest pier
#

๐Ÿ‘Ž

gentle flint
#

lol

faint ermine
#

9gqdwuihvqrwbyvhirehi;w

eternal bough
#

ๆˆ‘ไธ€็›ดๅšๆŒไฝฟ็”จ

paper rain
#

Like kid laughs, wtf

faint ermine
honest pier
#

The evolution of this universe can be described by the time behavior of the scale factor

#

Near an ear, a nearer ear, a nearly eerie ear

umbral lotus
#
async def set_mod(self,ctx,channel:discord.TextChannel):
        print("ran")
        print(channel)
        guild = ctx.message.guild
        print(guild)
        channel_id = discord.utils.get(self.client.get_all_channels(), guild__name=guild, name=channel)
        print(channel_id)
        servers = await database.get_server_data()
        server = ctx.guild.id
        servers[str(server.id)]["mod_chat"] = channel_id
        with open("servers.json", "w") as f:
            json.dump(servers,f,indent=2)
        return True 

heres the error

    ret = await coro(*args, **kwargs)
  File "c:\Users\Titan1315\Desktop\Python projects\DashLeagueBot\cogs\setup.py", line 29, in set_mod
    servers[str(server.id)]["mod_chat"] = channel_id
AttributeError: 'int' object has no attribute 'id'

The above exception was the direct cause of the following exception:
Traceback (most recent call last):
  File "C:\Users\Titan1315\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\discord\ext\commands\bot.py", line 903, in invoke
    await ctx.command.invoke(ctx)
  File "C:\Users\Titan1315\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\discord\ext\commands\core.py", line 859, in invoke
    await injected(*ctx.args, **ctx.kwargs)
  File "C:\Users\Titan1315\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\discord\ext\commands\core.py", line 94, in wrapped
    raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'int' object has no attribute 'id'
faint ermine
#
async def set_mod(self,ctx,channel:discord.TextChannel):
        print("ran")
        print(channel.id)
umbral lotus
#
Traceback (most recent call last):
  File "C:\Users\Titan1315\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\discord\ext\commands\core.py", line 85, in wrapped
    ret = await coro(*args, **kwargs)
  File "c:\Users\Titan1315\Desktop\Python projects\DashLeagueBot\cogs\setup.py", line 26, in set_mod
    servers[str(server.id)]["mod_chat"] = channel
AttributeError: 'int' object has no attribute 'id'
honest pier
#

where's the print statement

faint ermine
#

we got it figured out

honest pier
#

oh nice

umbral lotus
#
    @commands.command(name="set_mod")
    @commands.has_permissions(administrator=True)
    async def set_mod(self,ctx,channel:discord.TextChannel):
        servers = await database.get_server_data()
        server = ctx.guild
        servers[str(server.id)]["mod_chat"] = channel.id
        with open("servers.json", "w") as f:
            json.dump(servers,f,indent=2)
        return True 
sharp sierra
#

Hey Guys

honest pier
#

hey

faint ermine
#
SELECT
  u.id,
  u.name,
  u.profile_picture
FROM discord_users as u
INNER JOIN user_points as p
  ON p.user_id = u.id
WHERE
  p.points < 60;
restive hill
whole bear
#

In what situations would lists be used instead of single variables?

stiff granite
#

yo yall there?

#

so i wrote my code like that but i want there to be a break in the output how do i do that

fiery hearth
#

at the end of print function

stiff granite
glass gust
#

i

#

cant

#

talk

#

again

#

common

#

bro

#

this

#

up

undone idol
#

hmm?

#

I am saying that is anyone here that is good in presentation

#

thingy

#

like making roadmaps

#

?

#

I wanna make

#

one

#

Hmm no

#

LOL

#

no

#

i am talking about the roadmaps

#

I am talking about this

#

high level overview of the project's goals

#

Ya

#

Mhmmmm

#

Is anyone experiencce with that

somber heath
#

Gantt chart, or more general?

undone idol
#

?

undone idol
#

Ya

#

gotcha

#

Is anyone experience?

#

ya
steps

#

hmmm

#

so can anyone

#

designed one for me

#

?

#

huh

#

I am dumb at that

#

thing

lunar pendant
#

same here

undone idol
#

I am using Note windows 10

#

for making one

#

is it help ful?

#

OneNote Windows 10

#

Hmm

#

So

#

what should i use?

#

then?

#

Ok

#

cool

#

can i use

#

Google slides?

#

Ohk

#

o/

#

How can i add my own

#

slides

#

for roadmaping

#

in powerpoint

#

Argghhh

#

I need premium

#

๐Ÿ˜ญ

prime glen
#

hello

#

@sick onyx @molten tinsel @heady tinsel

#

do you know phyton

#

python*

#

i need some help with my homework

#

oh i see

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.

prime glen
#

let me share my screen

#

@sick onyx

sick onyx
#

where will it be shown?

prime glen
#

join to code/help1

#

voice channel

#

oh i dont have right to share my screen in here :((

#

i cant share it anywhere

#

@hardy cape

#

we dont have voice right

paper rain
prime glen
#

@hardy cape sorry i dont

#

i dont know anything about python and im trying to do my homework rn which is about python :///

sick onyx
prime glen
#

yeah im an electrical engineering student thats my first semester

#

so i guess you could say it is very basic

sick onyx
#

what is the question

somber heath
#

๐Ÿ™‚

raven halo
somber heath
#

(1 == 2) is False
(1 == 1) is True

condition = True
while condition is True: # (condition is True) is True
    'Run this code.'```
deft quail
somber heath
#

@raven halo Are you able to clarify what you mean by counts?

undone idol
#

haha

#

lol

gentle flint
somber heath
gentle flint
sick onyx
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.

stoic cloud
#

@prime glen whats the homework?

neon sleet
#

vscode is an editor

glass kettle
#

!projects

wise cargoBOT
#

Kindling Projects

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

neon sleet
#

well, vscode just uses a terminal right?

#

just use cls?

#

type clear maybe?

rugged root
#

!tools

wise cargoBOT
#
Tools

The Tools page on our website contains a couple of the most popular tools for programming in Python.

rugged root
#

Thonny and Mu-Editor

polar pier
#

hello

#

good but sad

#

i came long back

#

my chat and servers i joined

#

all are gone

#

i don't know how to back up

#

this is indra

#

brown

#

the thing is i don't which email my discord is connect

#

i see other battlefist

#

i'm confused

glass kettle
#

compress a UTF-8 str to bytes using Run Length Encoding (RLE), a relatively straightforward compression scheme that takes any continuous run of 1 or more of the same byte and compresses it into two bytes, the first being the length of the run and the second being the byte itself.

We expect you to define a function compress that takes a single argument which is a UTF-8 str and returns a single even-length bytes value. Since individual UTF-8 characters can be more than one byte long you should encode the str to bytes before applying the RLE compression. For the purposes of this task you can assume that no run will ever be more than 255 bytes long, so no run will ever require more than one byte to encode.

#

help

timid spire
#

yeah

#

haha

pure path
#

HI!!!!!!

#

Trying to figure out why yaml.dump() works in repl but not in a file

rugged root
#

That's.... weird

pure path
#

oh ye

glass kettle
pure path
#

no

whole bear
#

good morning everyone

#

i'm doing great, what about you?

glass kettle
#

@pure path check on stack overflow

whole bear
#

good to hear

glass kettle
#

idk

pure path
#

@rugged root What are u talking about?

#
        with open('bot/a/b.yaml', 'w+') as f:
            yaml.dump(c, f)
whole bear
#

lol we do have a lot of channels

#

what's wrong with w+?

pure path
#

!server

wise cargoBOT
#

Server information
Created: 4 years and 5 days ago
Voice region: europe
Features: COMMUNITY, NEWS, WELCOME_SCREEN_ENABLED, VIP_REGIONS, RELAY_ENABLED, ANIMATED_ICON, PREVIEW_ENABLED, BANNER, DISCOVERABLE, PARTNERED, VANITY_URL, INVITE_SPLASH, MEMBER_VERIFICATION_GATE_ENABLED

Channel counts
Category channels: 25
News channels: 8
Text channels: 149
Voice channels: 13
Staff channels: 62

Member counts
Members: 131,537
Staff members: 86
Roles: 85

Member statuses
status_online 38,048
status_offline 93,489

pure path
#

149 channels

whole bear
#

Text channels: 149
๐Ÿ‘€

#

god damn you wsl

glass kettle
#

where can we screen share

pure path
#

PyYaml

glass kettle
#

ah

whole bear
#

train an ai

#

1984 lmao

lunar pendant
whole bear
#

although there are more things

#

such as violence

pure path
#

@rugged root u talking about the outage that deleting the dev role caused?

timid spire
#

domestic abuse

#

๐Ÿ˜†

glass kettle
#

can anyone help me make a bot

lunar pendant
pure path
#

what data?
infractions?

glass kettle
#

and run it 24/7

whole bear
#

3 months? oh shit

pure path
#

oh

whole bear
#

did yall have backups?

pure path
#

i thought u were talking about the server

#

lmao

timid spire
#

@pure path it is top secret

#

no leaking

lunar pendant
glass kettle
whole bear
#

what bot

glass kettle
#

mod

whole bear
#

a mod for what

glass kettle
#

for my server

lunar pendant
pure path
wise cargoBOT
#

6. No spamming or unapproved advertising, including requests for paid work. Open-source projects can be shared with others in #python-general and code reviews can be asked for in a help channel.

timid spire
#

lacert

whole bear
#

you aren't really being descriptive

rugged root
#

lacerte

lunar pendant
#

@rugged root plz give @glass kettle a bot role๐Ÿ˜‚

whole bear
#

๐Ÿ‘€ or would it

glass kettle
whole bear
lunar pendant
#

Anyone up for solving some ds and algo problems?

glass kettle
#

nah

lunar pendant
#

ear cut?

timid spire
#

hair cut

whole bear
#

has anyone else used google apis before? i want your opinion on their api docs

pure path
#

lol

whole bear
#

lmao

timid spire
#

star bucks give straw

#

though

whole bear
#

๐Ÿ˜  gib straw

lunar pendant
whole bear
timid spire
#

no buddy

#

we got jio

#

๐Ÿ˜›

#

i don't want star bucks to see my data

lunar pendant
#

jio op

undone idol
#

Hey

whole bear
#

i have to implement google's oauth2 into a flask app for a school project

undone idol
#

I am some problem in configuring

#

my pycharm

#

I can't run any code

#

I am not connected to vc

#

Please help

#

guys

glass kettle
#

try uninstalling and reiinstall python

undone idol
#

Ohk

sonic wraith
glass kettle
#

or download the latest python

lunar pendant
#

@timid spire That's my brother .

rugged root
#

Oh rohan is?

#

Cool

sonic wraith
#

I don't have a brother!

glass kettle
#

lol

lunar pendant
# timid spire ??

oh when you said talk in english. That my brother in the background

glass kettle
#

@lunar pendant

pure path
#

I miss NYC

glass kettle
#

๐Ÿ˜ฆ

glass kettle
sonic wraith
#

gotcha

glass kettle
#

haha

lunar pendant
sonic wraith
#

gotcha

glass kettle
#

lol

lunar pendant
glass kettle
#

haha

timid spire
#

the ceo is developer

#

damn

glass kettle
#

ill leave

lunar pendant
#

Just leave without saying

#

๐Ÿ˜…

pure path
#

@rugged root You watch anime?

rugged root
#

Sometimes

#

Rather you didn't say that

pure path
lunar pendant
lunar pendant
pure path
#

I have not watched attack on titans yet

rugged root
#

Mushi-Shi is my absolute favorite

#

And I have a lot of them that I've watched but that'd be quite a while to list

undone idol
#

ya same here

timid spire
#

u know starwars mandalorian is top rated show

#

on hotstar

pure path
#

@rugged root you should watch it, it is legendary

#

Death Note i meant

undone idol
#

lol

lunar pendant
pure path
#

Because it is

timid spire
#

can someone suggest me good templates

#

for resume

rugged root
timid spire
#

it is dhruv not dru

timid spire
#

8:49

wise glade
#
def __repr__(self):
  return f'{self.color!r}, {self.rgb!r})'

what adding !r does here?

timid spire
#

do u know dunder method

#

?

#

@wise glade

pure path
#

it shows like the literal type of the something

#

!e

a = 'hi'
print(f"{a!r}")
wise cargoBOT
#

@pure path :white_check_mark: Your eval job has completed with return code 0.

'hi'
rugged root
#
>>> test = "ham is cool"
>>> repr(test)
"'ham is cool'"
>>> f'{test!r}'
"'ham is cool'"
wise glade
#

food examples again huh

timid spire
pure path
#

Ves explained it

#

in the umm, code jam quaifactions

timid spire
#

look in realpython

#

he is good at dunder

wise glade
timid spire
wise glade
timid spire
#

In str.format, !s chooses to use str to format the object whereas !r chooses repr to format the value.

rugged root
#

!e


ham = r"I love me some ham \ It fills my tummy with joy \ I would like more ham"
print(ham)
print(repr(ham))
wise cargoBOT
#

@rugged root :white_check_mark: Your eval job has completed with return code 0.

001 | I love me some ham \ It fills my tummy with joy \ I would like more ham
002 | 'I love me some ham \\ It fills my tummy with joy \\ I would like more ham'
timid spire
#

'foo {}'.format('bar')
'foo bar'

'foo {!r}'.format('bar')
"foo 'bar'

#

it is same like /'

rugged root
#
>>> import datetime
>>> now = datetime.datetime.now()
>>> now.__str__()
'2020-12-27 22:28:00.324317'
>>> now.__repr__()
'datetime.datetime(2020, 12, 27, 22, 28, 0, 324317)'
#

.format(repr(mah_string))

wise glade
#

return "Car" + repr(self.color) + " thankyou", so not to do this

#

just !r would work

rugged root
#
f"I love {repr(ham)}"
# is the same as
f"I love {ham!r}"
whole bear
#

I got to say this...
Earlier i was an introvert
Then i met programming
Now I'm introvert and a nerd๐Ÿ˜‚

timid spire
#

haha

hard wyvern
#

๐Ÿ˜‚

timid spire
#

weird python 2 syntax

#

F### it

pure path
#

print "hi"

timid spire
#

yeah python 3 is much easier and user friendly

hard wyvern
#

hmm

rugged root
#

"bacon".format()

timid spire
#

python 2 is good snake

#

but python 3 is a legend

pure path
#

btw we can disallow that, but idk how

lunar pendant
whole bear
#

the package manager?

#

conda is a pain in the ass

timid spire
#

anaconda helps him to find food

lunar pendant
pure path
minor island
#

The moment I entered Python it was already python 3.x so never had the opportunity to experience Python 2

timid spire
#

python 4 will be game changer

pure path
timid spire
#

just in time will be introduce for interpeter

#

homie u mean

#

just in time

#

yeah

#

JIT

#

more like Jet

minor island
#

For conda I would say, I rather prefer miniconda and the CLI

lunar pendant
timid spire
#

how many of u know apex

#

language

pure path
#

its only been 30 years

#

python only 30 years old

wise glade
timid spire
#

hemlock released python

lunar pendant
#

@rugged root flexing with his age

timid spire
#

with van

#

hemlock is co father of python

#

u can step father

minor island
#

miniconda is enough for me so far, sometimes it sucks though to actually find the version which is latest but confirms the compatibility with every other tech.

timid spire
#

anaconda helps a lot for deep learning stuff

#

we got conda

#

not pip or pipe

glass kettle
#

im back

lunar pendant
glass kettle
#

umm

glass kettle
timid spire
#

huge no nut jan

lunar pendant
glass kettle
#

hi

minor island
#

I still need a lot of time to be able to talk in the voice channels

#

seems like I can only hear till then

glass kettle
#

i know same with me

pure path
#

yikes your voice

timid spire
#

rohan u got bad mic

#

bro

#

bad connection

hard wyvern
#

its internet connection i guess

timid spire
#

i was there

#

hemlock

#

i was there

#

it is on dec 25 2020

#

time 11:05

#

IST

wise glade
#

brb

pure path
#

!server

wise cargoBOT
#

Server information
Created: 4 years and 5 days ago
Voice region: europe
Features: COMMUNITY, NEWS, WELCOME_SCREEN_ENABLED, VIP_REGIONS, RELAY_ENABLED, ANIMATED_ICON, PREVIEW_ENABLED, BANNER, DISCOVERABLE, PARTNERED, VANITY_URL, INVITE_SPLASH, MEMBER_VERIFICATION_GATE_ENABLED

Channel counts
Category channels: 25
News channels: 8
Text channels: 149
Voice channels: 13
Staff channels: 62

Member counts
Members: 131,556
Staff members: 86
Roles: 85

Member statuses
status_online 39,057
status_offline 92,499

hard wyvern
#

If anyone gets the voice verification then he can do the same shit again??

pure path
#

39k online

timid spire
#

so 1 million

minor island
#

Oh! that justifies the proper protocol thing on this server

pure path
#

the highest one is 700k

lunar pendant
#

Is there any music bots in this server??

timid spire
#

forgot about biggest

#

but it is quickest stack overflow

#

server

rugged root
timid spire
#

for people

#

who learn python

#

10k

#

i guess

lunar pendant
minor island
#

can't put the name here but there are servers that have a lot of members, but I would say this one is the server with most members dedicated to one language

timid spire
#

@lunar pendant ur bot

rugged root
frozen oasis
timid spire
#

u will be paid

lunar pendant
pure path
#

uhh no?

frozen oasis
#

genshin wow

#

i just found a random site lol

timid spire
#

help me to choose a resume

#

please

pure path
#

100k increase

minor island
#

Genshin is anime based game, more like exploration similar to SAO

timid spire
#

when i joined there were 10 people

#

including me

lunar pendant
#

I didn't know how i ended up in this server and i didn't know a single word of python

minor island
#

we all need to second that since this Python server contains more members than the active python course students globally, just a hunch, cannot verify it though.

pure path
#

ratelimit

#

2 per 10 minute

lunar pendant
#

I think i should leave now, bye guys

pure path
#

@wise cargo

glass kettle
lunar pendant
#

btw you guys can use a command !banyourself

timid spire
#

what about paris

lunar pendant
#

!banme

rugged root
timid spire
pure path
#

@rugged root send a ss of all the channels zoomed out.
including staff

lunar pendant
pure path
#

cmon

#

please

rugged root
pure path
#

it doesn't have to be good

lunar pendant
#

Did anyone register for google hashcode ??

rugged root
#

!resources @lunar pendant Well if you ever get curious, give this a once over!

pure path
#

f1re once gave one, let's see if u can give a better one

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.

pure path
#

try

#

does he?

glass kettle
pure path
#

fair enough

rugged root
#

!user

wise cargoBOT
#
Mr. Hemlock#2740

hypesquad_balance early_supporter

User information

Created: 5 years, 3 months and 15 days ago
Profile: @rugged root
ID: 98195144192331776

Member information

Joined: 2 years, 8 months and 10 days ago
Roles: <@&463658397560995840>, <@&764802720779337729>, <@&295488872404484098>, <@&267630620367257601>, <@&797891034906099752>, <@&587606783669829632>, <@&267629731250176001>, <@&267628507062992896>

Infractions

Total: 10
Active: 1

pure path
glass kettle
#

!user

wise cargoBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

glass kettle
#

Wait what

timid viper
#

Hello, I am new discord!
Are you help me?

glass kettle
#

oh

timid viper
#

I am front developer

glass kettle
#

nice

#

welcome

timid spire
#

Rohan Goel

lunar pendant
#

yes

glass kettle
#

pydis_hacktoberfest_2019 keep it clean

#

@timid spire

lunar pendant
#

want to solve some previous years google codejam problems?

timid spire
glass kettle
#

yeah it good

#

its clean and neat

lunar pendant
glass kettle
#

i am not a 6th grade student lol

lunar pendant
#

@sonic wraith use jio ๐Ÿ˜‚

glass kettle
lunar pendant
#

someday

glass kettle
#

no

lunar pendant
#

you are in 11th right?

glass kettle
#

no 7th

lunar pendant
glass kettle
#

so i am 14

glass kettle
#

check the ping

timid spire
#

i want to write my own career objective

pure path
#

you can also try this server

timid spire
#

out there

glass kettle
#

switch to web discord other wise @sonic wraith

somber heath
#

@timid spire Hmm. So in what way might I be of assistance?

pure path
#

they were friendly for me

#

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

timid spire
#

i want some help

tiny seal
glass kettle
#

yeahpydis_hacktoberfest_2019

timid spire
#

with career objective

#

i want some cool words

somber heath
#

@timid spire Understood. I was asking more about the specific form that help would take. So...cool words. Right.

glass kettle
#

wait what

#

how do i make a basic bot

somber heath
#

@timid spire I would suggest you look at sample Curriculum Vitae.

rugged root
somber heath
#

@timid spire Sample resumes.

glass kettle
#

thx

somber heath
#

@timid spire Noting the language use. Certain types/flavours of words.

timid spire
#

like i want to use my coding skills and creative skills to slove real time problems and meet and work with people who inspires me and also help the organization to achieve the goals

glass kettle
#

use something simple

#

@timid spire

#

nah

versed island
rugged root
#

@noble copper What's up?

tiny seal
glass kettle
whole bear
timid spire
#

@normal hinge

lunar pendant
#

@glass kettle I am back

flint horizon
#

Good morning.

#

gday!

whole bear
#

hey guys i'm new here. how can i get permission for speaking?

timid spire
#

Indra never forgets people who help him

#

@faint ermine

somber heath
#

@whole bear Check out the voice-verification channel. ๐Ÿ™‚

lunar pendant
#

@timid spire plz thodi toh maryada rkhiye(hindi)

whole bear
#

ok. thanks bro

rugged root
#

English only, please

timid spire
#

python only,please

faint ermine
#

dicsord

timid spire
#

last time heroine

#

helped a guy with photoshop thing

#

the guy want to blur background

#

and she helped him

wise glade
#

I know how my mind works,
I just doesn't when I want it to

lunar pendant
rugged root
#

Right, sure

#

But I can't moderate a language I don't understand, and it is an English only server

somber heath
#

Oh look. Bees.

lunar pendant
timid spire
#

i said sister

#

in hindi and telugu

#

he knows what i'm saying

#

it is a joke

#

so take it like joke

faint ermine
#

!rule 4

wise cargoBOT
#

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

timid spire
#

i translated

#

so

whole bear
#
def Func():
  print("Hello World")
Func.num = 3
lunar pendant
whole bear
glass kettle
#

i just made a simple calculater using Tk anyone want the source code

timid spire
#

i just told him what we call sister in our language

#

so

rugged root
#

@whole bear So essentially everything is an object in Python

somber heath
#

@whole bear Functions are objects. Objects can have ...

#

That.

rugged root
#

And that means you can arbitrarily add attributes to them

#

It's a bit of a quirk

lunar pendant
whole bear
rugged root
#

Can? Yes. Should? No

proud oxide
#

Hey people, have any of you tried FastApi vs Flask

rugged root
#

Although it could make for some.... interesting experiments that the folks in #esoteric-python might find fun

whole bear
hushed elm
#

they're used for different purposes, so it's fine

somber heath
#

"Find the fish! Is it in the function? And it went wherever I did go!"

whole bear
#

aiohttp is also good as micro framework

timid spire
#

sell me this snake pydis_snake

hushed elm
#

ESOTERIC IS FUN

proud oxide
#

what indicates within a monolith flask repo that it should be broken down into micro services?

timid spire
#

its talk about concurreny vs parallel

hushed elm
timid spire
#

?

hushed elm
#

shiny new toy uuu

weary zephyr
#

nice

hushed elm
#

no it's mirrorless

timid spire
#

fuji

hushed elm
#

fuji bestji

timid spire
#

never heard that

#

i heard nikon

hushed elm
#

fuji x-t4

glass kettle
hushed elm
#

no it's for my photography hobby

glass kettle
#

ah

#

ok

hushed elm
#

and maybe recording myself for youtube idk

timid spire
#

macro show ur best pics that u capture with that fuji

glass kettle
#

you should start a youtube channel

hushed elm
#

but i'll send one

somber heath
#

I avoid Reddit.

glass kettle
glass kettle
#

haha

hushed elm
timid spire
#

looks like x-ray of butt or stomach

#

so this is uv rays captured by camera

glass kettle
#

brb

hushed elm
timid spire
#

good

#

hello rabbit

hushed elm
#

rabbit is a bit jaded but he's sure as hell cozy

#

haha

timid spire
#

he is good at cloud

#

computing

hushed elm
timid spire
#

u live here

#

damn

#

u need no AC

rugged root
#

@hushed elm Aaaaaand you have now given me my new left monitor picture

amber raptor
#

Create your own website for FREE โ–บ https://wix.com/wisecrack
Use promo code "WISECRACK15" to get 15% off all yearly plans!
Thanks to Wix for sponsoring this episode!

Subscribe to Wisecrack! โ–บ http://wscrk.com/SbscrbWC
Join WisecrackPLUS for EXCLUSIVE content! โ–บ http://wscrk.com/YtWcPls

Why do we love The Office? Is it the characters? The joke...

โ–ถ Play video
timid spire
#

Proficiency in numerous programming languages and Innovative team player with a passion for continuous learning and solid background in Object-Oriented programming desires the position of Software Developer at Salesforce Software company to utilize honed skills in computer science, excellent customer service skills, these are some most important factor which would help me to perform my duties. Looking for the job as programmer in Software Company.

#

any edits?

hushed elm
timid spire
#

if i'm applying for modeling

#

i will put

#

but for developer

#

so

#

yeah females get job easy

rugged root
#

@digital jackal Looking it up in docs, one sec

hushed elm
#

ahaa i get it

timid spire
#

@amber raptor any suggestion