#voice-chat-text-0

1 messages · Page 28 of 1

whole bear
#

need permission

karmic elk
#

i need to go. see ya later.

tulip plover
#

@languid hollow

tulip plover
#

@tacit rampart book

wary carbon
#
keys=[1,7,9,10,15,17,19,30,31,40]
def bal_bst(k):
    if k==[]:
        return None
    mid=len(k)//2
    print(mid,k)
    root=Node2(keys[mid])
    root.left=bal_bst(k[:mid])
    root.right=bal_bst(k[mid+1:])
    return root
temp2=bal_bst(keys)
#testing
stack=[temp2]
while stack:
    temp=stack.pop()
    print(temp.key,end=" - ")
    if temp.right!=None:
        stack.append(temp.right)
    if temp.left!=None:
        stack.append(temp.left)```
#

@pulsar root

#

can u help me out?

#

im getting the wrong output when i try to traverse the tree

sly gale
#

3=="3"

somber heath
#

!e py print(1.0 == 1)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

True
somber heath
#

!e py a = 1 b = 1j print(a == b)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

False
somber heath
#

Wait, no.

#

!e py print(1 == 1+0j)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

True
somber heath
#

!d complex

wise cargoBOT
#

class complex(real=0, imag=0)``````py

class complex(string, /)```
Return a complex number with the value *real* + *imag**1j or convert a string or number to a complex number. If the first parameter is a string, it will be interpreted as a complex number and the function must be called without a second parameter. The second parameter can never be a string. Each argument may be any numeric type (including complex). If *imag* is omitted, it defaults to zero and the constructor serves as a numeric conversion like [`int`](https://docs.python.org/3/library/functions.html#int "int") and [`float`](https://docs.python.org/3/library/functions.html#float "float"). If both arguments are omitted, returns `0j`.

For a general Python object `x`, `complex(x)` delegates to `x.__complex__()`. If `__complex__()` is not defined then it falls back to `__float__()`. If `__float__()` is not defined then it falls back to `__index__()`.
somber heath
#

!e py import math print(abs(1+1j)) p = 0, 0 q = 1, 1 print(math.dist(p, q))

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 1.4142135623730951
002 | 1.4142135623730951
somber heath
#

!d math.dist

wise cargoBOT
#

math.dist(p, q)```
Return the Euclidean distance between two points *p* and *q*, each given as a sequence (or iterable) of coordinates. The two points must have the same dimension.

Roughly equivalent to:

```py
sqrt(sum((px - qx) ** 2.0 for px, qx in zip(p, q)))
```   New in version 3.8.
sly gale
#

root of -1 is imaginary

#

because negetive numbers do not have roots

limpid sparrow
somber heath
#

Actual footage from my kitchen.

sly gale
#

!==

limpid sparrow
somber heath
#

@shy coyote 👋

shy coyote
#

bro

#

unmute me

#

pws

somber heath
#

!voice

wise cargoBOT
#

Voice verification

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

shy coyote
#

s

#

wait

#

i need

wise cargoBOT
#

failmail :ok_hand: applied mute to @shy coyote until <t:1667744394:f> (10 minutes) (reason: burst rule: sent 8 messages in 10s).

The <@&831776746206265384> have been alerted for review.

somber heath
#

@shy coyote What did we find out, today?

shy coyote
#

lmfao

somber heath
#

@empty yacht @whole bear 👋

shy coyote
#

i was trying to do the 50 messages

somber heath
#

Yes. I saw. You didn't get very far.

whole bear
#

hello people

lethal thunder
#

@somber heath can you have an fstring and rstring at the same time

#

?

#

with fr""

somber heath
#

Yep.

lethal thunder
#

cause the highlights tell me otherwise and i want to be certain

somber heath
#

!e py print(rf"{5+5}/nabc")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

10/nabc
lethal thunder
#

so its rf not fr

somber heath
#

!e py print(fr"{5+5}/nabc")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

10/nabc
somber heath
#

!e py print(rf"abc{5*5}\n")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

abc25\n
lethal thunder
#

thanks

somber heath
#

Rather, because it's \n not /n. Also I'm an idiot.

lethal thunder
#

\n

somber heath
#

So rf, fr...both work.

lethal thunder
#

!e ```py
print('\n')

wise cargoBOT
#

@lethal thunder :warning: Your 3.11 eval job has completed with return code 0.

[No output]
lethal thunder
#

!e ```py
print('1\n1')

wise cargoBOT
#

@lethal thunder :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 1
002 | 1
lethal thunder
#

great

#

thanks

#

cheers!

somber heath
#

!e py print("a\tb") print(r"a\tb")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | a	b
002 | a\tb
sly gale
#

@whole bear fr string is same as rf string

somber heath
#

!e py age = 17 name = "Peter" print(f"Hello, {name}. You are {age} years old.")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

Hello, Peter. You are 17 years old.
somber heath
#

!e py age = 17 name = "Peter" print("Hello, {name}. You are {age} years old.")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

Hello, {name}. You are {age} years old.
sly gale
#

@whole bear fr string is same as rf string

somber heath
#

They are the same.

lethal thunder
lavish rover
whole bear
#

which could help me decompile my old python script because I can't thank you

#

I use decompyle6 but its not working

#

sorry for spelling I am French

lavish rover
#

I'd suggest using the help system

whole bear
lavish rover
#

!e

class A:
  def __init__(self, x):
    self.x = x

  def __add__(self, other):
    print(f"adding {self.x} and {other.x}")
    return A(self.x + other.x)


y = A(5) + A(4)
wise cargoBOT
#

@lavish rover :white_check_mark: Your 3.11 eval job has completed with return code 0.

adding 5 and 4
lavish rover
#
struct A {}

A operator+(A const& x, A const& y) {
  ...
}
sacred elm
#

4 mod 2

#

10, 2

signal rampart
#

error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https ://visualstudio.microsoft.com/visual-cpp-build-tools/
[end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for yarl
Failed to build frozenlist multidict yarl
ERROR: Could not build wheels for frozenlist, multidict, yarl, which is required to install pyproject.toml-based projects

[notice] A new release of pip available: 22.3 -> 22.3.1
[notice] To update, run: C:\Users\leo\AppData\Local\Programs\Python\Python311\python.exe -m pip install --upgrade pip

daring vault
#
def square(num: int):
    return num*num

class SquareRoot:
    def __init__(self, number: int):
        self.outOfRoot = 1
        self.number = number

    def __str__(self):
        
        # if self.number <= 0:
        #     return f"i√{-self.number}"
        if self.outOfRoot == 1:
            outOfRootShown = ""
        else:
            outOfRootShown = self.outOfRoot
        
        if self.number == 1:
            numberShown = ""
        else:
            numberShown = f"√{self.number}"

        return f"{outOfRootShown}{numberShown}"

def PrimeCheck(num: int):
    for n in range(2, num-1):
        if num % n == 0:
            return False
    return True

def NextPrime(num: int):
    temp = num+1
    while not PrimeCheck(temp):
        temp += 1
    return temp


def outtaRoot(num:SquareRoot):
    prime = 1

    if square(prime) == num.number:
        num.outOfRoot = prime
        num.number = 1

    while square(prime) < num.number:
        prime = NextPrime(prime)
        if square(prime) % num.number == 0:
            num.outOfRoot *= prime
            num.number /= square(prime)
            prime = 1
        
    return num

print(outtaRoot(SquareRoot(9)))```
signal rampart
#

@lavish roverI have a problem

daring vault
#
def outtaRoot(num:SquareRoot):
    prime = 1

    if square(prime) == num.number:
        num.outOfRoot = prime
        num.number = 1

    while square(prime) < num.number:
        prime = NextPrime(prime)
        if square(prime) % num.number == 0:
            num.outOfRoot *= prime
            num.number /= square(prime)
            prime = 1
        
    return num
#

√20

#

2√5

#

9

3√1.0

#

16

1√16

signal rampart
#

@lavish rover

lavish rover
whole bear
#

Hi everyone, i'm 18Yo and i wanna know if is it worth it to learn C++ after Python. My goal is to be a video games programmer

#

I heard that C++ is very hard for a beginner, so i want to know if it will be easier after learning Python

gentle flint
stray niche
gentle flint
#

Μουσταφά

quaint oyster
#

مُصْطَفَى

#

arabic

#

mustafa is a name of a prophet in islam

lavish rover
#

👍

hasty fulcrum
#

Hey

#

Anyone have any experience in ARM development / or know abt it???

hallow warren
#

Is this the 3.11 error reporting vid? https://m.youtube.com/watch?v=-hGlndZss_k

Check out WHAT'S NEW in Python 3.11! https://docs.python.org/3.11/whatsnew/3.11.html

Help the channel grow with a Like, Comment, & Subscribe!
❤️ Support ➡ https://j-h.io/patreonhttps://j-h.io/paypalhttps://j-h.io/buymeacoffee
Check out the affiliates below for more free or discounted learning!
🖥️ Zero-Point Security ➡ Certified Red Team...

▶ Play video
#

It is?

#

Plz confirm or deny thx 🙏

quaint oyster
#

yes i dmed it to you

#

he explains them then shows example

hallow warren
#

Thx x zillion

quaint oyster
#

np

hallow warren
#

That is such a great video!

stray niche
#

empty

gentle flint
cosmic lark
wise cargoBOT
bleak relic
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.pythondiscord.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.

bleak relic
cosmic lark
lavish rover
#

sorry @midnight agate it seems like you don't actually need a job

whole bear
#

I need help with homework in my AP Computer Science class...

lavish rover
#

is this correct @safe pumice ?

daring vault
#

@lavish rover hey mustafa, i was wondering where i could learn or watch a simple instruction of the things that you showed me about binary numbers

lavish rover
# daring vault <@378279228002664454> hey mustafa, i was wondering where i could learn or watch ...

A little exploration of some of the fundamentals of how computers work. Logic gates, binary, two's complement; all that good stuff!

The simulation tool is now available for download!
You can find it here: https://sebastian.itch.io/digital-logic-sim
Along with source code over here: https://github.com/SebLague/Digital-Logic-Sim

If you'd like to...

▶ Play video
#

this might be helpful to you

daring orbit
#

Hello everyone

uncut meteor
#

if you want c to be high level, just do

#include <Python.h>
lavish rover
proud gull
#

Hello! Is anyone present in this voice chat willing to help me with an error that I get in my app? I am building an app with python and Tkinter

#

the code error occurs when I try to display an image in my tk window(it is not the first time I am doing it..I don't know why it happens) take a look:

lavish rover
proud gull
trail mural
#

Happy Birthday @terse needle

proud gull
#
def gallery():
    global gallery_window
    gallery_window = Tk()
    gallery_window.title('Sound Gallery')
    gallery_window.geometry('800x700')
    gallery_window.resizable(0,0)
    open_sound_for_gallery = Button(gallery_window, text = "ADD SOUND", command=chooseSoundInGallery)
    open_sound_for_gallery.pack()
    gallery_button.config(state='disabled')
    gallery_window.protocol("WM_DELETE_WINDOW", on_closing_gallery)



def on_closing_gallery():
    if messagebox.askokcancel("Quit", "Do you want to close SoundGallery?" ):
        gallery_window.destroy()
        gallery_button.config(state='active')




mp3_icon = PhotoImage(file="mp3filetypecover.png")

unknown_icon = PhotoImage(file ="unknownfiletypecover.png" )

class GallerySoundFile():
    def __init__(self, name, icon) :
        self.name = name
        self.icon = icon

        #self.icon = icon
    def add_file_to_gallery(self):
        item_container_label = Label(gallery_window, text = self.name, image=self.icon, compound='top')
        
        item_container_label.pack()




def chooseSoundInGallery(chosen_add_sound_file = ""):
    
    chosen_add_sound_filepath = filedialog.askopenfilename()
    final_add_sound_filename = os.path.basename(chosen_add_sound_filepath)
    

    if '.mp3' in final_add_sound_filename:
        chosen_add_sound_file = GallerySoundFile(name = final_add_sound_filename, icon = mp3_icon)
        print('this is an mp3 file')
        print(chosen_add_sound_file.name)
        chosen_add_sound_file.add_file_to_gallery()
    else:
        chosen_add_sound_file = GallerySoundFile(name=final_add_sound_filename, icon = unknown_icon )
        print('unknown type of file')
        print(chosen_add_sound_file.name)
        chosen_add_sound_file.add_file_to_gallery()```
#

Traceback (most recent call last):
File "C:\Users\andre\AppData\Local\Programs\Python\Python310\lib\tkinter_init_.py", line 1921, in call
return self.func(*args)
File "d:\Python_Projects\Youtube_Programming\better_keyboard_sound.py", line 237, in chooseSoundInGallery
chosen_add_sound_file.add_file_to_gallery()
File "d:\Python_Projects\Youtube_Programming\better_keyboard_sound.py", line 215, in add_file_to_gallery
item_container_label = Label(gallery_window, text = self.name, image=self.icon, compound='top')
File "C:\Users\andre\AppData\Local\Programs\Python\Python310\lib\tkinter_init_.py", line 3177, in init
Widget.init(self, master, 'label', cnf, kw)
File "C:\Users\andre\AppData\Local\Programs\Python\Python310\lib\tkinter_init_.py", line 2601, in init
self.tk.call(
_tkinter.TclError: image "pyimage3" doesn't exist

trail mural
#

deja vu

uncut meteor
#

@gritty valley

gritty valley
#

Thanks!

#

If anyone else is new to Python and wants to learn together let me know 🙂

proud gull
#

I am not new but I know like 10% of it probably so I would like to learn together, why not.

gritty valley
#

Awesome! Been watching a lot of videos and creating little exercises to practice on.

proud gull
#

me too, I started trying to create my on User Interfaces recently

#

I will send you a friend request, maybe you won't troll me like @uncut meteor did

gritty valley
#

Hahahaha sounds good

proud gull
#

Have a good night guys! Good luck to all of what you are doing, nice to meet you as well!

outer hamlet
#

im alway sable tot rain 1 model then this happens

uncut meteor
#

Pyodide comes with a robust Javascript 🡘 Python foreign function interface so that you can freely mix these two languages in your code with minimal friction. This includes full support for error handling (throw an error in one language, catch it in the other), async/await, and much more.

#

@hallow warren

dark mural
#

I've seen significantly more people confused by python indentation than curly brackets

hallow warren
#

The best thing about Rust is that it will give you more segmentation faults than pure C or C++

#

Sometimes segmentation faults are the best thing for debugging

#

The answer is the so-called "c++" available for Arduinos is much less than the c++ standard

#

Yw

#

My pleasure

white turret
#

Well it might not implement all the features, but its still c++.

hallow warren
#

Yes it's c++ but it is so much closer to pure C than standard C++

white turret
#

Lets say Its got OOP

#

and arduino lib is based on OOP

hallow warren
#

If you're going to use an object model, wouldn't you rather use the Python oop system than a ffi to C++?

white turret
#

on a micro?

#

python will add lot of overhead there

hallow warren
#

ffi: foreign function interface

#

Pyodide has the future of webasm

white turret
#

anyway I was refering to the arduino lib which is based on c++. If you want to avoid OOP, you would not be able to use the arduino lib at all

hallow warren
#

Nobody is going to want nodejs when they could have python 3.12

white turret
#

I dont really go above Python. Python is the highest level that I use

#

I'm more of a low level guy

hallow warren
#

When I need a fast inner loop, I use os.system() to call a pure C executable

unkempt magnet
#

balenciaga

#

adidas and balenciaga

#

gap yes but he had no contract with nike

#

and he dropped from 1b to 300M

#

i was just testing

#

my mic

whole bear
#

@stiff meteor

unkempt magnet
#

@whole bear

#

its zero gravity gaming chair

#

@whole bear its around 3k

civic zephyr
#

def checkout(cart):
''' Returns total price from cart dictionary'''
total = 0
#your code here
#for each key in cart
for k in cart:
#obtain the price from value list
itemCost=float(cart[k][-2])
#obtain the quantity from the value list

   quantity = int(cart[k][-1])
#adding price * quantity to total
   total+=(itemCost*quantity)
#return total
   return total
whole bear
#
def checkout(cart):
    ''' Returns total price from cart dictionary'''
    total = 0
    #your code here
    #for each key in cart
    for k in cart:
    #obtain the price from value list
       itemCost=float(cart[k][-2])
    #obtain the quantity from the value list

       quantity = int(cart[k][-1])
    #adding price * quantity to total
       total+=(itemCost*quantity)
    #return total
       return total
civic zephyr
warped raft
#

hello @devout mica

#

hello @tidal shard

devout mica
#

hello

warped raft
#

doing good how about you
btw i can hear you so no need to type hear

devout mica
#

you can hear me?

#

i cant even talk

warped raft
#

yeah'

#

oh

#

so it was vicent i

#

I was on another tab

devout mica
#

@tidal shardhow to get "" in output

warped raft
#

Did you said hello to me @tidal shard

tidal shard
warped raft
#

it will work

#

not

tidal shard
#

!e print(""this is what you want, right?"")

wise cargoBOT
#

@tidal shard :white_check_mark: Your 3.11 eval job has completed with return code 0.

"this is what you want, right?"
tidal shard
#
\"
#
print("\"you need to escape the " using \"")
#

print(' " ')

#

!e print(' " ')

wise cargoBOT
#

@tidal shard :white_check_mark: Your 3.11 eval job has completed with return code 0.

 " 
warped raft
#

!e print(""you need to escape the " ")

wise cargoBOT
#

@warped raft :x: Your 3.10 eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     print("\"you need to escape the " using \")
003 |                                              ^
004 | SyntaxError: unexpected character after line continuation character
#

:incoming_envelope: :ok_hand: applied mute to @devout mica until <t:1667822978:f> (10 minutes) (reason: attachments rule: sent 8 attachments in 10s).

The <@&831776746206265384> have been alerted for review.

tidal shard
#

lmao

warped raft
#

seized @tidal shard lmao

#

banned

#

muhahah

#

sry

#

don't take it serioulsy

magic coyote
#

!unmute 841010300672016435

wise cargoBOT
#

:incoming_envelope: :ok_hand: pardoned infraction mute for @devout mica.

devout mica
#

sorry

#
#To Get Any Side Of Tringle

print("Input 1 if you want base, 2 if you want height, 3 if you want hypotenuse")
side=int(input(""))
if(side==1):
    hypotenuse=int(input("hypotenuse="))
    height=int(input("height="))
    if(height>hypotenuse):
        print("Not A Triangle")
    else:
         print("Base=",((hypotenuse*hypotenuse)-(height*height))**0.5)

elif(side==2):
    hypotenuse=int(input("hypotenuse="))
    base=int(input("base="))
    if(base>hypotenuse):
        print("Not A Triangle")
    else:
         print("Height=",((hypotenuse*hypotenuse)-(base*base))**0.5)
         
elif(side==3):
    base=int(input("base="))
    height=int(input("height="))
    print("Height=",((height*height)+(base*base))**0.5)
warped raft
#

nice
neat n clean

#

any project suggestion for me @tidal shard

devout mica
#

@tidal shard

#
#To Get Area Of Simple Shape

print("Enter 1 for square, 2 for circle, 3 for rectengle and 4 for triangle")

shape=int(input("Shape="))
if(shape==1):
    side=int(input("Side Length="))
    print("Area Of Square Is", side*side)
elif(shape==2):
    radius=int(input("Radius="))
    print("Area Of Circle Is", (2*22*radius)/7)
elif(shape==3):
    lenght=int(input("Length="))
    width=int(input("Width="))
    print("Area Of Square Is", lenght*width)
elif(shape==4):
    height=int(input("Height="))
    base=int(input("Base="))
    print("Area Of Triangle Is", base*height/2)
warped raft
#

hello @whole bear

#

how are you doing

#

doing fine

#

any project suggestions fro me

#

for

#

selenium

#

webdriver

#

n python

#

yes

#

nopw

#

i came just 30 mins

#

no problems
i wll ask Vincent

#

what are you wroking on

#

where are u from

#

same pinch

#

really hurts

#

yeah youtube

#

nope

#

yeah webdriver with youtube

#

testing my learning

somber heath
#

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

somber heath
#

Corey Schafer, YouTuber. Playlists.

#

!voice

wise cargoBOT
#

Voice verification

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

whole bear
#

I understood you

#

I have questions, can you please answer me?

somber heath
#

I'm not sure you're supposed to do it in powershell. I'm not a Windows user.

#

You might be supposed to do it in the standard windows command prompt.

#

What's the invocation you're using?

#

What errors do you get?

limber elk
#

hello

#

are you putting on ur voice, it’s very soothing

#

very elegant

#

i just got denied every apprenticeship in code bc i was 3 marks off my maths gcse nearly 2 years ago

#

shit sucks

frosty star
#

haaaay

#

no mic today tho unfortunately

#

awdhfmj im tired

#

ive been staring at the screen all day now 😢

#

ok gtg back to werk

#

byeeee ;-;-;-;

somber heath
#

@whole bear 👋

whole bear
#

Hello there

#

How ya all doing today?

somber heath
#

@whole bear 👋

somber heath
#

@whole bear 👋

forest zodiac
#

i have a feeling that this guy is just trolling

somber heath
#

It's not Utah, it's Metah.

#

@rugged tundra Got the GOL going.

#

I was fucking up the advanced indexing.

#

Sidestepped it.

somber heath
#

@rose lantern 👋

#

Why only metaphorical?

rose lantern
#

can you speak russian?

eager lava
#

hi

#

how do i talk, it says i dont have permission

#

@steel sluice

steel sluice
#

u need to send 50 msg, be on the server for 3 days

eager lava
#

ok

somber heath
wise cargoBOT
#

Voice verification

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

mental seal
#

need more messages

fast gyro
#

any1 help 😦

karmic elk
#

I thinks its better to improve public transport infrastructure .

fast gyro
#

HAAAAAALP

#

how do I make a ticket ?

#

to ask for help

karmic elk
#

go to availabe help channels

stray niche
#

@cosmic coyote you can type here

cosmic coyote
#

hi

stray niche
#

Hiiii

cosmic coyote
#

Why can't I speak on the voice channel?

lavish rover
#

!voice

wise cargoBOT
#

Voice verification

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

stray niche
lavish rover
#

@somber heath fire alarm came on as soon as I joined

somber heath
austere summit
#

hello

#

Mr Oppa

#

can you hear me ?

#

how are you

somber heath
#

@lavish rover I could hear you just fine.

austere summit
#

ooh

#

Mr Opa

#

you like coffee? Mr Oppa

#

hello globula

#

hru ?

limber elk
#

and when i tell them that i was 2-3 marks off

#

they suddenly change

#

even though i show the huge amounts of work in my portfolio

lethal thunder
sacred elm
trail mural
#

what do the boxes mean

#

I am scared

sacred elm
forest zodiac
#

this is python2

trail mural
#

o.O

#

I should run

#

no sir

#

no recursion here

sacred elm
#

f(g(x))

limber elk
#

how u doing today opal

trail mural
#

Hi OpalMist!

#

🙂

#

💀

limber elk
#

i am also doing

trail mural
#

I am pretending I am doing to avoid doing but end up doing

sacred elm
trail mural
#

I am going to assume it doesn't mean what I think it means...

magic kiln
#

my mic working @somber heath

#

one sec

trail mural
#

many shades xD

#

he removed it

#

so now

#

I don't know what to think

#

hello Mr. Hemlock

#

Pros: if you get into a fight, they can't grab your hair

somber heath
trail mural
#

that would be devestating

whole bear
trail mural
#

if they stick the plunger right and they lose grip you can use it as a horn weapon

trail mural
#

did they ask why you asked in the sense that you shouldn't have showed you lack the information

whole bear
#

brb

trail mural
#

would you do the same thing again?

rugged root
#

Related to the hairloss thing. My GodVille hero's skills

trail mural
#

It was a weird reaction unless you should have had that information yourself

#

"we like the cut of your jib" "we want you"

somber heath
#

Quantum Leap? Oh boy.

rugged root
trail mural
#

hi griff

uncut meteor
#

hi

trail mural
#

hi ustafa

#

mustafa right now

#

when you have a cold black tea infused with bay leaves, cardamom pods and cinnamon bark is nice

rugged root
#

Had me until the cinnamon

karmic elk
#

doxxed

trail mural
#

in a pot

#

308 negra arroyo lane albuquerque new mexico

trail mural
#

Hi Anokhi

#

"im good" "this is super upsetting"

#

you will find it when you are not looking for it

#

6 years from now

#

his own hot and cold storage

#

180 what

#

💀

#

usd 2 strong rn

#

hi lp

faint ermine
#

@zenith radish

lavish rover
#

@rugged tundra go do leetcode

rugged root
#

lo co geetdode

rugged tundra
trail mural
#

hi coffee

tiny socket
#

hello

#

voice soon™️

stray niche
#

yay

tiny socket
#

I screwed something up with noise suppression

#

so currently i sound like a jet engine

stray niche
#

oh

#

can we hear ir?

#

it*

whole bear
stray niche
#

Welcome back @whole bear

whole bear
stray niche
willow light
#

I find it very appropriate that I have to get into my car and drive in order to vote today, when public transportation is on the ballot where I live.

obsidian wigeon
#

I have a lot of names lol

molten pewter
whole bear
#

Im gonna head out as well guys. See yall later!

molten pewter
rugged root
#

Back when I get in the van

sacred crystal
#

you might want to remove the debug printing cuz that would slow your multiprocessing by a lot

willow light
#

Ok let the fun part of the day begin

willow spoke
#

answered like a programmer

willow light
#

And done!

whole bear
#

ggs

willow light
#

It was hilarious looking at the county sheriff and the same person was running as a democrat, a republican, and a libertarian.

molten pewter
#

candiru

crystal fox
crystal fox
trail mural
#

Hi Vincent

crystal fox
tranquil shoal
#

how do i gain voice perms

crystal fox
tranquil shoal
#

ayo guys

#

is it possibel to creat mods with python

#

i think u should use java for that

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.

mild quartz
#

shit gtg meeting sry

tranquil shoal
rugged root
#

I'm really not sure how to being approaching this one

#

Kind of made me think of the day 21, but that doesn't really work

rugged root
#

@rugged tundra You DC'd

willow light
#

@rugged tundra just type for the Name field: Robert'); DROP TABLE Users;--

willow light
#

vvvvvvvvvvvvvv

#

vvvvvvvvvvvvvvvvvvvvv

stray niche
#

What are we talking about

#

We are consuming 1.6 times the earth can provide

willow light
#

But said consumption is not even across the population.

stray niche
#

yes, very disproportionate

#

Humans have long battled with food. For most of our time here on earth, it was a shortage that caused us great illnesses and eventually death. Our inability to farm in certain climates, store and preserve foods, along with our complex human dietary needs made it difficult to properly nourish ourselves. We saw countless lives […]

#

can't find a date on it tho

#

Oh we have Donald Trump here

#

If I remember correctly, there are more vacant houses than homeless people in the US?

rugged root
#

Yep

#

Also, hi Sam

stray niche
rugged root
#

Feeling less sicky at all?

willow light
stray niche
#

just have to let it run it's course

willow light
gentle flint
stray niche
#

ooooh, what is that

gentle flint
#

ajvar

zenith radish
#

J

#

й****

#

и

#

айвар

#

аjвар

rugged root
#

!charinfo й** и

wise cargoBOT
stray niche
#

!charinfo 我

wise cargoBOT
rugged root
#

It's surprisingly handy

stray niche
#

v interesting and fun

willow light
#

I am hoping NH votes down the constitutional convention, politics is too toxic for it to work out well for anyone right now

#

Oh look, it's Hemlock!

rugged root
#

I'm a pinecone?

willow light
#

That's a hemlock cone

#

Eastern Hemlock tree

rugged root
#

Huh

#

Neat

willow light
stray niche
#

can you walk on the pavement with you bike

#

like not riding it

rugged root
#

Handstand walking

willow light
#

Meanwhile, biking in America be like

gentle flint
stray niche
#

oof

#

India 🙂

#

opens into sewers too

#

yep

rugged root
#

[#❓|how-to-get-help](/guild/267624335836053506/channel/704250143020417084/)

#

!rule 5

wise cargoBOT
#

5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.

gentle flint
willow light
#

The speed of trains where I live

#

(literally five minute walk from my apartment)

gentle flint
rugged root
#

Stupid cheap right now

willow light
#

Meanwhile in Maine

austere summit
#

Hello

rugged root
#

Yo

austere summit
#

I'm just a beginner at coding learning the basics ..

#

a got a error while making a quiz game

rugged root
#

What's the error?

#

You have an extra space before score on line 8

#

Or rather

#

One too few on 9

whole bear
#

gotta dip, peace!

stray niche
#

night ngiht

whole bear
#

Buhbye!

ionic ferry
willow light
#

Lake Char­gogg­a­gogg­man­chaugg­a­gogg­chau­bun­a­gung­a­maugg

austere summit
#

making spaces blank lines in these place's doesn't do anything to my script right ?

willow light
#

Usually

rugged root
#

Nope! Python just tosses them out when it runs it

#

So if it helps readability, keep them

faint ermine
willow light
#

American Prius

rugged root
#

Dude, parking break

#

Jesus

willow light
#

Welcome to the northern US

#

I brake for moose, it's why I'm still alive.

lavish rover
willow light
#

and yes I am in this video

stray niche
#

ooh

#

lemme see

willow light
#

This was my teacher. We have upgraded the room with this amazing screen.

#

I want one of these.

stray niche
#

Byeee

willow light
#
Science On a Sphere

Science On a Sphere® is a room-sized, global display system that projects visualizations of planetary data onto a six foot diameter sphere to help illustrate Earth System science to people of all ages.

trail mural
#

I know that song from top gun

#

Chrome cast and fire stick are awesome

#

Chrome cast was cooler when stadia wasn't shutting down

willow light
#
import asyncio

import tornado.web

class MainHandler(tornado.web.RequestHandler):
    def get(self):
        self.write("Hello, world")

def make_app():
    return tornado.web.Application([
        (r"/", MainHandler),
    ])

async def main():
    app = make_app()
    app.listen(8888)
    await asyncio.Event().wait()

if __name__ == "__main__":
    asyncio.run(main())

@lavish rover

stray niche
drifting zinc
#

!resource

#

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

somber heath
#

!voice @brave pewter

wise cargoBOT
#

Voice verification

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

brave pewter
#

if i spam here to try to get my 50 messages voice verification?

#

like will i get banned?

#

oh okok

#

im not gonna purposely push anything yeah

#

what do you guys code for?

#

mmm i see

#

do you guys go to school in computer science?

#

im in canadian college taking computer science right now

#

mmmm probably

#

its my first year

#

yeah yeah

#

python is very user friendly yeah

#

so far in school my classes are

#

IT mathematic
intro to programming (in depth python)

#

Operating software (we code in shell on linux)
website creation ( javascript in html + css)

#

my program in my school is also brand new and I find theyve structured the learning material fairly well

#

I mean my teacher for python anyways is very very helpful and Ive gotten very good at coding python. His homework is
-word document with instruction
-you code in vscode
-you can code as messily as you want as long as your program runs but you get better grade for efficiency in your code

#

if your code can do the given task using the least amount of loops and lines you get better grade

#

wanna see one of my more complicated program?

#

mmhm i understand

#

but in businesses its less about readability and more about, your code taking up the least amount of computer ressources

#

can i send it in here? its about a hundred lines

#

mmm i see your point

#

i mean i assume it depends where and how your code runs and how much times

somber heath
#

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

brave pewter
#

some of the comments are in french btw

#

i wish i went to music it was my first pick for college but i had to audition so i chickened out

#

german seems tricky

#

yeahyeah

#

speaking is soso but the grammar rules are absolutely chaotic

#

its okay XD

#

french is my first language and I still muchh preffer writting in english

#

we have gendered nouns maaan

#

like lamp is feminine and a tree is male

#

a fridge is male

#

but its funny because you have male oriented things that are female like

#

a testical is a female noun

#

just very annoying because you have to conjugate verbs and adjectives differently depending on the gender noun they refer to

austere summit
#

i need a quick help :0.. i want to put line's after those every single answers marked with red

brave pewter
#

and when youre writting a 700 word literary analysis in crunched time and you have a limit amount of errors to pass its annoying to correct

somber heath
#

!e py print("Hello") print() print("World")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | Hello
002 | 
003 | World
somber heath
#

!e py print("Hello", end = "\n\n") print("World.")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | Hello
002 | 
003 | World.
somber heath
#

!e py print("Hello\n") print("World")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | Hello
002 | 
003 | World
somber heath
#

/ "forward slash" or just "slash"

#

\ backslash

brave pewter
#

i also recommend using VScode

#

weve been using it all through this symester and intellisense is great

austere summit
#

nice works

#

How beginners findout solutions for this kind of problems .. when they don't know about what function they need to do it ..

brave pewter
#

My plan for the future is to graduate from cegep (college) and get an internship during summers, take an extra math class for my complementary classes and then

somber heath
#

Python is well documented

brave pewter
#

id like to go into software engineering at mcgill (university where I live) or something

#

for math weve learned boolean algebra, computer binary operations, lots of bases so hexadecimal, octal and binary of course

#

i had an exam yesterday i aced it

somber heath
#

library.pdf is the Python bible.

#

@kind sequoia 👋

kind sequoia
#

Hello

#

Your name is familiar

#

True

#

I sleep now

#

Networking class tmr

willow light
#

Happy Full Moon

austere summit
#

It's works like a quizgame now .. but still not so fun right ? I meen is there any way to put designs / colours
etc etc to make it look better then i will export it

somber heath
#

You could look into ANSI escape characters / colorama

#

Look into other characters you can print. Your character map app will have a bunch.

austere summit
#

how should i export it ?
just want to export it and give someone else to try without seeing the code's

willow light
#

I just can't get over how extra turkeys really are.

frosty star
#

Look at those layers

willow light
#

And each of us will be eating one of these in a couple of weeks.

somber heath
#

Pretty feathers.

gentle flint
#

quite a few of us will not

somber heath
#

@whole bear Pen caps exist. As do pocket protectors.

whole bear
somber heath
#

I think that I'm missing the context necessary to fully appreciate it.

trail mural
#

HI

#

I'm having a late breakfast like always

sacred elm
#
a=input("Enter String 1")
b=input("Enter String 2")
c=""
for i in a:
  if i not in b:
    c=c+i
print(c)```
#
a="Hey There"
b="Hello woow"
c=a+b
for i in a:
    for j in b:
        if i==j:
            c=c.replace(i,"")
print(c)```
dusk raven
sacred elm
#

! =

trail mural
#

HI STARMAN!

#

@karmic elk

karmic elk
#

hii

trail mural
#

you could use a dictionary

#

c you

#

enjoy

#

Hi lp

zenith radish
#

Where is everyone

#

Wtf

karmic elk
#

everyone left

zenith radish
#

tf

severe vigil
#

dudes in voice chat

#

u can see these messages?

#

bruh am muted, but need help with python stuff

somber heath
#

!voice

wise cargoBOT
#

Voice verification

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

rugged root
#

What's your question?

severe vigil
#

yea not been in chat long enought

severe vigil
#

i can show with screenshots but would take agges

#

and i cba really with that

rugged root
somber heath
#

Can you give some detail of your problem? Perhaps a code example of what you're attempting?

severe vigil
#

no module named "module name" error

#

looked all over online, having problem for months

#

i made

#

i can send screenshots of my folder arrangement if u like

#

hang on, RTC being really annyoing, gimme 2 mins brb

rugged root
#

Oh gotta love that

severe vigil
#

oh i cant post screenshots

#

how can i fix that?

#

can i send u throught dm?

rugged root
#

You should be able to.... Only place you can't is in PyGen

#

Yeah that's fine

severe vigil
#

figured it out nvm

rugged root
#

So is it that you're running Main but it's not seeing the MenuSystem stuff?

severe vigil
#

mommy

#

yep

whole bear
#

Cython vs python

severe vigil
#

python

rugged root
#

So Python has a problem when it comes to seeing things above the file you're running

severe vigil
#

yep, exactly

rugged root
#

If that makes sense

severe vigil
#

it has no problem going down but up is a no go

rugged root
#

So I'd just nest the MenuSystem module/folder within the checkers_with_AI folder

severe vigil
#

like this?

#

but ill be running checkers form main menu

rugged root
#

checkers_with_AI/MenuSystem

#

Ohhhhhhh

#

That's... confusing nomenclature wise

#

My brain thought Main would be the entry point

severe vigil
#

so like a main menu with games

#

yea it is,

#

i made checkers first then the main menu, so now i have two mains, ill fix that later

rugged root
#

Is the plan to have multiple games?

severe vigil
#

yep

rugged root
#

Gotcha, okay

#

So yeah this is likely how I would do it, but I'd change the MenuSystem to be the name of the overall project. Game launcher or something. Then you'd have your individual games in their own modules inside that main folder, along with your MenuMain.py and button.py and any other things you need to touch the games

severe vigil
#

okay, lemme make that ill brb

rugged root
#

👍

trail mural
#

you made me see it

#

I hate you

#

now it reminds me of a mario plant

sour willow
#

PHP's literally C# but way better

rugged root
sour willow
#

pretty controversial but my opinion

#

RIP embed failure

rugged root
#

Gotta love it

#

It's a dog head tilt in confusion

sour willow
#

instagram doesnt use django guys

#

instagram uses a billion tools, django included

#

trust me they also use bash

severe vigil
#

okay so ive re-arranged it

#

both files work independently, checkers works and the main menu workds

#

but now how can i get menu main to run MenuMain

#

@rugged root

rugged root
#

Double checking

#

Making sure I'm not giving you terrible advice

#

Most of the time you'll be running it from the source folder/project folder, rather than the project root

#

Minor example

somber heath
#

They taught sheep to use touch screens to choose between water and feed. It was really user friendly.

rugged root
#

eweser?

#

Love it

green bone
#

@whole bear 37 + 5 = ?

sour willow
zenith radish
#

That is a big boy repo

sour willow
severe vigil
#

okay, ill try to get it working with this new file arrangement thanks

#

im just a little confused how im supposed to get my checkers to work in main

rugged root
#

Do you have the files on github or somewhere?

stray niche
#

brb

#

@sterile jasper do !voice

#

!voice

wise cargoBOT
#

Voice verification

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

stray niche
#

#voice-verification

rugged root
severe vigil
#

AHA it works!

rugged root
#

Niiiiiice

severe vigil
#

but the way im doing it is gonna be very messy

#

is there any way to import everything in one go? im doing it like this:

sterile jasper
#

hey, yes i cant speak

sour willow
#

import these all in one file.

#

and then import that main file?

#

hemlock should confirm this, but should work?

rugged root
#

Double checking

#

Think you can do it in an __init__.py file, just trying to remember how

lavish rover
#
x[y] === *(x+y)
severe vigil
#

damn i should really hang out more in this call, im learning more here than in my comp sci class lmao

rugged root
severe vigil
#

alright, ill have a look into these, if i cant find anything ill come back

#

thanks for the help boss man, solved many months of procrastination lmao

sour willow
#

boss man 🗿🗿🗿

stray niche
rugged root
stray niche
rugged root
#

Sounds right

lavish rover
#

I'd imagine of the remaining energy for "sending mails" a large proportion goes to spam mail being sent as well

stray niche
#

McAfee estimated that around 80% of this electricity is consumed by the reading and deleting of spam and the searching through spam folders to dig out genuine emails that ended up there by accident. Spam filters themselves account for 16%. The actual generation and sending of the spam is a very small proportion of the footprint.

lavish rover
#

Interesting

#

Thanks for the quote

#

(you need a space after the >)

stray niche
#

trying to format it

stray niche
stark knot
#

Can I ask programming question here or I should post it in one of #help channel?

stray niche
#

I think it's better you post if its long

stark knot
#

It's not long, probably max 6 lines with code as example

lavish rover
#

You can ask here if you want

#

But no guarantees the people here might be able to help, depending on what you're doing

stark knot
#

Which one is more optimised, in sense of time complexity?

alp = 'abcdefghijklmnopqrstuvwxyz'

or

import string
alp = string.ascii_lowercase
lavish rover
#

If you're talking about O() it doesn't matter, both are constant

#

In reality I would assume the first one is faster, but the difference is so incredibly miniscule, and it's a one-time cost, so it really doesn't matter

#

I would use the second one just for consistency

stark knot
#

I see. And what about Space it takes? I think declaring a variable is more space friendly than using a whole library for just getting lowercase alphabets.

rugged root
#

@plucky delta Probably better to talk in here

plucky delta
#

Ok

honest pier
#

it's constant cost, it doesn't matter

#

and if it does matter, you're using the wrong language

rugged root
#
def primes(int nb_primes):
    cdef int n, i, len_p
    cdef int p[1000]

    if nb_primes > 1000:
        nb_primes = 1000




    len_p = 0  # The current number of elements in p.
    n = 2
    while len_p < nb_primes:
        # Is n prime?
        for i in p[:len_p]:
            if n % i == 0:
                break

        # If no break occurred in the loop, we have a prime.
        else:
            p[len_p] = n
            len_p += 1
        n += 1

    # Let's copy the result into a Python list:
    result_as_list = [prime for prime in p[:len_p]]
    return result_as_list
stark knot
#

Oh, okay, I used to code in C, so getting curious about these things is kind of a habbit.

plucky delta
#
  File "cythonshouldbefast.pyx", line 3, in cythonshouldbefast.main_cython        
    l = [1]
ValueError: Assignment to slice of wrong length, expected 1, got 100000000   
stark knot
#

Thank you guys!

plucky delta
#

rip

lavish rover
autumn zealot
#

Create a function sort to sort the letters in a text alphabetically (lowercase only). sort(“abdaba”) returns aaabbd. i have this question on a task but how do i sort it without using sorted

honest pier
#

what have you tried so far

rugged root
#

@whole bear If you're wondering why you can't talk, check out the #voice-verification channel. That'll tell you what you need to know about our voice gate

autumn zealot
#
def sorteer(tekst):
    return sorted(tekst)


def main():
    tekst = "abdaba"
    print(sorteer(tekst))


if __name__ == '__main__':
    main()
    
honest pier
#

that doesn't seem to not use sorted

autumn zealot
#

but ye i used sorted and it gave a list as output

plucky delta
#

i gues my code is fucked

autumn zealot
#

XD

honest pier
#

you can join it if you want a string

lavish rover
#

I'm guessing list.sort is not an option

autumn zealot
#

nope

rugged root
#
# distutils: language=c++


from libcpp.vector cimport vector

def primes(unsigned int nb_primes):
    cdef int n, i
    cdef vector[int] p
    p.reserve(nb_primes)  # allocate memory for 'nb_primes' elements.

    n = 2
    while p.size() < nb_primes:  # size() for vectors is similar to len()
        for i in p:
            if n % i == 0:
                break
        else:
            p.push_back(n)  # push_back is similar to append()
        n += 1

    # If possible, C values and C++ objects are automatically
    # converted to Python objects at need.
    return p  # so here, the vector will be copied into a Python list.
lavish rover
#

If there's no complexity constraints, implementing bubble sort is pretty easy

honest pier
#

mergesort is also pretty trivial

lavish rover
#

Off by one errors territory

#

But yeah runs faster 🤷‍♀️

karmic elk
#

hello

severe vigil
#

okay, running into another problem here. I have this folder structure:

severe vigil
#

and i am having the import error: ImportError: attempted relative import with no known parent package

karmic elk
rugged root
autumn zealot
# honest pier that doesn't seem to not use `sorted`
def sorteer(tekst):
    oud_tekst = tekst
    nieuw_tekst = ""
    kleinste_letter = ""

    while len(nieuw_tekst) != len(oud_tekst):
        for i in range(len(tekst)):
            if i == 0:
                kleinste_letter = tekst[i]
            elif ord(tekst[i]) < ord(kleinste_letter):
                kleinste_letter = tekst[i]
        # voeg kleinste letter toe aan nieuw tekst
        nieuw_tekst += kleinste_letter

        # verwijder toegevoegde (kleinste letter) uit tekst
        locatie = tekst.find(kleinste_letter)
        tekst = tekst[:locatie] + tekst[locatie + 1:]
    return nieuw_tekst

def main():
    tekst = "abdaba"
    print(sorteer(tekst))


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

i got it

honest pier
#

if you're comparing letters you don't need to use ord

#

it seems that's a selection sort?

stray niche
karmic elk
#

year

stray niche
#

Hmm

rugged root
#

Nuuuu you left us

stray niche
#

brb

#

went to say hi to someone

rugged root
#

Fair

#

My turn to brb

stray niche
#

haha

rugged root
#

One more time.

molten pewter
whole bear
rugged root
#

Attempted. According to @stray niche I was doing it wrong

stray niche
rugged root
#

Fair

stray niche
#

you were typing 4 letters for so long?

lavish rover
#

His finger is broken cut him some slack

whole bear
#

popsicle sticks, medical tape

whole bear
rugged root
#

It's all I had!

#

I'm at the office

stray niche
lavish rover
#

Isn't it duck tape

stray niche
rugged root
#

Yes and no

#

Originally it was duck tape

#

But then it became a brand, so it got changed to duct tape

stray niche
#

it was made during wars

rugged root
#

But it was used - yep

stray niche
#

ohh

rugged root
#

For sealing ammo boxes

stray niche
#

easy to tear

#

and strong

rugged root
#

And kept the water out

stray niche
#

yea

lavish rover
#

i see

whole bear
#

waxes hair off the body

lavish rover
#

I didn't realize it became a brand name

lavish rover
rugged root
stray niche
#

why no vc @whole bear

whole bear
whole bear
lavish rover
#

So we're clear you need to be on the VC to redeem your $1 a day

stray niche
lavish rover
#

This doesn't count

rugged root
stray niche
lavish rover
whole bear
whole bear
lavish rover
whole bear
#

sorry i had to

stray niche
lavish rover
#

That's fair

#

Fees

#

Unfortunate typo

lavish rover
#

Your current balance is: $1, please use !balance for further queries

whole bear
#

ill be on later...for an hour

#

dw

#

need to get to the industrial era

stray niche
lavish rover
#

It's always minecraft never yourscraft

stray niche
whole bear
stray niche
whole bear
#

(multiplayer)

stray niche
#

sync

#

max

rugged root
#

Arts-and-craft

#

....s

lavish rover
stray niche
rugged root
#

Derp

whole bear
whole bear
whole bear
stray niche
lavish rover
#

Your current balance is: $2, please use !balance for further queries

whole bear
stray niche
#

I'll transfer some of my mustafa money

#

excatly, am I reading minds?

rugged root
#

Sam your typing is coming through

stray niche
#

oops

#

muted

lavish rover
#

One would hope so, otherwise the chat would be broken

stray niche
#

no the sounds

lavish rover
#

(sarcasm)

stray niche
stray niche
lavish rover
#

@rugged tundra you know already

rugged tundra
rugged root
#

Going to be up and down for a bit, trying to fix one of our phones

stray niche
#

okie dokes

karmic elk
#

But plastics are very cheap.

rugged root
#

Tee hee

#

butt plastics

karmic elk
#

xD

#

Fossil fuels are like drugs. Its hard to let it go

#

Oil spillage

stray niche
#

@karmic elk you wanted to say something?

#

saw you unmute

rugged root
#

Fossil fuels / fossil fires / fossils are what I desire
(Parody of Fuel by Metallica)