#ot1-perplexing-regexing

1 messages Β· Page 602 of 1

rough sapphire
#

have two entries

#

doubt i'll win &*^%

deep ingot
#

lol

rough sapphire
deep ingot
rough sapphire
deep ingot
rough sapphire
#

I feel like it's pretty low tbh

deep ingot
#

true

rough sapphire
#

not everyone is a fisher

latent scaffold
#

well

deep ingot
#

its pretty weird it was on food packaging tho

rough sapphire
deep ingot
#

weird sponsorships

rough sapphire
#

@deep ingot I'm uploading it once i get discord on phone and blurring out the links so nobody thinks it's advertising

#

Here, this is the weirdest sponsorship ever

#

i'm not intending to advertise this, i wanted to show how weird of a sponsorship this is

#

If it had only like a few hundred participants, i wouldn't be suprised

#

@deep ingot here if you want to see it, sorry for the double ping

deep ingot
#

huh

rough sapphire
#

IKR

#

I will kindly delete it if asked

slow juniper
#

Yey

#

ÝÈÝ

#

?

long crypt
#

Woah i just realised, the lines in github are not just ordinary random lines

odd sluice
#

daaamn

mild abyss
rough sapphire
frail badge
#

like actually the devs know their STUFF

latent scaffold
#

well

#

it is GitHub, after all

acoustic moss
#

lol

tiny nexus
#

haha

rough sapphire
#

what is this channel about ?

#

πŸ€”

latent scaffold
#

everything and nothing

odd sluice
#

!ot

royal lakeBOT
odd sluice
#

it seems there is a lore

#

eivl doesnt discriminate between food - he's not a picky eater
you have been nommed - eivl's going to eat you
akarys shaped bananas - eivl's eating akarys shaped bananas

latent scaffold
#

food

civic timber
#

how to get free electricity ?

#

ans = use your neighbours outlet

slow juniper
latent scaffold
#

@odd sluice So... I did a thing that works

#
@cmdl.register(name="add", aliases=["sum"], description="Add arguments as integers.")
def add(*args: int):
    console.print(f"[blue]Sum[/]: {sum(args)}")
#

the arguments are actually converted depending on the type annotation

odd sluice
#

damn

#

how

latent scaffold
#
def convert_args(parameters: Mapping[str, Parameter], *args: str) -> Any:
    def converter():
        param_type = None
        for param in parameters.values():
            param_type = param.annotation
            yield param_type

        while param_type is not None:
            yield param_type

    try:
        return [new_type(s) for s, new_type in zip(args, converter())]

    except ValueError as e:
        console.print(e)
odd sluice
#

I never get the typing library

#

its so confusing

latent scaffold
#

oh, Parameter is from inspect

odd sluice
#

what is Mapping?

viscid hemlock
#

This is inspect as well though

latent scaffold
#
    def execute(self, command: str):
        args: list[str] = split(command, comments=True)
        command = self.commands.get(args[0].lower())

        if command:
            converted_args = convert_args(signature(command).parameters, *args[1:])
            command(*converted_args)

        else:
            console.print(f"[red]Error[/]: Invalid command '{command}'.")
latent scaffold
viscid hemlock
odd sluice
#

weird

viscid hemlock
#

Not really?

solemn leaf
#

what else

viscid hemlock
#

Because now I can make a custom dict that also supports that, but I don't need to provide all methods that dict has

latent scaffold
#

I basically just get the type annotations of every parameter and attempt to convert a string to it

solemn leaf
#

other than dict methods

solemn leaf
#

welp you can use some third party modules \πŸ€”

latent scaffold
#
from rich.console import Console
from cmdl import CommandLine

cmdl = CommandLine()
console = Console()


@cmdl.register(name="add", aliases=["sum"], description="Add arguments as integers.")
def add(*args: int):
    console.print(f"[blue]Sum[/]: {sum(args)}")


while True:
    cmdl.execute(console.input("[bright_blue]Input[/] [bright_black]Β»[/] "))

lmao this is quite sexy, negl

odd sluice
#

so far so pure

viscid hemlock
latent scaffold
#

I'm only using rich

solemn leaf
#

implicitly converting type of parameter via module

#

to the specified annotation

odd sluice
latent scaffold
#

unsavory ngl

odd sluice
#

not if i put the escape codes in a seperate file

#

and use the names instead

#

the end result will look almost identical to urs

latent scaffold
#

hehehe

odd sluice
#

damn

#

i need to implement

latent scaffold
#

This also means I could end up doing dynamic "syntax usage" stuff too, as well

odd sluice
#

im this far so far.... how da fuk do i get the casting functions

gritty zinc
odd sluice
#

wait really

gritty zinc
#

last time I checked they were, yeah

#

__annotations__ is a dict from strings to types

#

if it's something simple like int, you should be able to just use the type as the function

odd sluice
#

annotations = list(function.__annotations__.values())
should work?

gritty zinc
#

if it's something like List[int], though, you might need to jump through some hoops, since I'm not sure you can instance a List[int]

latent scaffold
#

ngl this has gotten very messy

def convert_args(parameters: Mapping[str, Parameter], *args: str) -> Any:
    def converter():
        param_type = None
        for param in parameters.values():
            param_type = param.annotation
            type_origin = get_origin(param_type)
            type_args = get_args(param_type)

            if type_origin == Union and len(type_args) == 2 and type_args[1] == NoneType:
                param_type = type_args[0]

            yield param_type

        while param_type is not None:
            yield param_type

    try:
        return [new_type(s) for s, new_type in zip(args, converter())]

    except ValueError as e:
        console.print(e)
odd sluice
#

i have a very high temptation to copy paste this

latent scaffold
#

lmao

odd sluice
latent scaffold
#

I just cheesed my way handling Optional

gritty zinc
latent scaffold
#

uhh

odd sluice
latent scaffold
#
@cmdl.register(name="list", description="Convert strings to list.")
def list_command(*args: list):
    console.print(*args)
gritty zinc
#

I mean can it convert to List[int]?

latent scaffold
#

oh, that wouldn't make much sense in this context

#

that'd really just be *args: int

#

yeah no, list[int] wouldn't work

odd sluice
#

ugh i might just give the type handling to the function

#

error handling on the other hand...

#

I might implement a console class

#

an interface for parsers

#

that supports hot swapping of parsers

#

and handles errors nicely

latent scaffold
#
@cmdl.register(name="help", aliases=["?"], description="Get help.")
def help_command(command_or_section: Optional[str] = None):
    if command_or_section is None:
        for name, command in cmdl.commands.items():
            if not isinstance(name, Alias):
                console.print(f"[cyan]{name}[/] - {command.description}")
#

hehehe

inland wolf
#

sheesh

#

fisher got that admin!!

edgy crest
#

he got it yesterday or so

harsh tundra
#

2 days ago

uneven pine
#

Gonna dive into Elixir tonight

nimble flame
#

Question is i7 good?

graceful basin
#

what exact numbers

#

the i7 series do tend to be good CPUs, but it does matter what exact numbers you have behind the i7

viral parrot
#

when you go to off-topic and did not mean it πŸ˜„

frozen coral
#

an i7-920 is gonna be a bit slower than an i7-11700K though πŸ˜›

magic swift
#

ive got an i7-2600 and it runs pre good but its def showing its age

#

and boost clocks arent great

frail badge
magic swift
#

tr ]

dire siren
#

why is my wpm dropping ._.

worldly current
#

hello everyone

worldly current
dire siren
#

nvm it got back up

#

prob i haven't fully wake up

#

so i get less wpm

fringe creek
#

yes I'm 9% done transferring a 2 byte file

#

for like

#

2 minutes

#

why must it be this way

last mantle
#

If you are buying an i7 and you are not in a hurry

#

Consider buying 12th gen i7 releasing soon

low chasm
#

^

frail badge
#

consider buying 7th gen i12 its very swag

#

take this from me i am the real aboo

rocky chasm
#

The last time i posted in here was january

#

Oh even better

frail badge
#

probably randomly found someone on this server

#

!rule 6 ig

royal lakeBOT
#

6. Do not post unapproved advertising.

wooden silo
#

Just as a PSA, that is apparently a phishing scam.

#

They have been banned, but if someone else links that to you, do not follow their directions.

#

And report it to us immediately.

latent scaffold
#

How's one phish with a Discord bot?

uneven pine
#

The website asks you to login

#

To add it to discord

inland wolf
#

does the bot destroy the server

latent scaffold
#

ohhh, I see

uneven pine
#

The bot likely doesn't even exist

inland wolf
#

oh tru

floral apex
edgy crest
#

sure ig

#

just make sure to have the same art style for the rest of the environment

civic timber
#

: )

dire siren
#

seems better than the last one

odd sluice
#

seems less happy but ok

#

ye looks cool

modest meteor
#

How can I start a new shell on linux to execute a command in python? I tried using os.system with the command x-terminal-emulator but it closes on launch

latent scaffold
#

because it sounds like you're wanting to do something like bash -c python3 -c 'print("Hello, world!")'

torn grove
modest meteor
latent scaffold
#

uh

#

so then use the terminal command

modest meteor
latent scaffold
#

depends on the terminal you have

#

I'd use alacritty because that's my terminal

#

look through the help page of your terminal emulator and figure out what the flag is to run a command

modest meteor
latent scaffold
#

I don't know what the command for it is

modest meteor
#

But i can't figure out a way to avoid it closing on launch

modest meteor
latent scaffold
#

What's the command you're running to open it called

#

like with what flags

modest meteor
#

So i'm just using a working directory param and the command itself ```
gnome-terminal --working-directory=$pwd -- "/usr/bin/python3 ./abc.py"

latent scaffold
#

uh give me a moment

modest meteor
#

alright

latent scaffold
#

shouldn't you be using -e /usr/binpython3 abc.py

modest meteor
#

-e has been deprecated apparently

latent scaffold
#

huh?

modest meteor
#

-e has been deprecated

#

Gnome-terminal warns you if you use it

latent scaffold
#

the heck are you supposed to use, then

#

-- doesn't do what you think it does

modest meteor
#

-- to terminate options

modest meteor
latent scaffold
#

okay, yeah I know nothing of how gnome-terminal works

modest meteor
#

alright

latent scaffold
#

I might suggest using another terminal emulator

#

there's no clear way to keep the terminal open

#

on Windows, you'd use like cmd /c or something

modest meteor
#

okay ill find out other options

latent scaffold
#

unless maybe

#

I might have a way

#
gnome-terminal -- zsh -c 'echo hello, world; zsh -i'
#

well, I use zsh here but you'll likely be using bash

dire siren
#

is gnome terminal a linux thing

latent scaffold
#

GNOME Terminal is a GNOME thing

#

and GNOME is a Linux desktop environment

#

although technically you can use GNOME Terminal on any DE

#

my eyes

dire siren
#

ah, i can't set stuff like those in wsl wright?

latent scaffold
#

With WSLg you can, as you see in my screenshot

dire siren
#

c00l

latent scaffold
#

but that means you need to be on Windows 11 through Windows Insiders

dire siren
#

not c00l

acoustic moss
#

the gnome terminal is one of the less disturbing things in that image

latent scaffold
#

Excuse me

acoustic moss
#

excused

dire siren
#

lol

latent scaffold
#

Do you have something against Lady Gwa Gwa

dire siren
#

yes

acoustic moss
#

yes

latent scaffold
#

excuse me

dire siren
#

excused

acoustic moss
#

it also says 2:09 am

latent scaffold
#

oops

acoustic moss
#

slep

latent scaffold
#

would you look at that. It does

#

Obviously it's just that my time is not synced

acoustic moss
#

certainly

dire siren
#

um i have a question, tf why everyone got lenovo vantage on their pc

latent scaffold
#

it came with mine

#

I've got a Lenovo LEGION 5

dire siren
#

oh i have lenovo yoga book

#

and it installed mcaffe for me ._.

latent scaffold
#

ew

dire siren
#

which thing are you ewing on

latent scaffold
#

you uninstalled right away, right? :)

dire siren
latent scaffold
#

._.

latent scaffold
dire siren
inland wolf
latent scaffold
#

that's my place

dire siren
#

no that's my place

latent scaffold
inland wolf
#

ill examine it

inland wolf
#

but i might need a macro lens

latent scaffold
inland wolf
#

that would not be fruitful

#

becuase i wouldnt be able to record my findings

latent scaffold
#

the findings will be recorded across your face

inland wolf
#

that would be convenient

latent scaffold
#

for who

dire siren
#

for me

inland wolf
#

for me

acoustic moss
#

yeah me too

inland wolf
#

since i dont have to record anything

#

it will be on my face

latent scaffold
#

this feels like violent flirting

#

I don't think I like it

inland wolf
#

i was merely talking abt the diffrent ways one can examine ur fists

rough sapphire
#

can anyone run my first code?

inland wolf
#

no

dire siren
rough sapphire
#

i wrote the first code in my life

latent scaffold
#

time to say hello to some worlds

rough sapphire
#

i want to get a feedback from others

dire siren
#

this is my first 19,360th message

latent scaffold
rough sapphire
#

trust me it is not a malware or virus just a simple turtle design program

dire siren
latent scaffold
#

now wait a minute

dire siren
#

why can you see 3 messages that i have sent, but i cant

latent scaffold
#

um

#

ctrl + r \😩

dire siren
#

😩

#

did you add backslash how did you get your emoji look like that

latent scaffold
#

yes

#

baclkgash

odd sluice
#

oh god, what a gash!

latent scaffold
dire siren
latent scaffold
dire siren
#

bruh

#

what channel can it be that you can see and i can't

latent scaffold
#

looks like none

acoustic moss
#

sus

#

are the vc text channels visible if you're not voice verified

#

oh i think they are

#

nvm

latent scaffold
#

yes

#

we just can't speak in voice

dire siren
#

hidden channel that i've seen inb4 and typed 3 messages πŸ‘€

#

probably it's in #voice-verification and discord miscached some stuff

latent scaffold
#

I wouldn't think so

tranquil orchid
#

I think that could be it

latent scaffold
#

what the

#

there's no messages in that channel

tranquil orchid
#

3 messages supposedly in voice verification, although I don't see any

#

so it's just discord being weird

latent scaffold
tranquil orchid
#

πŸ‘€

#

idk what discord is doing

latent scaffold
#

lmao wth

dire siren
latent scaffold
#

um

#

that doesn't make sense

#

it wouldn't have been only 100 message difference

dire siren
#

wait true

#

100 messages is some weird number

#

most likely is the message in #voice-verification got deleted too fast without the client realizing that the message is already deleted?

#

that should be searching from cache not from discord's server rrr..right?

latent scaffold
#

I think obviously conclusion is that Discord is on crack

dire siren
#

lol

tribal aurora
torn grove
harsh tundra
tranquil orchid
#

The bot deletes the messages, so it's just discord doing something weird

harsh tundra
#

Really deletes? I thought it was just not visible because message history

rough sapphire
#

You wouldn't see Joe's message if you didn't have the message history perm

harsh tundra
#

I don't see any messages because I don't see the channel XD and I don't remember if there was anything there

strong reef
#

.topic

median domeBOT
#
**What would you do if you know you could succeed at anything you chose to do?**

Suggest more topics here!

torpid fern
#

I guess I hardly ever empty my recycle bin

ancient cradle
torpid fern
#

I have now gained back 53 gigs of storage

torpid fern
ancient cradle
torpid fern
#

I delete venvs (virtual environments) frequently, and those have a lot of files in them

#

that's where the large file count comes from

torpid fern
#

size has to do with games

#

that I download and then delete 2 days later

#

haha

ancient cradle
#

I don't have games on my pc

#

I have one

#

geometry dash

torpid fern
#

I only use windows because I play and mod games so often

ancient cradle
#

but the framerate drops to like 20 every 5 mins for GEOMETRY DASH

#

this was my brothers pc

#

he got a new one

torpid fern
#

if I didn't do that often, I would absolutely use Linux

#

ubuntu, specifically

#

my PC is a potato as well

ancient cradle
torpid fern
#

linux distribution, its a popular one. kinda like windows, it's an OS (operating system)

ancient cradle
#

but the battery degraded a lot

torpid fern
#

this laptop is meant for office work

#

that's why its so bad

#

I'm getting a new one in 1-3 years

ancient cradle
#

and now if I take it out of charge it loses power so I have to keep it constantly powered so not portable

ancient cradle
#

Mine can run code

#

and I have my brothers ps4

#

so

torpid fern
#

yeah, mine can as well, it just sucks at running games

#

I have a PS5

ancient cradle
#

ooh

torpid fern
#

I just prefer keyboard and mouse to controller

ancient cradle
#

same

#

but my framerate drops to like 10 on minecraft

#

every 30 secs

torpid fern
#

have you tried getting optifine?

ancient cradle
#

it even drops in geometry dash

torpid fern
#

it's pretty nice

ancient cradle
#

yes

#

I have

torpid fern
#

oh, for me, optifine helps a little, but I still have huge lag spikes every few minutes

#

so its not fun

ancient cradle
#

Do you have apex legends? on your ps5

torpid fern
#

no, I don't play any shooters

ancient cradle
#

ah

#

I normally play free games

torpid fern
#

I'm not a fan of shooters. I prefer roguelikes.

#

2D is also my style.

ancient cradle
#

should we dm each other?

torpid fern
#

probably

ancient cradle
#

cuz it is only the 2 of us

torpid fern
#

yea haha

rough sapphire
#

anyone here good at geography i need some help

odd sluice
#

wat

inland wolf
#

geography of?

cosmic python
#

but it's last versions are pretty heavy

#

it was called 21.04 I guess

#

I still use the 20.04 LTS version

torpid fern
#

I have installed Ubuntu before, it didn't run games well though, so I just reverted back to using windows.

inland wolf
#

inb4 proton

cosmic python
#

why you play games

rough sapphire
edgy crest
inland wolf
#

bruh

edgy crest
#

because discord is electron

inland wolf
#

aha

edgy crest
#

aha

cosmic python
#

ifunny jokes

torpid fern
#

cries intensely

cosmic python
cosmic python
inland wolf
#

lol

uneven pine
#

Why do you not like them? Let people have their hobbies

#

Linux is a garbage system for daily desktop use if you're not on really low spec hardware anyway

torpid fern
latent scaffold
#

That's definitely subjective, though

#

The only reason I don't spend most of my time on openSUSE Tumbleweed is because the games I play only work well on Windows

tribal aurora
latent scaffold
low chasm
#

An yes gunshin

low chasm
#

It's perfectly fine to use windows, there's nothing wrong with it

#

And playing games is a big plus of it

low chasm
#

I use it for daily desktop use on a decent system

#

I do dual boot windows for valorant, but the majority of my on time is on linux

cosmic python
cosmic python
cosmic python
torpid fern
#

ok. people have opinions.

cosmic python
torpid fern
#

i'm tired of debating whether playing video games is bad

low chasm
#

There's nothing wrong with it

cosmic python
torpid fern
#

i know it is

#

i don't give a shit

cosmic python
#

when real life friends exists

low chasm
torpid fern
#

i have real life friends

low chasm
#

Take everything you read on social media with a grain of salt

torpid fern
#

yes

#

true

cosmic python
low chasm
low chasm
#

They can do both lol

#

Stay balanced, and your fine

cosmic python
#

which is dangerous

low chasm
#

I play video games, I'm not antisocial

low chasm
cosmic python
#

lol you dont read my messages

#

obvious

#

or you dont have enough english to understand

low chasm
#

Have I struck a point

torpid fern
#

this went from what OS I prefer to something far more than I expected

low chasm
#

Since you aren't answering my question

cosmic python
#

but windows is also nice

worldly current
#

hello everyone

torpid fern
#

hello friend

worldly current
#

how is everything going

torpid fern
#

just great

cosmic python
#

Al Hamdilullah fine

low chasm
#

You do you, play games if you want, there's nothing wrong with it

low chasm
low chasm
worldly current
#

gud, imma do smth rlly quick brb

low chasm
#

I'm not taking your word for it

torpid fern
#

C_ffeeStain has left the chat

low chasm
#

Lmao

#

Well, this conversation won't go anywhere, so I guess I'll dip back to ot0

latent scaffold
#

what're we talking about

low chasm
uneven pine
latent scaffold
cosmic python
cosmic python
low chasm
#

So I won't take your word for it

latent scaffold
#

what on Earth

low chasm
#

Lol

cosmic python
low chasm
#

Mhm

uneven pine
#

Hahahahahaha

last mantle
#

lmao

latent scaffold
low chasm
#

I play games, I have friends who play games, id like to think there's not much wrong with us

cosmic python
low chasm
latent scaffold
#

I refuse to believe people can get addicted to video games, but whatever

cosmic python
latent scaffold
low chasm
cosmic python
last mantle
uneven pine
#

Yeah man lemme just drive across the country to see my friend in another state every single day

latent scaffold
#

the fact your classmates are in class, though

uneven pine
#

It's only a 26 hour drive

cosmic python
cosmic python
latent scaffold
cosmic python
uneven pine
#

So I just abandon my friends I've known for probably longer than you've been alive?

low chasm
uneven pine
#

Yeah no thanks

latent scaffold
#

a video game "addiction" isn't anything like any other kind of addiction

low chasm
#

I have friends who have a computer, are kids, and play games, they aren't addicted

cosmic python
uneven pine
#

Mind you this kids name is literally Islam supremacist.

cosmic python
#

🀣

low chasm
#

Alright, this isn't going anywhere

uneven pine
#

You insulted me to start with. I ain't said a word to you about anything related to this and you call me out for being a furry and LGBT.

latent scaffold
#

that... was the most childish thing you could've said there

low chasm
#

Lmao

latent scaffold
#

lmao

cosmic python
uneven pine
#

And continually calling me an sjw is pretty cringe

cosmic python
uneven pine
#

I'm not though

cosmic python
low chasm
#

What

latent scaffold
#

LMAO

cosmic python
#

anyways I forgot to block lol

low chasm
#

Welp

cosmic python
low chasm
#

You forgot the other colon

latent scaffold
#

you're the punchline, man

cosmic python
#

what colon?

low chasm
#

That one

uneven pine
#

Look kid I'm sorry your parents don't love you

latent scaffold
#

not even going to lie

uneven pine
#

But don't take it out on us

cosmic python
low chasm
#

Great

latent scaffold
#

honestly, I've learned to just laugh at situations like these

#

that or I'm going insane

cosmic python
#

what happened???

#

is there someone talking that I cant see here

low chasm
#

What

cosmic python
#

What

low chasm
#

No one's talking but you

torpid fern
#

this conversation escalated way too far, waiting to see if I should call a mod.

low chasm
#

Perhaps, imma dip

cosmic python
torpid fern
#

good idea

cosmic python
#

anyways I'll continue coding

#

Salam alaikum everyone, have a nice day

torpid fern
#

uh... sure?

cosmic python
#

about what

torpid fern
#

have a decent day, I will actually head out this time

cosmic python
#

πŸ‘‹πŸ˜Š

karmic gust
#

!tempban 881246320923402270 30d Your behavior here is not in-line with our community's code of conduct. You will be removed permanently next time.

royal lakeBOT
#

:incoming_envelope: :ok_hand: applied ban to @cosmic python until <t:1634573262:f> (29 days and 23 hours).

distant hazel
latent scaffold
#

well no, I just mean that it's nothing like a nicotine addiction

distant hazel
#

you'd be surprised, have you done any reading on the studies of addiction?

latent scaffold
#

I concede

distant hazel
#

lolol do look into it, it's a very interesting topic

inland wolf
#

nah it can defintely get addicting

latent scaffold
#

idk, I just thought surely there's a line to draw

inland wolf
#

but just playing video games doesnt automatically mean u get addicted

latent scaffold
#

I just don't know if one can actually be addicted to video games

inland wolf
#

defintely can

#

absolutely can

warm widget
#

Totally can

latent scaffold
#

like... no offense to anyone but I'd think you have to be sort of insane to get that deep in

warm widget
#

Nope

inland wolf
#

exactly

#

not that insane

#

but yes

latent scaffold
#

but like insane enough to the point where I really wouldn't call it addiction

spare lance
latent scaffold
#

idk, it's hard to imagine

twin charm
#

lack of self control is the only thing that makes you addicted.

distant hazel
#

that's pretty demeaning to addicts of all kinds

spare lance
inland wolf
#

nice

spare lance
#

offf i go

#

brrrrrrrr

inland wolf
#

bye!!

warm widget
distant hazel
#

brain chemistry is dynamic and highly affected by things like video games, gambling. not just drugs & alcohol

twin charm
latent scaffold
#

I mean gambling is understandable, though

distant hazel
distant hazel
twin charm
#

"why're you booing me I'm right"

spare lance
#

addiction in simple terms is just getting an urge to do something even when you have other better things to do

latent scaffold
#

I mean the stimulation you get from gambling

spare lance
#

isnt it?

twin charm
#

I can agree that it would be impossible for addicts to admit, yes.

latent scaffold
#

it's easy to see how people get addicted

#

but it's definitely not as easy to get addicted to video gaming

distant hazel
#

πŸ€”

latent scaffold
#

am I crazy?

#

like I don't see how the average joe gets addicted to gaming

#

like surely there's something else

distant hazel
#

not crazy, but you speak with such certainty and authority that I find unfounded

spare lance
latent scaffold
#

._.

twin charm
acoustic moss
#

that joe isnt an average joe... it's a webscale joe

inland wolf
#

nah

distant hazel
distant hazel
inland wolf
#

i think u get addicted when u prefer gaming over everything else

#

and will strive to get that extra game time

twin charm
#

I see I see

latent scaffold
#

I just don't think that a gaming addiction is comparable to more common addictions

distant hazel
#

because...

latent scaffold
#

surely they're on the complete opposite sides of the spectrum

distant hazel
#

what spectrum

twin charm
latent scaffold
#

Surely no random person picks up a controller and is addicted within a couple of days, right?

distant hazel
latent scaffold
#

idk, maybe what I think of as an "addiction" is very wrong

#

but like imaging someone addicted to video gaming is very hard

twin charm
#

the only thing keeping me from being addicted is my homework. When its important enough, and the seriousness of always submitting before the deadline always make me want to spend time on school work (even if its the night before the last date)

inland wolf
#

unless ur a streamer/content creator

distant hazel
#

read up on it, I'm also not an expert so it's not like I can definitively prove you wrong with a thesis and 30 sources. but you're making a lot of assumptions

inland wolf
#

gaming for more than 60% of the day doesnt sound normal

twin charm
#

facebook it

latent scaffold
#

I really don't know if I want to Google this, though

#

I mean I can already sort of guess it's going to be nothing but cringey articles about how damaging gaming is

rough sapphire
#

think this is good enough?

distant hazel
twin charm
#

yea I can guess that the articles from parenting websites would be cringey

latent scaffold
#

I'm not finding anything useful

#

all I get is "it's debatable, but gaming too much can cause harm"

twin charm
#

"gaming too much can cause harm", too vague

twin charm
#

damn

twin charm
distant hazel
#

okay so.. it's a broad topic and I can just dump a bunch of links, the caveat being that it's a lot to parse and there are differing views amongst different bodies & organizations. we shall start with a basic Wikipedia article bc you can always use that as a springboard to other sources

twin charm
#

gib link

latent scaffold
#

I feel like this Wikipedia article would rather it be called a disorder than an addiction

twin charm
#

first look at the wikipedia article then the preconceived notions

latent scaffold
#

I've been reading this article for like the past 12 minutes

distant hazel
#

disclaimer I've not read all of these, as I've looked into this topic many years ago and from a different viewpoint (not video games)

twin charm
#

I like how its mandatory to cite the sources of information on a wikipedia article

latent scaffold
#

I'm not reading anymore

inland wolf
#

hence the reason why ur still skeptical

twin charm
#

like damn when I was in 7th I could agree to a few

latent scaffold
distant hazel
twin charm
#

oof

latent scaffold
#

I don't know, but I feel like "addiction" has just become too broad of a term

distant hazel
#

maybe you're restricting the term to only apply to substance addictions

#

why not rather approach it as "hmm my definition of addiction has been very narrow and maybe the scope and study of addiction is much wider than I previously thought"?

latent scaffold
#

I don't like the idea of much of anything being broad

#

I don't want to say something that holds varying implications

distant hazel
#

behavioral addictions still manifest in altered brain chemistry and still have dire consequences, to dismiss it as something not real or not severe is like a smack in the face to people that struggle with them

latent scaffold
#

that's not what I'm saying, though

#

I just mean the classification of "addiction" seems weird

distant hazel
#

"I refuse to believe people can get addicted to video games, but whatever" implies such an addiction doesn't exist

latent scaffold
#

because classifying it as an addiction carries different implications for me

#

It feels like it's so rare for a gamer to get addicted that I feel like the root of the problem probably wasn't video games

clear moss
#

I feel here you are unnesacarily harsh

distant hazel
#

ah well to say alcohol addiction exists, then to conclude that alcohol is the root of such addictions.. is also not correct

#

it sounds like by acknowledging a certain addiction can exist you think you must blame the actual "thing"? no.. I don't think so.

#

that being said, the ethics of video game design given the potential profitization of behavioral addiction is another great, interesting topic!

distant hazel
#

@latent scaffold anyway, i think i get where you are coming from now. to be clear i don't think video games are inherently bad, evil, or addictive. i bet for the majority of people they are an enhancement to their life, and not a detriment

uneven pine
#

I wouldn't be alive without them so

rough sapphire
#

The function passed into it runs after the page has fully loaded

#

function() {} creates an unnamed function

#

The function here doesn't really need to be named since it's just going to be passed into the $() anyway

#

It just creates a function that contains the code to be ran

#

A function is needed since you can't really "store" multiple lines of code without it and using $(function) makes it so that that function that is inside gets ran when the page fully loads

#

I don't think there will be a difference if you name that function, other than that you can just refer to the function again by name if it's named

#

But I don't think there is a need to refer again here

fluid prairie
#

since the person in modmail said it was fine as long as i legally own the game, I have taken a screenshot directly from my 2DS

#

And yes, I am studying ζ—₯本θͺž

worldly current
#

​Say β€β€β€Œβ’β€β€β’β€β‘β€Œβ€β‘β€Œβ€β£β’β£β’β’β’β£β’β‘β€Œβ€β‘β€Œβ€β€Œβ’β‘β’β‘β’β’β’β‘β€β€β€Œβ‘β’β’β€Œβ’β‘β€β€β€β€β’β‘β’β€Œβ€β’β€β’β’β£β€Œβ’β€Œβ‘β€Œβ’β‘β€β£β€β€Œβ€β‘β’β€β’β€β‘β€β€β‘β€β€Œβ’β€Œβ€β£β€Œβ€β€β€Œβ’β€Œβ’β’β‘β’β€Œβ‘β’β€β’β€Œβ€β‘β€β’β£β€β‘β€β‘β€β€Œβ’β’β’β’β’β€Œβ‘β€β‘β’β‘β’β£β’β‘β€Œβ€Rat

dire siren
#

Tar

floral apex
glossy mural
#

anonymous function

#

by the look of it, it's a callback function

solemn leaf
#

nostlagi c

rough sapphire
#

s

#

a

floral apex
#

Stack Underflow Undo Redo

inland wolf
#

yo

#

what the hell is wrong with discord web

#

it takes so much time to load

latent scaffold
#

what the hell is wrong with discord web

inland wolf
#

no like

#

their website

#

takes so long to load their fonts

#

and just takes so long in general

#

and by so long i mean at least a minute

latent scaffold
#

idk what you're talking about tbh

uneven pine
#

You've got an issue in your connection chain somewhere

#

Or you're using Firefox

#

One of the two

inland wolf
#

not firefox

#

the thing is

#

only discord responds this slowly

odd sluice
#

i use firefox and stuff's fine

latent scaffold
#

tbh I've had some very weird issues with our ISP

cobalt flame
latent scaffold
#

Some websites work sometimes, some don't

uneven pine
#

Firefox has a long history of being unusably slow for me

latent scaffold
#

Like maybe all Google wbeistes will load, but Discord will be a no go

#

I can't spell

uneven pine
#

Like I have an insane system and symmetric gigabit fiber internet, and it takes into the seconds to load simple pages

odd sluice
#

rich

cobalt flame
#

I know my internet is good

uneven pine
#

Vs milliseconds on something chromium based

#

I'm far from rich

#

It's taken me years to get an the PC parts I have, working my ass off the whole time

cobalt flame
#

Your PC is worth more than my MtG collection and that's my most valuable possession lol

latent scaffold
#

mtg

uneven pine
#

Currently I'm working 6 day weeks lol

latent scaffold
#

is this another drug

cobalt flame
#

Magic: the Gathering

latent scaffold
#

as I suspected

cobalt flame
#

Best fucking game ever

latent scaffold
#

well

uneven pine
#

And the gigabit internet is actually cheaper than slow cable

latent scaffold
#

$70 for "20" Mbps here

uneven pine
#

250/50 cable is $85/month
1000/1000 fiber is $70

latent scaffold
#

can you even believe that

uneven pine
#

I can

latent scaffold
#

and that's the most we can get

#

no better plans from any ISP here

uneven pine
#

I used to live in a rural area where "3" mbit dsl was that much

#

And you rarely got even 1 mbit

latent scaffold
#

yeah, our last ISP was 5 Mbps for the same price

cobalt flame
#

I live in the nicer section of MKE

#

So things are nice

latent scaffold
#

but it wasn't DSL, it was LTE

uneven pine
#

Mke?

cobalt flame
#

Milwaukee

uneven pine
#

An

#

Ahh

#

I'm in KCMO

cobalt flame
#

Nice

latent scaffold
#

People and their acronyms

uneven pine
#

Kansas city Missouri

cobalt flame
#

I know

uneven pine
#

That was for phy

cobalt flame
#

Ah

uneven pine
#

Okay I'm actually going back to bed now

cobalt flame
#

Okie goodnight

latent scaffold
cobalt flame
#

I should probably head to bed as well, tbh

uneven pine
#

Then why you ping me

#

Make doggo brain look at phone

#

Pretty lights

latent scaffold
#

in my defense, that was like... 10 seconds after you sent that

uneven pine
#

WOOF

latent scaffold
#

bless you

cobalt flame
latent scaffold
#

oh no.

uneven pine
#

No

cobalt flame
#

No?

uneven pine
cobalt flame
#

@-@

uneven pine
#

Imma turn my phone off

#

Forget my alarm I'll be late for work lmao

latent scaffold
#

sound the alarms

uneven pine
#

99 red balloons

cobalt flame
#

Floating in the summer sky

latent scaffold
#

not again

cobalt flame
#

Hey! She started it!

latent scaffold
cobalt flame
#

Yes

#

She started the song

#

I continued said song

latent scaffold
#

so... you started it

cobalt flame
#

No

latent scaffold
#

yes

cobalt flame
#

She started the song

latent scaffold
#

wasn't a problem until you made it one

cobalt flame
#

I exist solely as a problem.

latent scaffold
#

I know

cobalt flame
#

You like just met me lol

uneven pine
#

No that's me

cobalt flame
#

Bed, eh?

latent scaffold
cobalt flame
#

Fair Enoughℒ️

latent scaffold
#

oh shit. 4:04, time not found

#

worst decision of your life

#

anyways

cobalt flame
#

Also what part of this convo had anything to do with that lol

uneven pine
cobalt flame
latent scaffold
uneven pine
#

I'm shitposting in my sleep

latent scaffold
#

oh fr

cobalt flame
#

XD

rough sapphire
#

hi

latent scaffold
#

@rough sapphire You can't expect any of us to know anything about roblox

uneven pine
#

Yeah you have to be 13+ to use discord

#

So most of us are out of the Roblox phase

#

:^}

cobalt flame
#

I never play it

latent scaffold
#

mr unpingable name, you have some explaining to do

cobalt flame
#

Who, me?

latent scaffold
#

yes

cobalt flame
#

:3

latent scaffold
#

explain

odd sluice
latent scaffold
#

yeah and like 3 months ago, you were practically 12

odd sluice
#

no, im turning 14 in 3 months

#

-_-

latent scaffold
#

and

cobalt flame
#

Dude lol wut

#

I'm turning 18 in 3 months

rough sapphire
tardy rain
#

Smh you kids

latent scaffold
cobalt flame
#

Treat me with respect

latent scaffold
#

why

cobalt flame
#

I dunno. Just do it.

latent scaffold
#

do you deserve my respect tho

odd sluice
cobalt flame
latent scaffold
#

Ohhh that's mariosis

#

I thought that was beacon

#

hi mariosis

rough sapphire
cobalt flame
tardy rain
#

Hello

latent scaffold
cobalt flame
latent scaffold
cobalt flame
rough sapphire
odd sluice
latent scaffold
#

excuse me

cobalt flame
#

XD AHAHAH

latent scaffold
#

My words are beyond me

#

mouse

cobalt flame
#

I knew you couldn't English

latent scaffold
rough sapphire
cobalt flame
latent scaffold
#

everyone is bullying me today

#

tonight? tomorning?

#

why what

rough sapphire
latent scaffold
#

yes you did

cobalt flame
#

It's friendly bullying lol

latent scaffold
#

oh yeah

#

that's what my ex said

rough sapphire
odd sluice
#

git commit cry

latent scaffold
#

sniffle

rough sapphire
#

Yeah I wanna commit die

cobalt flame
#

Did this guy just...

latent scaffold
#

How about that weather

cobalt flame
#

It's dark

latent scaffold
#

I forget that's not how that works

latent scaffold
#

Like ME 🀌

cobalt flame
latent scaffold
#

fuck

dire siren
#

fuck
yes

rough sapphire
#

btw

#

anyone else likes to be alone?

cobalt flame
latent scaffold
#

Yes

#

I would

cobalt flame
#

I'm a dick. Sorry.

rough sapphire
rough sapphire
cobalt flame
#

Cursing is allowed here, mate

inland wolf
#

true

rough sapphire
#

I dont like cursing that much

inland wolf
#

then dont curse

rough sapphire
inland wolf
#

yes

odd sluice
cobalt flame
#

This is the internet, mate. People are gonna do shit that you don't like. ;)

inland wolf
#

^

cobalt flame
#

But I can tone it down

rough sapphire
#

is anyone good in python here?

odd sluice
#

didn't know when you became part of the conversation.
this sentence is quite annoying
i have a comeback for this well now you know!

odd sluice
#

of course

rough sapphire
odd sluice
#

just ask

rough sapphire
#

I wanted to learn more about recursion

odd sluice
#

recursion is when a function executes itself

cobalt flame
#

But what about our not-so-python-related conversations?

#

;-;

rough sapphire
latent scaffold
odd sluice
cobalt flame
#

lmao

rough sapphire
odd sluice
#

technically a recursion

#

but an infinite one

rough sapphire
#

oh

cobalt flame
#

Bro that would break my computer lol

odd sluice
#

so we implement checks

rough sapphire
#

infinite loop?

odd sluice
#

to stop it when needed

odd sluice
rough sapphire
#

I get it

#

more like a nested loop

#

bruh anyone there?

cobalt flame
#

But have any of you eaten at a Culver's?

rough sapphire
cobalt flame
rough sapphire
odd sluice
#

yes

rough sapphire
#

thanks bro

odd sluice
#

wtf

#

did u say

#

@cobalt flame

rough sapphire
#

I cursed

#

sorrry

cobalt flame
#

?

#

What?

#

Why ping?

odd sluice
#

dont pretend -_-

cobalt flame
#

Pretend what?

#

I dunno what you're talking about, man.

odd sluice
#

ok

#

mods can check deleted messages you know

cobalt flame
#

And? Β―_(ツ)_/Β―

rough sapphire
#

and sorry I am cursing

#

anyone there?

#

I saw that you know

cobalt flame
#

crickets chirp

bitter jungle
#

hi

#

how to search an entire workbook in excel using python openpyxl

strong reef
#

.topic

median domeBOT
#
**Who is your favorite Writer?**

Suggest more topics here!

strong reef
#

Myself

odd sluice
#

who ghost pinged

topaz verge
#

was me but i read it wrong

#

sorry

#

It was about your "while loop"

odd sluice
#

okay

topaz verge
#

Wait is there a way to log exceptions?
ex:

try:
    print(this_is_undefined)
except Exception:
    send_webhook_message(Exception) # Log the exception to my discord server
#

nvm its as (object)

odd sluice
#

yes

#

as e:
send_message(str(e))

uneven pine
#

Bro I just got back from a delivery and noticed that the second driver who's been here only like an hour wasn't clocked in anymore.
Now I should preface they this guy is known for being kinda...off.

I asked what happened and the manager told me...

He left work in the middle of his shift.
To go shave.

wild yarrow
#

o.O

opal atlas
#

How much lines to build a discord bot, but elegant

rugged echo
uneven pine
opal atlas
#

I mean, the abstraction of the location of the 20

uneven pine
#

The observation of the environment of which the location is obligated to be arranged in such a way that the perceived desirability of the code in question is higher than not is absolutely a subjective matter in general. Without concrete understanding of the scope and domain in question it would be impossible and vacuous to attempt providing an estimation for such a metric.

#

@opal atlas ^^

opal atlas
#

,<3

gritty zinc
#
<p t="17067" d="2569" wp="2" ws="1"><s p="2">​</s><s>​</s><s p="3">​some stuff​</s><s p="2">​
​</s><s p="3">​ some other stuff ​</s><s p="2">​</s></p>

Does anyone recognize what this subtitle format is?

#

it kinda looks like TTML, but I'm not sure if it's valid (t instead of time and d instead of duration - if I even guess correctly what each tag means)