#voice-chat-text-0

1 messages Β· Page 584 of 1

somber heath
#

!e py print("a" < "B")

wise cargoBOT
candid spire
#

!e

print("apple" < "banana")
print([1, 2, 3] < [1, 2, 4])
print((1, 5) > (1, 2))
print([1, 2] < [1, 2, 0])
print([1, 2] == (1, 2))
print([1, 2] < "abc")

wise cargoBOT
cerulean roost
candid spire
#

!e

print("aPpple" < "bAnana")
wise cargoBOT
candid spire
#

!e

print("apple" < "BAnana")
cinder vale
#

!e ```py
print((1, 2, 3) < (1, 2, 4))

wise cargoBOT
rough tapir
#

As we looked earlier at the starting there was UTF-8. i think it is encoding every character in the same type while comparing and assigning a unicode codepoint to it.

candid spire
candid spire
#

!e

print("apple" < "BAnana")
wise cargoBOT
candid spire
#

!e

print("Banana" < "appLe")
wise cargoBOT
rough tapir
candid spire
cerulean roost
#

!e

print(ord('A'), ord('a'
))```
wise cargoBOT
cerulean roost
#

!e

print(ord('OpalMist')
)```
#

!e

print(ord('OpalMist')
)```
candid spire
#

!e

print(ord("z"))
rough tapir
#

It expects a Character

#

won't work on string.

wise cargoBOT
cerulean roost
candid spire
#

!e

print((1,2,('aa','ab')) < (1,2,('abc', 'a'),4))
wise cargoBOT
candid spire
#

!e

print((1,2) < (1,2,-1))
wise cargoBOT
somber heath
#

!e py print((999,) < (1, 2))

wise cargoBOT
rough tapir
#

!e

print((1,2,('aa','ab'),4) < (1,2,('ab', 'aa'),4))
wise cargoBOT
candid spire
#

!e ```py
print((999,) < (1, 2))

wise cargoBOT
rough tapir
#

i think it is still evaluating based on assigned Unicode code point.

cinder vale
#

!e ```py

ord(a)
ord(b)

candid spire
#

!e

print((10, 11) < (10, 10, 12))
wise cargoBOT
candid spire
#

!e

print((10, 11) < (10, 11, 12))
wise cargoBOT
wise cargoBOT
# cinder vale !e ```py ord(a) ord(b) ```

:x: Your 3.13 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     ord(999)
004 |     ~~~^^^^^
005 | TypeError: ord() expected string of length 1, but int found
rough tapir
somber heath
#

!e print((1, 0) < (1, 1))

wise cargoBOT
candid spire
#

!e

print(1<1)
wise cargoBOT
cinder vale
#
print(ord(a))

candid spire
#

!e

print(ord("a"))
rough tapir
#

!e

print(ord('a'))
wise cargoBOT
wise cargoBOT
cerulean roost
#

!e ```py
print((1, 2) < (1, 2, -1))

wise cargoBOT
candid spire
#

!e

print((1,3) < (1,2,-1))
wise cargoBOT
rough tapir
candid spire
#

!e

print((1,1) < (1,1))
rough tapir
#

!e

print((1,) < (1,1))
wise cargoBOT
candid spire
#

Opal's example prove it not about length

#

we came up with assumption that it has to be short circuit

#

!e ```py
print((999,) < (1, 999))

wise cargoBOT
rough tapir
#

!e

print((1,2) < (1,2,-1))
wise cargoBOT
rough tapir
#

This one he's talking about.

cerulean roost
candid spire
#

!e

print((1,2) < (1,2))
wise cargoBOT
rough tapir
#

It also checks for the number of elements of the tuple

#

tuple size.

candid spire
rough tapir
#

!e

print((1,2,) < (1,2,-1))
wise cargoBOT
upper spear
#
div = 1
while number > div:
    div *= 10

num = 1
while num < div:
    number = number % div
    div //= 10
    a = number // div
    print(f"{number}/{div} --> {a}")```
cerulean roost
upper spear
#

please roast this program'

upper spear
#

i'm begginer is this good

rough tapir
#

Okay what if we do.

upper spear
#

improve myself

rough tapir
#

!e

print((1, 97,'a') < (1,97,))
wise cargoBOT
rough tapir
#

It says lexicographical ordering evaluates based on sort(), sorted() and min(), max() builtin functions of python

somber heath
#

!e ```py
class MyInt(int):
def lt(self, obj):
result = super().lt(obj)
print(f"{self} < {obj} ==", result)
return result

class MyTuple(tuple):
def len(self):
result = super().len()
print(f"{self} length is {result}.")
return result

one = MyInt(1)
trip9 = MyInt(999)
a = MyTuple((trip9,))
b = MyTuple((one, trip9))

print(a < b)```

wise cargoBOT
somber heath
#

!e ```py
class MyInt(int):
def lt(self, obj):
result = super().lt(obj)
print(f"{self} < {obj} ==", result)
return result

class MyTuple(tuple):
def len(self):
result = super().len()
print(f"{self} length is {result}.")
return result

one = MyInt(1)
trip9 = MyInt(999)
a = MyTuple((trip9,))
b = MyTuple((trip9, trip9))

print(a < b)```

wise cargoBOT
somber heath
cerulean roost
candid spire
#

!e

print((3,3) < (3,3,0))
wise cargoBOT
candid spire
#

!e

print((3,3,0) < (3,3,0))
wise cargoBOT
rough tapir
#

It uses NFA to circuit out of the comparison.

#

non deterministic finite automata

#

Theory of computation.

somber heath
cerulean roost
rough tapir
#

All regular expressions uses that.

somber heath
calm ginkgo
#

what are we talking about?

candid spire
calm ginkgo
#

try me

candid spire
#

in summary lexicographical ordering & short circuit

#

and now module in python

rough tapir
calm ginkgo
#

okay? so sorting by ascii or UTF-8 codes?

candid spire
cerulean roost
rough tapir
#

yeah

#

it does.

somber heath
#

!if-name-main

wise cargoBOT
#
`if __name__ == "__main__"`

This is a convention for code that should run if the file is the main file of your program:

def main():
    ...

if __name__ == "__main__":
    main()

If the file is run directly, then the main() function will be run. If the file is imported, it will not run.

For more about why you would do this and how it works, see if __name__ == "__main__".

calm ginkgo
#

but what's the question?

rough tapir
#

python -m pip install pipenv

cinder vale
#

are we still discussing 5.8. Comparing Sequences and Other Types

candid spire
cinder vale
#

what, chapter

candid spire
#

chapter 6

#

You are not in VC?

calm ginkgo
candid spire
#

from fibo import fib, fib2

rough tapir
#

ohh

somber heath
#

!e py import math print(math.dist)

wise cargoBOT
rough tapir
#

So import brings the whole module

somber heath
#

!e py from math import dist print(dist)

wise cargoBOT
rough tapir
#

from .... import .... gets specific thing of a module.

flat sage
#

Hey everyone πŸ‘‹
I’m into tactical games, late-night chats, music, memes, and meeting cool people from around the world. Always down for gaming, VC, and making new friends on Discord πŸ˜„
If you’re chill, funny, and active, send me a message β€” let’s vibe and build a fun community together!

candid spire
#

!e

from fibo import fib, fib2
fib(10)
wise cargoBOT
# candid spire !e ```python from fibo import fib, fib2 fib(10) ```

:x: Your 3.14 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     from fibo import fib, fib2
004 | ModuleNotFoundError: No module named 'fibo'
calm ginkgo
#

!e

from os import *
system("lsb_release -a")
somber heath
#

!e py from math import dist as fuck print(fuck)

wise cargoBOT
candid spire
#
from fibo import fib, fib2
#
# Fibonacci numbers module

def fib(n):
    """Write Fibonacci series up to n."""
    a, b = 0, 1
    while a < n:
        print(a, end=' ')
        a, b = b, a+b
    print()

def fib2(n):
    """Return Fibonacci series up to n."""
    result = []
    a, b = 0, 1
    while a < n:
        result.append(a)
        a, b = b, a+b
    return result
cinder vale
#

I got accepted into AAU

#

According to admission office

calm ginkgo
#

what's AAU?

candid spire
calm ginkgo
#

ah okay congrats

cinder vale
#

University of Alborg

candid spire
#

congrats brother

cinder vale
#

kthanks

#

thanks

cerulean roost
somber heath
#

@unreal charm @lunar crypt @storm knoll πŸ‘‹

cerulean roost
rough tapir
#

Question what if i create my own module ?

cerulean roost
#

Welcome @versed lichen

rough tapir
#

yup

versed lichen
rough tapir
#

bye πŸ‘‹ @candid spire

cerulean roost
rough tapir
#

It depends actually where you want to run your python from.

#

It'' help when you work around with Virtual environments.

#

Yup.

#

It does'nt create conflicts with the base python.

#

imagine it like a keepsafe virtual environment.

#

where you don't mix up multiple packages.

cerulean roost
rough tapir
#

aAlright

#

i''ll go bye

cerulean roost
somber heath
#

@jovial surge πŸ‘‹

#

@stray pewter πŸ–±οΈ πŸ–±οΈ πŸ–±οΈ πŸ–±οΈ πŸ–±οΈ

#

@tacit patio πŸ‘‹

tacit patio
#

oh hi

#

my mic doesnt work dont have a port for it

#

so cant talk

stray pewter
tacit patio
#

hi?

#

cant talk dont have mic + voice perm

stray pewter
#

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

tacit patio
#

btw how is the day going

dry jasper
cerulean roost
#

!e

print(sys.path)
wise cargoBOT
# cerulean roost !e ```py print(sys.path) ```

:x: Your 3.14 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     print(sys.path)
004 |           ^^^
005 | NameError: name 'sys' is not defined. Did you forget to import 'sys'?
cerulean roost
#

!e

import sys
print(sys.path)
wise cargoBOT
# cerulean roost !e ```py import sys print(sys.path) ```

:white_check_mark: Your 3.14 eval job has completed with return code 0.

['/home', '/snekbin/python/3.14/lib/python314.zip', '/snekbin/python/3.14/lib/python3.14', '/snekbin/python/3.14/lib/python3.14/lib-dynload', '/snekbox/user_base/lib/python3.14/site-packages', '/snekbin/python/3.14/lib/python3.14/site-packages']
cerulean roost
#

!e

import sys
print(sys)
wise cargoBOT
cerulean roost
#

!e

import sys
print(dir(sys))
wise cargoBOT
# cerulean roost !e ```py import sys print(dir(sys)) ```

:white_check_mark: Your 3.14 eval job has completed with return code 0.

['__breakpointhook__', '__displayhook__', '__doc__', '__excepthook__', '__interactivehook__', '__loader__', '__name__', '__package__', '__spec__', '__stderr__', '__stdin__', '__stdout__', '__unraisablehook__', '_base_executable', '_baserepl', '_clear_internal_caches', '_clear_type_cache', '_clear_type_descriptors', '_current_exceptions', '_current_frames', '_debugmallocstats', '_dump_tracelets', '_framework', '_get_cpu_count_config', '_getframe', '_getframemodulename', '_git', '_home', '_is_gil_enabled', '_is_immortal', '_is_interned', '_jit', '_setprofileallthreads', '_settraceallthreads', '_stdlib_dir', '_xoptions', 'abiflags', 'activate_stack_trampoline', 'addaudithook', 'api_version', 'argv', 'audit', 'base_exec_prefix', 'base_prefix', 'breakpointhook', 'builtin_module_names', 'byteorder', 'call_tracing', 'copyright', 'deactivate_stack_trampoline', 'displayhook', 'dont_write_bytecode', 'exc_info', 'excepthook', 'exception', 'exec_prefix', 'executable', 'exit', 'flags', 'float_info'
... (truncated - too long)

Full output: https://paste.pythondiscord.com/YQOOWVIAVINA4HHFMPOEYDBDZA

cerulean roost
#

!e

import builtins
print(dir(builtins))
wise cargoBOT
# cerulean roost !e ```py import builtins print(dir(builtins)) ```

:white_check_mark: Your 3.14 eval job has completed with return code 0.

['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BaseExceptionGroup', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EncodingWarning', 'EnvironmentError', 'Exception', 'ExceptionGroup', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'ModuleNotFoundError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'PythonFinalizationError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning
... (truncated - too long)

Full output: https://paste.pythondiscord.com/EM6BF3GJ5ZYJLNRL5SSKFFXKNQ

rain viper
#

!e

import sys
print(dir(sys))
wise cargoBOT
# rain viper !e ```py import sys print(dir(sys)) ```

:white_check_mark: Your 3.14 JIT-compilation enabled eval job has completed with return code 0.

['__breakpointhook__', '__displayhook__', '__doc__', '__excepthook__', '__interactivehook__', '__loader__', '__name__', '__package__', '__spec__', '__stderr__', '__stdin__', '__stdout__', '__unraisablehook__', '_base_executable', '_baserepl', '_clear_internal_caches', '_clear_type_cache', '_clear_type_descriptors', '_current_exceptions', '_current_frames', '_debugmallocstats', '_dump_tracelets', '_framework', '_get_cpu_count_config', '_getframe', '_getframemodulename', '_git', '_home', '_is_gil_enabled', '_is_immortal', '_is_interned', '_jit', '_setprofileallthreads', '_settraceallthreads', '_stdlib_dir', '_xoptions', 'abiflags', 'activate_stack_trampoline', 'addaudithook', 'api_version', 'argv', 'audit', 'base_exec_prefix', 'base_prefix', 'breakpointhook', 'builtin_module_names', 'byteorder', 'call_tracing', 'copyright', 'deactivate_stack_trampoline', 'displayhook', 'dont_write_bytecode', 'exc_info', 'excepthook', 'exception', 'exec_prefix', 'executable', 'exit', 'flags', 'float_info'
... (truncated - too long)

Full output: https://paste.pythondiscord.com/ZGWHDTSUVXM7EVL7SD45YIL7LM

somber heath
#

The eastern spinebill (Acanthorhynchus tenuirostris) is a species of honeyeater found in south-eastern Australia in forest and woodland areas, as well as gardens in urban areas of Canberra, Sydney, Melbourne, Adelaide and Hobart. It is around 15 cm long, and has a distinctive black, white and chestnut plumage, a red eye, and a long downcurved bi...

stray pewter
#

this is what came to mind the second you said "collective"

#

@somber heath

stray pewter
#
try:
  <somecode>
except:
  print("a error has occured in the try block")
#

if the code in try throws an error/exception, the except code runs, if no error occurs in the try section then the except section does not run

#

you can except Exception as e: which gives you access in basic terms to a object of the error thrown above in the try section, for example what the error was and how it was

somber heath
#

!e ```py
print("Hello.")

try:
print(1 / 2)

except ZeroDivisionError:
print("ZDE caught")

print("Goodbye.")```

wise cargoBOT
somber heath
#

!e ```py
print("Hello.")

try:
print(1 / 0)

except ZeroDivisionError:
print("ZDE caught")

print("Goodbye.")```

wise cargoBOT
stray pewter
#

!e

Κ€,Κ£=1.79175946923,1.94591014906;print(str(round(2.718281828 ** Κ€))+str(round(2.718281828 ** Κ£)))
wise cargoBOT
somber heath
#

!e py try: 1 / 0 except ZeroDivisionError: print("ZeroDivisionError caught.") except IndexError: print("IndexError caught.")

wise cargoBOT
somber heath
#

!e py try: "abc"[999] except ZeroDivisionError: print("ZeroDivisionError caught.") except IndexError: print("IndexError caught.")

wise cargoBOT
somber heath
#

!e py try: "abc"[999] except (ZeroDivisionError, IndexError): print("ZeroDivisionError or IndexError caught.") except KeyError: print("KeyError caught")

wise cargoBOT
somber heath
#

!e py try: 1 / 0 except (ZeroDivisionError, IndexError): print("ZeroDivisionError or IndexError caught.") except KeyError: print("KeyError caught")

wise cargoBOT
somber heath
#

!e py try: {"abc": 123}["no such key"] except (ZeroDivisionError, IndexError): print("ZeroDivisionError or IndexError caught.") except KeyError: print("KeyError caught")

wise cargoBOT
cerulean ridge
#

brb

somber heath
#

!e py print("Hello.") try: pass except ZeroDivisionError: print("ZeroDivisionError caught.") else: print("No except block run.") print("Goodbye.")

wise cargoBOT
somber heath
#

!e py print("Hello.") try: 1 / 0 except ZeroDivisionError: print("ZeroDivisionError caught.") else: print("No except block run.") print("Goodbye.")

wise cargoBOT
stray pewter
somber heath
#

!e ```py
def func():
try:
return "abc"
finally:
print("Finally.")

print(func())```

wise cargoBOT
stray pewter
#

!e

_O,_o,_OO,_Oo,_oO=(lambda O:lambda _:_),(lambda O:lambda _:lambda o:_(O(_)(o))),(lambda O,_O:lambda _:lambda o:O(_)(_O(_)(o))),(lambda O,_O:lambda _:lambda o:O(_O(_))(o)),(lambda O,_O:_O(O))
_oo=_OO(_oO(_o(_o(_O)),_Oo(_o(_o(_O)),_o(_o(_o(_O))))),_o(_o(_o(_O))));_=_oo(lambda _O:_O-~(False*False))(False*False)
getattr(__import__(str().join([bytes.__name__[False],tuple.__name__[True],int.__name__[False],list.__name__[False],tuple.__name__[False],int.__name__[False],int.__name__[True],str.__name__[False]])),str().join([property.__name__[False],reversed.__name__[False],int.__name__[False],int.__name__[True],tuple.__name__[False]]))(_)
wise cargoBOT
stray pewter
#

!e

l,O=(lambda O_O: (not O_O, not not O_O))(tuple())
O0,OO,O0O,OO0,O00,OOO=l<<l,l<<l<<l,l<<l<<l<<l,l<<l<<l<<l<<l,l<<l<<l<<l<<l<<l,l<<l<<l<<l<<l<<l<<l
l0=lambda x:int(str(sum([OOO,O00,x,O,O,O])-(O*OOO))[O:])
_=lambda __:type('O0O',(),{'__':(lambda O0,OO:O0.join(OO))(str(O)*O,map(chr,__))}).__
__=_([l0(O0),l0(OO0+OO+l),l0(O0O+l),l0(O0O+OO),l0(OO0+OO),l0(O0O+l),l0(O0O+OO+O0),l0(OO0+O0+l)])
___=_([l0(OO0),l0(OO0+O0),l0(O0O+l),l0(O0O+OO+O0),l0(OO0+OO)])
____=getattr([_0 for _0 in map(__import__,[__])][O],___)
_____=type('O0',(object,),{'_':lambda self,O0O:(lambda OOO0:____(OOO0))(O0O)})()
______=type('______',(object,),{'__lshift__':lambda self,other:other._(OOO+O0+l)})()
type('O_O',(),{'__':______<<_____})
wise cargoBOT
faint raven
#

!e ```py
name = 'discord'
name = True
try:
print("hello" + name)

except Exception as e:
print(f"an error has occurred: {e}")

finally:
print("Execution complete.")

wise cargoBOT
somber heath
#

@clear bluff πŸ‘‹

clear bluff
somber heath
covert spindle
#

Hi does anyone know how to get to general?

somber heath
covert spindle
#

like the general chat

#

where everyone talks

clear bluff
somber heath
#

There are three of these.

#

!offtopic

wise cargoBOT
somber heath
clear bluff
#

yah man

faint raven
#

!e ```py
name = 'discord'
name = True
try:
print(name)

except Exception:
traceback.print_exc()

wise cargoBOT
somber heath
#

@languid smelt πŸ‘‹

#

@shadow stirrup πŸ‘‹

shadow stirrup
#

@somber heath hi

#

hows ereyone

shadow stirrup
#

oof im doing a boot camp atm

somber heath
#
There was an old woman who lived in a shoe.
She had so many children, she didn't know what to do.
She gave them some broth without any bread;
Then whipped them all soundly and put them to bed.```
shadow stirrup
#

were ur print("") lol

#

jk

#

i love how fun it is to learn python

#

this boot camp is class

somber heath
#

It has its moments. 😁

shadow stirrup
#

the lueage of legend anti cheat is rubbish

#

especially with that launcher @vagrant pumice

#

i knowhow u feel tho

#

most of those are servers tho bad servers and bank terminals @full dagger

thin river
thin river
brisk bridge
#

hi

shadow stirrup
#

im learin python

thin river
#

@brisk bridge u have C ++ tag must be Professional in C++

shadow stirrup
#

hello @somber heath

somber heath
#

!code

wise cargoBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

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

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

For long code samples, you can use our pastebin.

somber heath
#

@shadow stirrup

somber heath
#

@celest bane πŸ‘‹

celest bane
#

hi

#

funny πŸ™‚

#

didn't hear about that

cinder vale
# cerulean roost

help me understand, why in docs in chapter 6.1 expressions but for Kai its more on modules

#

?

#

idk why but I fdound the correct page

#

its difficult to navigate through docs when you are new

celest bane
#

sorry guys, I should go away for a while

#

ciao

somber heath
#

ciao

#

@left mirage πŸ‘‹

left mirage
#

Hi

#

I can't talk yet πŸ™

somber heath
#

@supple nest πŸ‘‹

supple nest
somber heath
supple nest
somber heath
#

@rotund cairn πŸ‘‹

rotund cairn
#

hey

#

theres so many channels lol

rough tapir
#

@undone frost Hello πŸ‘‹

#

yo

#

Lunchtime see ya guys.

#

πŸ‘‹

tropic glade
#

Hello

#

Doing good in my life

#

I am from india

#

Whats your age

#

I am 13 lol

#

Ye

#

I am good in python programming

#

Thats why I joined here

#

Btw

#

Wait the attachment is loading

#

Nice singer

#

You play roblox

#

My internet's kinda weak

#

See this

#

Yoo bro

#

Just a few moments away to show you my stuff

#

Dine

#

I mean done

#

See this

somber heath
#

Masumune.

#

@stray lotus πŸ‘‹

stray lotus
#

hellol

#

Dangerous in the mortal Hands

#

My favourite self defence method is a 9mm

rotund cairn
#

rk5

stray lotus
#

pack a punched rk5

rotund cairn
#

mustang and sally

stray lotus
#

galvaknuckles

somber heath
#

Ah. Muramasa.

stray lotus
#

muramasa from terraria

#

@cerulean roost I could deflect a knife with my forehead no lie

rotund cairn
#

ur a bjj red belt right

stray lotus
#

nah im being srs

#

im bjj rainbow

#

im translucent belt in krav maga

rough tapir
#

Hello πŸ‘‹

stray lotus
#

hi welcome to the discussion

rough tapir
#

What are we discussing about ?

stray lotus
#

krav maga vs bjj

somber heath
#

@obtuse egret πŸ‘‹

rough tapir
#

I think Opal needs to put a disclaimer. πŸ˜‚ Same Questions again and again.

stray lotus
#

@somber heath so... how long have u been programming

#

imma guess and say 10 years or so for Python...?

cerulean roost
#

!e

import builtins
print(dir(builtins))
wise cargoBOT
# cerulean roost !e ```py import builtins print(dir(builtins)) ```

:white_check_mark: Your 3.14 eval job has completed with return code 0.

['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BaseExceptionGroup', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EncodingWarning', 'EnvironmentError', 'Exception', 'ExceptionGroup', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'ModuleNotFoundError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'PythonFinalizationError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning
... (truncated - too long)

Full output: https://paste.pythondiscord.com/XSGDGKTRCJUVZ54G5PE2D43CZY

cerulean roost
#

!e

import sys
print(dir(sys))
wise cargoBOT
# cerulean roost !e ```py import sys print(dir(sys)) ```

:white_check_mark: Your 3.14 eval job has completed with return code 0.

['__breakpointhook__', '__displayhook__', '__doc__', '__excepthook__', '__interactivehook__', '__loader__', '__name__', '__package__', '__spec__', '__stderr__', '__stdin__', '__stdout__', '__unraisablehook__', '_base_executable', '_baserepl', '_clear_internal_caches', '_clear_type_cache', '_clear_type_descriptors', '_current_exceptions', '_current_frames', '_debugmallocstats', '_dump_tracelets', '_framework', '_get_cpu_count_config', '_getframe', '_getframemodulename', '_git', '_home', '_is_gil_enabled', '_is_immortal', '_is_interned', '_jit', '_setprofileallthreads', '_settraceallthreads', '_stdlib_dir', '_xoptions', 'abiflags', 'activate_stack_trampoline', 'addaudithook', 'api_version', 'argv', 'audit', 'base_exec_prefix', 'base_prefix', 'breakpointhook', 'builtin_module_names', 'byteorder', 'call_tracing', 'copyright', 'deactivate_stack_trampoline', 'displayhook', 'dont_write_bytecode', 'exc_info', 'excepthook', 'exception', 'exec_prefix', 'executable', 'exit', 'flags', 'float_info'
... (truncated - too long)

Full output: https://paste.pythondiscord.com/JSNMG3LPWAWP7QJ2QAQ3FLU6GM

somber heath
#

!e ```py
class Foo:
def init(self):
print("Hello, world.")

Foo()```

wise cargoBOT
somber heath
#

!e ```py
class Foo:
def init(self, value):
print(value)

Foo("Hello, world.")```

wise cargoBOT
somber heath
#

!e ```py
class Foo:
def bar(self):
print("Hello, world.")

baz = Foo()
baz.bar()```

wise cargoBOT
somber heath
#

!e ```py
class Foo:
def set(self, value):
self.value = value

def get(self):
    return self.value

baz = Foo()
baz.set(123)
print(baz.get())```

wise cargoBOT
rough tapir
#

!e

class Sum:
    def __init__(self, a, b):
        print(a+b)

Sum(3,5)
wise cargoBOT
somber heath
#

!e ```py
class Person:
def init(self, name, age):
self.name = name
self.age = age

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

sally = Person("Sally", 19)
peter = Person("Peter", 16)
peter.greet()
sally.greet()```

wise cargoBOT
candid spire
#

Hel low

#

Good

#

How about you?

rough tapir
#

@undone frost Where you from ?

somber heath
#

@smoky flicker πŸ‘‹

rough tapir
#

Oh.

smoky flicker
#

hi @somber heath

somber heath
smoky flicker
rough tapir
#

._.

#

Ahh, Yeah.

#

but you cannot get 🚭 there.

#

But it's bad here for the delivery guys.

#

Lol. Yeah, people don't accept money here. they prefer to earn unless they lazy.

#

πŸ˜‚

#

Kurtas.

#

They are great.

#

Sherwani's are fancy.

#

Yup. I get it.

somber heath
#

@wintry prawn πŸ‘‹

wintry prawn
#

hello

somber heath
rough tapir
#

lol

#

Did you teach him some moves from kungfu panda ?

#

Was he the dragon warrior ?

#

It's a very diverse country.

#

Imagine each state having their own small hollywood shit going on with their own laguage.

#

Yeah they use funny names. in Dub version and it's even funny.

#

hahaha yeah

#

Drums of liberations hahaha

#

Yeah, weddings are like a family festival here. Everybody's excited.

#

was liquor involved ?

#

haha yeah. peeps go nutz here

#

Yup.

#

Fireworks

#

They dgaf

#

XD

#

It's an auspicious time of ther year for most of the people.

#

a little off accent but good try.

#

Yo

#

Everybody in one piece is dying. but the one piece won't end.

#

I caught up but im talking about IRL.

#

The voice actors

jade mountain
#

just wait until every character has been replaced

tropic glade
#

Yoo guys wassup

rough tapir
#

Ahh, the remake. Idts it'll be good enough.

tropic glade
#

How are you all ?

somber heath
#

https://youtu.be/-lLbMfutZnA?si=R5j1pWywvJKo3gBe They're magicians and Penny, the Indian dude, has entered his friend, Quentin's, mind, where Penny meets a manifestation of himself.

The Magicians (S1/E4) The World in the Walls - Penny Enters Quentin's Nightmare Scene : Penny (Arjun Gupta) interrupts Quentin's (Jason Ralph) nightmare.
BUY THE SERIES: https://www.vudu.com/content/browse/details/The-Magicians-Season-1/733310?cmp=Movieclips_YT_Description

Watch the best The Magicians scenes: https://www.youtube.com/playlist?li...

β–Ά Play video
tropic glade
#

How are you all guys

tropic glade
#

Listen this song

#

Do you guys know about it

somber heath
#

@floral pulsar πŸ‘‹

tropic glade
#

Yoo

#

@undone frost

somber heath
#

@half pebble πŸ‘‹

tropic glade
#

Guys

#

Can you tell me how can I talk in vc

somber heath
tropic glade
#

But it's saying not active

#

For how many hours

#

Ok

half pebble
tropic glade
#

@half pebble yooo

half pebble
#

my laptop so old i cant even connect to vc i can get my phone

#

butttt the verification

tropic glade
#

Ya

#

Kinda annoying

half pebble
#

what you guys talking about?

tropic glade
#

Just chilling out here

#

I am

half pebble
#

kk

tropic glade
#

@undone frost yoo bro

#

I am Pranav

jolly terrace
tropic glade
#

Remember me

half pebble
tropic glade
#

I use windows 11

#

How are you doing

#

I play blox fruits , game related to one piece

half pebble
half pebble
tropic glade
#

Yeah

#

What's your age btw

#

@half pebble

half pebble
#

15 πŸ₯€

#

ive got alot of things to do

tropic glade
#

Amazing bro

half pebble
tropic glade
#

I mean you do programming in 15

#

At

half pebble
#

and got confused

#

and stopped completely

#

and even last year

#

but i got my focus back yesterday

rough tapir
#

Sry, was on a call.

tropic glade
#

@somber heath I am indian

#

What's your age

#

??

rough tapir
#

Yo

rough tapir
#

Yeah, i'll just sob in a corner for G merry.

#

i'm just trying to divert.

#

You see the 1st episode @undone frost ?

#

Yeah

half pebble
tropic glade
#

13

undone frost
#

one piece πŸ˜„

tropic glade
#

See this

rough tapir
#

If you see it again you'll know things which Oda Foreshadowed

tropic glade
#

My achievement

jolly terrace
#

it foreshadow the whole story

rough tapir
#

I mean the skypiea Dance was the dance of Joyboy.

tropic glade
#

@undone frost did you see my attachment

jade mountain
#

thoughts on this?

jolly terrace
rough tapir
tropic glade
#

How can I say about interviews

#

πŸ˜‚πŸ€£

undone frost
#

lol

jade mountain
#

meow

tropic glade
#

@undone frost did you see my attachment

somber heath
#

@nova ruin πŸ‘‹

nova ruin
#

Hello

nova ruin
somber heath
nova ruin
#

Thx

#

I am fewer than 3 days

somber heath
#

!d help

wise cargoBOT
#

help()``````py

help(request)```
Invoke the built-in help system. (This function is intended for interactive use.) If no argument is given, the interactive help system starts on the interpreter console. If the argument is a string, then the string is looked up as the name of a module, function, class, method, keyword, or documentation topic, and a help page is printed on the console. If the argument is any other kind of object, a help page on the object is generated.

Note that if a slash(/) appears in the parameter list of a function when invoking `help()`, it means that the parameters prior to the slash are positional-only. For more info, see [the FAQ entry on positional-only parameters](https://docs.python.org/3/faq/programming.html#faq-positional-only-arguments).

This function is added to the built-in namespace by the [`site`](https://docs.python.org/3/library/site.html#module-site) module.
somber heath
#

!e print(help.doc)

wise cargoBOT
# somber heath !e print(help.__doc__)

:white_check_mark: Your 3.14 eval job has completed with return code 0.

001 | Define the builtin 'help'.
002 | 
003 | This is a wrapper around pydoc.help that provides a helpful message
004 | when 'help' is typed at the Python interactive prompt.
005 | 
006 | Calling help() at the Python prompt starts an interactive help session.
007 | Calling help(thing) prints help for the python object 'thing'.
rough tapir
#

For the bot commands

jade mountain
#

!e ```
import _sitebuiltins
help = _sitebuiltins._Helper
help(int)

wise cargoBOT
paper wolf
#

it takes no argument..

jade mountain
#

!e ```
import _sitebuiltins
help = _sitebuiltins._Helper
help()(int)

wise cargoBOT
# jade mountain !e ``` import _sitebuiltins help = _sitebuiltins._Helper help()(int) ```

:white_check_mark: Your 3.14 eval job has completed with return code 0.

001 | Help on class int in module builtins:
002 | 
003 | class int(object)
004 |  |  int([x]) -> integer
005 |  |  int(x, base=10) -> integer
006 |  |
007 |  |  Convert a number or string to an integer, or return 0 if no arguments
008 |  |  are given.  If x is a number, return x.__int__().  For floating-point
009 |  |  numbers, this truncates towards zero.
010 |  |
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/JUO36WDNOAQ76IMFEZD66XWETA

jade mountain
somber heath
#

!e ```py
class Foo:
def call(self, value):
print(value)

bar = Foo()
bar("Hello, world.")```

wise cargoBOT
somber heath
#

@real yew πŸ‘‹

#

!e ```py
class Foo:
def call(self, value):
print(value)

Foo()("Hello, world.")```

wise cargoBOT
somber heath
#

!e ```py
class Foo:
pass

Foo()()```

wise cargoBOT
# somber heath !e ```py class Foo: pass Foo()()```

:x: Your 3.14 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 4, in <module>
003 |     Foo()()
004 |     ~~~~~^^
005 | TypeError: 'Foo' object is not callable
jade mountain
#

you can make something callable by adding a _call_ attr

candid spire
#

Hello again

jade mountain
#

woof

somber heath
#

@velvet jewel πŸ‘‹

candid spire
#

Brb

paper wolf
#

context?

#

@velvet jewel kindly no n word

#

wait my internet is doing somehting weird...

jade mountain
paper wolf
#

i see

somber heath
#

@sudden spruce πŸ‘‹

sudden spruce
#

hi

#

long time

#

i can't speak idk why

rough tapir
#

It's pretty quite.

sudden spruce
#

yeah

rough tapir
sudden spruce
#

I've not been enough active in this channel

#

Actually I left

#

the channel

#

Due to some

#

reason

#

exam

#

and now I'm back

#

anyways

#

I had a question

#

Do u guys know about webscraping

rough tapir
#

That where is his silver surfer

rough tapir
sudden spruce
#

I've a bigger version of them both @somber heath

#

for selenium -> playwright/httpx , for beutifulsoup -> selectolax

#

but my question is

#

It's too difficult

#

yk

#

@wind raptor

#

hey

#

btw, are u guys like

#

university students?

#

yeah

#

i agree

sturdy panther
#

Hi hi

rough tapir
#

Hello πŸ‘‹

thin river
#

Hi

sturdy panther
#

"My food source is back!"

thin river
#

It's giving CPR πŸ˜‚

rough tapir
#

massaging after a long day of work

sudden spruce
#

😒

thin river
#

My bros

sudden spruce
#

btw, my question was, how do we scrape data in a structured way, since its too dificil to do

#

As website structure is so unique, and changing in days

#

so, it's pretty hard for me to gather every data in a unique format

candid spire
#

I'm back

#

Timing is right ain't it?

thin river
#

Bye guys

rough tapir
#

What you do @candid spire ?BigFoo

candid spire
candid spire
upper spear
#

e!```number = int(input("enter any number to reverse number:- "))
value = number

#convert divisible *10
div = 1
while div * 10 < value:
div *= 10

#this loop decrease the div by // 10
count = 0
while 0 < div:
a = (number % 10) * div
print(f"{a}")
count += a
number //= 10
div //= 10
print(f"\n{count}")```

paper wolf
#

!e

meh
print(input())
wise cargoBOT
# paper wolf !e ```meh meh ``` ```py print(input()) ```

:x: Your 3.14 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     meh
004 | NameError: name 'meh' is not defined
paper wolf
#

see

#

!e
print(input())

wise cargoBOT
# paper wolf !e print(input())

:x: Your 3.14 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     print(input())
004 |           ~~~~~^^
005 | EOFError: EOF when reading a line
paper wolf
#

it said EOF

upper spear
#

!e```number = 123456789
value = number

#convert divisible *10
div = 1
while div * 10 < value:
div *= 10

#this loop decrease the div by // 10
count = 0
while 0 < div:
a = (number % 10) * div
print(f"{a}")
count += a
number //= 10
div //= 10
print(f"\n{count}")```

wise cargoBOT
upper spear
#

!e```number = 543
value = number

#convert divisible *10
div = 1
while div * 10 < value:
div *= 10

#this loop decrease the div by // 10
count = 0
while 0 < div:
a = (number % 10) * div
print(f"{a}")
count += a
number //= 10
div //= 10
print(f"\n{count}")```

wise cargoBOT
cerulean roost
#

@mighty flume sorry about the whole Krav Maga vs BJJ topic !

paper wolf
#

!e

async def a():...
print(type(a()))
wise cargoBOT
# paper wolf !e ```py async def a():... print(type(a())) ```

:white_check_mark: Your 3.14 eval job has completed with return code 0.

001 | /home/main.py:2: RuntimeWarning: coroutine 'a' was never awaited
002 |   print(type(a()))
003 | RuntimeWarning: Enable tracemalloc to get the object allocation traceback
004 | <class 'coroutine'>
upper spear
#

hii sir

paper wolf
#

sorry i didnt hear, im having network issues dam

#

@cerulean roost

#

i didnt hear most of the thing you probably said lol

#
import vocal, discord

user = discord.user('this.user')

user.say.language("pythonese").use
#

@cerulean roost

#

@candid spire

#
import discord

vc_users = discord.vc('this.vc').getUsers()

me = discord.user('this.user')

for user in vc_users:
  me.sayAt(user).say('hello')
somber field
#
import discord
for user in Voice.VoiceChat("Voice Chat 0"):
  print(f"hello there! {user}")
candid spire
#

!e

import discord

vc_users = discord.vc('this.vc').getUsers()

me = discord.user('this.user')

for user in vc_users:
  me.sayAt(user).say('hello')
wise cargoBOT
cerulean roost
#

@somber field

candid spire
#

!e

import numpy as np
# 1D array
a = np.array([1, 2, 3])

# 2D array (matrix)
b = np.array([[1, 2], [3, 4]])

# Zeros, ones, identity
zeros = np.zeros((2, 3))
ones = np.ones((3, 3))
identity = np.eye(3)
wise cargoBOT
somber field
#
my_project/
β”‚
β”œβ”€β”€ main.py
└── random.py

inside random.py

print("This is MY random.py file")

def randint(a, b):
    return "Fake random number"

insied main.py

import random

print(random.randint(1, 10))
print(random.__file__)
candid spire
#

!e

import sys

for path in sys.path:
    print(path)
wise cargoBOT
# candid spire !e ```python import sys for path in sys.path: print(path) ```

:white_check_mark: Your 3.14 eval job has completed with return code 0.

001 | /home
002 | /snekbin/python/3.14/lib/python314.zip
003 | /snekbin/python/3.14/lib/python3.14
004 | /snekbin/python/3.14/lib/python3.14/lib-dynload
005 | /snekbox/user_base/lib/python3.14/site-packages
006 | /snekbin/python/3.14/lib/python3.14/site-packages
candid spire
#
export PYTHONPATH=/home/user/mylibs
paper wolf
#

i dont think thats a valid python code

candid spire
paper wolf
#

but ur running it as python...

candid spire
candid spire
#

Python script is module

#

Directory containing script is library

candid spire
#
export PYTHONPATH=/home/user/mylibs
lost cedar
#

nc bore.pub 39631

#

ncat -ssl bore.pub port

cerulean roost
#

@candid spire

candid spire
#

Gtg now

cerulean roost
#

Hi @blissful spindle

blissful spindle
#

wait

#

wtf

blissful spindle
inner hill
candid bluff
#

sorry can't talk yet

inner hill
#

It's okay

candid bluff
#

yeah

#

i am

#

yeah just never did much with this Server

#

yeah

#

Canada

#

nm

#

nothing

cerulean roost
#

@tidal wedge

cerulean roost
#

See ya tom! @rough tapir πŸš€ 🐐

rough tapir
#

Oh, Alright

#

byebye πŸ‘‹

somber heath
#

@trail zealot πŸ‘‹

#

@civic blaze πŸ‘‹

civic blaze
#

Hay

trail zealot
#

where is

#

the voice verification

#

You are not currently eligible to use voice inside Python Discord for the following reasons:

You have been on the server for fewer than 3 days.
You have not been active enough on the server yet.

#

πŸ™

#

and I cant share what I'm doing...

#

because right now I'm fixing the docker compose data

#

hello bye?!

somber heath
#

@ivory copper πŸ‘‹

trail zealot
#

dont worry... I found this server today

#

because my main framework its rails, however I need to learn and have something with python

#

and I always use this kind of project: react/vite frontend and having the same connection and results using different backends/frameworks

ivory copper
trail zealot
#

understand?

#

its fun

#

like, okay, its running with react but for the backend... I want to use rails only api

#

hummm now lets change to django

#

and now changes to irails

#

and should have the same result in frontend

#

I dont think that I need to know about everything...

#

anyone should know everything...

#

but I'm trying to get a job and they mentioned python and nodejs

#

for the frontend I like to use rails, react or nextjs

#

elixir?!

#

these frameworks that I mentioned, in my opinion of course, have community, positions to apply and always upgrading

#

sorry for my english, I'm a brazillian

#

trying to find a job rsrsrsrsrsrsrsrsrs

#

Do you know this package? irails?

#

if i have permission I share the project now

#

I'll record now and share there.. its okay?

#

Okay check the rules, because I need to understand if will be a problem

#

I'm not a youtuber

#

hahhaa

#

I'll record a loom video and post there...

#

just a second...

#

I finished...

#

I'll update the post...

#

Right now I'm learning about python with different frameworks like django and irails... because need to get a job

#

Do you know about crewai?!

#

I need to wait 19 minutes to upload my video on youtube...

#

The title in video its wrong, should be iRails

trail zealot
#

I dont have permission to speak yet

#

πŸ™

#

I'm building a x clone with iRails

#

irails = fastapi but with a lot of packages

somber heath
#

@eternal socket πŸ‘‹

eternal socket
#

hello

somber heath
#

@boreal estuary πŸ‘‹

tiny ingot
#

what a coincidence

livid niche
#

finished coding a greeter for c64 in assembly

upper spear
#
print("hello") 
rough tapir
#

Hello πŸ‘‹

#

Good.

#

HBU ?

#

Then you must call Opal

#

Yup.

#

You're in IO section.

#

Yeah, using the 'f' string.

sudden spruce
#

hi

#

u from india?

#

chichi

rough tapir
#

It's cloudy here. Might rain.

#

Yup Galactus.

sudden spruce
#

where?

#

north or south?

rough tapir
#

Lol.

#

City of Dreams.

sudden spruce
#

mumbai

#

?

cerulean roost
rough tapir
#

It just Changes how the string output is gonna be

#

Let's try

sudden spruce
#

can anyone help me

#

with web scraping

#

data structure

#

like, I can't pull a structured data from a known or big website

#

there data is messy

rough tapir
#

!e

s = '     spacious     '.lstrip()
print(s)
wise cargoBOT
sudden spruce
#

that's better

rough tapir
#

.xyz() you mean

#

it's part of that sentence

#

lo

#

yeah

cerulean roost
waxen veldt
#

what is this

waxen veldt
rough tapir
#

Yeah

#

and .3f means the decimal you want to allow

#

!e

import math
print('The value of pi is approximately %6.4f.' % math.pi)
cerulean roost
wise cargoBOT
rough tapir
#

Yup

#

%d is for digits

#

numbers ig.

marble rock
#

Can't speak in the channel yet

rough tapir
marble rock
rough tapir
#

@marble rock

marble rock
rough tapir
#

Yeah

cerulean roost
#

@weak garden πŸ‘‹

weak garden
#

what are we learning here?

marble rock
rough tapir
#

Nobody uses it unless they working with something specific

wise cargoBOT
#
Available tags

Β» args-kwargs
Β» async-await
Β» beginner
Β» blocking
Β» botvar
Β» class
Β» classmethod
Β» codeblock
Β» comparison
Β» contribute
Β» customchecks
Β» customcooldown
Β» customhelp
Β» dashmpip

weak garden
#

yes

marble rock
#

import math
print('The value of pi is approximately %6.4f.' % math.pi)

rough tapir
#

The value of pi.

#

Yo

marble rock
#

!e

s = '     spacious     '.lstrip()
print(s)
wise cargoBOT
marble rock
#

!e
a="helloworld"
print(a.upper())

wise cargoBOT
# marble rock !e a="helloworld" print(a.upper())

:x: Your 3.14 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 2, in <module>
003 |     Print(a.upper())
004 |     ^^^^^
005 | NameError: name 'Print' is not defined. Did you mean: 'print'?
marble rock
#

!e
for x in range(1, 11):
print('{0:2d} {1:3d} {2:4d}'.format(x, xx, xx*x))

#

!e
for x in range(1, 11):
print('{0:2d} {1:3d} {2:4d}'.format(x, xx, xx*x))

wise cargoBOT
marble rock
#

!e
s = 'Hello, world.'
str(s)

repr(s)

str(1/7)

x = 10 * 3.25
y = 200 * 200
s = 'The value of x is ' + repr(x) + ', and y is ' + repr(y) + '...'
print(s)

The repr() of a string adds string quotes and backslashes:

hello = 'hello, world\n'
hellos = repr(hello)
print(hellos)

The argument to repr() may be any Python object:

repr((x, y, ('spam', 'eggs')))

wise cargoBOT
cerulean roost
#

@woeful barn πŸ‘‹

woeful barn
fierce iris
#

what are the metrics to become more active on the server?

tropic glade
#

Yoo

cerulean roost
#

@dense path 1 sec I’m on the phone

obsidian dragon
cerulean roost
#

@crude nova

heady widget
#

!e >>> py

print("Hello World")

wise cargoBOT
# heady widget !e >>> py > print("Hello World")

:x: Your 3.14 eval job has completed with return code 1.

001 |   File "/home/main.py", line 1
002 |     >>> py
003 |     ^^
004 | SyntaxError: invalid syntax
cerulean roost
#

`

heady widget
#

`

#

Can't send

#

!e```py

print("Hello World")

wise cargoBOT
cerulean roost
#

!e

import sys

for path in sys.path:
    print(path)
wise cargoBOT
# cerulean roost !e ```python import sys for path in sys.path: print(path) ```

:white_check_mark: Your 3.14 eval job has completed with return code 0.

001 | /home
002 | /snekbin/python/3.14/lib/python314.zip
003 | /snekbin/python/3.14/lib/python3.14
004 | /snekbin/python/3.14/lib/python3.14/lib-dynload
005 | /snekbox/user_base/lib/python3.14/site-packages
006 | /snekbin/python/3.14/lib/python3.14/site-packages
heady widget
#

!e

wise cargoBOT
#
Missing required argument

code

heady widget
#

import sys

for path in sys.path:
print(path)

#

!e
import sys

for path in sys.path:
print(path)

print("Hello World")

wise cargoBOT
# heady widget !e import sys for path in sys.path: print(path) print("Hello World")

:white_check_mark: Your 3.14 eval job has completed with return code 0.

001 | /home
002 | /snekbin/python/3.14/lib/python314.zip
003 | /snekbin/python/3.14/lib/python3.14
004 | /snekbin/python/3.14/lib/python3.14/lib-dynload
005 | /snekbox/user_base/lib/python3.14/site-packages
006 | /snekbin/python/3.14/lib/python3.14/site-packages
heady widget
#

!e
import sys

for path in sys.path:
print(path)

print("Hello World")

wise cargoBOT
# heady widget !e import sys for path in sys.path: print(path) print("Hello World")

:white_check_mark: Your 3.14 eval job has completed with return code 0.

001 | /home
002 | /snekbin/python/3.14/lib/python314.zip
003 | /snekbin/python/3.14/lib/python3.14
004 | /snekbin/python/3.14/lib/python3.14/lib-dynload
005 | /snekbox/user_base/lib/python3.14/site-packages
006 | /snekbin/python/3.14/lib/python3.14/site-packages
007 | Hello World
cerulean roost
heady widget
heady widget
#

@mighty flume MC7X4ABA

#

Model number

mighty flume
wise cargoBOT
#

ex_client.py line 79

cfg1 = vg_io.cfg.inline_set(CFG_groq_gpt20b, some_key_path)```
mighty flume
sudden spruce
#

hi

upbeat oasis
#

My site/project

cyan wolf
#

@peak siren can i get streaming permission

#

@wind raptor can i get streaming permissoin

mighty linden
#

ll

weary jay
#

Hi

thin river
#

Hii

#

@rough tapir Literary

#

And Literally

#

Bye @cyan wolf

bold urchin
#

…

#

Hi

#

No

fiery forge
#

Where r the VCs I can't see any active ones

cinder vale
#

@fiery forge yo

south cosmos
#

yes

whole rover
#

wat

south cosmos
#

hi

wheat wolf
#

uuuh

pseudo hornet
#

@whole rover join the voice you voice person

wheat wolf
#

crazy shit

south cosmos
#

I think this channel should just be visible to those in vc

#

Bot feature?

errant helm
#

It shouldn't

wheat wolf
#

i will join voice but dont have any mic or speakers muahaha

hot shuttle
#

@south cosmos never again

south cosmos
#

I don't know what that was πŸ‘€

hot shuttle
#

or turn on mic playback

south cosmos
#

oops

hot shuttle
#

nada

south cosmos
#

stop bullying me Shady

#

It's working

wheat wolf
#

i thought you wanted to repeat stuff

south cosmos
#

My mic's just off πŸ‘€

wheat wolf
#

@pseudo hornet

#

well you said i will just repeat that

south cosmos
#

ok

#

sec

#

done

#

it's on

#

oh ok

wheat wolf
#

shall i turn on my mic with an about 50 50 chance of your ears getting cancer because of windows not liking it?

#

you hear sth?

south cosmos
#

my mic's off

#

:^)

#

ok

#

fuck this is too hard

wheat wolf
#

YES

hot shuttle
#

lmao

pseudo hornet
wheat wolf
#

forever alone Shady huh?

#

lol i got one tomorrow too

south cosmos
#

dentist appointment in the morning GWemotesxdKermitThink

#

yeah

#

yes

#

mhm

#

yes

#

L7C1

#

moon base

#

It's simple enough

#

yeah

wheat wolf
#

can someone shoot microsoft pls

#

i got a headset

#

from microsoft

south cosmos
#

microsoft
'country'

wheat wolf
#

and FUCKING WINDOWS IS NOT ACCEPTING IT

south cosmos
wheat wolf
#

yes but wouldnt u expect microsoft shit to work with other microsoft shit?

#

awwww

#

ha expecting stuff to work with other stuff when both are using a world wide standard good joke...

#

awwww

south cosmos
#

what challenge is this

#

huh

#

what's the briefing

pseudo hornet
#

Multiple Boxes

Remember Filebox, the cloud storage site Bulldog gang member Billy Johnson was using to store his files? Well, it seems he's not the only gang member to store his secret files there.

As we know it's vulnerable we want to look at other ways to find the gangs files. We think files can be exposed with directory traversal and there are some two levels up from the account page. See if you can get access to them.

Tip: Find the file to get the flag.
wheat wolf
#

if this linux kernel build i have been preparing for the last 3 hours fails .........

pseudo hornet
#

http://www.easy-filebox.com/u/2374682/account/files

south cosmos
#

two levels up from the account page

pseudo hornet
#

http://www.easy-filebox.com/u/2374682/account/../..

#

http://www.easy-filebox.com/u/2374682/account/..%2F..

south cosmos
#

http://www.easy-filebox.com/u/2374682/?

#

hmm

#

http://www.easy-filebox.com?

#

how peculiar

#

like

#

no

#

I'll just

#

google it

#

sec

#

yeah

#

yup

#

right

wheat wolf
#

same

south cosmos
#

have you tried

#

http://www.easy-filebox.com/u/2374682/account/files/../../../

#

rip

#

so

#

http://www.easy-filebox.com/u/2374682/account/files/..%2F..%2F..%2F?

errant helm
#

!airhorn cena

#

:(

south cosmos
#

!play cena

#

ok

wheat wolf
#

aaah a gdude

#

cover

errant helm
#

!airhorn

wheat wolf
#

!airhorn

#

no you are not alone

hot shuttle
#

!airhorn

errant helm
#

!wtc

wheat wolf
#

oh dear

hot shuttle
#

!help

glossy umbraBOT
#

Music
!stop Makes me stop playing music
!add name_of_the_music Adds a new song in the queue
!next Makes me jump to the next song in the queue
!join Makes me join your current voice channel
!playlist Shows the songs in the playlist
!play Makes me play the next song in the queue
!leave Makes me leave my current voice channel

wheat wolf
#

!airhorn cena

#

!airhorn

#

lel

errant helm
#

!cow

#

hm

wheat wolf
#

"work"

#

"kind of"

south cosmos
#

brb

hot shuttle
#

!airhorn

#

darn, I have to be in it

errant helm
#

!stan moo

whole rover
#

i don't have mic drivers

#

heck!

wheat wolf
#

they are everywhere

hot shuttle
#

!cow

whole rover
#

!ban @glossy umbra hi

willow perchBOT
#

:ok_hand: banned Mee6#4876 (hi)

wheat wolf
#

oooohhh

hot shuttle
#

xD

wheat wolf
#

BURN IT

whole rover
#

we gucci now gary?

hot shuttle
#

!help

errant helm
#

Fiiiiiiine

#

!kick @wanton canyon

willow perchBOT
#

:ok_hand: kicked AIRHORN SOLUTIONS#6723

errant helm
#

:P

hot shuttle
#

what

#

noooo

whole rover
#

understandable, have a nice day

#

haha comedy

hot shuttle
#

!kick @whole rover

whole rover
#

what

#

i feel sad

wheat wolf
#

!airhorn

hot shuttle
#

kek

whole rover
#

!kick @whole rover

willow perchBOT
#

:no_entry_sign: cannot execute that action on yourself

whole rover
#

wtf

#

thank you for noticing

#

shady

#

stop

#

you took the joke too far

#

rowboat could be rowsubmarine

hot shuttle
#

rename it to that

#

ye

#

I wasn't typing lol

#

discord is a liar

whole rover
#

shady, you on gnome?

wheat wolf
#

!play airhorn

#

aw

whole rover
#

no

#

i don't