#voice-chat-text-0
1 messages ยท Page 36 of 1
?
slowprint(...)
user_input = input()```
never thought of that
back
i had to take a mean shit
i wanna play a game
so ima pass on the code problem for now
@somber heath if i send you the whole code could you quickly check it please?
:_(
ok
yh but the thing is i've literally copied the code just changed the def names etc. the first one works when the button is clicked but the other doesnt
ye i have thats the problem
def names, frame name etc
but the first button works
idk haha
@rocky hearth
yes
you know your tkinter shit
:_(
hellllo
can u test me
yes sir
STOP
hmm
lemme test
stackoverflow sucks
yeah
whats the answer
\033[34
i only know minecraft color codes
ahh
def
next quersdtion
ohh yes
so
we
got
from fun import *
testfunction()
WSAIT
no
i got it
Wildcard imports should be avoided.
from fun import testfunction
testfunction()
GIMME A HARD ONE
ELABORATE
ye
no clue
can u gimme a tut
i should watch
for pythopn
@somber heath
gime tu
!d in
6.10.2. Membership test operations
The operators in and not in test for membership. x in s evaluates to True if x is a member of s, and False otherwise. x not in s returns the negation of x in s. All built-in sequences and set types support this as well as dictionary, for which in tests whether the dictionary has a given key. For container types such as list, tuple, set, frozenset, dict, or collections.deque, the expression x in y is equivalent to any(x is e or x == e for e in y).
For the string and bytes types, x in y is True if and only if x is a substring of y. An equivalent test is y.find(x) != -1. Empty strings are always considered to be a substring of any other string, so "" in "abc" will return True.
@somber heath
NONONONONONNONONO
gimme a tutorial off youtube
or somewhere else
that i should use to lear
I see no need for you to do so.
@mint karma ๐
abcdefghijklmnopqrstuvwxyz 1234567890
smash
@whole bear ๐
@robust lichen @somber heath 5 more hours
till i get to !voiceverify
#cool #letsgo #dababy #noonecanstopme #unstopable
I'll hold my breath.
!e
print("hello world")
@robust lichen :white_check_mark: Your 3.10 eval job has completed with return code 0.
hello world
@robust lichen :white_check_mark: Your 3.11 eval job has completed with return code 0.
Hello, World!
.
!e
def test_print():
print("Hello, World!")
test_print()
@echo shell :white_check_mark: Your 3.11 eval job has completed with return code 0.
Hello, World!
!e
import os
print(os.version)
@echo shell :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 2, in <module>
003 | AttributeError: module 'os' has no attribute 'version'
!e
print(sum(range(101))
@echo shell :x: Your 3.11 eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print(sum(range(101))
003 | ^
004 | SyntaxError: '(' was never closed
!e
print(sum(range(101)))
@echo shell :white_check_mark: Your 3.11 eval job has completed with return code 0.
5050
Traceback (most recent call last):
File "/home/runner/cross-ad-bot/venv/lib/python3.8/site-packages/discord/ext/commands/core.py", line 229, in wrapped
ret = await coro(*args, **kwargs)
File "main.py", line 245, in setup
guilds = json.load(f)
File "/nix/store/2vm88xw7513h9pyjyafw32cps51b0ia1-python3-3.8.12/lib/python3.8/json/__init__.py", line 293, in load
return loads(fp.read(),
io.UnsupportedOperation: not readable
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/runner/cross-ad-bot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 1349, in invoke
await ctx.command.invoke(ctx)
File "/home/runner/cross-ad-bot/venv/lib/python3.8/site-packages/discord/ext/commands/core.py", line 1023, in invoke
await injected(*ctx.args, **ctx.kwargs) # type: ignore
File "/home/runner/cross-ad-bot/venv/lib/python3.8/site-packages/discord/ext/commands/core.py", line 238, in wrapped
raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: UnsupportedOperation: not readable
@bot.command()
async def setup(ctx):
try:
f = open(f"{ctx.guild.id}.json", "r")
except:
f = open(f"{ctx.guild.id}.json", "a")
f.write("{}")
guilds = json.load(f)
await saveguild(guilds, ctx.guild)
with open(f"{ctx.guild.id}.json") as f:
json.dump(guilds, ctx.guild)
@noble relic ๐
!voiceverify
@noble solstice ๐
@lavish rover aoc? i also did the most ugly thing ever
Hi
@ruby hatch ๐
:/
@whole bear ๐
f
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
ok you do
E4
send this message https://txnor.com/vieag/a
then dont say anything else
only say this if you wanna move s/g/$&FROMTO an example is this s/g/$&e2e4
e2 to e4
Heh, bad notation bro.
too verbose. e2 to e4 should be e4. That is a better notation.
rebane made it not me ยฏ_(ใ)_/ยฏ
I know
there may be more pieces with that move
e4 is unique
you should do it like e4 pawn
e4 is only for pawn
I know
e4
me white. White moves first.
exd5
x means take
it will move Qxd5,
I will do Nc3
attaching its Queen
dxc6
Ng3
G1G3
same thing
G1f3
sorry
f1b5
@echo shellwanna play a game?
g1h2
sure. Playing against SF
its stockfish v human
Join the challenge or watch the game here.
stockfish > human
sure
depending on depth
@ruby hatch you can observe, it is much easier
DEF
def f(): pass
while False: pass
while True: attach
def f(): return None 
def f():
raise Exception(NotImplemented)```
def f():
raise NotImplemented()
```I think this also works
!e ```py
def f():
raise NotImplemented()
!e ```py
def f():
raise NotImplemented()
f()
@sick cloud :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 4, in <module>
003 | File "<string>", line 2, in f
004 | TypeError: 'NotImplementedType' object is not callable
try to call f()
or not
!e ```py
def f():
raise NotImplemented
f()
@sick cloud :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 4, in <module>
003 | File "<string>", line 2, in f
004 | TypeError: exceptions must derive from BaseException
!e
pass
@ruby hatch :warning: Your 3.11 eval job has completed with return code 0.
[No output]
mine is the most useless
!e ```py
def f():
raise Exception(NotImplemented)
f()
@sick cloud :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 4, in <module>
003 | File "<string>", line 2, in f
004 | Exception: NotImplemented
Perfect
!e
def f():
raise NotImplementedError('aha')
f()```
@echo shell :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 3, in <module>
003 | File "<string>", line 2, in f
004 | NotImplementedError: aha
uselessness = amount of lines it takes {if not usefull in any way}
Ye, I see, thx for making me realize that Im terrible at python ๐ ๐คฃ
!e
del "Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless "
@ruby hatch :x: Your 3.11 eval job has completed with return code 1.
001 | File "<string>", line 1
002 | del "Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless "
003 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
004 | SyntaxError: cannot delete literal
hm
this one let you output some info like 'aha'
!
e```py
a = "Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless"
del a
!e
very_useless_var = "Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless "
del very_useless_var
@sick cloud :warning: Your 3.11 eval job has completed with return code 0.
[No output]
!e
a = "Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless Very Useless"
del a
@ruby hatch :warning: Your 3.11 eval job has completed with return code 0.
[No output]
I think this shouldn't be counted because you can make it longer infinite times
Definitely smth I'd consider using in production code
just use a while True loop = infinite length
there is a very good way of running an inf loop from itertools. I have to google it.
!e
# Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless Very useless
@ruby hatch :warning: Your 3.11 eval job has completed with return code 0.
[No output]
!d itertools.cycle
itertools.cycle(iterable)```
Make an iterator returning elements from the iterable and saving a copy of each. When the iterable is exhausted, return elements from the saved copy. Repeats indefinitely. Roughly equivalent to:
```py
def cycle(iterable):
# cycle('ABCD') --> A B C D A B C D A B C D ...
saved = []
for element in iterable:
yield element
saved.append(element)
while saved:
for element in saved:
yield element
```...
what does yield mean?
Used in generators.
I am looking for coutn
!e
from itertools import count
c = count()
for i in range(10):
print(next(c))```
@echo shell :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
004 | 3
005 | 4
006 | 5
007 | 6
008 | 7
009 | 8
010 | 9
you can loop forever.
!e while True: pass
and you get the numbers.
@ruby hatch :warning: Your 3.11 eval job timed out or ran out of memory.
[No output]
lmao
haha
!e ```py
def gen():
yield "a"
yield "b"
yield "c"
yield "d"
g = gen()
print(g)
print(next(g))
for each in g:
print(each)
next(g)```
@somber heath :x: Your 3.11 eval job has completed with return code 1.
001 | <generator object gen at 0x7fdca1df4930>
002 | a
003 | b
004 | c
005 | d
006 | Traceback (most recent call last):
007 | File "<string>", line 12, in <module>
008 | StopIteration
!e t=0;print(t)
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
0
@ruby hatch :x: Your 3.11 eval job has completed with return code 1.
001 | File "<string>", line 1
002 | 0:=0
003 | ^
004 | SyntaxError: cannot use assignment expressions with literal
!e p:=1;print(p)
@ruby hatch :x: Your 3.11 eval job has completed with return code 1.
001 | File "<string>", line 1
002 | p:=1;print(p)
003 | ^^
004 | SyntaxError: invalid syntax
!e py print((a := 123)) print(a)
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 123
002 | 123
@ruby hatch :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | NameError: name 'e' is not defined
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
1
!e a = 100000, print(f"{a=:_}")
@echo shell :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | NameError: name 'a' is not defined
!e c = 100000; print(f"{c=:_}")
@echo shell :white_check_mark: Your 3.11 eval job has completed with return code 0.
c=100_000
@dry jasper :white_check_mark: Your 3.11 eval job has completed with return code 0.
Test
heres my mandelbrot set shaped c code that generates the mandelbrot set https://www.youtube.com/watch?v=m5MzopFs1mU
I forgot to put a link where to copy it :P
here it is :
https://gist.github.com/MananaTheOne/b9e1208ee4ceb978ea3d1160f43e5d26
find a python version , and run it here.
I'm making an implementation please wait

I think it wont run in the python bot because it will run out of memory
maybe a stripped one.
https://www.youtube.com/watch?v=PSMOTq7TUBA also made this ๐
Sorry for those random lines, its some sort of bug, I wish to fix it but the solution to it is to re-render the whole video which took 13h 41m 30s
The whole process took 3 days.
1 day to program, 2 day to render, and another day to fix some issues with the code and add some patches to some frames (frames that has nothing on it)
Programs/Libra...
what kind of "moving stuff"?
a charactor say letter 't', walking from left to right.
!e
for i in range(10):
print(' ', end="")
print(t)
@echo shell :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 3, in <module>
003 | NameError: name 't' is not defined
!e
for i in range(10):
print(' ', end="")
print('t')
@echo shell :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | t
002 | t
003 | t
004 | t
005 | t
006 | t
007 | t
008 | t
009 | t
010 | t
!e
for i in range(10):
print('-'*i, end="")
print(t)
@echo shell :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 3, in <module>
003 | NameError: name 't' is not defined
!e
for i in range(10):
print('-'*i, end="")
print('t')
@echo shell :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | t
002 | -t
003 | --t
004 | ---t
005 | ----t
006 | -----t
007 | ------t
008 | -------t
009 | --------t
010 | ---------t
!e
import time
for i in range(10):
print('-'*i, end="")
print('t')
time.sleep(1)
@echo shell :x: Your 3.11 eval job timed out or ran out of memory.
001 | t
002 | -t
003 | --t
004 | ---t
005 | ----t
006 | -----t
!e
import time
for i in range(10):
print('-'*i, end="")
print('t')
time.sleep(0.1)
@echo shell :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | t
002 | -t
003 | --t
004 | ---t
005 | ----t
006 | -----t
007 | ------t
008 | -------t
009 | --------t
010 | ---------t
!e
for x in range(10): print("." * (((x/10)**2) * 20).__int__())
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 |
002 |
003 |
004 | .
005 | ...
006 | .....
007 | .......
008 | .........
009 | ............
010 | ................
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 |
002 |
003 | .
004 | ..
005 | ...
006 | .....
007 | .......
008 | ..........
009 | .............
010 | ................
!e
for x in range(10): print("." * (((x/10)*3) 20).round())
@ruby hatch :x: Your 3.11 eval job has completed with return code 1.
001 | File "<string>", line 1
002 | for x in range(10): print("." * (((x/10)*3) 20).round())
003 | ^^^^^^^^^^^^
004 | SyntaxError: invalid syntax. Perhaps you forgot a comma?
!e
for x in range(10): print("." * (((x/10)**3) * 20).__round__())
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 |
002 |
003 |
004 | .
005 | .
006 | ..
007 | ....
008 | .......
009 | ..........
010 | ...............
!
efor x in range(10): print("." * (((x/10)**2) * 30).__round__())
!e
for x in range(10): print("." * (((x/10)**2) * 30).round())
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 |
002 |
003 | .
004 | ...
005 | .....
006 | ........
007 | ...........
008 | ...............
009 | ...................
010 | ........................
I forgot to put a link where to copy it :P
here it is :
https://gist.github.com/MananaTheOne/b9e1208ee4ceb978ea3d1160f43e5d26
!e
import math
WH:int = 32
WW:int = 32
MX_I:int = 9
MN:float = -2.0
MX:float = 2.0
PNX:float = -10
PNY:float = 0
colors = ".->=&#@ "
def m_map(x: float, in_min: float, in_max:float, out_min: float, out_max:float) -> float:
return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min
def main():
x, y, a, b, ai, bi, a1, b1 = (0.0, 0.0 , 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
n = 0
for sy in range(WH):
for sx in range(WW):
x = sx + PNX / MX
y = sy + PNY / MX
a = m_map(x, 0, WW, MN, MX)
b = m_map(y, 0, WH, MN, MX)
ai = a
bi = b
n = 0
for i in range(MX_I):
a1 = a * a - b * b
b1 = 2 * a * b
a = a1 + ai
b = b1 + bi
if ((a * a) + (b * b)) > 2 * 2: break
n += 1
print(colors[n] if n < colors.__len__() else " ", end="")
print("")
if __name__ == '__main__':
main()
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | ................................
002 | ................................
003 | ................................
004 | ................................
005 | ................................
006 | ................................
007 | ..............-------...........
008 | ...........------->==>--........
009 | ..........------>>=& >>-.......
010 | ........------->>>= =>>--.....
011 | ........------>>=&# #=>--.....
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/osihacireb.txt?noredirect
trying to make esoteric python
this
turn that into one line
# array1 = []
file = open("data.txt", "r")
# print(f.read())
count = 0
file = open("data.txt", "r")
array1 = []
array2 = []
for line in file:
test1 = line.strip('\n')
array1.append(test1.split(" "))
print([float(x) for x in array1[0 + count:1 + count:2][0][2:]])
the_max = max([float(x) for x in array1[0 + count:1 + count:2][0][2:]])
the_min = min([float(x) for x in array1[0 + count:1 + count:2][0][2:]])
# array3 = [array1[0 + count:1 +count:2][0][:2]],[array1[0 + count:1 +count:2][0][2:]],[the_max],[the_min]]
array3 = [[array1[0 + count:1 + count:2][0][:2]],
[array1[0 + count:1 + count:2][0][2:]], [the_max], [the_min]]
print(array3)
print(array1[0 + count:1 + count:2][0][:2])
print(array1[0 + count:1 + count:2][0][2:])
print(the_max)
print(the_min)
print("the_max: ", the_max)
print("the_max: ", the_min)
count = count + 1
print(array2)
#examples of what its doing
iter = 2
jim3 = array1[0 + iter:1 + iter:2]
jim4 = array1[0 + iter:1 + iter:2][0][2:]
print(jim3)
print(jim4)
print([float(x) for x in array1[0 + iter:1 + iter:2][0][2:]])
the_max = max([float(x) for x in array1[0 + iter:1 + iter:2][0][2:]])
the_min = min([float(x) for x in array1[0 + iter:1 + iter:2][0][2:]])
Erik Eriksson 11.47 12.7 10.98 12.04 12.0 12.43 10.47 11.82 10.91 10.37
Anna Andersson 10.02 11.23 13.79 12.44 12.56 11.12 12.68 10.53 13.82 10.26
Olle Olsson 13.45 10.55 12.51 14.29 14.09 10.3 11.8 14.28 13.17 14.06
Eva Enoksson 13.09 14.05 12.47 13.45 11.33 14.91 12.56 10.23 10.56 10.86
Sven Svensson 12.99 12.79 11.4 10.6 12.94 10.02 11.96 14.2 12.35 13.34
Robin Robinsson 14.93 14.92 12.41 14.83 13.77 12.77 10.4 11.76 11.36 11.64
Stina Svensson 13.1 12.32 11.91 10.11 11.27 13.86 11.91 10.83 11.14 11.68
Elsa Enoksson 12.99 14.47 14.6 11.54 14.03 13.8 11.56 14.96 10.63 10.09
Ingrid Istedt 10.85 10.38 11.07 14.75 14.52 12.43 13.25 10.36 10.64 14.33
Gunnar Gรถransson 10.27 13.25 11.47 12.38 12.82 10.32 14.77 10.72 13.17 13.61
Hanna Hansson 11.88 12.79 11.57 14.51 10.41 13.43 13.83 14.69 10.87 11.22
Mats Matsson 13.95 12.64 10.03 14.11 10.6 10.31 10.65 12.72 11.07 11.6
Maria Malmberg 13.66 12.85 11.67 13.06 11.57 13.64 11.95 12.54 11.07 10.47
Vera Valfridsson 14.53 13.02 11.02 11.39 10.07 10.81 10.01 11.24 13.63 13.2
Astrid Adamsson 12.84 11.91 13.34 12.01 12.1 13.2 10.19 11.8 14.49 12.83
Erik Einarsson 14.03 10.78 14.56 10.13 11.98 10.89 11.27 12.7 12.15 14.98
Rune Robertsson 12.11 14.22 13.75 14.88 10.93 13.41 14.75 13.62 11.44 13.24
Mona Mรฅnsson 11.9 10.77 13.95 13.9 10.1 12.26 14.69 12.94 11.7 14.14
Martin Martinsson 10.95 14.0 10.18 10.74 10.77 12.3 14.62 11.51 14.92 12.15
Willy Wik 12.78 13.43 10.83 12.39 10.43 12.12 13.84 10.35 13.99 14.1
!e print("```")
@ruby hatch :warning: Your 3.11 eval job has completed with return code 0.
[No output]
!e print("`")
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
`
!e print("`".join["", "", ""])
@ruby hatch :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | TypeError: 'builtin_function_or_method' object is not subscriptable
!e print("`".join(["", "", "", ""]))
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
``
!e print("`".join(["", "", "", ""]))
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
Code block escape attempt detected; will not output result
Full output: https://paste.pythondiscord.com/iruyekavuh.txt?noredirect
!e print("```")
@cloud root :x: Your 3.11 eval job has completed with return code 1.
001 | File "<string>", line 1
002 | \
003 | ^
004 | SyntaxError: unexpected EOF while parsing
How do I become voice verified?
The unix epoch date was <t:0:f>, it was <t:0:R>
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
ic tysm
^
Integrate your service with Discord โ whether it's a bot or a game or whatever your wildest imagination can come up with.
!voice @ruby otter
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Not that you asked but I want someone to talk with
I'll try to verify
Okay .w.
I'm trying to reimplement this into python
I did it successfully
make this sound like a research paper "AI art and the creative destruction of the creatives The Austrian economist Joseph Schumpeter theorized in the 1940ties that capitalism is in a constant โprocess of industrial mutation that continuously revolutionizes the economic structure from within, incessantly destroying the old one [and] incessantly creating a new oneโ (Schumpeter, 1942). Capitalists and entrepreneurs face a constant pressure to innovate in order to avoid a loss of their capital and face a market exit. This continuous pressure for innovation leads in turn to the destruction of past investments and labour skills in the workforce. The first wave of creative destruction happened during the industrial revolution in England. The steam powered loom, a machine than could knit cloth way more efficient than any human being, made heaves of workers obsolete over night, resulting in mass poverty and social upheaval. AI Art has the same destructive potential in the creative industries. Artists and creatives, who invested a lifetime into honing their craft, face a future in which any image, sound or text can be created with the click of a button and a text prompt, making them and their expertise obsolete."
The process of creative destruction, as theorized by Austrian economist Joseph Schumpeter, is a fundamental characteristic of capitalism. According to Schumpeter, capitalism is in a constant state of "industrial mutation" that continuously revolutionizes the economic structure, destroying the old and creating the new. This pressure to innovate leads to the destruction of past investments and labor skills in the workforce.
One example of this phenomenon is the industrial revolution in England, where the introduction of steam-powered looms made many workers obsolete overnight, leading to mass poverty and social upheaval.
The emergence of AI art has the same destructive potential in the creative industries. Artists and creatives who have spent their entire lives honing their craft now face a future in which their expertise can be replaced by AI-generated images, sounds, and texts. This technology has the potential to make many traditional creative roles obsolete.
@dry jasper Can you help me with html and css? I'm in VC
@robust lichen @whole bear Can you help me with html and css? I'm in VC
!voiceverify
I've been in this server for a long time
but while hover img scales left
but you have to be in server for 3 days
hmm got it
i know. it's my 2nd day
I've been here more than a year
if you want to help me. can you pls come to the call
guys Have you ever tried opencv
I ve no idea about css and html
thanks
py -m pip install --upgrade pip
py -m pip install tensorflow-cpu==2.10.0
py -m pip install tensorflow-directml-plugin
guys have you ever tried opencv?
this
;
this
hey
can anyone please help me with this question
Write a program that simulates a lottery. The program should have a list of 5 integers named winning Digits, with a randomly generated integers in the range of 0 through 9 (both included) for each element in the list. The program should ask the user to enter 5 integers (between 0 to 9) and should store them in a second integer list named player. The program must compare the corresponding elements in the two lists and count how many integers match. For example, the following shows the winning Digits list and the Player list with sample digits stored in each. There are two matching integers, elements 9 and 3 in the same index position.
without using functions
@pliant karma ๐
# -*- coding: utf-8 -*-
Python Enhancement Proposals (PEPs)
It means you should update your stuff @lethal thunder
this looks like a new pronoun
was your interview today?
ye
Vรคxjรถ
Grundstรผcksยญverkehrsยญgenehmigungsยญzustรคndigkeitsยญรผbertragungsยญverordnung
Nordvรคstersjรถkustartilleriflygspaningssimulatoranlรคggningsmaterielunderhรฅllsuppfรถljningssystemdiskussionsinlรคggsfรถrberedelsearbeten
"Legalese", for its lack of.
Rindfleischยญetikettierungsยญรผberwachungsยญaufgabenยญรผbertragungsยญgesetz
!server
เฎคเฎฟเฎฐเฏเฎตเฎพเฎฒเฎตเฎพเฎฏเฏเฎเฏเฎฏเฎพเฎฐเฏเฎคเฎฟเฎฐเฏเฎตเฎฟเฎฒเฏเฎฏเฎพเฎเฎฑเฏเฎชเฏเฎฐเฎพเฎฃเฎฎเฏ
!charinfo เฎฃเฎฎเฏ
\u0ba3 : TAMIL LETTER NNA - เฎฃ
\u0bae : TAMIL LETTER MA - เฎฎ
\u0bcd : TAMIL SIGN VIRAMA - เฏ
\u0ba3\u0bae\u0bcd
เฎฐเฏ
la
@rugged root what is the relationship between this server and the PSF?
What is PSF
We're listed on their communities page, and we've hosted events with them, but we are not officially affiliated with them
We're a separate entitiy
Python Software Foundation
@supple dagger Would you please change your nickname to meet our nickname policy? For more details, see #rules
i'm out
Awww, muffin
byee @limpid sparrow
What do the instructions have to say on that point?
try sending some messages
and then running the command
you do also need to have been in the server for a certain amount of days
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
JavaScript*
TypeScript*
pls
from a prank interview featuring the cast of the lord of the rings movie franchise
do you wear wigs? have you worn wigs? will you wear wigs? when will you wear wigs.
I love the remix to this lmao
Hiiii
Heyyyy
do you have a link?
I shall go look for one brb
Do you wear wigs ? No I do not
Have you worn wigs ? No I have not
You are beautiful man a beautiful man
Will you wear wigs? UGHH Maybe
WHEN WILL YOU WEAR WIGS
00:00 - Have you worn wigs? No I have not!
00:18 - Top 3 Wigs
00:57 - Is our TikTok taste bad?
02:17 - Nah its ELITE
02:32 - SUS
So chaotic! I love it!
I'll watch it
@quasi condor I see you sir....but today I have a vanilla latte so I shall take this W
@quasi condor JavaScript is bad.
@quasi condor JavaScript is bad.
What was reason?
@quasi condor JavaScript is bad.
but what if some logging in a part of my app that i don't know about logs my environment variables!!! then my secrets are in plaintext!!!!
https://xkcd.com/927/ @zenith radish
/h1
Hello World
/h2 .subtitle
This is a h2 with the class ".subtitle"
/article
/section
/p This is a section /p there are multiple paragraphs
/img https://onion.beauty/1.jpg
What is a solder pump
sigh
<div>
<p> Paragraph
<p> This is also a paragraph
the hashicorp people said so
oh god you use vault
i tried, it was too hard
i really dislike vault, but it does have its uses
Of course they did, they want you to buy Vault.
a thing which pumps solder
@honest pier I did todays one the wrong way round
I never read the question but I completed part 2 before part 1
@amber raptor what vm instance to use for matrix server
sorry im in class
@whole bear If you can't control your mic, you're going to lose your voice perms
rap cap
The hell does that even mean
your rap capping
If by that you mean preventing loud noises from interrupting the voice chat, then yes
i have push to talk
Then you were holding it down when you weren't speaking
i didnt realise
You left your mic on and a lot of background noise was coming through
oh
And now you know
yea
How much RAM/CPU?
https://azureprice.net this is best website to use if possible.
somebody know how to use tkinter??
@south torrent What's the problem you're having with it
Better to ask your question rather than asking if someone knows
lol
i don't know how to explain this
I don't know what to tell you then, unfortunately
what about me ;-;
the problem is when i am doing a pack to my question (i am trying to make a question game and you can pick the right answer)or doing a grid without anything its work but when i add to the grid row=0, rowspan= 3 it doesn't work any more my question is build on three rows and i am trying to do rowspan it don't work and i dont know why
@quasi condor his computer has performance issues lol
Patience.
whoever just said to not leave their child at the terminal was hilarious lol
Our dear Maro
whats a matrix server?
nvm ill just google it
ohhhh
i heard boob, you have peaked my interest
anyone tried chatGPT?
What is it exactly?
Interesting
it's incredible
Ask it about code

there are two proofs. One from Euclid and one from, I think Euler.
Start here: #the-pydis-mass-layoffs-lounge message
[required: Helpers]
yes, everyone knows that there are finitely many primes
reading now. Hate pictures, you know. How is the proof from chatGPT?
chatGPT is not good at math.
will be in couple of years!
yes it is...
not surprised. Also AI failed the latest AoC.
@peak lily do you have access to chatGPT yourself?
you can just signup i think
I knew. I was going to signup for Davinci actually.
but hesitated now.
it's fairly good at definitions though
@mossy creek You've got some buzzing coming from your mic. Can you either turn on Krisp, mute your mic, or turn on push to talk?
Thank you
๐
https://store.steampowered.com/app/846770/DYSMANTLE/ This game is weirdly cathartic, btw
As you ascend from your shelter after the long long years, a brave new old world awaits you. A world inhabited with nasty and vile creatures. A world with no other human soul to be seen. A world with nature in reigns now. A world that's about to get even worse.You need to find a way to escape the wretched island. But before that, enjoy the bitte...
$19.99
7600
No idea why, I just love it so much
@stuck furnace How've you been?
Erm, not bad, you?
Not good, but I don't have the energy to go into that. You been busy with school, work, etc.?
I have been busy avoiding all commitments and responsibilities 
!e
code
@lavish rover making a raytracer โฅ๏ธ
@molten pewter https://www.wienerschnitzel.com/
Wienerschnitzel serving Hot Dog, Chili Cheese-Burgers, Corn Dogs, Chili, Tastee-Freez, and Breakfast. More than 320 quick-serve restaurants in 11 states.
Thanks for telling me ill mute my mike.๐
!tvmute 754020405089534013 1d You were told to cut it out with the noises. Your random mouth noises and buzzing mic need to be fixed. If you cannot behave yourself by the time you get back, you will have your voice permissions removed permanently.
:incoming_envelope: :ok_hand: applied voice mute to @mossy creek until <t:1670353554:f> (1 day).
@last thistle Sorry, didn't mean to cut you off
Of course!
I shall take my leave
Sorry sir
!unmute 754020405089534013
Hi jamie i am reporting one of the moderators to you as i can't create a ticket. Discombobulated Adams is very rude and refusing to help for no reason. You can see this in the pictures i have sent.
If you have a complaint, send a message to the @rapid crown bot
When will i be unmuted @ .
Again, message the bot
They just said "This system is for reporting concerns to the moderators. Don't be afraid to use it as needed, but it is not intended for other purposes."
Hey man, do you know mathematica? Im having an issue
Dude you necro'd a post from like... a week ago
?
Not you, Rift
I The code continuously plots 0.25 when x > 1 even though it should plot
(sqrt(x + 3) - 2)/(x - 1) when x > 1
Just thought it was interesting
Cause I wanted to find someone who knows mathematica
So I literally just searched "mathematica" in chat lol
AF you still there?
Ah
What's the difference?
The reason why I'm so stressed about this isn't because it's so complicated; it's because it's so simple... that's bad!
Whatcha workin' on?
Oh holy shit
That's a good catch
I did the math for like two points in my head and I thought it wouldn't look like that
Ah
I have free mathematics through my uni
Nvm forget I said that
!server
card_deck_dict = {
"โ 2": "/2_of_spades.png",
"โฅ2": "/2_of_hearts.png",
"โฆ2": "/2_of_diamonds.png",
"โฃ2": "/2_of_clubs.png",
"โ 3": "/3_of_spades.png",
# ...
}
suit_cards = [
"โ ",
"โฅ",
"โฆ",
"โฃ",
]
face_cards = [
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"T",
"J",
"Q",
"K",
"A",
]
the_deck = []
for f_card in face_cards:
for s_card in suit_cards:
the_deck.append(f_card + s_card)
I think the input processing was the hardest part today
Ah right
You mean like? ```py
suit_cards = 'โ โฅโฆโฃ'
face_cards = '23456789TJQKA'
Yeah, there's a bit of a trade-off between vertical space and line length.
I agree with steve ๐
It pleases me that suit_cards and face_cards have the same number of characters ๐ค
I've always avoided GUI programming for some reason.
Nah
totally
If I really have to, I just go with webUI.
When I was first learning python, I took this online course that really influenced how I think about programming. The first section was on writing a function to rank poker hands. The course is still free, but uses python 2 I think: https://www.udacity.com/course/design-of-computer-programs--cs212
Taught by Peter Norvig.
Yeah ๐
Oh nice
He used to be high up at Google I think?
import random
from enum import Enum
from collections import namedtuple
from dataclasses import dataclass
from pathlib import Path
from itertools import product
Suit = Enum('Suit', split('โ โฅโฆโฃ'))
Face = Enum('Face', split('23456789TJQKA'))
@dataclass(frozen=True)
class Card:
suit: Suit
face: Face
def __str__(self) -> str:
return f"{self.suit}{self.face}"
@dataclass
class Deck:
cards: typing.iterable[Card]
def shuffle(self) -> Deck:
random.shuffle(self.deck)
def get_picture(card: Card) -> Path:
with path(f"path/to/folder/with/pics/{card}.png") as pic:
return pic.read()
def generate_full_52_cards_deck():
return product(
list(Face),
list(Suid),
)
if __name__ == '__main__':
full_deck = generate_full_52_cards_deck()
random_card = Card(
random.choice(list(Face)),
random.choice(list(Suit))
)
assert(len(full_deck.cards) == 52)
assert(random_card in full_deck.cards)
Looks pretty good to me. I would use a more concrete type than typing.iterable[Card] for Deck.cards, e.g. list[Card] or tuple[Card, ...].
suggest adding shuffle.
Oh right, so you want your Deck constructor to take any iterable?
I'd probably just add an alternate constructor.
@dataclass
class Deck:
cards: list[Card]
@classmethod
def from_iterable(cls, it: Iterable[Card]):
return cls(list(it))
Ah yeah
I would tend to just use type-aliases though. E.g. ```py
Deck = list[Card]
But idk ๐คทโโ๏ธ
I think he is still with Google.
๐
Omg
It's an interesting course. It mostly focuses on solving small puzzles, but he dives straight into things like using the profiler to optimise your code.
๐ฅน
Ah yeah ๐
PAIP?
Yeah I always wanted to learn Lisp but never got around to it.
yes
and a few other books as well.
I am not good at Lisp. ๐ฆ
I found it to be difficult.
bye now.
That I think I can handle. Let's see.
def sing_happy_birthday():
sing()
return birthday =]
raise NotImplementedError('huh')
return 0
def Menu(menu):
print(menu)
global gameScreen
gameScreen = f"""
{name}
+=---------------------=+
Health : {health}
Mana : {mana}
Attack : {attack}
Weight : {weight}
Weapon : {weapon}
Armour : {armour}
+=---------------------=+
"""
def createPlayer():
name = input("What shall you be called")
if __name__ == '__main__':
createPlayer()
class Player():
def __init__(self,name,health,mana,attack,weight,weapon,armour,gold,xp,level) -> None:
self.name = name
self.health = health
self.mana = mana
self.attack = attack
self.weight = weight
self.weapon = weapon
self.armour = armour
self.gold = gold
self.xp = xp
self.level = level
@whole bear
Source code: Lib/dataclasses.py
This module provides a decorator and functions for automatically adding generated special methods such as __init__() and __repr__() to user-defined classes. It was originally described in PEP 557.
The member variables to use in these generated methods are defined using PEP 526 type annotations. For example, this code...
@dataclass
class Weapon():
name: str
attack: float
weight: float
@dataclass
class Armour():
name: str
defense: float
weight: float
@dataclass
class Player():
name: str
health: float
mana: float
attack: float
defense: float
weight: float
weapon: Weapon
armour: Armour
gold: float
xp: float
level: int
typing.TypeAlias```
Special annotation for explicitly declaring a [type alias](https://docs.python.org/3/library/typing.html#type-aliases). For example:
```py
from typing import TypeAlias
Factors: TypeAlias = list[int]
``` See [**PEP 613**](https://peps.python.org/pep-0613/) for more details about explicit type aliases.
New in version 3.10.
@dataclass
class AccurateCappedCounter:
value: Decimal
capacity: Decimal
# overload the add, minus, whatever other operators you need
# and make sure to throw an error/exception when you go below 0 or above max_value
Health: typing.TypeAlias = AccurateCapperContainer
Gold: typing.TypeAlias = AccurateCapperContainer
Mana: typing.TypeAlias = AccurateCapperContainer
if __name__ == '__main__':
health = Health(value=100, capacity=100)
mana = Mana(100, capacity=250)
wallet = Gold(value=0, 100)
capicity logic
hi
@echo shell good morning
Python is an amazing programming language that you can do so many things with.
Nice to see you again ( I am CiTyESP's alt )
At the moment I am learning python
hi
More than anything, I specialize in Java. I have been working with it for 7 years.
great! Nice to see you here
I haven't used @dataclass in my life I would make classes with def __init__ in them ๐
Thanks for letting me know
Or just use dicts with none of the hinting in them
Tell me what epic things you have done with python
Sorry for those random lines, its some sort of bug, I wish to fix it but the solution to it is to re-render the whole video which took 13h 41m 30s
The whole process took 3 days.
1 day to program, 2 day to render, and another day to fix some issues with the code and add some patches to some frames (frames that has nothing on it)
Programs/Libra...
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
@graceful grail @lavish rover Using an multiplication-based approach, I'd do it like this:
Create two arrays using the specified range, and zero out the rest of the range. If 2-4, then arr1 becomes
[0,2,3,4,0,0,0,0]
If 6-8, then array becomes:
[0,0,0,0,0,6,7,8]
To figure out overlap, I'd multiply the indices together and generate a third array
[0,2,3,4,0,0,0,0]
x
[0,0,0,0,0,6,7,8]
It becomes arr3[1] = arr1[i] * arr2[i] for the third array
[0 x 0, 2 x 0, 3 x 0... 0 x 7, 0 x 8]
Which results in:
[0,0,0,0,0,0,0,0]
If all indices in the third array are 0, then there's zero overlap. In the case of overlap, like:
.23456... 2-6
...45678. 4-8
You'd get this:
arr1 = [0,2,3,4,5,6,0,0]
arr2 = [0,0,0,4,5,6,7,8]
arr3 = [0 x 0, 2 x 0, 3 x 0, 4 x 4, 5 x 5, 6 x 6 ... 0 x 8]
arr3 = [0,0,0,16,25,36,0,0]
Where the non-zero indices indicate the overlap between the other.
]+(![]+[])
+!+[]]]+[]
+[]]]+(![]
variable_name = 1
del variable_name
!e
x = 1
globals().pop('x')
x
@lavish rover :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 3, in <module>
003 | NameError: name 'x' is not defined
!e
code
!e ```python
x = 1
x.pop(0)
x
@graceful grail @lavish rover
In the overlap case:
arr1 = [0,2,3,4,5,6,0,0] => Has 5 non-zero elements
arr2 = [0,0,0,4,5,6,7,8] => Has 5 non-zero elements
We know that if arr3 has less non-zero elements than either arr1 or arr2, the overlap is not a subset.
By that same token, if arr3 has the same number of non-zero elements as arr2 and arr2 has less non-zero elements as arr1, then arr2 is a subset of arr1.
The same can be said vice versa if ((arr3.NumNonZeroElements() == arr1.NumNonZeroElements()) < arr2.NumNonZeroElements()), then arr1 is a subset of arr2
input_txt = open('input').read()
def max_sum_block(input_txt):
return max(
sum(map(int, block.split('\n')))
for block in input_txt.split('\n\n')
)
i have no idea what is that, but looks nice!
you have a name that is more confusing then Prince's
just learn chinese, grammar is simple
print((T:=(R:=(I:=__import__)("functools").reduce)(lambda P,L:(R(lambda p,i:((P[0][i+1].append(L[i*4+1]),P[1][i+1].append(L[i*4+1]))if L[i*4]=="["else P,P)[-1],range(len(L)//4),P)if"["in L else((t:=[*map(int,I("re").findall("\d+",L))]),R(lambda *_:P[0][t[2]].insert(0,P[0][t[1]].pop(0)),range(t[0]),0),P:=(P[0],D(list,{**P[1],t[2]:P[1][t[1]][:t[0]]+P[1][t[2]],t[1]:P[1][t[1]][t[0]:]})))[-1]if"move"in L else P),open("input/05.txt"),((D:=I("collections").defaultdict)(list),D(list))),*["".join(x[1][0]for x in sorted(t.items()))for t in T])[-2:])
it is
I feel too inferior to these superior beings, have a good one
hello again opan misstt
hi
Hi! Just listening ๐
@lavish rover could you help me find a problem with my code?
all good
or @wind raptor
depends on how big your code is
49 lines
what's the problem specifically, give more details please
thats the error
mean = sum(rtt, 0.0) / len(rtt)
~~~~~~~^
ZeroDivisionError: float division by zero
yes
but the server is working @whole bear
thats what i did
HAHA
its free
u can do it here
yeah
@lavish rover it is GPT
coding chess engines must be pretty cool
why is hashmaps under user defined?
@lavish rover all goods
I was wondering about that, I was thinking there is no point to having a continue at the end of the while loop
this is yalls uni homework?
dictionaries are hashmaps
wait so what did i have to do to the inside @lavish rover
like this
ok thank you
i will try re typing it
"from" and "not respond" are duplicated from the comment
respond is undefined though
that's more of a runtime not syntactic error, but true
good point
Some people just want to see the world burn
I wonder who you are referring to
can't argue with that
but they hold the power
that was Roosevelt
I think
these are some dark thoughts
the power of the collective
I hope to get the verification some time, looking forward to speaking
verify me now lmao lifes short
traveling is pretty great
I hope to go all over the world
can i visit you @somber heath
I have been to Brisbane, I found it was a lot like US except you drive on the other side of the road
of course, not N Korea or Central African Republic
that's a relief
I have been to S Africa, Morocco and they are nice places
S Africa has a lot of poverty though
Isn't it governed by a dictator?
i'mma proletariate
for defi crypto
weird that they "own" all the liqueur
how do you spell liqueur is that right??
liquor is concentrated alcohol, liqueur is concentrated alcohol with some sort of sugar added
uhhhhh please tread on me ๐ฅต
tourist, a very wild animal indeed
Tourist - Person travelling to visit places recreationally.
@somber heath are you the spiffing brit from youtube?
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@somber heath ah yes i see, the issue is i dont have enough messages
@whole bear ๐
It gives you the remainder of a division operation.
So say if you were to divide 9 by 4, 4 goes into 9 twice with 1 left over in the 9, so 9 % 4 is that 1
!e py print(9 % 4)
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
1
Doing it by hand is arguably more valuable a skill, if only because you are more likely to figure out a legitimate use for it
It's also a really nice thing to wrap a value to within a range, like a clockface.
!e py for i in range(10): print(i, i % 4)
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 0 0
002 | 1 1
003 | 2 2
004 | 3 3
005 | 4 0
006 | 5 1
007 | 6 2
008 | 7 3
009 | 8 0
010 | 9 1
i got that it gives remainder after division but for a question i had to answer, i couldnt see how it was usefull
it was:
Write a program that asks the user to enter an angle between โ180โฆ and 180โฆ. Using an expression with the modulo operator, convert the angle to its equivalent between 0โฆ and 360โฆ.
i got so confused
Donโt worry, it could be worse
its just the question
idk
ah ok
so like
angle = eval(input('angle between -180 and 180: '))
ans = (360 + angle) % 360
print(ans)
Use float, not eval.
why?
i started 2 days ago
lol
@crisp raven i can send you what im going thu its just a booklet thing
eval is for evaluating/running arbitrary code. float is intended to convert objects to a float numeric type. It's more appropriate.
huh
sorry i didnt get the notifications
you said you trying to learn? i just started like 2 says ago
im going thru a booklet
no no, not trying, just using it
literally whatever the github tells me to do, i use the bare minimum to use
i only 1 time ever added in a sound effect after the code was done
bro, took me 4 days, for like 3 lines of code
@crisp raven
Pick your poison =)
I like the "explicit > implicit" part of typing - plus I find the @dataclasses to be deliciously more terse, yet still explicit, than writing my own __init__() and such for "vanilla classes"
Hi
@toxic shale
brb
hi sam
Who dis
where are you nowadays
Mars, sometimes Venus
how about pluto?
Maybe someday
via elon musk, sure
maybe not
Maybe I will fly
oh byeee, @fierce breach ๐
Premium, Vegan, Eco-Friendly, Sustainable, Ethical, Upcycled, Handmade Products made from Waste Plastic using Charkha & Handloom. Enables livelihoods for women and youth artisans from humble backgrounds Specialises in customisations, personal and corporate gifting. Retails, Exports, Reseller, Events, Exhibitions, CSR.
(1) Not all reusable bags are made of cotton - there's also polypropylene (PP) and polyester bags which are much less damaging for the environment. According to the same study, PP bags only need to be used 52 times, and polyester bags only need to to be used 35 times (that's less than once a week for an entire year!).
I use the polypropylene ones
they sell them at the supermarket
and they're a lot stronger than the thin rags given away for free
these
@stray niche it's sinterklaas today
saint nicholas's name day
Sinterklaas (Dutch: [หsษชntษrหklaหs]) or Sint-Nicolaas (Dutch: [sษชnt หnikoหlaหs] (listen)) is a legendary figure based on Saint Nicholas, patron saint of children. Other Dutch names for the figure include De Sint ("The Saint"), De Goede Sint ("The Good Saint") and De Goedheiligman ("The Good Holy Man"). Many descendants and cognates of "Sinterkla...
they called you mummy?
https://github.com/w1redch4d/depressed-lang
@midnight agate review
ohh
No that's not what I am forgetting
@whole bear Hiiii
Heyooooo
@stray niche How are we dooinng
We doin goood! How we doing there?
Ayooo! Doing good here as well :D
Yayy, your flu flew away?
sure did...feels good to be able to breathe
Yayyy
@whole bear
!e
print(False == False in [False])
@cosmic lark :white_check_mark: Your 3.11 eval job has completed with return code 0.
True
I'll see y'all laters, gotta to something that needs concentration
TheScrubLord โ 12/04/2022 7:05 AM
you are over 13 years old (for legal reasons) i presume
Dischord โ Today at 1:29 AM
Mate you're 14
Acting like you're some 25 year old double-degree graduate
TheScrubLord โ Today at 1:30 AM
are you sure about that?
!e
print(__import__('random').choice(
[( '1'
)+ chr(int(ord('ว')/ 10
)) +chr( 5*17 )
+ chr(2 *56) ,
'' +chr( 7*11 )
+ chr( 5*23 +2
)+ chr(5* 23
)+ chr(10* 10
+4 )+chr( 5*
22 +2*2)+ ''
+ chr(2* 56
-1 )+chr( 37
* 3
)+ chr(99 +
10 ),chr( 83
)+ ''
+chr(4*29)+chr(4*24+1)+chr(114)]))
@cosmic lark :white_check_mark: Your 3.11 eval job has completed with return code 0.
Star
this
byeee, Good luck!
I'm looking someone English native whom with can learn together. I've learning disabilities, that's why.
I can't talk in voice chat
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
/block @midnight agate too italian
/block @lethal thunder very cringy
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
#voice-verification you can verify in this channel @silver stratus
Thanks, seems so complex to me
looks like eyelashes
his face is better with hair
hello
hi starman
ooo we have these too!
Tuk Tuks
theyre very bumpy though
Rikshaw
Double decker tuk tuk: Monument to man's hubris, or the future, today? You decide!
Theyre a pain the ass if youre driving your own car
Akin to houseflies
annoying.
I gtg..have fun guys!
Cyaa, ATB
sudo() {
sudo apt update > /dev/null 2> /dev/null;
sudo "$@"
}
Two naming scales for large numbers have been used in English and other European languages since the early modern era: the long and short scales. Most English variants use the short scale today, but the long scale remains dominant in many non-English-speaking areas, including continental Europe and Spanish-speaking countries in Latin America. Th...
mean software developer salaries by state
Byee
@velvet urchin What's up?
brb
@trail mural accept mah friend request
51,714
312,588
