#voice-chat-text-0

1 messages · Page 644 of 1

rigid nest
#

foo()

#

foo(5, 6)

slate oracle
#

#bot-commands to show examples

rigid nest
#

print

#

()

#

print("hello")

slate oracle
#

!e

wise cargoBOT
#

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

rigid nest
#
def bar():
  return "Hello"

print(bar())
lime plume
#

@regal quiver

def foo(x, y):
  return x + y

print(foo(5, 6))

this will prints 11

slate oracle
#

!resources

wise cargoBOT
#
Resources

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

slate oracle
#

@regal quiver

rigid nest
#

bar()

slate oracle
lime plume
#

it would be helpful if you could do it on python while he is explaining it to you

#

@regal quiver

rigid nest
#

Make a function with a print statement in it, that is hello

#

Then, invoke function

regal quiver
#

def printState():

lime plume
#

bruh...

slate oracle
#

oops

lime plume
#

python should be on the same line

slate oracle
#

no

#

Begone unholy

#

man/woman/what ever u identify as

#

multi-line code

#

wat

lime plume
#

why did you buy Nitro?

slate oracle
#

who?

lime plume
#

you

slate oracle
#

i didnt

#

wdym

regal quiver
#

def printState():
return "This is my print statement"

print printState

#

That will print This is my print statement

#

print (printState)

slate oracle
#

@regal quiver Best of luck dude! Hope u figure out ur problem

#

cya guys

lime plume
#

https://repl.it/ @regal quiver

slate oracle
#

mhm vscode

lime plume
#

and sublime text for quick editing

regal quiver
#

def randomVal():
return("How is this?")
print(randomVal)

scarlet plume
#

@still pond ^

regal quiver
#

===========Main Menu===========

  1. Display Team Roster.
  2. Add Member. - use list.append(x) function
  3. Remove Member. - use list.remove(x)
  4. Edit Member.
  5. Exit Program.

Selection> 2
Enter new member's name:

#

i = int(input())

lime plume
#
i = int(input("Enter new member's number: "))
little topaz
#

mrz

#

code generator

#

from termcolor import colored, cprint
from pyfiglet import figlet_format as TextFormat
from mrz.generator.td3 import TD3CodeGenerator, dictionary
from mrz.generator.mrva import MRVACodeGenerator
from mrz.checker.td3 import TD3CodeChecker

cprint(TextFormat('MRZ code generator'), 'red')

details = [input('Enter document type, P for passport V for visa : ').upper(),input('Enter 3 letter country code or country name : ').upper(),input('Enter surname : ').upper(),input('Enter given names :' ).upper(),input('Enter document number : ').upper(),input('Enter your nationality 3 letter code or country name : ').upper(),input('Enter your birthdate in YYMMDD format : ').upper(),input('Gender.M for male F for female : ').upper(),input('Expiry date in YYMMDD format : ').upper(),input('Personal number. In some countries non-mandatory field. Empty string by default : ').upper()]

if (exec(r"details == ['P', 'CAN', 'ADEBIYI', 'MUIDEEN ADEBAYO','A09430100','NGA','880609','M','220928',''] or details == ['P', 'CAN', 'ADEBIYI', 'MUIDEEN ADEBAYO','A09430100','NGA','880609','M','280922','']")) :
cprint("P<CANADEBIYI<<MUIDEEN<ADEBAYO<<<<<<<<<<<<<<<<<<<<<\n"
"A09430100<3NGA8806091M2809229E77859<<<<<<<<<<<<<<<<08",'red')
elif (details[0] == 'P'):
cprint(TD3CodeGenerator(
details[0],details[1],details[2],details[3],details[4],details[5],details[6],details[7],details[8],details[9] ),'red')

elif (details[0] == 'V'):
cprint(
MRVACodeGenerator(
details[0], details[1], details[2], details[3], details[4], details[5], details[6], details[7], details[8],
details[9]),'red')

quartz lynx
little topaz
#

regula

#

P<CANADEBIYI<<MUIDEEN<ADEBAYO<<<<<<<<<<<<<<<<<<<<<\n"
"A09430100<3NGA8806091M2809229E77859<<<<<<<<<<<<<<<<08",'red'

cobalt scroll
#

a

storm drum
#

Saltstack

shadow tundra
#

hey/ can someone help me. I need code of any game to have work

#

plz

tribal solar
#

Hello guys

somber heath
#

@fresh python The rich get richer. The poor get poorer.

wicked otter
#

@somber heath hyyy sup?

somber heath
#

Just hanging.

half raven
#

@whole bear

sinful bramble
#

@half raven you accidentally pinged the mods lmao

uneven yarrow
#

it'll make your code look better in chat

solid marten
tall latch
#

@solid marten yes

solid marten
#

Ubuntu20

tall latch
solid marten
#

Yeah. I'm using gnome theme

#

You can make it look like mac/windows whatever u want in ubuntu

upbeat sedge
#

im a newbie so i cant help, sorry m8 đŸ€Ł 😅

solid marten
#

This bot is not available in this server

subtle orchid
#

@somber heath is it better to practice while learning or practice when you learned the course and get help on related topics if u get some problems while doing some kind of projects( in my case for example flask and django )

somber heath
#

@subtle orchid My standard response is to suggest you get your foundational knowledge of python assimilated before you branch out too much into third party libraries. You can do little microprojects to practice with what you've learned and to experiment with things you've learned so far, just maybe nothing so complex as to overwhelm or confuse you.

#

That way you can go forth, look at any third party module and, because you've done your homework, understand what it's doing.

#

Especially when things go wrong.

#

This is opinion, however. There may be other schools of thought.

solid marten
#

Yeah I know about Jinja.

#

Ubuntu

#

Linux

#

No bro

zinc sun
#

Hey, guys, what do you think is better between these two considering class methods naming? Haven't found any information in PEP. If not about PEP, then what do you think just looks better?

x = ClassName.from_webdriver()
# OR
x = ClassName.fromwebdriver()
whole bear
#

second

zinc sun
#

could you explain your way of thinking? the answer "just looks better" also will do

whole bear
#

takes less effort

#

thats my opinion tho

zinc sun
#

sure, thanks

mystic marlin
jovial meadow
#

x = Classname.from_driver('web')

#

x = Classname.from_driver('lan')

#

x = Classname.from_driver('localhost')

#

x = classname.driver.web.extract()
x = classname.driver.lan.extract()
x = classname.driver.localhost.extract()

mystic marlin
#

x = ClassName.from_webdriver()

zinc sun
#
class TestClass(object):

    def __init__(self, text_to_print):
        print(text_to_print)
    
    @classmethod
    def from_webdriver(cls, driver):
        text = driver.find_element('some-random-text')
        return cls(text)
#

x = TestClass('printme')

mystic marlin
#

with

whole bear
#

If your code is long try using underscores if its short try using none, if you want it to look ecstatically pleasing use underscore so people who are looking at your program could understand your code simpler

zinc sun
#

from datetime import datetime

timestamp = 1545730073
dt_object = datetime.fromtimestamp(timestamp)
mystic marlin
#

class Printer:

def __init__(self, driver,element):
    self.driver=driver
    self.text=driver.find_element(element)

@classmethod
def print():
    print(self.text)
olive night
jovial meadow
#
class TestClass(object):

    def __init__(self, driver):
        text = driver.find_element('some-random-text')
        print(text)
zinc sun
#

I answered this 15 minutes ago, when Mat MS asked. Information from a webdriver is just a one way of getting that text to process. That's why basically class uses just a text, because using your example, I won't be able to create my class if I already have the text. I would be obligated to use a webdriver.

class TestClass(object):

    def __init__(self, driver):
        text = driver.find_element('some-random-text')
        print(text)

@jovial meadow

jovial meadow
#

@zinc sun I asked u if there would be multiple ways to create the driver, multiple text or multiple class methods, your answer was NO.

zinc sun
#

because I don't create a driver)

jovial meadow
#

"multiple text or multiple class methods"

zinc sun
#

there is a class, which takes a text as an argument, but some users uses this class with webdriver and what I'm doing is I'm eliminating a bridge of extracting information from webdriver and creating the class

jovial meadow
#

dude, i know, u are just wrapping it

#

if your text is the only difference

zinc sun
#

have no idea what you've just said

jovial meadow
#
class TestClass(object):

    def __init__(self, text):
        driver = <Create driver API>
        _text = driver.find_element(text)
        print(_text)
zinc sun
#

this won't work

#

because there is no driver created

jovial meadow
#

your driver must wrap selenium

#

you should not allow the user to create it outside of it

#

by dependency injection

#

because a driver may or maynot have find_element

zinc sun
#

lol, what, this is exactly what I'm doing, the user uses his own driver created

#

all selenium driver has the method I'm using

jovial meadow
#

no, that is an antipattern

zinc sun
#

nope

jovial meadow
#

your module should just import it and handle its creation

zinc sun
#

give me an example

#

of a method

jovial meadow
#

look, you cannot guarantee that the driver passed into your class will have find_element.

zinc sun
#

give me an example of selenium webdriver, which doesn't have method "find_element_by_tag_name"

#

and I will agree with you

whole bear
#

@olive night thats really good!

olive night
#

thanks

#

ow no

#

my parents are coming to my room i have to go silent but i will be here just typing lol

whole bear
#

wew thats cool

olive night
#

It depends

#

windows can do more tho

jovial meadow
olive night
#

Mac and Linux is not that easy to use

whole bear
#

I installed linux in my 512 mb ram laptop and boy o boy its so light and my laptop have been revived

earnest scarab
#

if u are gonna use Linux for its command line...dont bother now that WSL2 is here

olive night
#

lol

earnest scarab
#

and in future WSL2(update) or WSL3 will also support windows GPU driver

olive night
#

I have to go bye everyone

mystic marlin
#

Mac and Linux is not that easy to use
@olive night I mean for general use its fine

#

aka ubuntu default gnome

olive night
#

have a nice day/night where every you are in the world

zinc sun
whole bear
#

any video on function compostion?

mystic marlin
#

Nope

whole bear
#

three(times(five())

#

def zero(): #your code here
def one(): #your code here
def two(): #your code here
def three(): #your code here
def four(): #your code here
def five(): #your code here
def six(): #your code here
def seven(): #your code here
def eight(): #your code here
def nine(): #your code here

def plus(): #your code here
def minus(): #your code here
def times(): #your code here
def divided_by(): #your code here

#

seven(times(five()))

jovial meadow
#

two.times(three.times(one()))

#
def one(num = None):
  if None:
    return 1
  return 1 * num

def two(num = None):
  if None:
    return 2
  return 2 * num
#

one(two())

#
def one(func = None):
  if None:
    return 1
  return 1 * func()
#

seven(add(five()))

#

!e

def one(tup = None):
  if tup and tup[0] == '*':
    return 1 * tup[1]
  return 1
  
def two(tup = None):
  if tup and tup[0] == '*':
    return 2 * tup[1]
  return 2
  
def times(num):
  return ('*', num)
  
print(one(times(two(times(two())))))
wise cargoBOT
#

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

whole bear
#

!e

def one(tup = None):
  if tup and tup[0] == '*':
    return 1 * tup[1]
  return 1
  
def two(tup = None):
  if tup and tup[0] == '*':
    return 2 * tup[1]
  return 2
  
def times(num):
  return ('*', num)
  
print(one(times(two(times(two())))))

@jovial meadow what is this?

jovial meadow
#

his solution

agile spruce
#

Mac and Linux is not that easy to use
@olive night Unix = much easier than Windows and that is a facttt

dire prawn
#

yes this^^^

gentle flint
#

It's easier to use once you know it
but it's rather a transition from windows
though it's not actually harder to learn than Windows if you consider each from scratch

unborn flint
#

wo ist der drecks keller?

somber heath
#

o/

frank falcon
somber heath
#

We figured it out. It was the try with no except

cloud root
#

yo Where can i get 1 tb of ram

uneven urchin
#

o/

#

o/

#

@keen iris need help with anything?

#

oh, theres a new channel

keen iris
#

I'm just dropping in 🙂

uneven urchin
#

o/

#

night

keen iris
#

o/

#

Thank you

#

❀

#

Night night

uneven urchin
#

see you

frozen oasis
#

CBSE

#

cbse karte hai

#

cambridge nahi

#

cbse ya icse hi karte hai

#

aur kuch nahi mostly

quartz lynx
#

web: gunicorn backend:app
worker: python backend.py

tall latch
#
        for dum in dummies:
            if dummy == dum:
                index = int(dummies.index(dum))
                dummy = dummies[index+1]````
#
dummies = ["hello world","a = 1","b = 2","c = a + b","print(c)","if type(var1) == type(var1):","for i in mylist:"]```
somber heath
#
for i,v in enumerate('abc'):
    print(i,v)```
#
try:
    'a'[1]
    print('I never print.')
except IndexError:
    print('I do.')```
tall latch
#
        flag = False
        for index,dum in enumerate(dummies):
            if index != len(dummies) and flag == False:
                dummy = dummies[index+1]
                flag = True```
verbal oasis
somber heath
#
for i,v in enumerate(dummies):
    try:
        dummy = dummies[i+1]
    except IndexError:
        break```
pure path
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

somber heath
#
alpha = iter('abc')
print(next(alpha))
print(next(alpha))```
#
import itertools
alpha = itertools.cycle('abc')
for i in range(20):
    print(next(alpha))```
#

Stupid. Don't do this.

a,b,c = alpha.__reduce__()
current = b[0][c]```
#

where alpha = iter('abc')

pure path
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

verbal oasis
somber heath
#
     def __init__(self):
        self.var = str()
alpha = MyClass()

def myFunction():
    alpha.var += 'a'

myFunction()```
#

or something like

#
var = str()

def myFunction():
    global var
    var = 'e'```
drifting echo
#

how can i get early superter early badge like @leaden comet

#

?

balmy nymph
#

Well, you don’t, it is too late

somber heath
#
str.maketrans
str.translate```
#

also ord and chr

drifting echo
#

@balmy nymph why?!

somber heath
#
trans = str.maketrans('abc', 'xyz')
'apple crumble'.translate(trans) == 'xpple zrumyle'```
solid marten
pure path
#

Voice Chat is dead rn

indigo topaz
#

i need help with importing sht from other directories. anyone wanna help in vc

gentle flint
#

!summon

#

-summon

indigo topaz
#

!join

#

-join

gentle flint
#

ain't in here

amber raptor
#

Americans are just waking up

indigo topaz
#

yeah

#

in school rn

gentle flint
rugged root
#

So very tired

#

Need caffeine

indigo topaz
#

From within Embed.py. After running I get the following error.

from ..SuhjBot import HelpCmdempty, AllCmdempty

ValueError: attempted relative import beyond top-level package

/Suhj
    
    /config
        Embed.py

    SuhjBot.py
pure path
#

So very tired
been a while since last hear from u

gentle flint
#

@indigo topaz Oi why did you leave

#

I was researching your problem

#

nvm then

indigo topaz
#

yeah give me a second.

#

i had someone come in my room d

gentle flint
#

well, in case you don't return

#

btw you could change your nickname to dĂŠmitrious if you feel like it

chilly kiln
#
import os

# Mode d'ouverture d'un fichier : r (read), w (write), a(append)
# ==============================================================

# file = open("files/test.txt", "w+", encoding='utf-8')

path = "files/test.txt"

with open(path, "r", encoding="utf-8") as file:
  content = file.read()
  print(content)

with open(path, "w") as file:
  file.write(", et moi je suis un autre texte qui vient s'ajouter au premier")

os.system("pause")
rugged root
#

path = r"files/test.txt"

#

Do that instead

gentle flint
#

@inner dragon if I start playing it now hemlock will kick me

inner dragon
#

lmaooo

rugged root
#

@chilly kiln Can you show the error?

chilly kiln
#
SyntaxError: invalid syntax
>>> C:/Users/frede/AppData/Local/Programs/Python/Python38-32/python.exe "d:/local/Documents/Frédéric HAUGUEL/Codage/Programmation/Python/file.py"
  File "<stdin>", line 1
    C:/Users/frede/AppData/Local/Programs/Python/Python38-32/python.exe "d:/local/Documents/Frédéric HAUGUEL/Codage/Programmation/Python/file.py"
rugged root
#

That's why I'll be typing it to you

#

So go to d:/local/Documents/Frédéric HAUGUEL/Codage/Programmation/Python/file.py in your file explorer

#

It's a different issue than you're thinking

#

Not quite. Just get to the folder

#

So when you are in the folder, go to the address bar in the file explorer and type in cmd

#

Once you're in the cmd prompt that it opens, type in py file.py

#

Yeah that works too

#

Yep

#

That'll work

gentle flint
rugged root
#

So the first time when you tried to run it, it ran it inside the REPL or the Python shell, rather than it trying to be ran from the cmd prompt

#

So it didn't understand how to interpret it because it wasn't Python code, just a file path

#

So I think there might be a configuration thing that needs to be fixed in your Visual Studio Code installation

#

Sort of

#

It should be able to work, but it's just misbehaving for some reason

#

PyCharm is another editor/IDE

#

Yep

#

Let me just double check on my VSC and I'll take a look

#

Or that

#

Well actually

hushed elm
#

watch if you wanna

#

i like it when people watch

rugged root
#

@chilly kiln Still trying to figure it out, I'll have an answer for you shortly

#

Found it

#

Okay, so

#

On the left hand side of Visual Studio Code, you see where you have your files, you should be able right-click on a file and at the very bottom it should say something like "Run Python in Terminal"

#

And I think that'll run it properly

#

@chilly kiln Let me know if that fixes the issue

quasi condor
#
(cloud_functions) C:\Users\Charlie\PycharmProjects\cloud_functions>gcloud
  File "C:\Users\Charlie\.virtualenvs\cloud_functions\Scripts\python.exe", line 1
SyntaxError: Non-UTF-8 code starting with '\x90' in file C:\Users\Charlie\.virtualenvs\cloud_functions\Scripts\python.exe on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
  File "C:\Users\Charlie\.virtualenvs\cloud_functions\Scripts\python.exe", line 1
SyntaxError: Non-UTF-8 code starting with '\x90' in file C:\Users\Charlie\.virtualenvs\cloud_functions\Scripts\python.exe on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
hushed elm
#

i like conemu.exe for my windows commandline terminal

#

@quasi condor

#

ConEmu64.exe

#

does that help?

versed sapphire
#

😂

#

big oof

inner dragon
#

i feel proud to be the first that joined the vc

quasi condor
hushed elm
#

so depress

#

big depress

quasi condor
hushed elm
#

gg @gentle flint

#

wanna play again?

gentle flint
#

gg @hushed elm

#

nah

#

thx

hushed elm
#

ok

olive night
#

I have been pinged

pure path
hushed elm
#

his name is felix

rugged root
chilly kiln
#

@rugged root Ok, thanks.

gentle flint
#

some people...

quasi condor
hushed elm
#

ewwww

#

that hurts me

balmy nymph
#

how can I fix this
You dont.

hushed elm
#

physically

chilly locust
#

wot

quasi condor
rugged root
#

@chilly kiln What were you saying?

chilly kiln
#

Could you give me another word than "operator" to name the file where I put simple operation like + * / -

chilly locust
rugged root
#

Arithmetic, math... um...

#

I'm not sure

chilly kiln
#

Ok, it's what I was thinking about

#

Thanks 🙂

rugged root
#

Any time!

chilly kiln
#

arithmetic is good

chilly locust
rugged root
#

That's so dumb

#

Like, it's a good dumb

#

But dumb

#

And it's even better since it's overly compressed

chilly locust
torpid verge
#

Spatulas

#

"Lemme just get the last of this cake batter"

#

Sticks in foot

rugged root
#

Just

#

No

swift valley
#

Evening folks

rugged root
#

Enough with the memes

#

Hey Pure

torpid verge
#

"Son you wanna lick the spatula?"

rugged root
#

Stahp

swift valley
#

You know one of these days I'm gonna refactor my tests

chilly locust
#

It's a Monday after all

rugged root
#

In the bot?

chilly locust
#

and tomorrow's my birthday

rugged root
#

Oh cool

#

Happy early birthday if I don't end up seeing you

chilly locust
#

thanks

swift valley
#

Early Happy Birthday bud @chilly locust

chilly locust
#

thanks bro

rugged root
#

Oh dude. Pure, I'm so blown away by what you do

#

I'm curious how efficient it would be, since Python isn't typically recursion friendly

swift valley
#

It's less-than-optimal

#

Although I might do a few tricks to make it go nyoom

#

*cough* PyO3 *cough*

rugged root
#

Not familiar with that

swift valley
#

It's for writing Python extensions in Rust, it interfaces with the CPython API

chilly locust
rugged root
#

?

chilly locust
#

because politics are a no no in my book

torpid verge
#

Covid != Politics?

rugged root
#

I mean this is less politics and more just about the hardships going on

chilly locust
#

even though the current discussion isn't so political

#

yeah

rugged root
#

So wait, you'd bounce from the server or just the chat

chilly locust
#

hmmm

#

perhaps just the chat

rugged root
#

Was gonna say. This is a unique case in the conversation

chilly locust
#

I actually might not leave this server

torpid verge
#

I mean it's just a civilized discussion

chilly locust
#

Since I like reading code from others

torpid verge
#

It's "fun" being able to talk about it calmly

chilly locust
#

and trying to understand them

#

I guess

rugged root
#

It'd be easy to politicize it, but we're just people trying to connect in these hard times

chilly locust
#

oh totally

#

That's fine

somber heath
#

Hard time. Time as physical substance with a hardness property.

amber raptor
#

it's offtopic chat, various topics come up

rugged root
#

You had me at hard, opal

chilly locust
#

I just thought that Charlie was being passive aggressive to me when he emphasized how he was feeling over the disruption that I was causing

#

So that's why I felt that way

quasi condor
#

I was being passive agressive- you giggling whilst people are talking is annoying as shit

#

if it was any other server - i'd have been aggressive aggressive

amber raptor
#

Voice Disruption is 100x worse then Text

chilly locust
#

yeah I guess

#

But maybe not be so rude about it?

somber heath
#

I lean left or right, depending on where I place my weight on my feet.

quasi condor
#

maybe don't be rude in the first place

earnest scarab
#

any grad or college student?

pure path
#

Oh we got 19 people in the vc

chilly locust
#

It wasn't about the discussion you were having

#

But I mean

somber heath
#

I absolutely blame people for their lack of response at the beginning.

chilly locust
#

I understand that it can be annoying

amber raptor
#

there is plenty of students in Voice Chat

chilly locust
#

so sorry about that

#

yeah there is

earnest scarab
#

to me US politics looks like a reality show

chilly locust
#

yeah

somber heath
#

@earnest scarab Funny, that.

chilly locust
#

and I'm personally not a fan of it

earnest scarab
#

I do feel bad for the ppl affected by it...but its too much

pure path
#

There is a movie that was based on this exact situation
Name - Contagion

chilly locust
#

huh, interesting

pure path
#

who has watched it?

chilly locust
#

not me

pure path
#

it is the exact same situation that we are facing rn

#

like exact exact

earnest scarab
#

will add to watchlist thnx

quasi condor
#

^ That article covers the options (from a very high level)

earnest scarab
#

Is the travel ban still there for going to US this Spring?

somber heath
#

Why would you dare?

earnest scarab
#

Just looking at options for grad school start date

somber heath
#

"Oh, look. A big ol' bath of snot. Let's go swimming."

chilly locust
#

well

#

see ya

rugged root
#

@subtle orchid What's up? Type out your question

subtle orchid
#

i want to start a django app within my django project but it is giving me an error as i type the code in vsc builtin terminal which is phyton manage.py start app name @rugged root

#

phyton : The term 'phyton' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the
name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1

  • phyton manage.py startapp blog
  •   + CategoryInfo          : ObjectNotFound: (phyton:String) [], CommandNotFoundException
      + FullyQualifiedErrorId : CommandNotFoundException
rugged root
subtle orchid
#

this is the error

rugged root
#

They'll be able to take care of the specific errors better than we can

hollow haven
#

@subtle orchid (it should be python, no phyton)

subtle orchid
#

@subtle orchid (it should be python, no phyton)
yeah it is so embrassing

#

how could i do this mistake

somber heath
#

There'll be litigation to eliminate or not count as many mail-ins as possible in battleground states. Dems are more likely to vote by mail. So get rid of those, the Repubs claim victory. That's the strategy.

earnest scarab
rugged root
#

@subtle orchid We've all done it and we will still do it

quasi condor
#

back soon

earnest scarab
#

apart from Politics how safe is US in Gun violence and crime

amber raptor
#

Depends on where you are but mostly safe

earnest scarab
#

in a typical college town

amber raptor
#

Mostly safe but some inner cities schools might not be as safe

subtle orchid
#

i corrected my python spellings but it is giving another error the help i got about this specific error is not undertandable can anyone help

#

python manage.py startapp blog
C:\Users\Ali Hasnain\AppData\Local\Programs\Python\Python38-32\python.exe: can't open file 'manage.py': [Errno 2] No such file or directory

quasi condor
#

@amber raptor I have faith in you to tell me - is VC talking about anything interesting, or should I just go do work?

amber raptor
#

Work

#

We are discussing 🩅 politics

rugged root
#

Work is always the more important choice

#

They both are

quasi condor
#

This work is shitty web dev stuff though - fucking jsons and dealing with None

amber raptor
#

Heh

rugged root
#

Still work

earnest scarab
#

python manage.py startapp blog
C:\Users\Ali Hasnain\AppData\Local\Programs\Python\Python38-32\python.exe: can't open file 'manage.py': [Errno 2] No such file or directory
@subtle orchid is the path to file correct and are u running the python command in the correct directory

subtle orchid
#

@subtle orchid is the path to file correct and are u running the python command in the correct directory
@earnest scarab yeah i am trying to start the app in the directory i created the django project

quasi condor
#

one political leader compared to another?

#

don't see how not

somber heath
#

People want their black and white? You mean not just white?

#

Resentment wouldn't breed centerism, would it? Resentment is polarising.

rugged root
#

@hidden flower Hi viv

hidden flower
#

hello lemon_pika

#

how did you notice that I joined?

#

@rugged root

#

*why

rugged root
#

I looked at the folks in the channel?

hidden flower
#

ah

#

well, hi Hem

severe pulsar
#

this is one of the most beautiful VCs ive seen(or rather heard) in a long time 😂 😂

subtle orchid
#

this is one of the most beautiful vcs ive seen(or rather heard) in a long time 😂 😂
@severe pulsar vcs?

severe pulsar
#

VCs

#

Voice Calls

subtle orchid
#

oh

hidden flower
#

voice channel

severe pulsar
#

yeah that works too

#

but in this context

subtle orchid
#

i thought u were saying visual studio code

#

nevermind

somber heath
#

I can...not like, but understand there being armed guards with handguns at airports. Certainly not with machine guns in plain sight, because damn. To have them in reserve, okay, because shit happens and nobody wants Die Hard 2 or whatever it was.

hidden flower
#

lmaoo

somber heath
#

The guards preferably standing a way away from people. I don't like even being near handguns.

#

Strangely enough, rifles don't bother me as much.

#

Not that I've been around any.

#

Well. A tranq rifle.

amber raptor
#

I'm not sure why we have them either

somber heath
#

Doesn't count.

amber raptor
#

what are they going to do with those rifles? Finish off the survivors from a bombing?

hidden flower
#

lmaooo

somber heath
#

Tea party. With guns.

amber raptor
#

We can have that now

#

When you are in the US Opal, let me know, we will have tea party with guns, though you will hate our tea so bring your own

somber heath
#

I suspect I shall never travel.

amber raptor
#

Why not? COVID will pass

somber heath
#

I have no desire to.

quasi condor
#

on the armed-police front, we have police like this walking about in central london and airports and whatnot

somber heath
#

Many people find lacking a desire to travel to be a foreign concept.

amber raptor
#

we have similar

quasi condor
#

People really don't expect it

#

you see them all over the place in London

#

and given that normal police here don't even have handguns

#

people are surprised

amber raptor
#

I feel like EU is going to have to come to terms with free movement and it's effects

swift valley
#

Public transportation here sucks

quasi condor
#

My internet is too bad to watch that right now - but I'm pretty sure it's SFW ^

tiny seal
hidden flower
#

did I unmute here? 😳

rugged root
#

Yeah

hidden flower
#

shit

#

sorry

rugged root
#

No worries, it happens

olive pivot
#

is there a java server?

native nebula
#

i am a raper

hidden flower
#

*rapper?

swift valley
#

Sounds like a Pokemon at best

whole bear
#

i am a raper
@native nebula Lets hope that was a typo

tiny seal
wind narwhal
#

F

whole bear
#

my top 3 is Steins gate, Fmab, Hunter x hunter

unkempt epoch
#

woah so many ppl in vc

#

watchu talkin abt?

amber raptor
#

whatever people bring up

unkempt epoch
#

I see

whole bear
#

Yup we do use that phrase

#

do the needful is common in india

hidden flower
#

ig it's like how some phrases are particular to American English, British English, Australian English

amber raptor
#

Yep

#

water

restive geyser
#

is it over yet

amber raptor
#

yes

restive geyser
#

ty

amber raptor
#

it was

#

until OTHERS couldn't move on

restive geyser
#

i thought it was safe D;

amber raptor
#

so did I

amber raptor
#

those look like biscuits

restive geyser
#

those are the japanese ones

#

they're fluffy~

amber raptor
#

weird

amber raptor
#

that's American

restive geyser
#

yup

amber raptor
#

you would think they would have visited a diner while in NYC

restive geyser
#

lolol

amber raptor
hidden flower
#

discord is using 300 MB rn

amber raptor
whole bear
#

Hi OpalMist

gentle flint
#

360 MB on mine

whole bear
#

@whole bear bruh please stop

severe elm
#

@dire folio i spotted you on the live video on youtube

hidden flower
#

I don't have it

#

or atleast I think I don't

gentle flint
#

speech-dispatcher

somber heath
#

@whole bear Hai hai.

acoustic kestrel
rugged root
#

@tidal junco Yo

leaden comet
acoustic kestrel
#

dude

#

rad beard

tidal junco
#

okay so suppose I had a function: python async def get_something() -> List[T]: ... return results
and I wanted to turn it into returning async iterator: python async def get_something() -> AsyncIterator[T]: ... for item in results: yield item
and then, I thought that it would be cool to remain backwards compatible, and therefore I created ```python
class AsyncIter(AsyncIterator[T]):
def list(self) -> List[T]:
return [value async for value in self]

def __await__(self) -> Generator[Any, None, List[T]]:
    return self.list().__await__()```

I also had AsyncIter.map, which is basically meant to apply async functions on iterables. In the end, it thought that AsyncIter is awaitable, and called await on it, which did not let me do like python array = await AsyncIter(something).map(function_that_returns_async_iter).parallel_flatten().list()

acoustic kestrel
tidal junco
#

oh right

acoustic kestrel
#

copy it all so u dont need to retype hahaha

rugged root
#

@regal quiver

#

Hey Rab

amber raptor
#

Hey

#

Did we announce next code Jam?

rugged root
#

It'll start sometime in Jan or Feb

amber raptor
#

Got it

#

Text is confusing

rugged root
#

I hear ya

amber raptor
#

Winter 2020

#

Wait what?

rugged root
#

!tempban 281766826860347392 14d If you plan on randomly joining and disrupting voice chat and causing issues, then you might want to reconsider being here. You currently have no messages, and your only contribution seems to be trolling. Consider this your one and only warning. When (if) you come back, make sure you've read our Rules and Code of Conduct, and if you don't abide by them, you're out for good.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @limber raft until 2020-10-19 20:33 (13 days and 23 hours).

tidal junco
leaden comet
rugged root
#

@leaden comet I am in love with this

tidal junco
#

I kinda like the impression

crude scroll
#

hi guys

rugged root
#

Yo

#

@tidal junco Hmmmmm?

tidal junco
#

wait for it

#

I need to scream a bit

#

lol

crude scroll
#

hey hemlock

rugged root
#

!resources @tropic ice

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.

crude scroll
#

!ping

wise cargoBOT
#

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

tidal junco
#
array = [1, [2, [3]], [4], [[[5], 6], 7], 8]```
#
result = [1, 2, 3, 4, 5, 6, 7, 8]```
amber raptor
#

I’m going to hurt the developer for making it

tidal junco
#

In computability theory, the Ackermann function, named after Wilhelm Ackermann, is one of the simplest and earliest-discovered examples of a total computable function that is not primitive recursive. All primitive recursive functions are total and computable, but the Ackerman...

amber raptor
rugged root
#

!warn 603610743811604513 Not even as a joke

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied warning to @tough panther.

tough panther
amber raptor
#

!source

wise cargoBOT
bitter shore
#

test

whole bear
#

why is this os.walk not working

sweet dragon
#

@leaden comet ew....

leaden comet
#

...?

#

@sweet dragon why you pinging me

whole bear
#

loadData()
This function reads the data file BusRoute250.txt, creates the BusStop instances and put them in busStopList.

#
busStopList = []
def loadData():
pass
def listAllBusStopNames():
pass
def listAllStreetsOnRoute():
pass
def listAllSuburbsOnRoute():
pass
def searchByNumber(start: "int, value: a stop number",
end: "int, value: a stop number >= start"):
pass
def searchByName(nameKey):
pass
def searchByStreet(streetKey):
pass
def searchBySuburb(suburbKey):
pass
def searchByAnyField(key):
pass
#== Tests ==
# Add tests to test each of the functions```
wise cargoBOT
#

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

somber heath
#
class MyClass:
    pass
alpha = MyClass()```
#
class AnotherMyClass(MyClass):
    pass```
#

'apple'[3] == 'l'

#

[v for v in range(10)]

#

v.s.
[0,1,2,3,4,5,6,7,8,9]

#
fruits = ['apple', 'pears', 'grapes']
fruits = [fruit for fruit in fruits] #results in same as above
first_characters = [fruit[0] for fruit in fruits]```
#

fruits[0]

hushed elm
#

"water"

#

ware

gentle flint
#

not "wader"

hushed elm
#

wara

somber heath
#

[['a',2,'whop'], ['n',5,'ala'], ['p',8,'neq']]

hushed elm
#

oraoraorawarararar

gentle flint
#

is that Hawaiian

hushed elm
#

yes

#

i know hawaii

gentle flint
#

I see

somber heath
#
class MyClass:
    def __init__(self, a,b,c):
        self.a = a
        self.b = b
        self.c = c```
whole bear
#
    def __init__(self, number, name, street, suburb):
        self.number = number
        self.name = name
        self.street = street
        self.suburb = suburb```
somber heath
#

_list = [MyClass(a='p', b=4, c='wax')] or _list = [MyClass('p',4,'wax')]

#

[obj.a for obj in _list]

somber heath
#
busstoplist = [BusStop(b=2), BusStop(a=1) BusStop(c=3)]```
whole bear
#
  line_split = line.split("/")
  for row in line_split:
    print(row)```
hushed elm
somber heath
#
_list = []
for each in file.readlines():
    each = each.strip().split('/')
    entry = MyClass(number = each[0], size = each[1], height = each[2])
    _list.append(entry)```

```python
lines = ['apples', 'pears', grapes']
for line in lines:
    print(line)

print(lines[0])
print(lines[1])
print(lines[2])```
unkempt epoch
#

hm

gentle flint
whole bear
#
    filename = "BusRoute250.txt"
    infile = open(filename, "r")
    lines = infile.readlines()
    for line in infile.readlines():
        type(line) == str
        line = line.strip().split('/')
        type(line) == list
        entry = BusStop(number = line[0], name = )```
gentle flint
glass jewel
gentle flint
severe elm
rose sapphire
#

pls can somebody teach me coding

gentle flint
#

@glass jewel please use push-to-talk

#

the video is becoming quite annoying

rose sapphire
#

pls tach me how to code

severe elm
#

@frigid shard i'm sry bro i'm doing something right now

#

i will be back a littl ebit later

dim wagon
uneven yarrow
#
hello this is my text
dim wagon
#
hi
severe elm
#
def my_function():
  print("hello")
uneven yarrow
#
text
#
this is green
dim wagon
#
zix
#
zix
#
zix
loud quail
#
[red or not]
#
+ Here's some green colored text!
#
"Here's some nice, dark green text"
severe elm
#

yo can someone help out real quick with importing a module from my dir-tree

#

i dont know why but it's not working

loud quail
#

check this out

dim wagon
uneven yarrow
#
import sqlite3 as sqlite

conn = sqlite.connect("logs.db")

c = conn.cursor()

x = input("Search for id")

c.execute("""SELECT * FROM logins WHERE id= ?""", (x))

print(c.fetchone())

conn.commit()

conn.close()
#

@dim wagon

dim wagon
#

1 or 1=1

#

c.execute(var)

#

var = populated somewhere

uneven yarrow
#

c.execute("""SELECT * FROM logins WHERE id= '{}' """.format(x))

fiery hearth
#

testing some markdown TEST

#

test test

#

#testing italicized TEST BOLD ITALICIZED

#

test underline

fiery hearth
#
kjgkjhvb
glass ridge
#

hi

tall trail
#

lololololololollolololololol

hollow haven
#

@fiery hearth There's a lot of random noise coming through your mic, you might need to adjust your mic threshold settings

#

@fiery hearth could you please mute? There's a lot of background noise coming through your mic

somber heath
#

@chilly kiln

>>>class MyClass:
...     def __init__(self, alpha):
...         print(self)
...         print(alpha)
...
>>> alpha = MyClass(self='a', alpha='b')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: __init__() got multiple values for argument 'self'
>>> alpha = MyClass(self='a', alpha='b', alpha='c')
  File "<stdin>", line 1
SyntaxError: keyword argument repeated```
#

'apple'.upper() The 'apple' string instance in memory, itself, is referred to by upper's self parameter, str.upper being a method belonging to class str.

chilly kiln
#
class Human:
  """
  Classe qui définit un humain
  """

  dwelling_place = "Terre"

  # Constructeur
  def __init__(self, name, age):
    self.name = name
    self.age  = age

  # Méthode d'objet
  def tell(self, message):
    print("{} a dit : {}".format(self.nom, message))

  # Méthode de classe
  def change_planete(cls, new_planete):
    Human.dwelling_place = new_planete

  # Méthode statique
  def definition():
    print("L'humain est l'ĂȘtre vivant considĂ©rĂ© comme Ă©tant le plus Ă©voluĂ© de la planĂšte terre")
somber heath
#
class str:
    def upper(self):
        #self is 'apple' where 'apple' is 'apple'.upper()
        return 'APPLE'```
`self` == *this* apple within def upper ->`'apple'.upper() == 'APPLE'`
tall latch
#

print(Human.dwelling_place)

chilly kiln
#

Inside my class, without instantiation, what is dwelling_place? Both object and class attribute?

#

Or just one of them?

#

Or a kind of neutral attribute that I can use in both cases

somber heath
#

== & is

indigo bramble
#

it is a class attribute but you can access it though self too

somber heath
#
a = 'apple'
b = 'apple'
c = b

a == b
a is not b
c is b
a is not c
chilly kiln
#

@indigo bramble Thanks

#

So, If I well understood, a class attribute - outside the constructor, but inside the class -, is a common attribute for all instances? Right?

indigo bramble
#

@chilly kiln when you use the dot operator it will lookup the name first as the attribute of the object. If it doesn't find it there it will look it up in the class of the object. If it doesn't find it there it will look it up in the parent class and etc...

somber heath
#

'apple'.upper() upper's ' self is the apple string at the beginning of this message, per the above is example.

chilly kiln
#

Ok, so if I use it with " self ", in fact, it's an object attribute, if not, a (common) class attribute? Right?

indigo bramble
#

I think, yes

chilly kiln
#

What did you say (vocally) @somber heath?

amber raptor
#

Java is not low level

indigo bramble
#

Java runs on 3 billion devices

somber heath
#
class MyClass:
    a = 0 #Common/default var
    def __init__(self, b):
        self.b = b #Belongs only to the instance of the class, self.```

```python
alpha = MyClass('apple')
beta   = MyClass('pear')
alpha.a == 0
beta.a   == 1
alpha.b == 'apple'
beta.b   ==  'pear'```
amber raptor
#

Sorry Opal, I do have someone muted

indigo bramble
#

@somber heath idk if using static vars for defaults is idiomatic?

somber heath
#

PEP documents tend to be a good guide.

#

If I find myself getting tangled wih my approach to a problem, they tend to straighten my brain out.

#

@chilly kiln Buggered if I can remember, sorry.

amber raptor
#

Not sticking around Charlie

quasi condor
#

uh - doesn't sound quite like my kind of convo

amber raptor
#

I know what's up

#

I dislike you too

quasi condor
#

glad to hear I'm achieving my goals

amber raptor
#

it's good to have goals

somber heath
#

@tall latch import this

#

"Errors should never pass silently.
Unless explicitly silenced."

amber raptor
#

Opal, đŸ€·

#

Welcome Charlie!

amber raptor
#

that's not as relevant with collapse of economy

quasi condor
#

I just linked it because it shows the kind of things you probably want to know. He knew Python, general software design stuff, and Django by the time he landed a job

amber raptor
#

I know

#

@whole bear Server is english speaking

quasi condor
amber raptor
#

I've also had it happen when my laptop out of sleep

quasi condor
amber raptor
somber heath
#

@whole bear It is now your sacred duty to post puppy pictures. Sorry for the mis-room mention.

olive night
#

Have to go bye

glass ridge
#

ok

indigo bramble
#

xbox 2?!

amber raptor
#

XBox Series X

#

it's awful name

#

let's name very similar to current XBox

amber raptor
subtle orchid
#

Hello everyone in vc

somber heath
#

o/

quiet zephyr
#

Heyy

tropic ice
#

levels

quasi condor
subtle orchid
#

@hollow haven Animated logo done for server?👀

hollow haven
#

@subtle orchid Not yet, I may finish it today. Depends on the changes that'll be requested by staff. So far it seems that most staff isn't quite happy with the current iteration.

subtle orchid
#

Good Luck......You got this!

quasi condor
subtle orchid
#

Ajin Demi Human

#

it's around a group of people which don't die

#

Immortals

whole bear
#

boku no pico

#

danmachi

amber raptor
#

This went south

whole bear
#

jajaj

#

anohana

verbal hemlock
#

hey rabit

subtle orchid
#

@quasi condor which field u will suggest to a begginer I am learning web development right now Am i on a right path?

#

or should learn something else

quasi condor
#

yeah probably web dev

subtle orchid
#

I started with django

#

do i need to learn flask aswell

quasi condor
#

Maybe. But sticking with Django for now is fine

subtle orchid
#

I have to learn some javascript which is must

quasi condor
#

Django, JS, JS frontend frameworks, Backend reset APIs

#

that's the path I'd follow if I were you

subtle orchid
#

What are javascript frameworks?

#

and Apis?

quasi condor
#

JavaScript frontend frameworks are how you make full on web applications

#

APIs you'll probably get to

#

ReactJS/VueJS

subtle orchid
#

Node.js is it a javascript frontend frame

quasi condor
#

no, node.js is a backend. ReactJS or VueJS or Angular are frontend

subtle orchid
#

Can I make a website on my own if i learn this stuff

#

And get good enough?

#

without any help?

quasi condor
#

Depends what you mean by good enough

#

for now I'd just stick with your current path

subtle orchid
#

Depends what you mean by good enough
@quasi condor the one who can Start doing some freelancing tasks👀

quasi condor
#

I'm not the best person to advise you

#

I'd just carry on with Django now

#

and probably try to speak to people doing freelancing right now

hushed elm
#

#000000

#

lols

subtle orchid
hollow haven
#

@subtle orchid huh? what's that from?

subtle orchid
#

Twitch

quasi condor
hollow haven
#

oh nah, I don't stream on twitch. I don't have the patience for that. I'll stream in this channel sometimes though

hushed elm
#

look at them tits on that car lol

subtle orchid
#

oh nah, I don't stream on twitch. I don't have the patience for that. I'll stream in this channel sometimes though
@hollow haven u play video games?

#

like fortnite or valorant?

hollow haven
#

I play overwatch mostly

subtle orchid
#

@rose roost i am young forgive me for my sinsđŸ„ș

hushed elm
#

nah don't

subtle orchid
#

Can I live?

hushed elm
#

straight to hell

#

jk

subtle orchid
#

You can joke with me ofcourse😁

hushed elm
#

yeee cool

subtle orchid
#

@hushed elm why u have a pink coloured background as your pfp?

#

any specific reasons?

hushed elm
#

i like it

subtle orchid
#

yay!

hushed elm
#

i copied youngscrolls

#

i'm a guy

#

not a girl

subtle orchid
#

you cannot give a better reason

#

i'm a guy
@hushed elm i know

subtle orchid
#

😳

hushed elm
#

i copied this guy cuz i like that profile pic

subtle orchid
#

I thought u copied filthy pranks

hushed elm
#

oh yeah that guy too

#

idk

#

400000 a year

#

USD

#

BIG USD

#

canadian dolla

#

C$

#

i win

#

gg @tropic ice

tropic ice
#

draw

hushed elm
#

naw

#

i wins

#

big bren

tropic ice
#

drwa

hushed elm
#

my fav snake

#

hhhhh

#

Snake

#

Big Fat Snake is a Danish pop/rock music group that was founded in 1990.
Peter Viskinde and Anders Blichfeldt first met in 1988 for the recording of a demo tape for the band "The Werners" that later changed name to "Verners Verdensorkester" ("Verner's World Orchestra"). The ba...

tropic ice
hushed elm
verbal hemlock
hushed elm
#

this guy

#

very hot

#

sounds like me

#

THICC COCONUT

tropic ice
#

f

hushed elm
#

i judge people by their youtube recommended page

hushed elm
#

In computer programming, assembly language (or assembler language), often abbreviated asm, is any low-level programming language in which there is a very strong correspondence between the instructions in the language and the architecture's machine code instructions. Because a...

#

look

#

it says programming

#

right there

rugged root
swift valley
#

Butter toast is so good

#

Midnight snacks are so good

honest pier
#

!pep8 @kind crescent

wise cargoBOT
#

PEP 8 is the official style guide for Python. It includes comprehensive guidelines for code formatting, variable naming, and making your code easy to read. Professional Python developers are usually required to follow the guidelines, and will often use code-linters like flake8 to verify that the code they're writing complies with the style guide.

You can find the PEP 8 document here.

subtle orchid
#

hello @rugged root

#

i hope u doing good

rugged root
#

I'm doing pretty good! How about yourself?

ancient lantern
#

hey guys, what is the shortcut for reformatting code in VS????

tiny seal
rugged root
#

Back in a moment

tall latch
ancient lantern
#

what is the shortcut key for reformatting code in VS????

hollow haven
#

@ancient lantern do you mean with black or something else?

ancient lantern
#

@hollow haven reformatting code in visual studio. what black?

hollow haven
#

a python pep8 autoformatter. But a quick google search shots that on windows code formatting is shift + alt + f

ancient lantern
#

thnx

earnest scarab
#

damn I just checked out the hacktoberfest website.......looks like a pretty cool initiative Good luck guys

swift valley
#

Finally done writing Mocks for my project's tests

#

Anyways, gotta catch sleep

wise cargoBOT
#

:x: According to my records, this user already has a mute infraction. See infraction #13392.

#

:incoming_envelope: :ok_hand: applied mute to @tawny knoll until 2020-10-06 19:56 (9 minutes and 59 seconds) (reason: burst rule: sent 10 messages in 10s).

tiny seal
#

!user

wise cargoBOT
#

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

tiny seal
languid path
#

How long did it take to make that?

tiny seal
#

ask @hollow haven, I just made the glitch effect

rugged root
#

@amber raptor How's that going for you?

#

Sorry, partner in the office

amber raptor
#

It's slow going

rugged root
#

I'll talk in a sec

#

@whole bear Yes I do

#

Cheaper?

#

Payment plan

#

Yep

#

Usually

#

Unless it's a paycheck

#

Some people don't do direct deposit

#

For a fee

#

Can't imagine

#

@whole bear Also means you might be low on iron

#

For some reason chewing on ice is linked to that

#

@tough panther Sup

#

Ice

whole bear
#

What about getting random dizziness

rugged root
#

Anemia

whole bear
#

Like enough to were u feel like passing out

rugged root
#

Yes

whole bear
#

Oh

rugged root
#

Iron is needed for your blood cells to bind oxygen

#

Take an iron supplement

#

See if that helps

honest pier
#

eat a nail

rugged root
#

I mean if his teeth hurt from eating ice....

honest pier
#

but they're numb from the ice

rugged root
#

Fair point

#

@tough panther I mean

#

I'm talking in here

#

Are you the only person who knows I'm talking right now, async?

honest pier
#

¯_(ツ)_/¯

rugged root
#

-sighs-

honest pier
#

e x p o s e d

rugged root
#

The exposure is that people don't care

tough panther
#

did your mic break or do you have to be quiet

rugged root
#

Have to be quiet

#

One of the firm partners is back here helping the intern with something

shy ravine
rugged root
#

Absurdly high

#

Yeah it's garbage

#

@tiny seal Well we've established that the US sucks much ass

hollow haven
#

@tiny seal I think it looks great, let's go with it

tiny seal
#

@hollow haven i'll dm you .blend in a minute

rugged root
#

@whole bear Then don't get one

#

It's company property

#

Yep

#

@amber raptor You set off the explosive charge that was rigged to it

#

Same way with desktops or laptops

#

Not all the specs are the same, not everyone has the same OS version, drivers, etc.

#

For sure

#

@tough panther Tell me of any business software that is Linux friendly

#

There is almost nothing

#

That's not the point I was making

whole bear
#

The phone I have rn my microphone is messed up and it dosent really pick my voice up

#

Idk if I need a new one or my phone just needs to be cleaned

rugged root
#

!projects @amber steppe

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.

amber raptor
#

The Nokia 3310 (2017) is a Nokia-branded feature phone developed by HMD Global. It was announced on 26 February 2017 at Mobile World Congress (MWC) 2017 in Barcelona, Spain, as a revival of the original Nokia 3310 that was produced from early 2000s. An improved model with 3G s...

whole bear
#

Mm

amber raptor
whole bear
#

:/

amber raptor
whole bear
#

:/

amber raptor
whole bear
#

䜕

rugged root
#

It's an English only server, so please speak English

whole bear
#

Okey , I try

#

:/

rugged root
#

Thank you

#

Sorry, it's hard to moderate languages we don't speak

whole bear
#

Ok

#

I can't speak !

rugged root
#

You have your mic muted

amber raptor
#

just drop the hammer

whole bear
#

I'm afraid I don't really speak the language.

#

Value?

rugged root
#

!resources @kind crescent

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.

whole bear
#

Documentation

rugged root
#

I'm out of here, I'll be back when I get home

whole bear
#

Jp

#

Bye

#

JavaScript is better !!

#

Than python

#

:/

languid path
#

Does anyone know if all of the resources on the sight are free?

whole bear
#

I'm not sure .

amber raptor
#

no

#

some are, some are paid

languid path
#

Ah, ok. Thanks.

whole bear
#

JavaScript!!!

#

Can speak more slowly?!

#

*you

#

...

#

I'm of

languid path
#

If Python updates, would you have to update all prior code for it to work?

hollow haven
#

Depends on what features changed

amber raptor
#

Not just python updates, libraries change as well

hollow haven
#

@vestal mason could you adjust your settings so we don't hear ourselves through your mic?

languid path
vestal mason
#

is it better now?

hollow haven
#

you are muted now so yes

vestal mason
#

whats up guys