#ot1-perplexing-regexing
1 messages · Page 467 of 1
Not as much anymore, since we’re not on discovery, but yeah, it’ll probably keep growing a lot
Public statistics for the Python Discord server
i will recommend this discord to my friends then
You can check out growth rate here
growth rate
And a lot of other interesting stats
and advertise it. i will ask lemon when i want to advertise this discord server to my school. after i graduate probably.
i can relate to growth rate
and advertise it. i will ask lemon when i want to advertise this discord server to my school. after i graduate probably.
@mild abyss you are in college right? why are you saying school
hmm

and btw
Of course college is school?
College here is university
😆 of course it is hell. keyds
i got hit by my teacher because i made my c alphabet cursive rather than what she told us
in kindergarten
literally she twisted my ear
HOLY GUCCI
Is that even allowed?
in middle school and high school instead of getting hit, we are seriously humiliated in class
well at least in my school
THATS.... ABUSE
What country is that?
Welp. Sweden is just the opposite of that
i mean thats so wrong in so many levels
my sister had to go study in another city for a main exam last year, i tagged along with my mother and there it was sooo good
well we live in a third world country
do you guys know about kota?
i think im gonna make changes to my country when i came back and get killed by a mafia like family
do you guys know about kota?
@edgy crest what dat
i was there last year, teachers there were awesome
its pretty much the best education hub in india, probably the continent
i mean its a city
it has its disadvantages but the teachers there are too good
unfortunately i was there only last year and i am back to hell again
i am acquainted to an indian friend and he is in belgium now
reason being
india is hell
society?
in terms of society it is hell
do you plan on moving out?
no point
hmm okay
if you move out of it its a really good place to live
things like good food and more are easily available
just this part is hard
and i do not tend to escape from problems :)
hmmm@m
too proud to do so
Huh
btw where to learn discord.py
Same feels brother, from India too
For what?
Aah
i am kinda lost
Sentdex has tutorials for discord.py
Maybe Realpython could help
ooh
Realpython is always great
and btw, can someone give me a quick explanation on what decorators are
ohh decorators are just function that take and modify another function
oh realpython has a tutorial
Corey does actually have a video on that hahah
didn't know that
Corey does actually have a video on that hahah
@narrow pecan ye he does
it 30 min long
its 30 mins long
In this Python tutorial, we will be learning about decorators. Decorators are a way to dynamically alter the functionality of your functions. So for example, if you wanted to log information when a function is run, you could use a decorator to add this functionality without mo...
i just need a quick explanation
so 30 min isn't bad
Real Python has a lot of tutorial, and I've yet to find one that isn't awesome
It’s basically a function that modifies another function
Not necessarily even modify it
why not
Yeah just wrapping it
It also work with classes
Do what yourself?
just look at the documentation from real python @edgy crest u will undertand
Make decorators? Yes
oki
Ak seems to have an explanation coming
He's writing out an essay
Indeed
@solid pollen ik that u can decorate a class but could u give me an example
example's are nice
Basically
@decorator
def my_function():
...
Means
def my_function():
...
my_function = decorator(my_function)```decorator are only *syntax sugar*, they are just here to save you some keystrokes. Decorators are just that.
yea
thats what i wanted to know
like you can do it manually too, but @s can be handy
too lazy to type it all
They are a few "standard" use cases
like
Such as
def decorator_wrapper(callback):
def wrapper(*args, **kwargs):
... # Do something before
callback(*args, **kwargs)
... # Do something after
return wrapper```
Okay so
This is a wrapper decorator
u got to retrun callback
depends on the function you're wrapping
In order to understand this example, you have to understand scopes
how?
Well functions don't always return things
Basically, a scope is a space holding local values
huh
You could only need to return callback if callback returns something
otherwise its pointless, the result is the same
ohh i see that's what u mean
Each function creates its own scope when they are called
when u mean call back returns something do u mean callback containing return in it @tranquil orchid
But the thing is, if you create a function inside another function, the inner function will inherit the scope from the outer function
well returns a value yes
if its just returning None then its pointless to return callback
right
That's why callback defined in decorator_wrapper can be accessed in wrapper
Then, the decorator returns a reference to wrapper to be reassigned in the place of the old function
@tawdry terrace imo giving someone incorrect advice that they might not be able to recognize as incorrect is worse than not saying anything at all
since it has the potential to teach them something incorrect and move them backwards
while not saying anything will not do anything
@sand inlet its not incorrect just one of hundreds of ways of doing it
import time
print("hello")
start = time.time()
while time.time() < start + 10:
pass
print("world")```
this code does indeed wait for 10 seconds
but it does it in a bad way
cant we just use time.sleep?
it's both not particularly nice-looking code, and it has noticeable bad effects on the system
yes, we can, and we should
yes
time.sleep is way better than that code
@sand inlet Not in all cases
i mean, there's no reason to do it like that
in what case is time.sleep worse
^
@sand inlet they main want to run other stuff in the wait loop, anyway i got other things to do than discuss my way of doing python.
if they just wanted to "wait for 10 seconds" then the answer to that is time.sleep(10)
and if that doesn't work you need to ask them why and get to the point where you understand the situation well enough to give them what it is they're actually looking for
@sand inlet each to their own
their "actual" question wasn't "how do i wait for 10 seconds without time.sleep", it was "how do i wait for 10 seconds in a discord bot without pausing the entire bot", and that context shows what the actual answer is
anyone who works with css here ?
@sand inlet python has many solutions to the same problem, IDK why your arguing the toss with me, the person who asked closed it, everything fine
some solutions are better than others
that should block the bot anyway
acording to ZEN
it never allows another coroutine to work
and some solutions are not the kind of thing that you should give to someone as an example to be followed in any circumstances because they're not good at all ._.
members = '\n - '.join([member.name for member in guild.members])
print(f'Guild Members:\n - {members}')```
can this ^ also be done like this-
```py
for member in guild.members:
print(f'Guild members:\n - {member.name}')```?
like the output will be differwent
it can be
same reason that you shouldn't give golfed code to a beginner in a help channel, anything they learn from it will be going against the principals of good readable maintainable python code
but it will print the names right?
depends on convinience and ease to read and debug
@sand inlet as i said there are some viable use cases
there are some viable use cases for golfed python code in bizarre situations
there are some viable use cases for handcrafting pickles or patching built-in types in memory with ctypes
but there are also cases where someone would ask for something weird like that because they don't quite understand something and they've ended up at the wrong question
@mild abyss IK
if they're trying to prove the turing completeness of a weird subset of python, or if they're making an esoteric library just for the fun of it, or if they want to make a weird pickle by hand to demonstrate that pickle isn't safe, or if they're interacting with a strange system that's set in stone and requires doing something weird, then fine
efficient code > working code
there was nothing in their original question to suggest that they were doing any of those things, or anything anywhere close to that entire class of things, with a higher probability than it being XY
Okay
You all wrote 369 today
Nope
I will prove 369
@unique warren please do
AC
Very well
A bit slow response, but it may be you
@unique warren What animal did you become obsessed with at the end of your life, if I recall the rumors correctly?
2
Pigeon
tesla
Child
model s
Child?
I am old
No @tranquil orchid; that’s what you are want to be using
I am still working on my Tesla coil.
C-
h-
i-
l-
d- Tesla roadster
I used an electric car
How’s it going with the cool?
Made by me
in comes elon stage left
Elon musk said Edison was a better role model
👀
I must take my revenge
Indeed
My coil looks good
Nice
did u guys know discord added a new feature for roles, now u can view from whatever roels prespetive u want
that's really good now u dont have to use alts
What do y out mean?
It's useful for if you administrate a server, so you can look at the server from the view of a different role to ensure permissions are set up correctly e.g. they can only see the channels they are meant to be able to see
Aah, yes. I meant more how it works. Where is the setting for it?
Here's the article for it https://support.discord.com/hc/en-us/articles/360055709773-View-as-Role-FAQ
Thanks! That looks really handy. I’ve been missing something like it for some time now
yes now u dont have to use Alts
if u wanna kick them why would u change the roles in the first place
to see if you have the permissions to kick them
wdym
like how many years of xp u got in python
0
damn didn't realise i was meant to be collecting xp
I am so not feeling well today. Mainly my nose will not stop being too much
Ive decided that im not doing any coding today. I tried and I am just doing a bad job because i cant concentrate with symptoms
@rough sapphire take a rest. and if that persists, go to a doctor. i hope it is nothing serious.
wear a mask when you go outside
Oh its definitely nothing that needs a doctor. I have sinus reactiions to the air all the time.
Its just lame and makes me needs to rest it out
Oh its definitely nothing that needs a doctor. I have sinus reactiions to the air all the time.
@rough sapphire AH fudge i overreacted
I always wear a mask
No worries, these days sick can be pretty baad
Youll notice if you watch the allergy medication commericals its always, "Helps you focus"
Its because thats the main thing allergies do thata is different than being sick. They rob your attention to fixate on an irriation
It is true though that a person with bad allergies is likely to spread the virus.
So people like me really shouldnjt go out when they can avoid it while hjaving allergies
Mainly because allergy sufferers cant stop breathing heavily everywhere
thanks...
does swearing make me sound cooler
pls answer i need to win an argument with my mom
she has a belt pls help
@rough sapphire nope it doesnt. it makes you a d.
oh? no wonder my ex was ranting about me being a cock
pogchamp
If you curse under the write contexts it cant yield a postiive reaction, mainly when trying to create empathy by expressing humor or anger.
Not anger at someone
But empathy at shared frustration with an emote
More than anything
the individual audience members can vary greatly in that
I'm tRyIng tO sWeAr lEsS sO cHrIstIaN gIrlS nOticE mE
oh? no wonder my ex was ranting about me being a cock
@rough sapphire ??? idk about your relationships but you should fix your attitude if thats the case.
Its a good practice because not being in control of using foul language is bad. You should be saving it for the right times.
i mean, I don't offend anyone, i just like to put fucking before every word
and after
but why
I used to do that and now I avoid it.
thats kinda sad
i see
this fucking job is fucking shit i fucking hate this, wait I'm fucking underage lol ffuckin forgot
like, that's just weird
thats so many useless words in one sentence
and your sentence could have been 5 words shorter
ik
but once again i like fucking
to put it
once again i made a typo that makes me sound weird
It can definitely get excessive. But, emphasis words that are used in a variety of contexts are useful. English doesnt have one other than fuck. I think germans have a word they use called "doch" thata just adds emphasis. Dont quote me on that.
n i c e
But its not a curse
Hm
I mean
just so you know, you need to mitigate that problem
The word fuck isn't offensive in my perspective
it isnt helpful at all to people
cus I've heard it many many times and I feel like it's common
It's not exactly offensive, but you might want to tone it down
to assort domminance
I agree completely that its not intrinsically offensive at all. Its more offensive to me that someone might think that. But what is kind of gorss about it is the idea of not being in control of your language in a place where it will not be received well
yeah
I'm trying
its offensive in the sense that its, not respectable.
The right lang for the right job
I can control my swearing, I'm trying to stop swearing at all
maybe your peers are thinking they look cooler if they use it often
it is because of mainstream tv
Have you ever watched a Japanese show and the kid is talking to his parents suddenly he curs. "KUSOOOOOO" and the parent doesnt even say not to do that
tbh, cursing is not because of TV. Its because its a crude simple way to talk which has been common aamong people for all of history. At least English speaking history I can say so.
Its usually just that they are not educated enough to talk differently. But at the same time, you can be so educated and welll spoken than you cant see the power a good fuck has when its warranted.
I get offended at people who direct cursing anger at others.
or say cruel things.
That offends me
Also I dont like when people are too lewd in puiblic with their speech, not because i care what they do but it makes me awkward around strangers.
i think i can agree on this. I mean in my community, swearing is normal when something absurd happens. or it is just an expression when something very good happens. so... hmmm
@rough sapphire what about lewd in public? like sexual jokes 24/7?
Mainly just being too graphic and or expecting me to share.
Or them over sharing when a lot of people are around
Its fine if its not in that setting
i think i get what you mean but i cant visualize it. 🤔
too detailed like, some rated R stuff?
Basically, just getting too personal with too many people araound i dont want to be personal with
i see
The universal MS container is 2Gb large O.o
@solid pollen can you share with us your knowledge?
Haha, sure, what do you want to know?
what is a Universal MS Container?
It is their universal container for VS codespaces
I dont know specifically about that name, but a container is the entire system environment it takes to run one program. When containerized, each program has its own system in a container so that nothing interferes with anything
Sometikmes thats important
hello everyone! i need C resources for beginners.
pls i need resources
Can't wait for my "mentor" to forget about the mentor meeting he schedule for today 🙃
Why would he?
Because it's been 6 minutes and I've heard absolutely nothing. He also hasn't been the greatest in responding. It really seems like he didn't want to be a mentor
Oh, that's too bad
you are great man]
I know right
Right, I know
i like this C and CPP server now
yesterday, i wanted to learn C for 2-3 hours
did you learn for 2-3 hours?
My dream profile for this server
well!
I like C for small programs
I don't even understand the use of pointers correctly
Like I understand they point to a mem address of a variable
But why and when I should use them, I don't know
I like C for small programs
@graceful basin like what?
I made a mandelbrot drawer that was 3x faster than the next fastest option (JS and Rust)
mostly number crunching
Ohh that's nice
I thought C was generally used for creating new program languages and os like Linux.
its insane how well C optimizes, and unlike other languages, it is harder to really make mistakes that make code slow
it is
I thought cpp was the way to go when creating a exe
that is its main purpose
its insane how well C optimizes, and unlike other languages, it is harder to really make mistakes that make code slow
@graceful basin ohh that's cool, never knew that. Have you ever tried to go lower, like asm?
I did, but it ended up too annoying even for basic things
also harder to port, where C runs on just about any plaform
Yeah I know, printing out hello world takes already 20 lines of code lol
well, good C does
also harder to port, where C runs on just about any plaform
@graceful basin I don't get that, asm is translated to machine code
That can be runned on every platform too
I can run a C program on my phone
asm cannot do OS agnostic IO either
though I guess you can call libc
Yes, but your phone utilizes machine code too right? So I think you should be able to create an asm program for your phone
Ohh, yeah im pretty new to asm. So correct me if I'm wrong lol
there are a bunch of asm syntaxes, and it is very hard to make asm portable, even on platforms that use the same asm
Just started learning it a week ago
there are a bunch of asm syntaxes, and it is very hard to make asm portable, even on platforms that use the same asm
Yeah masm and nasm right?
You can check the different asm dialects using this web compiler @ancient minnow
https://godbolt.org/
As you can see there is quite the difference between say x86 and arm asm dialects
@ancient minnow You use pointers when you want to pass a variable without copying the data inside the variable.
@ancient minnow You use pointers when you want to pass a variable without copying the data inside the variable.
@wooden silo yeah, I get that, but where can that be useful? Like is it only for saving ram?
Like, say you have an array that's 10 MB long, and you want to pass it into a function to process it. You don't want to make a copy of that data when you pass it. So you pass a pointer to the array into the function.
You can also use em to implement multiple returns
There's no other way to do it.
You can check the different asm dialects using this web compiler @ancient minnow
https://godbolt.org/
@floral viper thanks I'll check it out
Aren't pointers also nice if you want to edit a variable inside a void function without having to make it global?
@ancient minnow The reason you don't have to worry about this in Python is because it happens automatically. If you pass a list into a function, you don't make a copy of the list, you pass in a reference to the same list that you defined outside the function. In C, that's not the case. If you just pass in an array normally, that will create a copy of the array inside the function, and the array outside the function will be unaffected.
a very common pattern
error_t some_function_that_can_error(result_t * result) {}
But when passing a list to the function and editing the list. The original list stays unedited
That means that python has created a copy right?
!e ```py
def foo(l):
l.append(1)
l = []
foo(l)
print(l)
@wooden silo :white_check_mark: Your eval job has completed with return code 0.
[1]
No, it doesn't.
Wait what
C++, raku and nim can copy things like that
I didn't know that lol.
But in C, it will make a copy.
I have not compiled this so idk if it runs but it should illustrate one use for pointers, namely to allow functions to modify data.
``
int modify_values (int a, int *b){
b = memcpy(5, b, sizeof(int));
a++;
return a;
}
int main(){
int* c = malloc(sizeof(int))
*c = 10; //C = 10
modify_values(5, c);
// c now equals 5
return 0;
}
``
I always worked with returns and stuff so it would return the edited list
So you need pointers to do the same thing as in Python.
But it wasn't even necessary
Do you guys know a thing or two about pickle?
Bcs I'm struggling with a problem and it seems no one knows the answer to it
It doesn't hurt to ask.
Just want to share
lol
Or the person had a stroke while typing it out
oh god i just noticed the channel name
who's @bleak lintel?
joe mama
i hate you
lul
lmaooo
joe mama wtf
joe mama lmao
I love this otn
approximately 23 hours and 8 minutes
☠️
-152 hours
joe forgot this existed
i thought he gon terminate the channels name instantly
haah
lol
🇭 🇦 🇳 🇩 🇸 🇴 🇲 🇪
lmao
haah
Just started learning the colmak keyboard layout
it already feels so much better
🍞
die u weirdos
i'm not up to my qwerty speed yet, but it feels much better
how long did it take to start feeling more comfortable?
you can always have a nap for dinner
6. No spamming or unapproved advertising, including requests for paid work. Open-source projects can be shared with others in #python-general and code reviews can be asked for in a help channel.
you beat me to it xD
i sniped you by ruling myself
i am going to make fiverr
that say
i make complex program that is too omplex for only 2 dollar
and its going to be my name
so its technically omplex
if anyone has any tips on how i start to decode this ty
+[----->+++<]>+.++++++++++++..----.+++.+[-->+<]>.-----------..++[--->++<]>+...---[++>---<]>.--[----->++<]>+.----------.++++++.-.+.+[->+++<]>.+++.[->+++<]>-.--[--->+<]>-.++++++++++++.--.+++[->+++++<]>-.++[--->++<]>+.-[->+++<]>-.--[--->+<]>-.++[->+++<]>+.+++++.++[->+++<]>+.----[->++<]>.[-->+<]>++.[->++++++<]>+.[--->++<]>--.[->+++++<]>-.[->+++<]>.>-[--->+<]>--.---------.>+[--->++<]>+++.-------.----------.-------.-[---->+++<]>.
no dont do this to me
this bf thing
im tired
just realized that Canary Chrome and Firefox use almost the same amount of ram
if anyone has any tips on how i start to decode this ty
+[----->+++<]>+.++++++++++++..----.+++.+[-->+<]>.-----------..++[--->++<]>+...---[++>---<]>.--[----->++<]>+.----------.++++++.-.+.+[->+++<]>.+++.[->+++<]>-.--[--->+<]>-.++++++++++++.--.+++[->+++++<]>-.++[--->++<]>+.-[->+++<]>-.--[--->+<]>-.++[->+++<]>+.+++++.++[->+++<]>+.----[->++<]>.[-->+<]>++.[->++++++<]>+.[--->++<]>--.[->+++++<]>-.[->+++<]>.>-[--->+<]>--.---------.>+[--->++<]>+++.-------.----------.-------.-[---->+++<]>.
deep learning and NLP, ez xD
@rough sapphire It is the "Nightly" build of chrome
oh so experimental
like canary discord
it would probably be easier to figure out if you look at the output
huh?
or was it ptb?
deep learning and NLP, ez xD
:c
is this bf
uh
i dunno
it looks like it
just looks like silly characters to me

bf = brainfrick
just in case you think bf is different lang
hecc.
mission failed :C
bf = boyfriend
new language
made by me
bruh
bf != boyfriend
wrong
;(
boifren
yup no significant difference of RAM usage
hmm i will probably collect data from 30 samples 🤔 or should i make my assignment first
what r u doing step bro
hi
hi @lone verge
F
F
:f:
F
_
|_
|
But not for me
I mean depends on the person's personality
I'm loyal as fuck
u a dog?
Fuck yea I am
nice
I wanna treated like a dog
dont curse
that's probs why
hmmmmmm doubting right now
aha I am :)
why do you need a web browser?
just use wget and a local html viewer
the HTML5 score of most chromium based browsers are way above firefox (except firefox nightly and developer builds)
Well
Chrome was the first ever browser I started using
And I like it
So I'll stay loyal to it
@rough sapphire arent we all using that as our first browser in our generation 🤔
I could've been using Firefox if only in my house computers would've been equiped with it
oh today is google's 22nd bday
eee cougar hunter
everyone is the winner in this situation
i dont know who needs to see this but https://pastebin.com/NXpCuZrR
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
https://copy.sh/brainfuck/ in case you put it into tutorialspoint and IT sEgFaUlTs
A Brainfuck editor & optimizing interpreter, written in JavaScript. It's pretty fast.
can u not remind me that stupid languages exist
kthx
yeah but some people still speak french /s @solid pollen ¯_(ツ)_/¯
nvm
it segfaults cuz pastebin is stupid ig
:c
press 1111 to pay respects in hex
wellin binary
but f in hex
Yay Google is 21 years old.
LOL
lol
why are you guys laughing?
she seems like a very nice, caring wife material
that cares about my data well and keeps all my dirty secrets
What about apple?
Sure
ty
+1 [408] 486 - 2000 Tel.
||let me actually call them and yell "can i wife u nvidia"||
@unique warren why did u give ur mum's phone
That’s nvidia Russia number
Ukrainian
Belarusian
Nope
Lati van
Ko tu teici par manu mammu?
i am russian
yes
yes
cyka blyat means bitch fuck
yes
Oh great.
sveiki, es neesmu lativan, tāpēc runā angliski
Anyways you all are Slavs
yes
prety much yes
"angliski" this is the only word i understand out of that sentence btw
Me too lol.
ohh that's convenient
yea
some words in slavic languages mean the exact same thing but others are completely different
Lithuanian is a fucked up version of Latvian, so technically i speak fluent Lithaunian too 
lel
but too bad they don't understand what I'm saying
😔
i feel like I'm the only intelligent life in Lithuania
maybe
where are u from
Nazi Germany
Mein führer hates Russia
oh
So I will not hate it
Bruh I am from India.
1 peenus 0 vajeen?
tf
Bruh I will go outside
what i meant by that is the Indian men who crave on underage girls and ask for bobs and vegan
that's the joke
Bruh
I'm fucking dying
it sounds funnier in my head
don't get offended my Indian guy
I got a beautiful view
And I won’t go back to Bombay
9:22 AM
wait what the duck
Well I gotta go do some trekking on mountains 🏔 so wish me luck.
what are you, a sadist?
I'm RazorFace27 u forgot me
?
i troll and hurt people for my own entertainment
hehe
why is githubs search so bad a actually searching
its good
it's actually quite good
i dont understand why it doesn't actually show all the results when i search for something
the pinned comment is so outdated i found the fix myself lol 🙂
wtf r u doing now son
you havent sleep yet
a stick of gig should do the thing
go sleep or die from sleep deprivation
Did anyone said brain to mush? I just got the solution for you!
I still have to troll people
dont risk it. or you will never discord again.
thats brain freeze?
Turn your brain into much in just a few seconds!
you have bad info for an ad.
okay bye now
have fun son
ok dawg
nice pfp
u too
thanks homie
PAM
:c
@rough sapphire unfortunately i gotta head out of town in like 5 mins lol
AAAAAAAAAAAAA
I've done similar, let me look into it
nice, lucky bast is around
i've never seen this tbh lol
i just yay install zsh or something and then changed my default
i want to change default shell env
and run chsh -s /bin/zsh as root user,
but a error message appeared: chsh: PAM authentication failed.
i find this thread http://ubuntuforums.org/showthread.ph...
Check your /etc/shells file and add /bin/zsh to file if this line does not exists.
seems right
oki
maybe the installation didn't add the entry, which is a bit weird isn't it
Yeah
c:
lol
bast saves the day 🎉
tyty
PAM is a unix permissions auth system
yeah
If sudo works but PAM fails you've got a misconfiguration in what sudo is permitted to let you do
@rough sapphire https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
and because I can't get enough of sharing my own terminal theme, here you go
OwO
Ignore that massive error log
# Path to your oh-my-zsh installation.
export ZSH="/home/scragly/.oh-my-zsh"
#POWERLEVEL9K CONFIG
POWERLEVEL9K_MODE="nerdfont-complete"
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir virtualenv vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(dir_writable status root_indicator background_jobs)
POWERLEVEL9K_CONTEXT_TEMPLATE="%n"
POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=""
POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="$ "
POWERLEVEL9K_CONTEXT_DEFAULT_BACKGROUND='grey19'
POWERLEVEL9K_CONTEXT_DEFAULT_FOREGROUND='green'
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="powerlevel10k/powerlevel10k"
It's logging something suppressed in terminal out that coughs up when my connection dies
ofc..
anyhow, now i'm late so i gtg, catchas 🙂
zsh is honestly kinda nice
so i have to do a complete logout/login to switch shells?
wait no
im using ctrl+alt+t
thats
yea
cinnamon shortcut
my prompt is actually starship
Here's their showcase pic:
I'm actually using a forked branch in order to get better customization because it wasn't available at the time
Not sure if it's gotten cleaned up, its a hairier part of the project
I can basically set a list of "modules" that display in order, if they can
along with separators, and colors

lol
Some config:
[hostname]
ssh_only = false
format = ' $hostname'
[character]
success_symbol = '[\$](bold green)'
error_symbol = '[\$](bold red)'
[username]
format = '.[$user](bold blue) '
show_always = true
[directory]
format = '\([$path](bold green)\) '
style = "bold blue"
truncation_length = 7
truncate_to_repo = false
[time]
disabled = false
time_format = "%a %b %-e %T"
format = '\[$time\] '
It's no powerline, but it's pretty great
ooooooooooooo
h m m
prompt_order = [
"hostname",
"username",
"time",
"directory",
"python",
"rust",
"git_branch",
"git_commit",
"git_state",
"git_status",
"hg_branch",
"character",
]
thats zsh?
where does that go
that's starship conf
Do You know joe?
yeah, joe mama
you use starship.rs?

@coral void wow your terminal is looking good

@rough sapphire what happened to your shell?
i realized i wanna stick to tkinter a bit more, any more gui ideas other than these?
looking good
hmm
@rough sapphire what happened to your shell?
@mild abyss dont worry about it
i have an idea
yea?
what if you try to mimic your tkinter projects by using another module
ansura..hmm
what if you try to mimic your tkinter projects by using another module
@mild abyss no that will be boring
@rough sapphire lemme show you mine
Off-topic channels
There are three off-topic channels:
• #ot0-psvm’s-eternal-disapproval
• #ot1-perplexing-regexing
• #ot2-never-nester’s-nightmare
Their names change randomly every 24 hours, but you can always find them under the OFF-TOPIC/GENERAL category in the channel list.
his eyes can rotate to the left, there was no need to that
i did it more for this
Their names change randomly every 24 hours, but you can always find them under the OFF-TOPIC/GENERAL category in the channel list.
ok
:3
yes

@rough sapphire well the starship docs are enough
you can modify it to your needs
whats that gal
oh thats pyenv. i activated it
ah
whats pyenv
hm
whats pyenv
@edgy crest pyenv is like a virtualenv but not virtualenv
hmmm i can send you a github link
whats a virtual env
thats mine so far :c
hhmmmm
owo
uwu bettew dan owo
.uwu uwu better than owo
@edgy crest true
i should learn a module other than gui for now
@mild abyss any modules you recommend except gui arcade django
@edgy crest flask
it is lighter and easier to learn than django according to some people
so does flask handle frontend and backend both?
@mild abyss
and i want to do something other than web dev
is tehre anything else
;-;
o(TヘTo)
ಥ_ಥ
machine learning
networking is fun
you guys say among us is fun right?
@edgy crest Flask only handles mostly backend but you can use Jinja templating with it
@edgy crest don't-
Among Us is a good game
because the only option i had was to play publibcly, and those people are
like they keep trolling
i never said i blamed it on the game
It's not like they intentionally place you in a lobby full of thirsty 12 kids
well
i told you i respect the devs because they made the game really nicely
ok
@rough sapphire You are still online..
So are you
I am online now.
Hello
Hello.
Why a dot, are you trying to end the conversation here? 😩
No.
🤡
Okay.
Hi.
Do you know what is a proxy server?
Yes
It's a "gateway" between you and the internet, they provide various security, levels of functionality and privacy
Okay.
They're basically like a middle man, u tell the proxy server to request a site from a web server and the proxy server requests for a webpage from a web server that u told the proxy server to ask for and it will return the results back to u
I got it.
well the public people in among us are trash, its only fun with people you know




takes like 300 ms for new prompt lines to render
plugin wise
