#ot0-no-stealth-portals-please

3246 messages · Page 8 of 4

dusty aspen
#

What does that image even mean

oak hemlock
#

oh my

dusty aspen
#

fish is meat

sick olive
umbral arch
dusty aspen
dusty aspen
oak hemlock
#

but technically yes fish is meat

dusty aspen
#

ok true

umbral arch
sick olive
#

Main code left
second file top right
third file bottom right

oak hemlock
#

but it's weird to call it that \😩

#

fish is fish

umbral arch
#

fish is fish

oak hemlock
umbral arch
sick olive
dusty aspen
#

err, idk

#

I can't try it now either, since WSL won't fucking work

#

I need to restart ig

ocean walrus
#

what theme 👀

sick olive
#

WAIT HOW

#

NVVM

#

Ty

ocean walrus
#

ok

sick olive
#

How do you change theme

#

I forgot

ocean walrus
#

in VSCode?

sick olive
#

Ye

#

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARG

rough marsh
#

beautiful

ocean walrus
#

thats not half bad

sick olive
ocean walrus
#

ew

sick olive
#

Sweet

ocean walrus
#

one dark superiority

sick olive
#

Do you guys know that you can go on github

#

And press "."

prime girder
#

Yes

ocean walrus
#

for all you know github doesn't exist

sick olive
#

And it open vscode in browser

prime girder
sick olive
ocean walrus
sick olive
#

I was confused

prime girder
#

yea it's pretty cool if you're trying to do something “on the go”

lofty cypress
#

playing with rich, its really fun

#

lmao

sick olive
#

Can you add emojis instead here:

lofty cypress
#

you can download icon packs

sick olive
#

( custom logo's )

lofty cypress
#

compared to windows tree

➜ tree
Folder PATH listing for volume Windows
Volume serial number is 3229-C72B
C:.
├───.vscode
├───tests
└───tree
    └───__pycache__
#

now i just need to throw some features on it

#

depth control, include/exclude

#

uh, what else

ocean walrus
#

amateurs

#

I've had copilot since a few months ago

serene dagger
#

amateurs
i havent opened github since 2013

dusty aspen
#

I've had it since around two days after the beta was released

#

beat that aboo

#

June 30th at 7:17 PM EDT

serene dagger
#

well great i cant use my ancient github account im a moron lemon_pensive

oak hemlock
#

Two years later

ocean walrus
oak hemlock
#

aboo

ocean walrus
#

what

oak hemlock
#

sit down please

ocean walrus
#

I am sitting down

#

what more do you want from me

stone gyro
#

now bark

ocean walrus
#

Hey

#

!resources you can always start :D

obtuse swallowBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

midnight forge
#

squid game episode six is the single most emotional hour of television i have experienced

ocean walrus
#

hm

midnight forge
#

ending was just...

ocean walrus
#

why are you asking us for permission lol

serene dagger
#

i hereby grant thou permission to observe the game of a squid

midnight forge
#

that's what i thought at first, i've seen similar premises of deadly games and i thought the plot would be ultra predictable

#

never judge a book by its cover, it's SOOOOOOOOOOOOOOOOOOO good

#

yeah...?

#

why would you not be able to watch it

serene dagger
#

yes u have my permission

midnight forge
#

oh

#

um you shouldn't even be on here

serene dagger
#

well then you're not allowed in discord at all goodbye

midnight forge
#

gets banned
creates alt

serene dagger
#

simply be 13

ocean walrus
#

imagine not being every age at once

dusty aspen
#

aboo is a toddler time to swing the banhammer

ocean walrus
#

ono

serene dagger
#

toddler time is when we consume the toddlers its like breakfast time

dusty aspen
#

That's two sentences in one, I tend to write like that sometimes. Read it as "Aboo is a toddler. Time to swing the banhammer."

stone gyro
#

oh god, I thought '[object Object]' was a meme or something

#

why is this the default toString() of an object

dusty aspen
dusty aspen
#

ik

#

I've been there

oak hemlock
#

What's JS

ocean walrus
#

javascript

midnight forge
#

i mean, the show does contain lots (like, LOTS) of deaths and blood everywhere, but it's not to the point where it's gory. there's one "inappropriate" scene in episode 4 that you might want to skip if you're watching it, but yeah, please do talk with your parents about it first, they'll decide whether or not you're allowed to watch squid game

#

it is an extremely good show, though

#

the emotions, the acting, the cinematography, the music, and the plot are all :chefskiss:

#

aw :(

#

lol yeah, the first game

#

well, it'll always be on netflix

#

you just gotta wait til you're a bit older :P

#

won't be too long before you can watch it

neat sparrow
#

thank god I did the code jam

#

gonna add it as an activity I did for a scholarship I'm applying to

stone gyro
#

wait a minute

#

do JS iterables not support map and filter??

dusty aspen
#

Wait what

#

Map works, I thought

sick olive
#

They do, I think

stone gyro
#

is iterable[Symbol.iterator]() really how i make an iterator over something?

#

and how do I map it...

#

oooh, god, are you serious? Array.from is where I filter/map it??

#

there's no map or filter functions??

dusty aspen
#

I think there are

#

At least, I use them in react

#

Err no, it might be a method

sick olive
#

iterable.map and iterable.filter, I think

stone gyro
#

wait, I can map there, not filter it

dusty aspen
sick olive
#

Yeah

stone gyro
#

that's an Array method, though

#

Looks like I need Array.from(iterable).filter(predicate_of_kv)

#

which creates an intermediate array for no reason

#

and it will create an intermediate array each step if I chain this.

static trout
#

is that bad for speed

#

and for disk

stone gyro
#

this for sure is an interesting choice to make for your language's iterators...

dusty aspen
#

It takes up memory for no reason

#

Since when did JS make good choices

livid vale
#

Just wanted to remind everyone that if your birthday is today you have a very happy birthday.

#

🎂

sick olive
#

I think there's [...iterable].filter

#

But it still creates an intermediate array

stone gyro
#

...how does one take a minimum of an Array by a key-function?

mortal hull
#

don't they use comparator functions

stone gyro
#

google tells me to sort by the key instead and take the first element, which, uhh...

mortal hull
#

just assume the built in sort is fast enough xd

stone gyro
#

I guess I can do reduce instead

sick olive
#

oh damn- so yall smart smart

#

😔

#

Math.min is there, I think

stone gyro
#

or, for that matter, make my own min function, lol

stone gyro
static trout
#

why is js so weird

dusty aspen
#

Because it was cobbled together in 10 days, ig

#

They wanted to get a button working, not spend significant tme trying to make a good language

#

Which ended up causing pain for thousands of other people

static trout
#

but why so inconsistent

stone gyro
#
function min(it, key){
    var res = null;
    var cur_min = Number.MAX_VALUE;
    for (var cur in it){
        var cur_k = key(cur);
        if (cur_k < cur_min){
            res = cur;
            cur_min = cur_k;
        }
    }
    return res;
}

🥴

sick olive
static trout
#

i guess ill have to see js through

stone gyro
#
>>> min([1,2,3],x=>-x)
null

huh

static trout
#

i do know javascript basics to making objects

static trout
stone gyro
#

oh god

dusty aspen
stone gyro
#

can you guess what the bug was?

static trout
#

namespace thing

#

ig

sick olive
#

in, let me guess

stone gyro
#

I accidentally wrote Number.MAX_VALU. This is undefined, so it compares not-bigger than anything, so the minimum ends up being null, the initial value.

static trout
#

didnt error?

dusty aspen
#

why won't it errorrrrr

stone gyro
#

At no point did I get any error for, y'know, invalid attribute access and comparing with undefined.

static trout
#

wtf

dusty aspen
#

actually JS never errors

#

So that question is irrelevant

static trout
#

bruh

stone gyro
#

another question

static trout
#

thats very bad for debugging

stone gyro
#
>>> min([1,2,3],x=>-x)
'2'

what the fuck

#

why is it a string

static trout
#

wtf

dusty aspen
#

weak typing and implicit coercion, probably

sick olive
#

Yeah, you're using for...in

#

for...of should work

static trout
#

wat's the difference

stone gyro
#

ah, hmm, that's pretty messed up but okay

static trout
#

also what is for...of

sick olive
#

for…in goes through the keys of the prototype, I think

#

And since object keys are strings

static trout
#

bruh

#

wait what

#

i am confused.

#

befuddled

#

panic-struck

dusty aspen
#

This reminds me why I love JS

#

I am now on a mission to load as little JS into a browser as possible, and it's going great. I'm working on an SSG build tool in Rust that shall hopefully never need any JS.

#

Rather than using a fucky JS framework that would be great if it weren't, well, JS

static trout
#

unfortunately js rules frontend

sick olive
stone gyro
#

aaaaa it has no find either

dusty aspen
#

Huh? You can load js without an internet connection.

static trout
#

what is js compiled to

static trout
#

that is cursed

stone gyro
#
function find(it, pred){
    for (var cur of it){
        if (pred(cur)){
            return cur;
        }
    }
}

😔

dusty aspen
sick olive
static trout
dusty aspen
#

implicit type coercion 🤷‍♂️

static trout
#

why is it implicit

#

float and int i understand

dusty aspen
#

because ✨ weak typing ✨

static trout
#

why string tho????

dusty aspen
#

I guess the creator didn't feel like implementing strong typing in ten days

#

and obviously, we must ensure consistency in the bad things, not the good

static trout
#

lmfao

#

it's a consis-ten out of ten

stone gyro
#

do I use Object.assign({}, source) to copy an object?

#

oh, my browser crashed

serene dagger
#

im gonna say the p word
python

sick olive
#

I think {...obj} shallowly copies it

rustic parcel
# static trout bruh
[] == ![]; // true
true == []; // false
true == ![]; // false
false == []; // true
false == ![]; // true
dusty aspen
#

fucked up compiler

rustic parcel
#

yep

#

not sure if typescript fixes that

dusty aspen
#

We need a proper new widely adopted JavaScript engine that isn't completely screwed up

#

== is just equality with type coercion

#

=== is equality without

rustic parcel
#

yeah but there isn't a +-*/ without it is there

magic carbon
#

Cool carpet

ocean walrus
#

New web language would be cool

sick olive
onyx ice
#

Not really concerned

mortal hull
#

yep, very dangerous

onyx ice
#

You described a brain. So no, I'm not worried

dusty aspen
hollow holly
#

@onyx ice No more Santa hat I see :(

#

festive mood right after Halloween > the awkward period of no holidays

onyx ice
hollow holly
onyx ice
#

I'm thinking a turkey tail

hollow holly
#

Ah

proper anvil
#

you could give him a pilgrim hat

hollow holly
#

I would change my PFP to a festive picture but I have no snow photos

#

I have one that’s really ugly

onyx ice
#

Idk, Jeb with a pilgrim helmet hat?

hollow holly
#

so I have to wait for snow to get a good one

hollow holly
onyx ice
#

Lol

hollow holly
dusty quarry
#

In Denmark the governemnt pays half the cost once a month to a disabled to go to a sexworker for therapy. Best country ever.

oak hemlock
#

why is it almost annoyingly hard to differentiate between Java and C#

#

lol

hollow holly
#

The green dots are supposed to be ornaments

static trout
#

oh that shy guy

#

i made another shy guy with a hat

#

(shy guy the scp)

cursive agate
#

not really concerned.

#

the one who wrote that is probably just controlled by their own brains which is an organ.

#

also not all organisms require a brain.

#

remember, plants?

#

¯_(ツ)_/¯

#

everyone always forget plants are alive because they are non-motile

#

people

#

yes

#

brains are people

#

not people are brains

#

get the difference?

#

brains are snakes

#

;)

sick olive
#

shakes are peoples brains

serene dagger
#

but why do fungi count as vegan food they're their own thing they're not plants wtff

oak hemlock
#

I wish to once again tackle making an ECS (Entity-Component System) in Python

#

but conceptually I fear I'll get stuck trying to make entities move at the same time without forcing other entities to be blocked

cursive agate
#

i like it

serene dagger
#

whats a trap

oak hemlock
cursive agate
oak hemlock
#

._.

serene dagger
#

this is a femboy no booby

cursive agate
#

;)

serene dagger
#

also i hate society rules and gender roles thats why im using this pfp

cursive agate
#

yes. im pro trap

serene dagger
#

idk fungi shouldnt be vegan they're not plants

mellow sierra
#

gender roles are so weird.

cursive agate
#

people are weird

#

just love each other

#

no need for gender. just wuvv

oak hemlock
#

gross. love.

cursive agate
#

uwu

serene dagger
# cursive agate just love each other

no ur not allowed to love anyone u need a male to pick you and said male can go pick a few other wives but if u complain about this its hateful somehow

#

tsk tsk tsk

sick olive
#

Morning 🤗

cursive agate
#

im going to kill that male

#

🔪

serene dagger
#

wrong thats some sort of phobia
the nonsense i get from trying to abolish gender 🤦‍♀️

cursive agate
#

i think i cant understand yet on what you are saying

#

but why would i dictate my worth for some male?

serene dagger
oak hemlock
#

hm what does it mean to have a "sparkling" personality

cursive agate
oak hemlock
#

An instructor said I had a "sparkling personality"

oak hemlock
#

hmmmm

cursive agate
oak hemlock
#

Via text message saying how "they" miss me for my computer skills and "sparkling personality"

mellow sierra
#

but maybe it's just nice.

cursive agate
#

ignore the person

oak hemlock
#

wha?

cursive agate
#

are u even close to said instructor?

oak hemlock
#

Yes

cursive agate
#

hmm?

oak hemlock
#

I speak to her quite frequently

serene dagger
#

sussy

oak hemlock
#

IRL and via text

cursive agate
#

hmmm i see. okay then suit yourself

oak hemlock
#

well not stupidly frequently

cursive agate
#

i am having a strange vibe from that. how old are u pycereal?

oak hemlock
#

I'm 17 \🤔

cursive agate
#

one year until legal. i see

oak hemlock
#

uh

#

Well. I can say that what I think you're thinking is definitely not going on

pliant canyon
#

society

cursive agate
oak hemlock
#

no favors

cursive agate
#

eh

oak hemlock
#

I'm just the only one that knows how to program

mellow sierra
#

Seems a bit unprofessional, but if the teacher-student relationship has ended then it's ... well.

serene dagger
#

not society just people in positions of authority trying to get ahead with power dynamics

oak hemlock
#

idk if it's really unprofessional

#

She only messages me to check up on me. I've not attended any robotics meetings in a week because my mother is sick with COVID

cursive agate
pliant canyon
oak hemlock
#

lol

cursive agate
oak hemlock
#

No, she's quite a bit older and she's married

#

and we're not really "close" by any casual standards

cursive agate
mellow sierra
#

Some teachers are pretty involved. But there are really specific guidelines and rules about contact with students.

oak hemlock
#

Well, technically she's not my teacher

cursive agate
pliant canyon
#

lol

oak hemlock
#

Not even the same school

pliant canyon
#

plot twist

mellow sierra
#

*all professional educators

oak hemlock
#

I should clarify in saying that she's our robotics instructor

serene dagger
#

so your gf goes to another school huh i've heard that one before

oak hemlock
#

._.

cursive agate
#

ah she is just impressed with your programming skills, you might have swept all your classmates under the rug lol

oak hemlock
#

I'm like 95% sure that she knows I'm gay, as well

cursive agate
#

not an issue lol

oak hemlock
#

gross that feels weird saying that

#

oh well. I must pretend to be open

serene dagger
cursive agate
mellow sierra
oak hemlock
#

:c

cursive agate
static trout
serene dagger
cursive agate
#

@oak hemlockso whats the issue with your teacher then? we are basically going in circles

static trout
oak hemlock
#

I was just curious what it means to be "sparkling"

mellow sierra
#

pretty hard to work out all the subtext and intention behind s person's statement. Sparkling personality is a compliment, they think you're charismatic and interesting. A joy.

cursive agate
oak hemlock
#

lol

#

well, I only know of a few that'd say something like that

serene dagger
#

i never got called sparkling i must've been dull or something :c

oak hemlock
#

I guess I'm just not used to compliments

cursive agate
#

maybe if you described on how she said it, we might have a clear interpretation

oak hemlock
mellow sierra
#

I always got "very quiet" and often "befuddled"

oak hemlock
pliant canyon
#

or something similar

static trout
serene dagger
#

we dull :(

sick olive
#

we dull :")

oak hemlock
#

I always have a needlessly good reputation with my teachers

stone gyro
#

they want to drink pycereal like sparkling wine

oak hemlock
#

it only ends up being more stressful

static trout
#

i was once called witty by my teacher for my apparent obligation to make a funny comment on everything that happened in class

serene dagger
#

how do u drink cereal

oak hemlock
#

living up to the expectations of everyone :c

cursive agate
mellow sierra
static trout
oak hemlock
#

lol

cursive agate
oak hemlock
serene dagger
cursive agate
oak hemlock
#

Give me two years to make sense of that

cursive agate
oak hemlock
#

meow

static trout
#

not sure what to think of this

serene dagger
#

nya

oak hemlock
#

GNU Image Manipulation Program

static trout
#

look at the logo

sick olive
cursive agate
#

People Manipulation Program. My next virus is mind control lemon_imp

oak hemlock
#

All I see is GIMP

cursive agate
#

People's Intelligence Manipulation Program

oak hemlock
serene dagger
#

mmmmmmmmmmm the pain never ends with braces

oak hemlock
cursive agate
#

it should probably be a special day for me

#

you know

oak hemlock
cursive agate
#

thanks!

serene dagger
#

haha ur older

cursive agate
static trout
oak hemlock
#

wtf is this hairless rat

sick olive
cursive agate
mellow sierra
#

Happy birthday

serene dagger
static trout
#

nickname the shy guy

oak hemlock
#

thanks this explains everything

cursive agate
static trout
#

if u see him in any form (photo, painting, real life)

#

he will first cry
then he will follow you and kill you

oak hemlock
#

you know what's kind of scary

#

I'm almost 18

static trout
serene dagger
oak hemlock
sick olive
cursive agate
mellow sierra
#

I got told yesterday that your frontal lobe only finishes developing at the age of ~32

oak hemlock
#

damn

static trout
cursive agate
#

i didnt buy a cake cause i really dont want to celebrate but i got small cakes instead

serene dagger
oak hemlock
#

"I didn't buy 1 cake. I bought 12!"

serene dagger
#

being pretentious is what the common plebs equate to maturity anyway

sick olive
#

I got hella kaju katri(a sweet) at my place, I'll eat it!

oak hemlock
#

one for each year old you are mentally

cursive agate
oak hemlock
#

yes

static trout
cursive agate
oak hemlock
#

or you see by the magic of math

#

12 == 21 (but backwards)

sick olive
static trout
#

i asked my dad to buy a box of it, he said he'll buy me 2 boxes if i wait till my birthday

cursive agate
oak hemlock
#

your mind's birthday will be a bit later fsfs

#

still catching up

static trout
serene dagger
oak hemlock
#

damn. starcy old

cursive agate
sick olive
static trout
serene dagger
#

cant tell by my voice smh lemon_smug

oak hemlock
#

meow

sick olive
serene dagger
#

nya

cursive agate
static trout
#

i get kaju katri once a year so i always eat it very quickly

sick olive
serene dagger
sick olive
#

And they all get over too quickly

cursive agate
oak hemlock
serene dagger
#

no look em up

cursive agate
#

i need to hear your voice

#

now :((

oak hemlock
#

see what I did there

#

Katreat. Cat treat.

serene dagger
#

i dont have any good excuse to do it

oak hemlock
#

:/

static trout
#

u did send ur voice before i remember

sick olive
#

Quick search

cursive agate
serene dagger
#

eh someone else did it

cursive agate
#

sad

serene dagger
#

¯_(ツ)_/¯

static trout
#

my birthday is like in a month

sick olive
sick olive
cursive agate
dusty quarry
#

?????

serene dagger
#

its fine its not personal or anything im a massive weeb lmao

cursive agate
dusty quarry
#

why

cursive agate
cursive agate
dusty quarry
#

ew

cursive agate
dusty quarry
#

eww

#

Bloated

cursive agate
#

truth

#

i use yambar

dusty quarry
#

default is good enough

cursive agate
#

depends

serene dagger
cursive agate
serene dagger
#

the true meaning of ew lemon_pensive

oak hemlock
#

eat worms

#

embrace women

prime girder
#

no, it's the other way around

cursive agate
oak hemlock
#

eat women o_o
embrace worms o_o

prime girder
#

yes

cursive agate
serene dagger
#

well that went places fast didnt it

cursive agate
#

im

#

into

oak hemlock
#

embrace eating women worms?

cursive agate
#

it

dusty quarry
#

wait

#

she has worms?

cursive agate
#

Le Vorn go home

serene dagger
#

id probably hug a worm if it was like dog sized and not slimey

oak hemlock
#

Who has worms

cursive agate
dusty quarry
#

I'm home, honey

oak hemlock
#

I'm not

cursive agate
#

i dont wanna explain her curse. it is so lewd lol

serene dagger
#

like u seen mealworms yeah i'd hug one of those if it was big enough, or if i was small

cursive agate
#

hmmm loli sized popeye

dusty quarry
#

I have never eaten worms

#

But I have eaten grasshopper

oak hemlock
#

Apparently you likely have

#

because of how production of certain foods works

#

I remember reading soemthing like that

dusty quarry
#

ye

serene dagger
#

well mealworms are like not slimey so i would hug it

dusty quarry
#

But not directly

serene dagger
#

i wouldnt hug a slimey worm that's probably gross

ocean walrus
#

Hi :D

dusty quarry
#

My worm is huge you can huge anytime

ocean walrus
#

What

#

What have I walked into

serene dagger
#

good question

sick olive
ocean walrus
#

Wtf

pliant canyon
#

damn

serene dagger
#

that looks slimey

ocean walrus
#

Indeed

serene dagger
#

would not hug

ocean walrus
#

Unhuggable

dusty quarry
#

why? 😦

cursive agate
#

and crush it

ocean walrus
#

Oh

sick olive
#

All you need is someone to hug, be it human or warm or le vornlemon_pensive

dusty quarry
#

I like it

ocean walrus
#

Poor worm

severe summit
#

I can't sleep folks

cursive agate
ocean walrus
#

Hugged to death

ocean walrus
cursive agate
#

sadly theyre away

ocean walrus
#

12:20 am

sick olive
serene dagger
ocean walrus
#

I mean, who needs sleep anyways

#

Just be awake

cursive agate
sick olive
ocean walrus
#

I don't need sleep

sick olive
#

ok.

cursive agate
dusty quarry
#

It gets wet and slimey when you hug

oak hemlock
ocean walrus
ocean walrus
oak hemlock
ocean walrus
#

I dare you

oak hemlock
#

ok blocked

ocean walrus
#

Lmao

#

How dare you

severe summit
#

well I got to work tomorrow

ocean walrus
#

I'll block you

severe summit
#

too much anxiety

oak hemlock
sick olive
#

I am blocked by cyph toopithink

ocean walrus
#

We got school off for the week

dusty quarry
#

you just need a hug

severe summit
#

no hugs....that is weird

sick olive
#

I do. Yes.

ocean walrus
#

Lmao

oak hemlock
ocean walrus
severe summit
#

wish I was still in school.....

ocean walrus
#

Perhaps

severe summit
#

.....but I became an adult

ocean walrus
#

Amateurs, imagine not being every age at once

oak hemlock
#

aboo.

ocean walrus
#

What

oak hemlock
#

.

ocean walrus
#

.

oak hemlock
#

lemon_angrysad shut

ocean walrus
#

Never

ocean walrus
oak hemlock
#

watch your tone

ocean walrus
#

Schools is fine so far

oak hemlock
#

noob

serene dagger
#

nah adult is better except that for unlucky reasons i get treated like a kid by legit everyone in my life so i dont even bother anymore

ocean walrus
oak hemlock
#

oh no. I can hear my mom spraying herself

ocean walrus
#

Hm

oak hemlock
#

she must be leaving to canoodle with her boyfriend

severe summit
#

adult can be better

#

but then your career path is set, etc

#

and leads to lots of 'what ifs...'

ocean walrus
#

Majority of my friend group is outside of school

oak hemlock
#

I don't have a friend group :pepe_laugh:

serene dagger
severe summit
#

friends? That sounds nice

oak hemlock
#

I have a single friend, who I hardly talk to

severe summit
#

does my wife count as a friend?

cursive agate
#

what are friends? when they dont give u benefits

ocean walrus
oak hemlock
severe summit
#

does python have a 'friend' library I can import?

ocean walrus
#

In next update

severe summit
#

😆

#

python 4.0

cursive agate
serene dagger
sick olive
#

cpp has friendly function

oak hemlock
severe summit
#

one I don't even like that much anymore

oak hemlock
#

2 wives o_o

ocean walrus
#

Cyphereal how old are you

severe summit
#

but hey, at least I go to Meetups

oak hemlock
ocean walrus
serene dagger
#

i have a few friends and i think they reduced in number recently due to funny virus :T

severe summit
#

I'm trying

ocean walrus
oak hemlock
#

I'm 17

ocean walrus
#

Pycierial

ocean walrus
oak hemlock
ocean walrus
#

Join clubs, you can make friends that way

eternal trail
#

*cyphurial

ocean walrus
#

Ciphirel

oak hemlock
#

we don't have clubs other than robotics

sick olive
#

Cyburial

ocean walrus
#

Hm

severe summit
#

17? I'm too old to be here

ocean walrus
#

What about outside of school

dusky inlet
#

cyberial

oak hemlock
#

uh

severe summit
#

night folks

oak hemlock
#

we have... a dollar general

ocean walrus
#

Gn

arctic solstice
#

👀

sick olive
#

i'll admit, my brain has always been too lazy to read cyp's entire username

ocean walrus
#

Hm what about neighbors

serene dagger
#

hes a cool cereal

ocean walrus
oak hemlock
#

Cypher + iel

sick olive
ocean walrus
#

Amateurs, imagine having a name that's not Aboo

dusky inlet
#

imagined, thats reality

ocean walrus
#

Perhaps

oak hemlock
#

maybe I'm due for a username change

ocean walrus
#

cipjerial

dusky inlet
#

and im due for a pfp changee

ocean walrus
#

Me too

sick olive
oak hemlock
#

I'm just such a chad programmer that has inherited the ability to be bad at naming things

ocean walrus
#

Lmfao

sick olive
ocean walrus
#

I've been wanting a new pfp

serene dagger
#

imagine not literally being named starcy
i can imagine cuz i cowarded and didnt change my name to that lemon_smug

ocean walrus
#

I just don't know what it could be

dusky inlet
serene dagger
#

im still thinking of doing it yolo

oak hemlock
#

I wonder if my mother was a programmer 😒

#

Bad at naming me, too

ocean walrus
#

Hm

sick olive
#

being sad sucks

oak hemlock
#

"Mikel" hmph

ocean walrus
#

I like my real name

dusty quarry
#

wow

ocean walrus
oak hemlock
ocean walrus
#

Rayyan :P

oak hemlock
ocean walrus
#

Yes

oak hemlock
ocean walrus
#

Oop, mb

prime girder
#

I don't like my real name

serene dagger
#

next chance i get im makin starcy ma middle name or something i think its neat lemon_angrysad
i wont im a coward

sick olive
#

i like vaxeral as a name

prime girder
#

It means "young man"

ocean walrus
#

My dad has three names

sick olive
#

i like my real name:) prashant:)

oak hemlock
#

I said "young man"

prime girder
#

Especially when it's accommodated by my surname...

dusty quarry
#

who

oak hemlock
#

I hope someone gets that reference

ocean walrus
#

And my mother has no last name

dusty quarry
#

wtf

ocean walrus
#

Apparently it is a thing in India

dusky inlet
prime girder
#

Huh, shouldn't your mother inherit your father's surname after marriage?

oak hemlock
#

Everyone listens to YMCA at least once

ocean walrus
sick olive
prime girder
#

Damn

dusky inlet
serene dagger
oak hemlock
#

:faint:

ocean walrus
oak hemlock
#

aboo, teach vinam about the YMCA

sick olive
ocean walrus
#

Lmao

dusty quarry
#

yeah

ocean walrus
dusty quarry
#

I have never said that it isn't

oak hemlock
#

aboo.

#

the YMCA

ocean walrus
#

Egat

oak hemlock
#

Egat

ocean walrus
#

Lies

#

I don't make typosd

dusky inlet
oak hemlock
ocean walrus
#

Fuck

dusky inlet
#

is it a band

oak hemlock
#

Surely you've seen/heard of this

serene dagger
#

thats a banger

oak hemlock
dusky inlet
#

no i vnot

ocean walrus
#

It might be

sick olive
#

Ymca by beatles?

ocean walrus
#

Or it might not

sick olive
#

No no its someone else

oak hemlock
#

wtf Aboo

#

surely you have

ocean walrus
#

What

oak hemlock
#

You've never heard this song either? D:

sick olive
#

Oh yeah. It's a good song!!

ocean walrus
#

I've heard it

#

The dance

#

Where your arms go up

#

Left and then right

cursive agate
oak hemlock
serene dagger
#

mmm im too salty at normalized gender roles imma get off the internet and just chill o/

ocean walrus
#

I havent explicitly listened to it but I've heard it

oak hemlock
ocean walrus
#

Perhaps

dusky inlet
#

arms go up makes the Y shape

oak hemlock
#

yes

cursive agate
ocean walrus
#

Hm

dusky inlet
#

howd you make the M

ocean walrus
#

I have water

ocean walrus
dusky inlet
#

M looks like a grod

#

frog

ocean walrus
#

Grod

oak hemlock
#

with the tips of your fingers

#

it doesn't look like an M but it's the thought that counts

dusky inlet
#

thats <0>

oak hemlock
#

and

ocean walrus
#

Did anyone else question their existence when they were in elementary school

#

Like I had these small moments

dusty quarry
#

yes

oak hemlock
#

I'd get dizzy thinking about it

ocean walrus
#

SAME

#

And then it would go away

dusty quarry
#

I asked who exactly am I

oak hemlock
#

"Man. I'm real???"

ocean walrus
#

It stopped since then

sick olive
cursive agate
oak hemlock
ocean walrus
#

I'm fairly satisfied with my existence now

cursive agate
dusty quarry
#

I cried when I learnt that death is inevitable

cursive agate
#

i still question it until today

oak hemlock
#

I don't care about dying

#

I care about anyone else dying

cursive agate
#

i like dying

sick olive
#

but i was young

oak hemlock
#

That is what makes me sad

dusty quarry
#

yeah

cursive agate
#

dying is everyday

ocean walrus
#

Hm, I'm not scared of dying itself, rather how I die

dusty quarry
#

I cried to my mother

cursive agate
#

every cell in your body dies everyday

ocean walrus
#

I want to die quickly

dusty quarry
#

I asked her will one day you leave me?

oak hemlock
#

👀

cursive agate
#

100k-200k cells in your body gets replaced every 4 hours

ocean walrus
#

It's sad to think about

cursive agate
#

most of it is the lining in your stomach

sick olive
#

i wasnt scared about my mother dying.

ocean walrus
#

As for myself just dying one day, I'm pretty fine with that

oak hemlock
#

you know what always freaks me out

sick olive
#

just me

cursive agate
oak hemlock
#

Whenever I'm home alone, sometimes I wonder what'd happen if I just jumped out the window

dusty quarry
#

You'll find peace

oak hemlock
#

stupid call of the void. it's so depressing and disorienting

sick olive
oak hemlock
#

I have the freedom to just... jump off the roof

dusky inlet
#

ok back to raymarch

cursive agate
ocean walrus
#

Lmao

dusty quarry
#

The moment you die, the moment you're free

ocean walrus
#

I used to be super scared of the dark

oak hemlock
#

I'd rather not. I'd make too many people sad

#

and that seems selfish

cursive agate
ocean walrus
#

I don't enjoy the dark, but I'm not scared of it

oak hemlock
#

I still run to my room when I turn the lights off

dusty quarry
#

I used to be terrified in the dark

oak hemlock
#

LMAO

sick olive
ocean walrus
#

My parents told me a story about my grandfather seeing a demon

#

That freaked me out for a while

oak hemlock
#

your what?

cursive agate
dusty quarry
#

At night in the middle of the sleep, if I felt like I wanna pee, I would had to walk downstair in darkness to the toilet

sick olive
#

looooooooooooooooool

dusty quarry
#

and it scared the shit out of me

oak hemlock
#

oh grandfather

sick olive
#

big lol

oak hemlock
#

LOL grandmaster

mellow sierra
#

My feelings of ennui got replaced with angst, then back to ennui, then "meh, might as well have fun"

ocean walrus
#

Hah

cursive agate
dusty quarry
#

or sometime I had to grab some water

ocean walrus
#

Hm, I believe in it enough

oak hemlock
cursive agate
dusty quarry
#

after that I would rush back upstair in terror

ocean walrus
#

But it's not really a scary thing now

#

I just keep a glass of water next to me

oak hemlock
#

When I was in a "GIFTED" class in elementary, our teacher told us a story about how people can sleepwalk and pee

ocean walrus
#

Unconscious and unconcerned pissing

oak hemlock
#

and about how some kid moved into a new house and sleep walked peed

#

except... the bathroom wasn't where it used to be

ocean walrus
#

Damn

oak hemlock
#

TL; DR: parents caught their kid peeing on the curtains

dusty quarry
#

rip whoever had to clean that up

ocean walrus
#

Lmfao

oak hemlock
#

I wonder if I've ever done that

#

god. imagine

cursive agate
#

ngl treesitter is awesome if you wanna learn about parsers and lexers hmm

dusty quarry
#

I know some people would just pee in bed

oak hemlock
#

gross

#

that's like everyone at some point in time

#

hopefully sooner rather than later

cursive agate
#

hmm well me experimenting on how im going to approach this dotfile manager

ocean walrus
#

Parsing is fun

oak hemlock
#

no

ocean walrus
#

Yes

sick olive
#

im going to try and write an operating system. Pray for my soul.

ocean walrus
#

Go for it

oak hemlock
#

I'm going to write an Entity-Component System

#

I'm already very confused conceptually

#

hm. I need a duck

#

but I also don't want to talk to myself home alone

solid prawn
#

why not

ocean walrus
#

I talk to myself

mellow sierra
#

I don't want to get into the habit of verbalising my inner monologue either

ocean walrus
#

It's soothing

mellow sierra
#

but it's so helpful

ocean walrus
#

I do it without thinking

#

I say a lot of my thoughts aloud, or at least mouth them

oak hemlock
#

👀

#

Do I really wanna be my own duck, though

#

I'm so confused

ocean walrus
#

Self ducking

solid prawn
#

we can be your ducks

#

owo

oak hemlock
#

meow

#

I don't know how I'd start with this one

ocean walrus
#

We're all ducks

#

Quack

solid prawn
#

quack

mellow sierra
#

... but ducks don't echo. It's the point of a soundboard to get some type of feedback?

ocean walrus
#

Quack

#

Well, I think it's time I sleep, gn guys

fathom yew
#

gn!

mellow sierra
#

night boss

solid prawn
#

gnaboo

dusty quarry
#

wtf why would you sleep i nthe day

mellow sierra
#

siesta

oak hemlock
#

I basically want to make a "world" with entities, components, and systems...
Entities at this point are mostly just strings AFAIK
Components hold data and you may have Position(Component) with Position.x, Position.y and stuff like that..
Systems are what have the logic for entities and their components... So maybe Move(System) which moves an entity and updates their position...

Supposedly, all of this should differ from using an entity as a class itself with all component parts being mixed into one (Entity class with x, y, move())
... I have no clue how to implement any sort of "world tick" or if this route is even worth investigating...

#

that is far as I've gotten into my thinking :faint:

solid prawn
#

arent entities generally Node-like things

#

so you have a tree of these things

oak hemlock
#

I... have no clue how this is meant to work

#

ah I think entities are supposed to be IDs here

solid prawn
#

my only experience with ECS is a brief touch with unity so you should probably take what i say with a grain of salt lol

oak hemlock
#
entity = world.spawn()  # Returns a steadily increasing ID for each entity spawned. This ID is also used internally to tie together entities to their components.
#

lol my brain hurts

#

idk if this is worth doing

#

Would it be better to use a dictionary to map entities to their components and also have the components in a list?

#

or... no, I can just use dict.values() for components

solid prawn
#

hmm

cursive agate
#

mushokou tensei emphasizes multiple spouses

#

hmmm pro polyamorous!

oak hemlock
#

lol is this weird

def _counter() -> int:
    if not hasattr(_counter, "count"):
        _counter.count = -1

    _counter.count += 1
    return _counter.count
#

I mean it works

cursive agate
#

no

solid prawn
#

yes it is weird

#

functions shouldnt store state

cursive agate
#

yes

oak hemlock
#

so I must use a class? :c

solid prawn
#

yes

cursive agate
#

yes

oak hemlock
#

hmph

cursive agate
#

hmph

oak hemlock
#

huh would it be better to use id for names

#

I mean for storing entities

#

instead of 0, 1, 2 etc

#

no, probably not

#

I've already forgot

pliant canyon
#

u forgor 💀

sick olive
solid prawn
#

smh my head

static trout
#

shake my head my head!

sick olive
#

i made le crane

#
const Counter = () => {
  const [c, setC] = useState(0)
  return <button onClick={() => setC(c+1)}>{c}</button>
}

😌

sick olive
#

yeah.

coarse jasper
#

Undderrated GOOD MEDIA PLAYERS?

(Clean ui, high quality playback, Customizability, ability to save stopped location, and show chapters)

upper turret
#

groove music is great but if you need more functions there is musicbee

cursive agate
#

welp that was fast. so the nvidia version with GBM for Wayland is now a stable release. nice

mystic mauve
#

too many people recommend VLC, and don't get me wrong it's good but..looks like it came from 1995

#

and the skins all break functionality

coarse jasper
cursive agate
#

mpv > vlc

mystic mauve
#

^

coarse jasper
#

theres litterely no features.

mystic mauve
#

MPV has plenty of features, what are you missing?

cursive agate
#

u just need a video player lol. but yeah preference lol

coarse jasper
mystic mauve
#

it has all of that afaik?

cursive agate
#

u can install them i just like vanilla.

coarse jasper
#

afaik????

mystic mauve
#

as far as I know

vast valley
#

I found a 120gb SSD that had linux mint from a dead computer and an old Acer Aspire One from when I was in Highschool with a 250gb HDD. I swapped for the SSD and I'm currently installing lubuntu.

mystic mauve
#

Anyway I should be getting to bed now

#

I was trying to learn a new plane to fly