#voice-chat-text-0
1 messages · Page 826 of 1
!e print(ord("a"))
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
97
631 + 3
!e ```py
a = sum([ord(c) for c in "String"])
print(a)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
631
!e ```py
ceas = "".join([chr(ord(c) + 2) for c in "String"])
print(ceas)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
Uvtkpi
!e ```py
ceas = "".join([chr(ord(c) + 2) for c in "xyzXYZ"])
print(ceas)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
z{|Z[\
i can hear you all
we can hear you but can you not hear us ?
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
ok
yeah
Before doing any coding. You need trading experience.
like based of RSI, MACD
different timeframes
and we can also use support and resistance levels and trend analysis
i dont think that its that hard
to make bot like this
If I would make a bot like from scratch, I would first like decide what strategy amma use no
he can look at bullish and bearish divergences
yeah strategy
exactly
it needs a clear organized strategy and indications to follow
Yeah, you need a clear strategy and then it's just implementing it with code.
Any language you're comfortable with.
did you hear about
crypto
that you can mine
using your memory
like i have 2 terybites
haaha i forgot the name of the crypto
I shall proceed to leave. Goodbye.
whats the techstack of pythondiscord?
lol

@whole rover what do you think about this: https://www.reddit.com/r/selfhosted/comments/m7pwbu/latest_versions_of_traefik_phone_home/
made me apprehensive about switching to traefik
makes me 😔
lol
me who uses the vscode default theme
nice

going to bed down, thans folks!
bubble charts best
Probably gonna head out as well goodnight all! 👋
SnakeViz is a browser based graphical viewer for the output of Python's cProfile module.
flame graphs are pretty cool
What is reloaded each time? Just the block underneath the reloading wrapper, or, something else?
@faint ermine
cprofiles?
The entire loop body is. either that, or a function decorated with @reloading
in either case, its reloading the entire body of that
interesting, what are some usecases?
for example changing parameters during machine learning training
or in game dev, being able to implement changes directly
ah, i see, yeah i'd imagine adjust any constants during runtime would be useful
how does it work tho? changing constants during runtime
so basically, it stores the context and loads the actual code object from file
the code object can contain any valid python, so even something that overwrites a global
context being any locally scoped objects in the block?
its using the frame globals and locals
(of the outer frame)
it only has to use inspect for that once, since every consecutive task is ran using exec which modifies the passed globals and locals
yep
ah interesting, so changing anything inside the reload deco would be inside the frame
on a side note, i got access to gpt3 the other day
actually, thats brought up a interesting point. i dont think the changes propagate properly right now
wait no
it does
my test was flawed
ummm, what was the test?
i did a function that was supposed to modify a global
without using the global statement

ah lol
For the folks that were interested this my repo https://github.com/JoeyHendricks/QuickPotato. If you wish to contribute the projects let me know i definitely need help getting this further of the ground!
rn, I'm learning CSS 😂
yeah, frontend is confusing without css
yeah, with React
😂 nice
I made it
I like cats, they're smart
my friend got this cat, nd the cat slaps her everytime she takes a selfie with the cat 😂
Your catified nickname is: acceleratoꭆ | ᓇᘏᗢ
xD
.dogify
.catify
Your catified nickname is: print("Meow :D") | ᕂᘏᗢ | ᓚᘏᗢ
😂 yeah, I was playing smashkart with my friends
didn't see you guys here
@stuck sky post your code here
everyone can see here, people can help
don't just dm to me
also used code blocks
!code
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.
@app.route("/taskcreator",methods=["GET","POST"])
def taskcreator():
if 'uname' in session and session ['uname']==params['admin-user1']:
return render_template('taskcreator.html',params=params)
if request.method=="POST":
title=request.form.get('title')
content=request.form.get('content')
phone=request.form.get('phone')
img_file=request.form.get('img_file')
entry=Posts(title=title,content=content,phone=phone,img_file=img_file,time=datetime.now())
db.session.add(entry)
db.session.commit()
mail.send_message('NEW TASK NOTIFICATION',sender=title,recipients=[params['gmail-user']],body=content +"\n" + phone)
else:
return render_template('login.html')
return render_template('login.html')
@stuck sky also open up a help channel, someone with video permission might show up and help you
ok
one thing I do, is that when my form stuff gets validated, I use redirect(url_for('someURL')) instead of render template
like here
oh
Your catified nickname is: acceleratoꭆ | ᓇᘏᗢ
@mighty torrent u free?
one of the smart sentences by Carl Sagan https://youtu.be/Hez5MyKQIMs?t=3205
VHS tape from 1993; cuts off suddenly at 2 hrs, 3min.
You see the states column, it has additional data yeh in state level, i made another table for the states but i dont know which values to use as a key
yet to prepare, the code isn't the problem, but inside united states, there is a lot of states right so they have individual key but in the main table i only can put one value in state column
states column seems like a list of json, and their's the Key property in it,
so why not use it?
yeah its a json but in the main table what value should be there on I2. How do i reference all the states data from the states table for a country like lets say US?
well you can create a foreign key in the states table, which'll map to US row in country(?) table
yeah, use country column as the primary key in country table
and make it foreign key in states table
or use country code as primary key, and foreign key 🤷♂️
what dbms you using?
mysql
yeah, mysql should be able to do that
although, I use MSSqlServer, cause I think you can't use emojis in mysql 😔
i pulled this data from an API, how do they store their data? any idea?
nope, which api?
you can't guess from the front end, how they might be storing their data
this one must be storing it with sql
this looks good
Assuming they are using sql, i was trying to find what this person might have been using as a foreign key in this main table and try to recreate it.
it doesn't matter what they use, once you get the data, you can create your own schema
just try stuff out, it'll work
oh there it is, api using graphQL
I thought it might be graphQL, it looks really good 😅
how did you find out?
check networks tab
the app has really nice css
generally when a developer does this good job with frontend
they use graphQL 😂
they don't bother with backend that much
I'm gonna go grab some dinner, later 👋
thanks for the help mate really apreciated.
!e ```py
print("hello there")
@paper tendon :white_check_mark: Your eval job has completed with return code 0.
hello there
halo
Hello everyone
doing my math homework while listening
soo maybe start a subject?
uh
cats?
meow
i luv cats 😄
ok cya
PLEASE TALK
SOMETHING
Your display name is too long to be catified! Please change it to be under 26 characters.
Your catified nickname is: Meow :D | ᕂᘏᗢ | ᓚᘏᗢ | ᘡᘏᗢ
Your catified nickname is: Meow :D | ᕂᘏᗢ | ᓚᘏᗢ | ᘡᘏᗢ | 🐈
.catify @fiery hearth
@fiery hearth ᘣᘏᗢ
hi
hello
I am new to python
I am using this right now
This course will give you a full introduction into all of the core concepts in python. Follow along with the videos and you'll be a python programmer in no time!
Want more from Mike? He's starting a coding RPG/Bootcamp - https://simulator.dev/
⭐️ Contents ⭐
⌨️ (0:00) Introduction
⌨️ (1:45) Installing Python & PyCharm
⌨️ (6:40) Setup & Hello Wor...
no people here?
T = TypeVar('T')
def chunks(lst: list[T], n: int) -> Iterator[list[T]]:
for i in range(0, len(lst), n):
yield lst[i:i + n]
!pypi slashpatch
@router.interaction(name="8ball", description="Let the 8ball take the wheel")
async def _8ball(inter: Interaction):
answer = random.choice(["Yes", "No", "Maybe"])
return f"> {answer}"
@router.interaction(name="embed", description="Embed your message.")
async def embed(inter: Interaction,
title: str = Option(desc="Title for the embed"),
description: str = Option(desc="Embed Description", required=False)):
return Embed(title=title, description=description)
@router.interaction(name="Boolean", description="Example of a boolean Input")
async def boolean_example(inter: Interaction, guess: bool = Option(desc="Input")):
return guess
class Cakes(Enum):
cheese = 0
chocolate = 1
...
my unit tests work
1+1 -> 11+ | Success
4+8*3 -> 483*+ | Success
(4+8)*3 -> 48+3* | Success
6+9+(4*2+4^2) -> 69+42*42^++ | Success
2*(1+(4*(2+1)+3)) -> 21421+*3++* | Success
(5.9-5.3)*7.2+1.4^2 -> 5.95.3-7.2*1.42^+ | Success
2*20/2+(3+4)*3^2-6+15 -> 220*2/34+32^*+6-15+ | Success
100%
expr -> RPN?
yes
nice
Hi
@short aspen
what i need to talk
This is the accompanying text chat to the voice 0 chat. 🙂
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
If you need to ask your question, you can do so in here. 🙂
^^
okey
i need to run mq-3 sensor with raspberry
and im get some datas from sensor
yes
alchol sensor
and im use this data in my python codes
i cant use sensor
this module like mcp3008?
can i use datas live in my codes?
ok thank you soo much ❤️
im gonna search something
have a nice night
You too
S
My scar ^^
@honest pier Yeah, I bought a gun with my dad once.
Took like 20-30 minutes
was that his first gun
fuck u all
^_^
😔
mean 😦
ahaha yeah
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
S1ng S1ng 在做 freeCodeCamp 的 JavaScript 基础算法题目的过程中分析不同的解题思路,帮助大家学习和巩固 JavaScript 基础知识。
S1ng S1ng,2015 年自学转行前端开发,曾就职于 VMware、Apple,现在在 Cisco 任 Software Engineer。2019 年与人合作出版《深入理解 TypeScript》一书。业余爱好台球、金属乐。
⭐️ 目录⭐️
⌨️ (00:00:00)1. Conv...
go to #voice-chat-text-1 for no cringe
try ```py
from requests import *
r = get('https://.....')```
Druze
I NEED HELP PLS
is your file name requests by any chance?
nvm then
look at his screenshot
ah yeah
but he might have another file by that name in the same directory
hey lx
ah
Sphinx is a documentation generator written and used by the Python community. It is written in Python, and also used in other environments.
its LX
Hey Pub 😄
WHY?
What do you want to stream @boreal maple ?
Ah right, I can only give out temporary perms.
how cant i have th perms?
You'd have to ask an Admin for permanent.
@stuck furnace why cannot i get the vid perms
Back in a bit 👋 Need coffee 😄
urdu and hindi sound 99% the same btw
Any Hindi Person Here ?
Who Is From India ?
Anyone From India ???
Ok Brother.. No Problem..
thanks
^ i can speak a little urdu/hindi :)
@whole bear mute yourself
uhh
@flat sentinel , what on earth was that?
STOP
never
yes, I'm taking a short break from moderation
oh cool 😄
@boreal maple , are you guys just chilling out in the vc?
seems like it
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@whole bear , that java gibberish
you are better off not knowing it
nothing's wrong with it other than being super verbose
am i only one who thinks the rules for vc activation are bs?
@flat sentinel , I share similar opinion about coffee
I burn my mouth like every time I drink a hot drink 
though I do like the decaffeinated coffee
Impatient....
it's to stop idiots joining on alts and screaming down their mic
@stuck furnace why cann i cannot get video permission
They actually do a pretty good job of keeping the VC civil.
class JavaGetter implements ILanguageGetter {
ILanguage javaLanguage;
public JavaGetter() {
javaLanguage = new com.sun.lang.java.javaLang.factory.JavaLangFactory().createLanguage()
}
public createLanguage() {
return javaLanguage.deepCopy();
}
public static void main () {
javaLanguage.is.such.a.nice.language();
}
}
YOU DID A 7H STREAM
were you here before the voice gate? lol
what's this?
If I recall, last time you kept the stream open all night, and were streaming some black hat stuff?
lol no; i'm new here
exuse me what black hat stuff?
true true
you think a 15 year old that only knows batch and nothing else could do black hat stuuff?
lol. it was like the wild west then.
Anyway, whatever it was, the admins were not happy 😄
I mean why is @green bone not banned yet
i dont even know what black hat means
bach you steamed a file named some bad stuff
what was it nammed?
for what? did you report to modmail?
he's terrorising us with java
lol, I was kidding
is going to find it and warn me
don't ban him
who
what bot?
!ban @green bone don't you dare
don't ban @green bone
fix error is good
anyone wanna play chess
me
coffee + lots of sugar + condensed milk = ❤️
that dosen't work
still nope
Join the challenge or watch the game here.
this one?
it works
man, a bunch of people talking about random stuff. Just what I was looking for
define racism
hmm
is LX a bot?
LX fanclub
Guys...
god, people you are terrorising LX
no we're not
give LX a break
we're applauding him
Funny considering I've basically not said anything today 😄
bye
hai
"I want LX to be promoted to an admin"
"that's not how that works"
"I don't care"
I feel like I'm inadvertently becoming a cult leader or something 😄
Against my wishes...
LXult
can i be member #1 
no me 🥺
i'll fight u
you're like 100 pounds soaking wet
no u
and like 5 feet tall
get rekt
Oh no
I will join when u two will be fighting
5120 feet = 1 mile
you see. i am no professional at imperial system.
psvm you're literally describing yourself
what
i-
:P
@simple sonnet 
inferial system
Igen, jött egy gyöngyhajú lány
Álmodtam, vagy igaz talán?
@boreal maple Huygens-de Graaff
brb maybe
Juan Martínez Cortés
spanish lessons with jakie
!voiceverify
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
No, read the embed
just want to speak okay
if you've met the requirements type !voiceverify within the verification channel (not this one)
!voiceverify!voiceverify!voiceverify
thx
if you've not met the requirements it will tell you what's remaining
Yeah, the embed shows you how to verify.
Hey Italian friend do u watch F1?
ah shitake mushrooms today is mother's day
<33
reminder for the other americans lol
😄
@glad sandal what do you mean by ᕂᘏᗢ | ᓚᘏᗢ | ᘡᘏᗢ?
😔
I say please and thank you to Siri 😄
kissa
what kind of docstring do you suggest?
numpy, sphinx, google or docblockr?
please type here, I am going to check later
you also need one that actually allows Youtube (if that's a thing)
is kissa a good girl? or a good boy :3
Does anyone know tensorflow
She knows I'm a chat bot 👀
she's female
Turing test failed 
@severe pulsar your still streaming btw just so you know. So you don't show anything that's confidential.
wutta good girl :3
yep
YOUR CAT IS SOOO CUTE <33
thx lol
did I?
doubt it
@gentle flint ᘣᘏᗢ
I use vm for school work...
nord vpn scares the hackers away
Youtube Premium ... simple
LOL UR LOGIC JAKE
bsdfgbsdftyhfgdsfdfjgbdf
Creators are individual people lol
....
Not a big corporation but yes I am hypocritical
classic
there's a Nitro Gift button on Discord, there's no Gift Phone button
it's also in your General Settings;
The General Setting is also only the Default, if you have a server you want this Reversed you can just activate it
Getting up to the limit, and as I don't talk (currently) I'm out. Have a good day guys.
how is that better
k then
idk just better (sometimes)
why?
i think it looks better in the file and its a bit cooler
(i just learned python)
like fully
yes but can also be used for private apps
yeah but importing can be usefull
copy pasting is better
but importing might be a better choice sometimes
if you import you're still copy pasting
only you're then importing what you copy paste
yeah
I fail to see how that is any better
🤷♂️ k then
no but copy pasting is very good i just like importing
but its kinda better to just copy paste
...
i just like the ide of importing
ok ima be back soon
cya
copy pasting is very not good
Also I wanna thank whoever helped me with those docstrings once again. Thanks!
copypasting is fine if you know what you're doing @honest pier
for instance, small tricks in list comprehension
then adapt it for your personal use case
you can apply "if you know what you're doing" to literally anything
Sure, but I mean in the sense of if you know what you are copy pasting and how to use it then I don't see it as such a problem
then afterwards you customise it
and customise it some more
and eventually it's nothing like what you copy pasted
Yep
which one is it, serialization or storage
serialization
what kind of data lol
config files
lemme grab you an example
something like this
this is a toml file, but im just asking generally, which is preferred/is better
hmm, are there formats which are better for one but bad for the other?
same
https://github.com/DudeBro249/docrunner
star it if you like it lol
@whole bear
hlo
hi
my vscode is Stack
not working
??
yha
oky
@whole bear @severe pulsar guys you are coder's
yes
I would think of myself as more of a guy who writes colorful text into colorful text files
oohk
i would call my self is-even-2 package owner
привет всем
The software utility cron also known as cron job is a time-based job scheduler in Unix-like computer operating systems. Users who set up and maintain software environments use cron to schedule jobs (commands or shell scripts) to run periodically at fixed times, dates, or intervals. It typically automates system maintenance or administration—thou...
Hey @unborn storm!
It looks like you tried to attach a Python file - please use a code-pasting service such as https://paste.pythondiscord.com
Hey @unborn storm!
Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:
• If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)
• If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:
xclip -sel c < file
somerandomcommand | xclip -sel c
brew install xclip
vrappeur
vapeur du vrappeur
Hebrew cantillation is the manner of chanting ritual readings from the Hebrew Bible (or transl. he – transl. Tanakh) in synagogue services. The chants are written and notated in accordance with the special signs or marks printed in the Masoretic Text of the Bible, to complement the letters and vowel points.
These marks are known in English as 'a...
Hello guys
you could squeeze a good few more years out of that
It was in this state already 3 years ago
and that is indeed precisely what I plan to do
mutt
i know
Hey
.topic
Suggest more topics here!
E
boring topic
KORN
.topic
Suggest more topics here!
Kemal
.topic
!voice @whole bear
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
pytohn
.topic
Subnautica
.topic
Typing
ded
Bored
.topics
.topic
.topic
"How are you?" Great conversation starter 😄
Suggest more topics here!
I'm bad at programming
this was done
A tea bag, Mug and kettle
🇲🇰
Otherwise you might find you automatically do it without thinking.
🇳🇱
🇫🇷
🇦🇱
🇺🇳
🇩🇪
🇷🇪
🇧🇭 🇶🇦
🫀
No one:
Oskar: vim
lol
there ya go
Yep. It started out as a crappy imitation of Griff's PFP, but I kept it as I actually kind of like it.
oo
Hmm
Back later 👋
me too
hello
I'm fine, wbu
Hi bro
I don't have permission to speak, I don't know why
It's just because you are new 🙂
!e ```py
a : 0
b : 1
c : 2
d : 5
globals().update(annotations)
print(a,b,c,d)
@past pawn :white_check_mark: Your eval job has completed with return code 0.
0 1 2 5
is this readable?
:get_len
Rem checking to see if input has been parsed
if "%~1"=="" echo No Input Detected & exit /b
set "input=%~1"
Rem !var_name:~var1,var2!
Rem var_name is the varriable of witch you want to use
Rem var1 is the position of the string
Rem var2 is the amount of characters from the var1 in the string
for /l %%a in (0 1 10000) do (
if "!input:~%%a,1!"=="" exit /b
echo !input:~%%a,1!
)
exit /b
what does it do?
@whole bear did you mean "which"?
!e ```py
a:0;b:1;c:2;d:5;globals().update(annotations);print(a,b,c,d)
@past pawn :white_check_mark: Your eval job has completed with return code 0.
0 1 2 5
!e (a:=0,b:=1,c:=2,d:=5)and print(a,b,c,d)
@past pawn :white_check_mark: Your eval job has completed with return code 0.
0 1 2 5
!e ```py
class cout(metaclass=lambda*a:type(*a)()):
lt=print
lshift=lambda s,o:print(end=o)or s
cout << "Hello " < "World!"
@past pawn :white_check_mark: Your eval job has completed with return code 0.
Hello World!
!e
print((6 * 9) + (6 + 9))
@whole bear :white_check_mark: Your eval job has completed with return code 0.
69
!e ```py
assert 'yo mamma' > 'a truck full of big macs'
print('passed')
@past pawn :white_check_mark: Your eval job has completed with return code 0.
passed
hello
!e ```py
def split(_n):
n ,= _n
a,b = n.divmod(10)
return a,b
def bias(ab):
a,b = ab
return a10,b-2
def rejoin(ab):
a,b=ab
return a*b
@print
@rejoin
@bias
@split
@int
@lambda c:c()
class n:int=lambda n: 69
@past pawn :white_check_mark: Your eval job has completed with return code 0.
420
!e
def split(_n):
a,b = n.divmod(10)
return a,b
def bias(ab):
a,b = ab
return a10,b-2
def rejoin(ab):
a,b=ab
return a*b
@print
@rejoin
@bias
@split
@int
@lambda c:c()
class n:int=lambda n: 69
@whole bear :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 16, in <module>
003 | File "<string>", line 2, in split
004 | NameError: name 'n' is not defined
def split(_n):
n ,= _n
a,b = n.divmod(10)
return a,b
def bias(ab):
a,b = ab
return a10,b-2
def rejoin(ab):
a,b=ab
return a*b
@print
@rejoin
@bias
@split
@int
@lambda c:c()
class n:int=lambda n: 69
!e ```py
print((lambda n:int.mul(10*(n//10),(n%10)-2))(69))
@past pawn :warning: Your eval job has completed with return code 0.
[No output]
!e print(8<<8)
@past pawn :white_check_mark: Your eval job has completed with return code 0.
2048
!e ```py
a = 69
print(bin(a))
print(bin(a << 2))
@past pawn :white_check_mark: Your eval job has completed with return code 0.
001 | 0b1000101
002 | 0b100010100
!e print(32<<8)
@past pawn :white_check_mark: Your eval job has completed with return code 0.
8192
gtg cya
noo
anyone know a easy way to generate random unicode characters uning a api
!e
from random import randint
print(u"".join(char for char in [chr(randint(0,65536)) for x in range(3)]))
@cerulean moth :white_check_mark: Your eval job has completed with return code 0.
୭矝㈞
Heyy
im making python script
the hell?
i wasent in the vc and i got voice banned
yes
who ban me
why?
for what
!e ```py
test = {'1':1, '2':2, '3':3}
print(max(test))
@zealous wave :white_check_mark: Your eval job has completed with return code 0.
3
can i get help
i have this right here
def random_list(Y=128, X=128, Characters=random.shuffle(list(string.ascii_letters))):
but when i call this function
func_out = random_list(hight, width, chars)
it says that chars is undefined i know what that means but how would i do this even when the chars is defined like the example at the top says that it sets Characters to something but that only happens when then chars is not defined
i NEED char defined
it does
it is string
and the string is --
the problem is its being set to None
all im using random.shuffle
from typing import Optional
def foo(Optional[Characters=random.shuffle(list(string.ascii_letters))]):
optional is not the problem
shuffle modifies the list
'__package__':'typing'; from.import Optional
I feel like this green has changed as well
yes
I can hear!
Yey

Blurple is also slowly disappearing
Oh right. So, opening the debug thing seemed to fix it after a while 🤔
!e
from random import shuffle
L = [1, 2, 4, 53, "hey"]
result = shuffle(L)
print(result)
print(L)
@honest pier :white_check_mark: Your eval job has completed with return code 0.
001 | None
002 | [1, 4, 53, 'hey', 2]
heemlock your funee
ooh nice 😄
seen that guy that just CHUUGS maranara sause
NOOOOO
@rugged root milk bottle of vegimite
milk bag
wait so how do i use shuffle?
it modifies the sequence in place
how do i use it
how would i do a list with shuufle
shuffle(your_list)
oof ok
?
want me to give you my thoughts on the other parts of your code
yes!
send code ples?
import random, sys, string
from random import shuffle
def random_list (Y, X, Characters):
if Y == "--":
Y = int(128)
if X == "--":
X = int(128)
if Characters == "--":
print(f"point 1:{Characters}")
Characters = list(string.ascii_letters + string.digits)
print(f"point 2:{Characters}")
shuffle(Characters)
print(f"point 3:{Characters}")
else:
Characters = list(Characters)
shuffle(Characters)
for y in range(Y):
for x in range(X):
pass
return(f'function finished\n{Characters}')
if __name__ == '__main__':
width = int(sys.argv[1])
hight = int(sys.argv[2])
chars = sys.argv[3]
output = sys.argv[4]
encoding = sys.argv[5]
f = open(f'{output}',"w", encoding=encoding)
func_out = random_list(hight, width, chars,)
f.write(f"{func_out}")
f.close
Joe always sounds like he just woke up.
closeis a method at the end, should bef.close()(actually should use a context manager, but this is ok too)- what is this random loop
for y in range(Y):
for x in range(X):
pass
you can shuffle a string using random.sample(string, k=len(string))
int(128) is redundant
im planning on using that loop
you can try using argparse, it's in the std lib, for a nicer cli
I think this color was changed too
alr im gonna head out for another call, laters
😢
nope that will just add toomuch mega bites
im converting exe
and?
because it wil be used on pcs
its does
and every thing you import
it is
batch is still godley
nope
never
i will end my self because that is not proctical
(╯°□°)╯︵ ┻━┻
numba?
someone wanna convert my py to c# c++ rust or literly and exe with arguments?
hi lossberg
HOMER
just learn one of those 🎉 then you can do it yousrelf
nope never nuuhhhhhhhh never stay away from me you have the something other than batch as main language virus
mhm
im accepting anyone wanna convert my py
😔
!stream 816074283994054686
@whole bear
✅ @warped turret can now stream.
👀
"Professional" 😂
lol
That nearly became a disaster 😄
😔

@whole bear https://www.compart.com/en/unicode/U+2800
U+2800 is the unicode hex value of the character Braille Pattern Blank. Char U+2800, Encodings, HTML Entitys:⠀,⠀, UTF-8 (hex), UTF-16 (hex), UTF-32 (hex)
U+2800 this?
\uwu
uwuwuwu
\uwu/
.uwu
Your input was invalid: text is a required argument that is missing.
Usage:.uwu <text>
.uwu Mr.Hemlock
Mw.Hemwock
Backswash uwu
UwU melock
🥺
oof
uwu
pog
🥴
step 1: ᓚᘏᗢ
lets be friends 😳
.catify
.uwu hello there
hewwo dewe
0x13
oh ok
u looks old
maybe idk
@rugged root I just got rejected by a girl
lol
yikes
Chim chimeny
anyone wanna do binarysearch lol
.owo chim chiminy
.uwu what the f is uwu
what de f is uwu
.uwu chim chiminy
chim chiminy
fuck
https://binarysearch.com/room/Boolean-Pandits-cI1QGV4LAm if anyone wants to join lol
Learn algorithms together on binarysearch. Create a room, invite your friends, and race to finish the problem.
@vivid palm nice name
srsly n ever heard of it
lol mina wha's the reaction
@undone idol
lul
good remake, though it helps if you can tollerate musical numbers
thank the pond for the image
@icy axle YOU KNOW THE RULES AND SO DO I
lets stop this
A full commitment's what I'm looking for
lmao
-.-- --- ..- / .-- --- ..- .-.. -.. -. - / --. . - / - .... .. ... / ..-. .-. --- -- / .- -. -.-- / --- - .... . .-. / --. ..- -.--
@honest pier just loggingin f
@rugged root screen back
i had to leave and join back
me?
uh a reaction role bot
?
!stream 816074283994054686
@whole bear
✅ @warped turret can now stream.
