#ot1-perplexing-regexing

1 messages · Page 467 of 1

mild abyss
#

this discord will grow like grow glow blow

narrow pecan
#

Not as much anymore, since we’re not on discovery, but yeah, it’ll probably keep growing a lot

mild abyss
#

i will recommend this discord to my friends then

narrow pecan
#

You can check out growth rate here

edgy crest
#

growth rate

narrow pecan
#

And a lot of other interesting stats

mild abyss
#

and advertise it. i will ask lemon when i want to advertise this discord server to my school. after i graduate probably.

edgy crest
#

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

mild abyss
#

college is a school

#

what are you talking about

edgy crest
#

hmm

mild abyss
edgy crest
#

and btw

narrow pecan
#

Of course college is school?

edgy crest
#

here college is like high school

#

high school is like middle school

sand goblet
#

College here is university

edgy crest
#

and middle school is hell

#

dont ask about primary

mild abyss
#

😆 of course it is hell. keyds

edgy crest
#

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

mild abyss
#

WTF

#

JUST FOR THAT

edgy crest
#

yes

#

they havent changed much

mild abyss
#

HOLY GUCCI

narrow pecan
#

Is that even allowed?

edgy crest
#

in middle school and high school instead of getting hit, we are seriously humiliated in class

#

well at least in my school

mild abyss
#

THATS.... ABUSE

narrow pecan
#

What country is that?

edgy crest
#

india

#

err i think i maybe exxagerating

narrow pecan
#

Welp. Sweden is just the opposite of that

edgy crest
#

i mean

#

not that much but still

#

it happens

mild abyss
#

i mean thats so wrong in so many levels

edgy crest
#

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

mild abyss
#

well we live in a third world country

edgy crest
#

do you guys know about kota?

mild abyss
#

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

edgy crest
#

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

mild abyss
#

i am acquainted to an indian friend and he is in belgium now

#

reason being

#

india is hell

edgy crest
#

society?

mild abyss
#

yeah society in india

#

probably

edgy crest
#

in terms of society it is hell

mild abyss
#

do you plan on moving out?

edgy crest
#

but if your parents are good you can survive

#

no

mild abyss
#

i gtg eat dinner.

#

no
@edgy crest why

edgy crest
#

no point

mild abyss
#

hmm okay

edgy crest
#

its nt that bad

#

its the normal society which is bad

mild abyss
#

ah i see

#

same as well here

edgy crest
#

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 :)

mild abyss
#

hmmm@m

edgy crest
#

too proud to do so

fading umbra
#

Huh

edgy crest
fading umbra
#

Same feels brother, from India too

tranquil orchid
#

I don't think theres any good tutorials or anything atm

#

Just the docs

edgy crest
#

ikr

#

youtube doesnt have a good explanation

#

i was hoping corey would have a vid

narrow pecan
#

For what?

edgy crest
#

he explains really clearly

narrow pecan
#

Aah

edgy crest
#

i am kinda lost

narrow pecan
fading umbra
narrow pecan
#

Maybe Realpython could help

edgy crest
#

ooh

narrow pecan
#

Realpython is always great

edgy crest
#

and btw, can someone give me a quick explanation on what decorators are

simple sand
#

ohh decorators are just function that take and modify another function

tranquil orchid
#

oh realpython has a tutorial

narrow pecan
#

Corey does actually have a video on that hahah

tranquil orchid
#

didn't know that

simple sand
#

Corey does actually have a video on that hahah
@narrow pecan ye he does

#

it 30 min long

edgy crest
#

its 30 mins long

narrow pecan
edgy crest
#

i just need a quick explanation

simple sand
#

so 30 min isn't bad

solid pollen
#

Real Python has a lot of tutorial, and I've yet to find one that isn't awesome

narrow pecan
#

It’s basically a function that modifies another function

tranquil orchid
#

Mhm

#

Its just wrapping a function with another

solid pollen
#

Not necessarily even modify it

simple sand
#

why not

tranquil orchid
#

Yeah just wrapping it

solid pollen
#

It also work with classes

edgy crest
#

but wdym modify?

#

cant we do it ourselves?

tranquil orchid
#

Do what yourself?

simple sand
#

just look at the documentation from real python @edgy crest u will undertand

tranquil orchid
#

Make decorators? Yes

edgy crest
#

oki

narrow pecan
#

Ak seems to have an explanation coming

tranquil orchid
#

He's writing out an essay

narrow pecan
#

Indeed

simple sand
#

@solid pollen ik that u can decorate a class but could u give me an example

#

example's are nice

solid pollen
#

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.
edgy crest
#

yea

#

thats what i wanted to know

#

like you can do it manually too, but @s can be handy

solid pollen
#

They are an unlimited amount of use cases for decorators

#

But

edgy crest
#

too lazy to type it all

solid pollen
#

They are a few "standard" use cases

edgy crest
#

like

solid pollen
#

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

simple sand
#

u got to retrun callback

tranquil orchid
#

depends on the function you're wrapping

solid pollen
#

In order to understand this example, you have to understand scopes

simple sand
#

how?

tranquil orchid
#

Well functions don't always return things

solid pollen
#

Basically, a scope is a space holding local values

simple sand
#

huh

tranquil orchid
#

You could only need to return callback if callback returns something

#

otherwise its pointless, the result is the same

simple sand
#

ohh i see that's what u mean

solid pollen
#

Each function creates its own scope when they are called

simple sand
#

when u mean call back returns something do u mean callback containing return in it @tranquil orchid

solid pollen
#

But the thing is, if you create a function inside another function, the inner function will inherit the scope from the outer function

tranquil orchid
#

well returns a value yes

#

if its just returning None then its pointless to return callback

simple sand
#

right

solid pollen
#

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

sand inlet
#

@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

tawdry terrace
#

@sand inlet its not incorrect just one of hundreds of ways of doing it

sand inlet
#
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

edgy crest
#

cant we just use time.sleep?

sand inlet
#

it's both not particularly nice-looking code, and it has noticeable bad effects on the system

#

yes, we can, and we should

edgy crest
#

yes

sand inlet
#

time.sleep is way better than that code

tawdry terrace
#

@sand inlet Not in all cases

edgy crest
#

i mean, there's no reason to do it like that

sand inlet
#

in what case is time.sleep worse

edgy crest
#

^

tawdry terrace
#

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

sand inlet
#

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

tawdry terrace
#

@sand inlet each to their own

sand inlet
#

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

waxen saffron
#

anyone who works with css here ?

tawdry terrace
#

@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

sand inlet
#

some solutions are better than others

graceful basin
#

that should block the bot anyway

simple sand
#

acording to ZEN

graceful basin
#

it never allows another coroutine to work

sand inlet
#

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

edgy crest
#
    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

rough sapphire
#

it can be

sand inlet
#

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

edgy crest
#

but it will print the names right?

rough sapphire
#

depends on convinience and ease to read and debug

tawdry terrace
#

@sand inlet as i said there are some viable use cases

sand inlet
#

there are some viable use cases for golfed python code in bizarre situations

mild abyss
#

you cant use async with that DuckDuck

#

:3

sand inlet
#

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

tawdry terrace
#

@mild abyss IK

sand inlet
#

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

mild abyss
#

efficient code > working code

sand inlet
#

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

unique warren
#

I am alive.

#

I will prove 369

mild abyss
#

Okay

unique warren
#

You all wrote 369 today

narrow pecan
#

Nope

unique warren
#

Yes

#

Everyday we all write it.

narrow pecan
#

I will prove 369
@unique warren please do

unique warren
#

I am doing.

#

Let me focus on my tesla coil a bit

narrow pecan
#

Sure

#

Just a test. Do you like AC or DC most?

#

@unique warren 0

unique warren
#

AC

narrow pecan
#

Very well

unique warren
#

Edison ruined everything.

#

Did he die?

narrow pecan
#

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

unique warren
#

Pigeon

narrow pecan
#

Very well

#

What kind of car do you use?

#

1

tranquil orchid
#

tesla

unique warren
#

Child

tranquil orchid
#

model s

narrow pecan
#

Child?

unique warren
#

I am old

narrow pecan
#

No @tranquil orchid; that’s what you are want to be using

unique warren
#

I am still working on my Tesla coil.

tranquil orchid
#
C- 
h- 
i- 
l- 
d- Tesla roadster
unique warren
#

I used an electric car

narrow pecan
#

How’s it going with the cool?

unique warren
#

Made by me

tranquil orchid
#

in comes elon stage left

unique warren
#

Elon musk said Edison was a better role model

narrow pecan
#

👀

unique warren
#

I must take my revenge

narrow pecan
#

Indeed

unique warren
#

My coil looks good

narrow pecan
#

Nice

simple sand
#

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

narrow pecan
#

What do y out mean?

wheat lynx
#

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

narrow pecan
#

Aah, yes. I meant more how it works. Where is the setting for it?

wheat lynx
narrow pecan
#

Thanks! That looks really handy. I’ve been missing something like it for some time now

simple sand
#

yes now u dont have to use Alts

narrow pecan
#

Yep

#

Unless you wanna try kicking them, I guess

simple sand
#

if u wanna kick them why would u change the roles in the first place

young shoal
#

to see if you have the permissions to kick them

simple sand
#

fair enough

#

@young shoal what's your xp

young shoal
#

wdym

simple sand
#

like how many years of xp u got in python

young shoal
#

0

tranquil orchid
#

damn didn't realise i was meant to be collecting xp

rough sapphire
#

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

mild abyss
#

@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

rough sapphire
#

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

mild abyss
#

Oh its definitely nothing that needs a doctor. I have sinus reactiions to the air all the time.
@rough sapphire AH fudge i overreacted

rough sapphire
#

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

mild abyss
#

mhmm

#

well i hope youll be fine soon. ❤️

rough sapphire
#

thanks...

rough sapphire
#

does swearing make me sound cooler

#

pls answer i need to win an argument with my mom

#

she has a belt pls help

mild abyss
#

@rough sapphire nope it doesnt. it makes you a d.

rough sapphire
#

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

mild abyss
#

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.

rough sapphire
#

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

young shoal
#

but why

rough sapphire
#

I used to do that and now I avoid it.

mild abyss
#

thats kinda sad

young shoal
#

it makes your sentences longer for no reason, and it's just weird

#

lose-lose

rough sapphire
#

Its a thing you do because of being around people that do it.

#

I used to.

mild abyss
#

i see

rough sapphire
#

this fucking job is fucking shit i fucking hate this, wait I'm fucking underage lol ffuckin forgot

young shoal
#

like, that's just weird

mild abyss
#

thats so many useless words in one sentence

young shoal
#

and your sentence could have been 5 words shorter

rough sapphire
#

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

mild abyss
#

just so you know, you need to mitigate that problem

rough sapphire
#

The word fuck isn't offensive in my perspective

mild abyss
#

it isnt helpful at all to people

rough sapphire
#

cus I've heard it many many times and I feel like it's common

mortal ferry
#

It's not exactly offensive, but you might want to tone it down

rough sapphire
#

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

mild abyss
#

maybe your peers are thinking they look cooler if they use it often

rough sapphire
#

Hm

#

Well

#

kids

#

fuckin swear

#

little kids

mild abyss
#

it is because of mainstream tv

rough sapphire
#

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

mild abyss
#

hmm 🤔

#

nope

#

why

rough sapphire
#

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

mild abyss
#

mhmm

#

new info received

rough sapphire
#

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.

mild abyss
#

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?

rough sapphire
#

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

mild abyss
#

i think i get what you mean but i cant visualize it. 🤔

#

too detailed like, some rated R stuff?

rough sapphire
#

Basically, just getting too personal with too many people araound i dont want to be personal with

mild abyss
#

i see

solid pollen
#

The universal MS container is 2Gb large O.o

mild abyss
#

@solid pollen can you share with us your knowledge?

solid pollen
#

Haha, sure, what do you want to know?

mild abyss
#

what is a Universal MS Container?

solid pollen
#

It is their universal container for VS codespaces

mild abyss
#

what does it do?

rough sapphire
#

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

rough sapphire
#

hello everyone! i need C resources for beginners.

rough sapphire
#

pls i need resources

honest star
#

Can't wait for my "mentor" to forget about the mentor meeting he schedule for today 🙃

narrow pecan
#

Why would he?

honest star
#

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

narrow pecan
#

Oh, that's too bad

rough sapphire
#

pls resources

#

i need

#

or link discor dserver

quick ledge
rough sapphire
#

you are great man]

quick ledge
#

I know right

narrow pecan
#

Right, I know

rough sapphire
rough sapphire
#

yesterday, i wanted to learn C for 2-3 hours

quick ledge
#

did you learn for 2-3 hours?

coarse hearth
rough sapphire
#

well!

ancient minnow
#

I really don't like C

#

It's a pain in the ass with all the pointers and shit

graceful basin
#

I like C for small programs

ancient minnow
#

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?

graceful basin
#

I made a mandelbrot drawer that was 3x faster than the next fastest option (JS and Rust)

#

mostly number crunching

ancient minnow
#

Ohh that's nice

#

I thought C was generally used for creating new program languages and os like Linux.

graceful basin
#

its insane how well C optimizes, and unlike other languages, it is harder to really make mistakes that make code slow

#

it is

ancient minnow
#

I thought cpp was the way to go when creating a exe

graceful basin
#

that is its main purpose

ancient minnow
#

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?

graceful basin
#

I did, but it ended up too annoying even for basic things

#

also harder to port, where C runs on just about any plaform

ancient minnow
#

Yeah I know, printing out hello world takes already 20 lines of code lol

graceful basin
#

well, good C does

ancient minnow
#

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

graceful basin
#

I can run a C program on my phone

#

asm cannot do OS agnostic IO either

#

though I guess you can call libc

ancient minnow
#

Yes, but your phone utilizes machine code too right? So I think you should be able to create an asm program for your phone

graceful basin
#

different asm and machine code

#

asm is not one thing

ancient minnow
#

Ohh, yeah im pretty new to asm. So correct me if I'm wrong lol

graceful basin
#

there are a bunch of asm syntaxes, and it is very hard to make asm portable, even on platforms that use the same asm

ancient minnow
#

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?

floral viper
#

As you can see there is quite the difference between say x86 and arm asm dialects

wooden silo
#

@ancient minnow You use pointers when you want to pass a variable without copying the data inside the variable.

ancient minnow
#

@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?

wooden silo
#

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.

floral viper
#

You can also use em to implement multiple returns

wooden silo
#

There's no other way to do it.

ancient minnow
#

Aren't pointers also nice if you want to edit a variable inside a void function without having to make it global?

wooden silo
#

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

graceful basin
#

a very common pattern

error_t some_function_that_can_error(result_t * result) {}
ancient minnow
#

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?

wooden silo
#

!e ```py
def foo(l):
l.append(1)

l = []
foo(l)
print(l)

royal lakeBOT
#

@wooden silo :white_check_mark: Your eval job has completed with return code 0.

[1]
wooden silo
#

No, it doesn't.

ancient minnow
#

Wait what

graceful basin
#

C++, raku and nim can copy things like that

ancient minnow
#

I didn't know that lol.

wooden silo
#

But in C, it will make a copy.

floral viper
#

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;
}
``

ancient minnow
#

I always worked with returns and stuff so it would return the edited list

wooden silo
#

So you need pointers to do the same thing as in Python.

ancient minnow
#

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

wooden silo
#

It doesn't hurt to ask.

ancient minnow
#

I would be thankful if you looked at it

burnt nacelle
#

Hello would anyone mind helping me with an if else statement in c++

#

?

rough sapphire
#

Just want to share

rough sapphire
#

lol

boreal swift
cosmic lotus
#

ah yes what a quote

#

what if that's a secret message?

plucky ridge
#

Or the person had a stroke while typing it out

cosmic lotus
#

oh god i just noticed the channel name

terse sluice
#

who's @bleak lintel?

narrow pecan
#

joe mama

bleak lintel
#

i hate you

terse sluice
#

lul

rough sapphire
#

lmaooo

young shoal
#

gottem

#

wait but, who actually is he

rough sapphire
#

joe mama wtf

tranquil orchid
#

joe mama lmao

manic bloom
#

I love this otn

rough sapphire
#

I'm still surprised that joe hasn't renamed this channels name yet

#

himself

manic bloom
#

ikr

#

everyone place your (figurative) bets, how long until joe renames this?

young shoal
#

approximately 23 hours and 8 minutes

rough sapphire
#

☠️

mild abyss
#

-152 hours

rough sapphire
#

joe forgot this existed

#

i thought he gon terminate the channels name instantly

#

haah

bleak lintel
#

lol

rough sapphire
#

🇭 🇦 🇳 🇩 🇸 🇴 🇲 🇪

tranquil orchid
#

lmao

rough sapphire
#

haah

tranquil orchid
#

Just started learning the colmak keyboard layout

#

it already feels so much better

rough sapphire
#

wtf

#

qwerty isn't enough for u

#

?

tranquil orchid
#

qwerty's fine but colmak is meant to be better

#

and i can already see why

rough sapphire
#

🍞

young shoal
#

lol

#

i recently switched to colemak

rough sapphire
#

die u weirdos

young shoal
#

i'm not up to my qwerty speed yet, but it feels much better

eternal wing
#

how long did it take to start feeling more comfortable?

rough sapphire
#

how do i get bread money

#

im hungry

eternal wing
#

you can always have a nap for dinner

rough sapphire
#

i sell print('Hello, World') for 2 bucks

#

!rule 6

royal lakeBOT
#

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.

eternal wing
#

you beat me to it xD

rough sapphire
#

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

mild abyss
#

just realized that Canary Chrome and Firefox use almost the same amount of ram

rough sapphire
#

what is this canary

#

chrome

#

is it privacy hazrd?

eternal wing
#

if anyone has any tips on how i start to decode this ty

+[----->+++<]>+.++++++++++++..----.+++.+[-->+<]>.-----------..++[--->++<]>+...---[++>---<]>.--[----->++<]>+.----------.++++++.-.+.+[->+++<]>.+++.[->+++<]>-.--[--->+<]>-.++++++++++++.--.+++[->+++++<]>-.++[--->++<]>+.-[->+++<]>-.--[--->+<]>-.++[->+++<]>+.+++++.++[->+++<]>+.----[->++<]>.[-->+<]>++.[->++++++<]>+.[--->++<]>--.[->+++++<]>-.[->+++<]>.>-[--->+<]>--.---------.>+[--->++<]>+++.-------.----------.-------.-[---->+++<]>.

deep learning and NLP, ez xD

mild abyss
#

@rough sapphire It is the "Nightly" build of chrome

rough sapphire
#

oh so experimental

mild abyss
#

like canary discord

young shoal
#

it would probably be easier to figure out if you look at the output

rough sapphire
#

huh?

mild abyss
#

or was it ptb?

rough sapphire
#

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

mild abyss
#

yup no significant difference of RAM usage

#

hmm i will probably collect data from 30 samples 🤔 or should i make my assignment first

rough sapphire
#

what r u doing step bro

lone verge
#

hi

rough sapphire
#

hi @lone verge

lone verge
#

my internet went down while i was playing valorant 😭

#

lmao

rough sapphire
#

Idk how to contribute to that so I'll just drop an F

#

F

lone verge
#

F

mild abyss
#

F

eternal wing
#

:f:

icy osprey
#

F

cosmic lotus
#
 _
|_
|
mild abyss
#

okay ditching firefox. moving on to a next browser :3

#

loyalty is temporary

rough sapphire
#

But not for me

simple sand
#

I mean depends on the person's personality

rough sapphire
#

I'm loyal as fuck

simple sand
#

u a dog?

rough sapphire
#

Fuck yea I am

simple sand
#

nice

rough sapphire
#

I wanna treated like a dog

simple sand
#

dont curse

rough sapphire
#

that's probs why

mild abyss
#

But not for me
@rough sapphire you still firefox?

#

oh you mean loyal to windows

rough sapphire
#

I never used Firefox, I'm using Chrome aha

#

I'm actually loyal in all ways

mild abyss
#

hmmmmmm doubting right now

rough sapphire
#

aha I am :)

#

why do you need a web browser?

#

just use wget and a local html viewer

mild abyss
#

the HTML5 score of most chromium based browsers are way above firefox (except firefox nightly and developer builds)

rough sapphire
#

Well

#

Chrome was the first ever browser I started using

#

And I like it

#

So I'll stay loyal to it

mild abyss
#

@rough sapphire arent we all using that as our first browser in our generation 🤔

rough sapphire
#

I could've been using Firefox if only in my house computers would've been equiped with it

mild abyss
#

oh today is google's 22nd bday

rough sapphire
#

google chan is old

#

i like older women

mild abyss
#

eee cougar hunter

rough sapphire
#

everyone is the winner in this situation

#

can u not remind me that stupid languages exist

#

kthx

young shoal
#

yeah but some people still speak french /s @solid pollen ¯_(ツ)_/¯

rough sapphire
#

nvm

#

it segfaults cuz pastebin is stupid ig

#

:c

#

press 1111 to pay respects in hex

#

wellin binary

#

but f in hex

unique warren
#

Yay Google is 21 years old.

rough sapphire
#

||when will i reach the consenting age||

#

oh

#

OH

#

I'm 16 this october

#

f yeaaa

manic bloom
#

LOL

rough sapphire
#

what's so funny

#

i want to marry Google

#

she can be a nice addition to my life

unique warren
#

lol

rough sapphire
#

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

unique warren
#

What about apple?

rough sapphire
#

loyal :c

#

Apple, I haven't met her

#

who she

#

👀

unique warren
#

I don’t know someone

#

Nvidia is 27

rough sapphire
#

haha u know me so well i like older women

#

👀 give me Nvidia's number hehe

unique warren
#

Sure

rough sapphire
#

ty

rancid palm
#

1 (800) 797-6530

rough sapphire
#

is it possible to create a harem now lemon_smug lemon_thinking

#

@rancid palm thx

unique warren
#

+1 [408] 486 - 2000 Tel.

rough sapphire
#

||let me actually call them and yell "can i wife u nvidia"||

#

@unique warren why did u give ur mum's phone

unique warren
#

That’s nvidia Russia number

rough sapphire
#

no shit

#

how did u know i live right besides Russia

#

👀

unique warren
#

Ukrainian

rough sapphire
#

Nu

#

Latvian

unique warren
#

Belarusian

rough sapphire
#

Nope

unique warren
#

Lati van

rough sapphire
#

Ko tu teici par manu mammu?

rancid palm
#

i am russian

unique warren
#

Sir

#

Can I ask you a question?

rancid palm
#

yes

rough sapphire
#

yes

unique warren
#

I heard my friends say a lot of cyka

#

What’s that

rancid palm
#

cyka blyat means bitch fuck

rough sapphire
#

bitch

#

cyka is bitch

rancid palm
#

yes

unique warren
#

Oh great.

rough sapphire
#

anyways, this is the only Russian ik lol: Ja pajibal tvaju mamku

#

lol

#

kto

unique warren
#

sveiki, es neesmu lativan, tāpēc runā angliski

rancid palm
#

i said shto not kto

#

kto looks like кто

#

shto looks like что

rough sapphire
#

"Hello, I'm not lativan, that's why speak English"

#

is what u said

#

oh ok

unique warren
#

Anyways you all are Slavs

rancid palm
#

yes

rough sapphire
#

prety much yes

rancid palm
#

"angliski" this is the only word i understand out of that sentence btw

unique warren
#

Me too lol.

rancid palm
#

it means english and the word is exactly the same in lavitan and russian

#

англиский

rough sapphire
#

ohh that's convenient

rancid palm
#

yea

#

some words in slavic languages mean the exact same thing but others are completely different

rough sapphire
#

Lithuanian is a fucked up version of Latvian, so technically i speak fluent Lithaunian too lemon_thinking

unique warren
#

lel

rough sapphire
#

but too bad they don't understand what I'm saying

#

😔

#

i feel like I'm the only intelligent life in Lithuania

unique warren
#

maybe

rough sapphire
#

where are u from

unique warren
#

Nazi Germany

rough sapphire
#

Hm

#

not bad applauds

#

so u must hate russia

#

?

unique warren
#

Mein führer hates Russia

rough sapphire
#

oh

unique warren
#

So I will not hate it

rough sapphire
#

ur daddy hates russia

#

alrighty

#

ur intelligence has been proven

unique warren
#

Bruh I am from India.

rough sapphire
#

1 peenus 0 vajeen?

unique warren
#

tf

rough sapphire
#

I'M FUCIING WHEEZING

#

erm

unique warren
#

Bruh I will go outside

rough sapphire
#

what i meant by that is the Indian men who crave on underage girls and ask for bobs and vegan

#

that's the joke

unique warren
#

Bruh

rough sapphire
#

I'm fucking dying

#

it sounds funnier in my head

#

don't get offended my Indian guy

unique warren
#

I got a beautiful view

rough sapphire
#

good

#

it's 7 am here

unique warren
#

And I won’t go back to Bombay

rough sapphire
#

Bombard

#

ha gottem

#

bad joke

#

ik

unique warren
#

9:22 AM

rough sapphire
#

wait what the duck

unique warren
#

Well I gotta go do some trekking on mountains 🏔 so wish me luck.

rough sapphire
#

I hope u injure ur skin on ur knee

#

jk

cosmic lotus
#

what are you, a sadist?

rough sapphire
#

I'm RazorFace27 u forgot me

#

?

#

i troll and hurt people for my own entertainment

#

hehe

boreal swift
#

why is githubs search so bad a actually searching

rancid palm
#

its good

terse sluice
#

it's actually quite good

boreal swift
#

i dont understand why it doesn't actually show all the results when i search for something

mild abyss
#

the pinned comment is so outdated i found the fix myself lol 🙂

rough sapphire
#

wtf r u doing now son

mild abyss
#

installing fayafox nightly

#

using pamac

rough sapphire
#

ohh ur a Linux user

#

gotchu

#

as u can see my memory isn't working correctly

mild abyss
#

you havent sleep yet

rough sapphire
#

a stick of gig should do the thing

mild abyss
#

go sleep or die from sleep deprivation

rough sapphire
#

yes

#

Hm

#

I'd rather sit in this server for another 12 hours

#

hehe

mild abyss
#

yeah turn your brain to mush

#

and die ?

#

go sleep now

cosmic lotus
#

Did anyone said brain to mush? I just got the solution for you!

rough sapphire
#

I still have to troll people

mild abyss
#

dont risk it. or you will never discord again.

cosmic lotus
#

Introducing our all new product!

#

The ice pick!

mild abyss
#

thats brain freeze?

cosmic lotus
#

Turn your brain into much in just a few seconds!

mild abyss
#

you have bad info for an ad.

cosmic lotus
#

Be like Rosemary Kenn-

#

[REDACTED]

#

Try it now!

mild abyss
#

okay bye now

rough sapphire
#

have fun son

cosmic lotus
#

ok dawg

rough sapphire
#

nice pfp

cosmic lotus
#

u too

rough sapphire
#

thanks homie

rough sapphire
#

so

#

uh

#

kinda broke my shell

#

i have no clue why it let me autocomplete.

coral void
#

PAM

rough sapphire
#

:c

dusky orchid
#

@rough sapphire unfortunately i gotta head out of town in like 5 mins lol

rough sapphire
#

AAAAAAAAAAAAA

dusky orchid
#

hahaha

#

what did you do anyhow

coral void
#

I've done similar, let me look into it

rough sapphire
#

exactly as the ss shows :l

#

okii

dusky orchid
#

nice, lucky bast is around

rough sapphire
#

i'd ask google

#

but like

#

idk what to ask google.

dusky orchid
#

i've never seen this tbh lol

#

i just yay install zsh or something and then changed my default

coral void
#

Check your /etc/shells file and add /bin/zsh to file if this line does not exists.

#

seems right

rough sapphire
#

oki

dusky orchid
#

maybe the installation didn't add the entry, which is a bit weird isn't it

coral void
#

Yeah

rough sapphire
#

YES

#

:D

dusky orchid
#

that sounds promising

#

lol

rough sapphire
#

c:

coral void
#

lol

dusky orchid
#

bast saves the day 🎉

rough sapphire
#

tyty

coral void
#

PAM is a unix permissions auth system

rough sapphire
#

now to discover how to fancy my shell owo

#

and o?

quick ledge
#

yeah

coral void
#

If sudo works but PAM fails you've got a misconfiguration in what sudo is permitted to let you do

dusky orchid
coral void
#

and because I can't get enough of sharing my own terminal theme, here you go

dusky orchid
#

hahaha, nothing wrong with sharing

#

i don't even remember what i'm set to

coral void
rough sapphire
#

OwO

coral void
#

Ignore that massive error log

rough sapphire
#

pfft

#

trash

#

:c

#

xD

coral void
#

I think I misconfigured it to log out all DEBUG level stuff too

#

Oh

dusky orchid
#
# 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"
coral void
#

It's logging something suppressed in terminal out that coughs up when my connection dies

#

ofc..

dusky orchid
#

anyhow, now i'm late so i gtg, catchas 🙂

rough sapphire
#

oki

#

cya

coral void
#

My setup is a bit frankenstein

#

iterm + zsh

#

fira code nerd font, of course

rough sapphire
#

i've just been using bash-

coral void
#

zsh is honestly kinda nice

rough sapphire
#

so i have to do a complete logout/login to switch shells?

#

wait no

#

im using ctrl+alt+t

#

thats

#

yea

#

cinnamon shortcut

coral void
#

my prompt is actually starship

rough sapphire
#

duh

#

o?

coral void
#

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

rough sapphire
coral void
#

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

unborn kiln
#

ooooooooooooo

rough sapphire
#

h m m

unborn kiln
#

works in powershell Pog

#

hm.... squint takes like 300 ms for new prompt lines to render

rough sapphire
#

@coral void how is your set up popcorn plugin wise

#

oop you're offline

#

:c

#

aaA

coral void
#

prompt_order = [
    "hostname",
    "username",
    "time",
    "directory",
    "python",
    "rust",
    "git_branch",
    "git_commit",
    "git_state",
    "git_status",
    "hg_branch",
    "character",
]
rough sapphire
#

thats zsh? oogh where does that go

coral void
#

that's starship conf

rough sapphire
#

AaAaAa

#

oh

manic bloom
#

Do You know joe?

icy osprey
#

yeah, joe mama

manic bloom
#

you're supposed to say, who's joe?

#

edit that to say who's joe

mellow spire
#

lol

#

who's joe?

#

@manic bloom

manic bloom
#

Joe Mama

#

Joe's anger level >infinty

#

Joe hates that

mild abyss
#

@coral void wow your terminal is looking good

#

@rough sapphire what happened to your shell?

edgy crest
#

i realized i wanna stick to tkinter a bit more, any more gui ideas other than these?

mild abyss
#

looking good

edgy crest
#

hmm

mild abyss
#

now get bored of it and start using another module which is not tkinter

edgy crest
#

example of another module

rough sapphire
#

@rough sapphire what happened to your shell?
@mild abyss dont worry about it bcaGuiltySweat

mild abyss
#

i have an idea

edgy crest
#

yea?

rough sapphire
#

:D

#

pretty

mild abyss
#

what if you try to mimic your tkinter projects by using another module

edgy crest
#

ansura..hmm

rough sapphire
#

discord bot

#

shh

edgy crest
#

what if you try to mimic your tkinter projects by using another module
@mild abyss no that will be boring

mild abyss
#

@rough sapphire lemme show you mine

rough sapphire
#

what are these channel names bruh

#

!ot

royal lakeBOT
edgy crest
#

his eyes can rotate to the left, there was no need to that

rough sapphire
#

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.

edgy crest
#

ok

mild abyss
rough sapphire
#

how.

#

explain.

edgy crest
#

you should have done this

rough sapphire
#

yes

#

cuz i can take a ss

#

of something that isnt there

#

@mild abyss h o w

edgy crest
#

yes

rough sapphire
mild abyss
#

@rough sapphire well the starship docs are enough

rough sapphire
#

true

#

also

mild abyss
#

you can modify it to your needs

edgy crest
#

whats that gal

rough sapphire
#

how come yours shows py3

#

:c

mild abyss
#

oh thats pyenv. i activated it

rough sapphire
#

ah

mild abyss
#

auto activates everytime and i add it to the fish config

#

i use fish shell

rough sapphire
#

ohh

#

im just using zsh oogh

#

since like 2 hours ago

#

if that

edgy crest
#

whats pyenv

mild abyss
#

zsh is fast as well. though the speed isnt that noticeable

#

for every shell

rough sapphire
#

hm

mild abyss
#

whats pyenv
@edgy crest pyenv is like a virtualenv but not virtualenv

#

hmmm i can send you a github link

edgy crest
#

whats a virtual env

mild abyss
rough sapphire
mild abyss
#

@rough sapphire have you installed tree too?

#

it is so useful

edgy crest
#

gal any recommended modules to learn?

#

except

#

arcade and django

mild abyss
#

gal any recommended modules to learn?
@edgy crest kivy and pyqt5

edgy crest
#

hhmmmm

rough sapphire
#

owo

edgy crest
#

uwu

#

.uwu uwu better than owo

median domeBOT
#

uwu bettew dan owo

edgy crest
#

i will go check out pyqt5

#

but wait

#

whats the benefit?

rough sapphire
#

.uwu uwu better than owo
@edgy crest true

edgy crest
#

i should learn a module other than gui for now

#

@mild abyss any modules you recommend except gui arcade django

mild abyss
#

@edgy crest flask

#

it is lighter and easier to learn than django according to some people

edgy crest
#

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)
ಥ_ಥ

tranquil orchid
#

machine learning

rough sapphire
#

networking is fun

edgy crest
#

you guys say among us is fun right?

topaz aurora
#

@edgy crest Flask only handles mostly backend but you can use Jinja templating with it

edgy crest
#

oh ok, thx

#

i will try thT OUT

#

oof caps

rough sapphire
#

@edgy crest don't-

edgy crest
#

?

#

btw razor face, the reason i didnt like among us

rough sapphire
#

Among Us is a good game

edgy crest
#

because the only option i had was to play publibcly, and those people are

#

like they keep trolling

rough sapphire
#

Well

#

It's not games fault

#

It's the community

#

So don't blame it on the game

edgy crest
#

i never said i blamed it on the game

rough sapphire
#

It's not like they intentionally place you in a lobby full of thirsty 12 kids

#

well

edgy crest
#

i told you i respect the devs because they made the game really nicely

rough sapphire
#

you said it was a bad game so........

#

¯\_(ツ)_/¯

edgy crest
#

ok

unique warren
#

@rough sapphire You are still online..

rough sapphire
#

So are you

unique warren
#

I am online now.

rough sapphire
#

Hello

unique warren
#

Hello.

rough sapphire
#

Why a dot, are you trying to end the conversation here? 😩

unique warren
#

No.

rough sapphire
#

🤡

unique warren
#

Okay.

rough sapphire
#

Hi.

unique warren
#

Do you know what is a proxy server?

rough sapphire
#

Yes

unique warren
#

Really?

#

Can you explain it.

#

I am trying to learn hacking.

rough sapphire
#

It's a "gateway" between you and the internet, they provide various security, levels of functionality and privacy

unique warren
#

Okay.

rough sapphire
#

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

unique warren
#

I got it.

rough sapphire
#

Yeah

#

The most common case for a proxy would be hiding your IP

edgy crest
#

well the public people in among us are trash, its only fun with people you know