#ot1-perplexing-regexing
1 messages Β· Page 602 of 1
lol
but TBH, I'd force my dad to go π
is it like a fishing competition?
no, if you win the sweepstakes you get to fish with some celebrity
i wonder how many other people entered into the contest
IKR π
I feel like it's pretty low tbh
true
not everyone is a fisher
well
its pretty weird it was on food packaging tho
lemme take a photo, food companies have things like this sometimes
weird sponsorships
IKR, this one is weird
@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
huh
Woah i just realised, the lines in github are not just ordinary random lines
daaamn
are u sure about that
idk tbh xd
dude the github website is probably the most CLEANEST website ever
like actually the devs know their STUFF
lol
haha
everything and nothing
!ot
Off-topic channels
There are three off-topic channels:
β’ #ot0-psvmβs-eternal-disapproval
β’ #ot1-perplexing-regexing
β’ #ot2-never-nesterβs-nightmare
Their names change randomly every 24 hours, but you can always find them under the OFF-TOPIC/GENERAL category in the channel list.
Please read our off-topic etiquette before participating in conversations.
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
food
lol
@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
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)
oh, Parameter is from inspect
what is Mapping?
This is inspect as well though
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}'.")
Basically a dictionary from my POV, I just use that typing to comply with inspect.signature's return value
Something that supports [key]. It doesn't have to have all dict methods
weird
Not really?
what else
Because now I can make a custom dict that also supports that, but I don't need to provide all methods that dict has
I basically just get the type annotations of every parameter and attempt to convert a string to it
other than dict methods
that's what i wanna do
welp you can use some third party modules \π€
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
i want to do pure python
so far so pure
What do you mean?
I'm only using rich
im going to use ansi escape codes to emulate you
unsavory ngl
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
This also means I could end up doing dynamic "syntax usage" stuff too, as well
im this far so far.... how da fuk do i get the casting functions
the values of the annotations are the classes
wait really
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
annotations = list(function.__annotations__.values())
should work?
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]
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)
i have a very high temptation to copy paste this
lmao
halp
I just cheesed my way handling Optional
oh nice, does it work for generics like List?
uhh
uh oh
idk what that means tbh but
Input Β» list foo bar
['f', 'o', 'o']
['b', 'a', 'r']
@cmdl.register(name="list", description="Convert strings to list.")
def list_command(*args: list):
console.print(*args)
I mean can it convert to List[int]?
oh, that wouldn't make much sense in this context
that'd really just be *args: int
yeah no, list[int] wouldn't work
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
@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
he got it yesterday or so
Gonna dive into Elixir tonight
Question is i7 good?
what exact numbers
the i7 series do tend to be good CPUs, but it does matter what exact numbers you have behind the i7
it matters for small decreases in power consumptions
when you go to off-topic and did not mean it π
an i7-920 is gonna be a bit slower than an i7-11700K though π
ive got an i7-2600 and it runs pre good but its def showing its age
and boost clocks arent great
whoa cool the badges look good
]
why is my wpm dropping ._.
hello everyone
because ur pecking the keys
yes I'm 9% done transferring a 2 byte file
for like
2 minutes
why must it be this way
If you are buying an i7 and you are not in a hurry
Consider buying 12th gen i7 releasing soon
^
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.
How's one phish with a Discord bot?
does the bot destroy the server
ohhh, I see
The bot likely doesn't even exist
oh tru
https://www.unicode.org/charts/PDF/U1FB00.pdf Funky Unicode characters
: )
alright
seems better than the last one
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
Could you clarify what you mean by this
because it sounds like you're wanting to do something like bash -c python3 -c 'print("Hello, world!")'
can anyone please help me in #help-carrot
I'm trying to start a new terminal on linux, like the start command in windows, through another terminal
What's the command?
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
i believe mine is gnome terminal
I don't know what the command for it is
But i can't figure out a way to avoid it closing on launch
its gnome-terminal
So i'm just using a working directory param and the command itself ```
gnome-terminal --working-directory=$pwd -- "/usr/bin/python3 ./abc.py"
uh give me a moment
alright
shouldn't you be using -e /usr/binpython3 abc.py
-e has been deprecated apparently
huh?
-- to terminate options
# Use β-- β to terminate the options and put the command line to execute after it.
okay, yeah I know nothing of how gnome-terminal works
alright
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
Yeah
okay ill find out other options
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
is gnome terminal a linux thing
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
ah, i can't set stuff like those in wsl wright?
With WSLg you can, as you see in my screenshot
c00l
but that means you need to be on Windows 11 through Windows Insiders
not c00l
the gnome terminal is one of the less disturbing things in that image
Excuse me
excused
lol
Do you have something against Lady Gwa Gwa
yes
yes
excuse me
excused
it also says 2:09 am
oops
slep
certainly
um i have a question, tf why everyone got lenovo vantage on their pc
ew
which thing are you ewing on
you uninstalled right away, right? :)
yes
yeah, but i've just reset my pc a while ago, it respawned
._.
meet me outside real quick
send address, i'll meet you there. if you wanna meet at my place here: 127.0.0.1
sure
that's my place
no that's my place
I'd like to give you a real good close-up look of my fist
ill examine it
your fist
but i might need a macro lens
unconsciously, yes
the findings will be recorded across your face
that would be convenient
for who
for me
for me
yeah me too
i was merely talking abt the diffrent ways one can examine ur fists
can anyone run my first code?
no
why not run it yourself
i wrote the first code in my life
time to say hello to some worlds
i want to get a feedback from others
this is my first 19,360th message
trust me it is not a malware or virus just a simple turtle design program
weird
now wait a minute
why can you see 3 messages that i have sent, but i cant
oh god, what a gash!
I'm suing
um what, the result is still not matching
looks like none
sus
are the vc text channels visible if you're not voice verified
oh i think they are
nvm
hidden channel that i've seen inb4 and typed 3 messages π
probably it's in #voice-verification and discord miscached some stuff
I wouldn't think so
3 messages supposedly in voice verification, although I don't see any
so it's just discord being weird
maybe jack joined earlier so he saw more messages on the channel?
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?
I think obviously conclusion is that Discord is on crack
lol
lol
anyone can help me in #βhelp-coffee
No message history permissions?
The bot deletes the messages, so it's just discord doing something weird
Really deletes? I thought it was just not visible because message history
You wouldn't see Joe's message if you didn't have the message history perm
I don't see any messages because I don't see the channel XD and I don't remember if there was anything there
.topic
Suggest more topics here!
I guess I hardly ever empty my recycle bin
how
I have now gained back 53 gigs of storage
I really don't know
like 56,000 items
I delete venvs (virtual environments) frequently, and those have a lot of files in them
that's where the large file count comes from
oh
I only use windows because I play and mod games so often
but the framerate drops to like 20 every 5 mins for GEOMETRY DASH
this was my brothers pc
he got a new one
if I didn't do that often, I would absolutely use Linux
ubuntu, specifically
my PC is a potato as well
?
linux distribution, its a popular one. kinda like windows, it's an OS (operating system)
thing is when my brother got it it was pretty expensive(5K A.E.D.)
but the battery degraded a lot
this laptop is meant for office work
that's why its so bad
I'm getting a new one in 1-3 years
and now if I take it out of charge it loses power so I have to keep it constantly powered so not portable
same
Mine can run code
and I have my brothers ps4
so
ooh
I just prefer keyboard and mouse to controller
have you tried getting optifine?
it even drops in geometry dash
it's pretty nice
oh, for me, optifine helps a little, but I still have huge lag spikes every few minutes
so its not fun
Do you have apex legends? on your ps5
no, I don't play any shooters
should we dm each other?
probably
cuz it is only the 2 of us
yea haha
anyone here good at geography i need some help
wat
geography of?
ubuntu is neat
but it's last versions are pretty heavy
it was called 21.04 I guess
I still use the 20.04 LTS version
I have installed Ubuntu before, it didn't run games well though, so I just reverted back to using windows.
then dont play games
inb4 proton
why you play games
food webs
proton is already here
bruh
because discord is electron
aha
aha
ifunny jokes
why do you like them?
you dont have to tell you are crying here
lol
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
because they are fun to me. it's an opinion.
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
c'mon, the only game u play is gunshin
only Windows game
An yes gunshin
What
It's perfectly fine to use windows, there's nothing wrong with it
And playing games is a big plus of it
I wouldnt say that
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
did I say there is anything wrong with using windows?
wont take you serious because of your pfp and about me lol
you can go out and play street games with your friends or hangout with friends
ok. people have opinions.
It's fine to play video games
well, "you can go out and play street games with your friends or hangout with friends" is way more healthy
i'm tired of debating whether playing video games is bad
There's nothing wrong with it
you dont have to debate lol, it's just bad
when real life friends exists
Reasons?
i have real life friends
Take everything you read on social media with a grain of salt
its better if you play with them outside brother
Playing video games doesn't automatically make you exempt from having friends, you can balance both
Who says they don't
They can do both lol
Stay balanced, and your fine
it can lead to anti sociality
which is dangerous
I play video games, I'm not antisocial
And where's your source? I know plenty of people who game, and aren't antisocial
do you even read my messages?
lol you dont read my messages
obvious
or you dont have enough english to understand
Have I struck a point
this went from what OS I prefer to something far more than I expected
Since you aren't answering my question
I personally use linux
but windows is also nice
hello everyone
hello friend
how is everything going
just great
Al Hamdilullah fine
You do you, play games if you want, there's nothing wrong with it
Good
there are
Again, you haven't given me any sources
gud, imma do smth rlly quick brb
I'm not taking your word for it
C_ffeeStain has left the chat
what're we talking about
Apparently video games are inherintly bad
Very reasonable of you. Must be nice being a hateful bigot
._.
I dont talk without knowledge, I dont have to post you billions of pdfs here. not trusting people is a problem lol
"bigot" π€£ average sjw
Seems like you don't have a source
So I won't take your word for it
what on Earth
Lol
yes I look at people and act instead of some dumb fake scientist pdfs
Mhm
Hahahahahaha
lmao
How about I combat you with the tons of sources I have about how games play a positive role in the lives of people... that I just choose not to show you, because I don't want to
I play games, I have friends who play games, id like to think there's not much wrong with us
"positive role in the lives of people" yes lol something possibly addiction
Getting addicted and casually playing are two different things
I refuse to believe people can get addicted to video games, but whatever
oh they can
but its BETTER if you play with them outside instead of online
I've not met anyone like that
Who says I don't play outside
did I say you dont?
i have classmates like that
Yeah man lemme just drive across the country to see my friend in another state every single day
the fact your classmates are in class, though
It's only a 26 hour drive
if you put a computer in front of a kid and let him play online games you'll see how he'll be addicted
covid
get local neighbour friends?
um... that's not how that works, though
thats just how it works
lol
So I just abandon my friends I've known for probably longer than you've been alive?
I have a computer, I'm a kid, I play games, I'm not addicted
Yeah no thanks
a video game "addiction" isn't anything like any other kind of addiction
I have friends who have a computer, are kids, and play games, they aren't addicted
you dont have to abandon them? also whats the point of insulting? why you sjw people always like this? only two words "nazi" and "bigot" and only two acts, "insulting" and "screaming". I'll just block you I better chat with people that doesnt insult
Mind you this kids name is literally Islam supremacist.
lol you dont know what hanafi is
π€£
Alright, this isn't going anywhere
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.
that... was the most childish thing you could've said there
Lmao
lmao
tell their parents to dont let them play online games if they are under 7-8 age. even learning programming at that age is better
what is it
And continually calling me an sjw is pretty cringe
What
you are literally a sjw
I'm not though
ok sjw
What
LMAO
anyways I forgot to block lol
Welp
:what
You forgot the other colon
you're the punchline, man
what colon?
That one
Look kid I'm sorry your parents don't love you
not even going to lie
But don't take it out on us
Al Hamdilullah I have good relations with my parents
Great
honestly, I've learned to just laugh at situations like these
that or I'm going insane
What
What
No one's talking but you
this conversation escalated way too far, waiting to see if I should call a mod.
Perhaps, imma dip
ohk
good idea
thats just a normal talk lol why mods
anyways I'll continue coding
Salam alaikum everyone, have a nice day
uh... sure?
about what
have a decent day, I will actually head out this time
ππ
!tempban 881246320923402270 30d Your behavior here is not in-line with our community's code of conduct. You will be removed permanently next time.
:incoming_envelope: :ok_hand: applied ban to @cosmic python until <t:1634573262:f> (29 days and 23 hours).
what do you then consider to be valid and real addictions then?
because you've not met video game addicts they don't exist?
well no, I just mean that it's nothing like a nicotine addiction
you'd be surprised, have you done any reading on the studies of addiction?
I concede
lolol do look into it, it's a very interesting topic
nah it can defintely get addicting
idk, I just thought surely there's a line to draw
but just playing video games doesnt automatically mean u get addicted
I just don't know if one can actually be addicted to video games
Totally can
like... no offense to anyone but I'd think you have to be sort of insane to get that deep in
Nope
can agree
but like insane enough to the point where I really wouldn't call it addiction
i lowkey have an addiction of social media.. and seems like u kinda do too π
idk, it's hard to imagine
lack of self control is the only thing that makes you addicted.
that's pretty demeaning to addicts of all kinds
dont get addicted ez
ah yes it works.. i am no longer an addict
buy bye mate
nice
bye!!
brain chemistry is dynamic and highly affected by things like video games, gambling. not just drugs & alcohol
to which message were you replying?
I mean gambling is understandable, though
not yours originally but my reply applies to you too
why?
"why're you booing me I'm right"
addiction in simple terms is just getting an urge to do something even when you have other better things to do
I mean the stimulation you get from gambling
isnt it?
I can agree that it would be impossible for addicts to admit, yes.
it's easy to see how people get addicted
but it's definitely not as easy to get addicted to video gaming
π€
am I crazy?
like I don't see how the average joe gets addicted to gaming
like surely there's something else
not crazy, but you speak with such certainty and authority that I find unfounded
@joe#6000 care to explain how u get addicted to gaming?
._.
what's your idea of addiction? 4+ hours of gameplay per day?
that joe isnt an average joe... it's a webscale joe
nah
,lol!
your world view is so different from mine. I hope you or your loved ones never suffer from addiction
hahahha
I hope for that too π
it's not about # of hours of game play
i think u get addicted when u prefer gaming over everything else
and will strive to get that extra game time
I see I see
I just don't think that a gaming addiction is comparable to more common addictions
because...
surely they're on the complete opposite sides of the spectrum
tell me about your view
what spectrum
aaah that makes a lot of sense
Surely no random person picks up a controller and is addicted within a couple of days, right?
ok so you are comparing I guess how quickly an addiction can form?
idk, maybe what I think of as an "addiction" is very wrong
but like imaging someone addicted to video gaming is very hard
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)
unless ur a streamer/content creator
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
gaming for more than 60% of the day doesnt sound normal
true
why dont u just google it 
facebook it
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
think this is good enough?
omg. so many preconceived notions that you're just gonna refuse to do some reading. this is an academic topic so look for academic sources
is it cringey because you have a hard time believing that its true? or are you talking about the exaggeration
yea I can guess that the articles from parenting websites would be cringey
I'm not finding anything useful
all I get is "it's debatable, but gaming too much can cause harm"
"gaming too much can cause harm", too vague
as does all things
damn
hello?
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
gib link
I feel like this Wikipedia article would rather it be called a disorder than an addiction
first look at the wikipedia article then the preconceived notions
I've been reading this article for like the past 12 minutes
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)
I like how its mandatory to cite the sources of information on a wikipedia article
I'm not reading anymore
hence the reason why ur still skeptical
I'm at the first one and the lines after this
The APA has developed nine criteria for characterising the proposed Internet Gaming Disorder:[9]
they're really really good
like damn when I was in 7th I could agree to a few
Apparently I'm not the only one if the very concept is still debated
I think addictions classify as disorders.
oof
I don't know, but I feel like "addiction" has just become too broad of a term
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"?
I don't like the idea of much of anything being broad
I don't want to say something that holds varying implications
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
that's not what I'm saying, though
I just mean the classification of "addiction" seems weird
"I refuse to believe people can get addicted to video games, but whatever" implies such an addiction doesn't exist
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
Or perhaps a more reasonable analysis would be them equating addiction with only physical addiction
I feel here you are unnesacarily harsh
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!
@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
I wouldn't be alive without them so
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
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 ζ₯ζ¬θͺ
βSay ββββ’βββ’β€β‘βββ‘βββ£β’β£β’β’β’β£β’β‘ββ€β‘ββββ’β‘β’β‘β’β’β’β‘ββ€ββ‘β’β’ββ’β‘ββ€β€ββ’β‘β’βββ’ββ’β’β£ββ’ββ‘ββ’β‘ββ£βββ€β‘β’ββ’ββ‘βββ‘βββ’βββ£βββββ’ββ’β’β‘β’ββ‘β’ββ’βββ‘ββ’β£β€β‘ββ‘βββ’β’β’β’β’ββ‘ββ‘β’β‘β’β£β’β‘ββRat
Tar
tar.gz
Stack Underflow Undo Redo
what the hell is wrong with discord web
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
idk what you're talking about tbh
You've got an issue in your connection chain somewhere
Or you're using Firefox
One of the two
tbh I've had some very weird issues with our ISP
Heheh funny furry browser
Some websites work sometimes, some don't
Firefox has a long history of being unusably slow for me
Like maybe all Google wbeistes will load, but Discord will be a no go
I can't spell
Like I have an insane system and symmetric gigabit fiber internet, and it takes into the seconds to load simple pages
rich
I know my internet is good
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
Your PC is worth more than my MtG collection and that's my most valuable possession lol
mtg
Currently I'm working 6 day weeks lol
is this another drug
Magic: the Gathering
as I suspected
Best fucking game ever
well
And the gigabit internet is actually cheaper than slow cable
$70 for "20" Mbps here
250/50 cable is $85/month
1000/1000 fiber is $70
can you even believe that
I can
I used to live in a rural area where "3" mbit dsl was that much
And you rarely got even 1 mbit
yeah, our last ISP was 5 Mbps for the same price
but it wasn't DSL, it was LTE
Mke?
Milwaukee
Nice
People and their acronyms
Kansas city Missouri
I know
That was for phy
Ah
Okay I'm actually going back to bed now
Okie goodnight
Holding you to this one
I should probably head to bed as well, tbh
in my defense, that was like... 10 seconds after you sent that
WOOF
bless you
RAWR
oh no.
No
No?
bap
@-@
sound the alarms
99 red balloons
Floating in the summer sky
not again
Hey! She started it!
Did she tho
so... you started it
No
yes
She started the song
wasn't a problem until you made it one
I exist solely as a problem.
I know
You like just met me lol
No that's me
Bed, eh?
and? :)
Fair Enoughβ’οΈ
Agreed
Also what part of this convo had anything to do with that lol
I thought you were going to bed
you made the mistake of pinging ποΈ
I'm shitposting in my sleep
oh fr
XD
hi
@rough sapphire You can't expect any of us to know anything about roblox
Yeah you have to be 13+ to use discord
So most of us are out of the Roblox phase
:^}
I never play it
mr unpingable name, you have some explaining to do
Who, me?
yes
:3
explain
not me!
...havent played in 3 months though
yeah and like 3 months ago, you were practically 12
and
Well I was really 12, 3 months ago
Smh you kids
me too. except 6 months
why
I dunno. Just do it.
do you deserve my respect tho
boomer xd
Thank you sir. You just gave respect to a gay furry.
I dont mind even if it is an alien
You. I like you.
Hello
he's practically an alien
Please censor your heresy
I could go for a Hershey's
:3
aren't you practically a mongoose?
is ur pfp a mouse
excuse me
XD AHAHAH
I knew you couldn't English
it's 4 AM, what do you expect
thats why you shouldn't speak much
Better
ahh sorry I didnt mean to bully you
yes you did
It's friendly bullying lol
I am really sorry
git commit cry
sniffle
Yeah I wanna commit die
Did this guy just...
It's dark
I forget that's not how that works
Like me
fuck
fuck
yes
Imagine being alone. You would know about that, right Phy?
I'm a dick. Sorry.
I am always alone too
sir can you please be family-friendly?
Cursing is allowed here, mate
true
ik but ahh
I dont like cursing that much
then dont curse
i dont curse 'usually'
yes
curse u m8
This is the internet, mate. People are gonna do shit that you don't like. ;)
^
But I can tone it down
didn't know when you became part of the conversation.
this sentence is quite annoying
i have a comeback for thiswell now you know!
you are good at it?
just ask
I wanted to learn more about recursion
recursion is when a function executes itself
sorry bout that
that sounds quite grim
lmao
lmao
does that mean ends itself?
def e():
e()
technically a recursion
but an infinite one
oh
Bro that would break my computer lol
so we implement checks
infinite loop?
to stop it when needed
it would be...
ok
I get it
more like a nested loop
bruh anyone there?
But have any of you eaten at a Culver's?
what is that?
:|
def factorial(x):
if x == 1:
return 1
else:
return (x * factorial(x-1))
num = 3
print("The factorial of", num, "is", factorial(num))
yes
thanks bro
dont pretend -_-
And? Β―_(γ)_/Β―
bruh please dont do that shit here
and sorry I am cursing
anyone there?
I saw that you know
crickets chirp
hi
how to search an entire workbook in excel using python openpyxl
.topic
Myself
who ghost pinged
okay
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)
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.
o.O
How much lines to build a discord bot, but elegant
according to #esoteric-python, one line is the most elegant form possible ||\s||
Anywhere from 20 to 200,000, that's an unanswerably vague question
it's seems precisely for me
I mean, the abstraction of the location of the 20
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 ^^
,<3
<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)
