#ot1-perplexing-regexing
1 messages · Page 445 of 1
I'd rather be tracked by naver than google
bruh
well i dont have a wife yet :((
All i can say is: good luck finding one
i already have a gf
lmao, i am a woman 😂
nah
the one who will suck you dry
@mild abyss but men can do this lmao
suck your pockets dry
lul there are lots of guys here who are looking gf i reckon
SexPistol is looking for one
no im not
🤔
im in love with my guitar
I was sure you were nvm :((
WOW. 1594 pages.
WOW. 1594 pages.
@worn dust that is a lot to take in
IKR. though i do know my fair share of python already
might learn something new, who knows
yeah like (34).__hash__()
comment ur code @rough sapphire
instead of hash(34)
Wtf happened above here lol
Are there rules here about inappropriate jokes?
||because I finger my guitar every day||
probably, i wasen't the one to mention it though was i?
Wait lemme read the rules then maybe delete that
||because I finger my guitar every day||
@eternal wing uhm i do fingerstyle so yeah i get the inside joke sometimes
My guitar is the only one who understands me :,(
he knows I'm shit at guitar
I try to keep it PG-13 usually
I think that was pg-13? Open to critique
So it's your guitar that gently weeps
hmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm sorry i dont have any idea
I was gonna make a joke about that, but couldn't think if anything.
Nice one haha
:>
let me join ur guild @rough sapphire as a doc writer
I TOLD YOU I NEED A DOC WRITER
You don't wanna be a dirty-dragonfly xD
I can offer you upwards of $1
I mean, you might be joking, but I genuinely need docs
And am too lazy to make them myself
I scared em away :,(
what are the qualifications to become a doc writer?
PhDoc
:<
Full of puns today aren't you xD
:>
does having experience writing research papers considered to be as qualified? or nah
I think most things count as qualification
You're hired, if that's what you're asking
Is that against the rules if I am being at ~50% sarcastic?
lol :<
ooooooooooooh uhm lemme think @upper sand he wants to hire you
PhDoc
haha
Its ok, I just burned that bridge in ot2
@mild abyss saying stuff similar to and including "the one who will suck you dry" isn't very appropriate. Please refrain from using these phrases.
yes sir Xithrius
ty
@eternal wing @mild abyss not his personal doc writer... only for his guild
@eternal wing @mild abyss not his personal doc writer... only for his guild
@upper sand 🆗
Dang it. I can make you an honorary member.
And then you would work on projects unrelated to the team xD specifically my personal projects lol
@upper sand you will never know this might be a good opportunity
no still dont like the idea of being being personal doc writer
Apparently you will keep getting pinged until you agree, out of my control xD
you just wanna join his fireflies huh..
That is the rebellious nature I would come to expect from the username "sexpistol" xD
pewpewpew
I guess I will have to start using good practice in my code :,(
i just like name fireflies
no i was explaining things
come here often, where?
i c i c
@swift badger Did you have to log in or was it a personal device
do i get banned if i just register in pyweek individually for the tag _-_?
🙃
you can't get banned, this is a simulation
I've found regardless of level codewars is useful for practice
ye but he said that was impossible
that should be 7 kyu
that 6kyu
ya ik it should be considered easier
yeah i found out that it was easy lol
i didn't read till this line
The menu items are fairly simple, there is no overlap in the names of the items:
1. Burger
2. Fries
3. Chicken
4. Pizza
5. Sandwich
6. Onionrings
7. Milkshake
8. Coke```
Giving me that menu makes it easy
ofc
gmph
this is my collection https://www.codewars.com/collections/katas-that-almost-destroyed-my-brain
over the past months i got better at programming so i might be able to solve some of them now.
I still don't get this one
All we eat is water and dry matter.
dry oil my favorite
do i get banned if i just register in pyweek individually for the tag
_-_?
@upper sand Well now that you've said that, if you join just for the role colour and don't do anything, then it will be noticed 🙂
hmmm...
@upper sand Well now that you've said that, if you join just for the role colour and don't do anything, then it will be noticed 🙂
@wheat lynx so do i get the color now, atleast it will give me some motivation... and does it get revoked if i dont participate in another weeks?
I'm not sure if there even will be role colours tbh, I'd assume so but somebody else would have to confirm that
If there are then I don't know when or how they would be given out
I don't think it would be revoked until the end, as afaik nobody really checks on your progress until you are done
If you think you seriously would want to do it then sure, sign up, and nobody will have a go at you if you have to drop out. But it would be pretty shitty just to sign up to get a role if you knew you weren't gonna do it
Oh cool then
Well for server specific events like code jam and game jams it's easier to manage the roles because it is a requirement to be on the server and everybody has to give their discord username when signing up ect
With PyWeek it is different, and I don't know what the plans are for roles, (although there is definitely a pyweek champion role if you win)
ahh i c i c get it thnx heaps for the info
-0?
my division flat out doesn't work
and my multiplication returns the negative of the answer
have you tried implementing it as a postfix calculator instead? postfix is dead easy to implement with a stack
I mean it's just dividing 2 doubles
and the data types are correct? iirc if you do division on integer types it will do integer division which is entirely different than ordinary division
when dividing normally make sure both operands are float type data types
oh right, you said doubles
if (a != 0) {
return (double)Fg / (double)a;
}```
I've tried assigning it back to the variable (a) too
- all my variables are doubles
huh, strange
I am not so familiar with cpp though so maybe there is something happening that I don't know about
in regular ol C you should just be able to divide em no issues
ya idk regarless of if I have (double)Fg/a, (double)Fg/(double)a, etc it returns 0
oh wait
my double_check function isn't assigning values
damn I thought I kinda knew what I was doing
void double_check(std::string ouput, double vari) {
bool running = true;
do {
std::cout << ouput;
if (!(std::cin >> vari)) {
std::cin.clear();
std::cin.ignore();
std::cout << "Incorrect entry - Try again:\n";
}
else {
running = false;
}
} while (running);
}```
would I need a pointer to vari instead of what I've got?
are you...
unable to return the value
I'm
not sure what you mean
can you turn the method into a double return type and return the variable when correct
if you just write to it those changes won't get reflected since when a function is called the input variables are value copied into the new function
i don't know c++, but in java, i'd almost certainly have to return the double instead of just modifying the value. or i'd use an object instead with a void setDouble(double) so i could just modify the double instead of replacing the whole object
so when I call it would I just do Fg = double_check("words", Fg)
sounds about right
It will go out of scope
So ur var'I will get cleared up
Pass ur vari as a reference
double &vari?
Yes sir
Yeah, to modify the var without a return you have to pass by reference or use a pointer
wait so if I pass it as a reference, I won't need to return it?
correct
Yes sir
which also eliminates the need for vari = double_check(vari)?
because I was returning it?
Nah u need to go through referencing and pointer once again
Or it will confuse the shit out of u later on
referencing pointer once
again
Like how it works
ya I've got a general idea but idk necessarily how/when to use them
probably ya a little bit
Alot
Like what derefrencing does n stuff
I havent touched c++ for a year now so i dont recall shit properly but
Thats really vital for ur c++ programming career
Anywyas best of luck
wrote some quick code to highlight the difference
interestingly we can see by looking on the assembly code that a return is the better method
no & means take the pointer of said variable
and * refers to it?
- behaves differently depending on where you use it
in that example
No they point to the value address
But wwwhen u usee pointer u need to defrence to get the value
Wwwhile in & u dont neeed to deference
ya ok that's kinda what I meant
U get the value normally
if you use it in a parameter int main(int *x){ that means that that input parameter is a pointer
if you use * on a pointer, you will dereference it and get the value stored at the pointers address
sick definitely going to forget that in about an hour
it takes some while to get used to but once you know it it is like riding a bike, you never forget it
read a book, that worked for me
also @upper sand if you can find a way to change this site to dark, please let me know
https://godbolt.org/
Ngl but i gave up on the book coz i got brain hemorrhage in middle when I was going through boost libraries in c++. I thought it was coz my nerves popped up coz I was thinking too much in c++
Turned out it was coz of my || drug abuse|| side effects but after that I never did c++ again
It's sound funny but that how I departed from c++
Bhaha
oh i hate discord mobile uploads
It was just for the dark theme
Made it slightly more difficult to make out what C calls corrspond to what asm instructions though
U just dont have enough patience bud
the only one I have is an advanced py one
that too
do you have a recommendation?
I was born before there was a dark theme. So my eyes are used to it.
I need to go through python
decorators 'saved' my sanity
It's g m8 @floral viper
Fair enough
But tbh Python was way easier to learn
But still I'm newbie in python lol
wait how's this, autogenerated by a really cool extension
oh god
@remote socket that was pretty rude to mute me
@mild topaz Did I mute you?
I did not. I silenced the entire channel.
No one is allowed to speak when I silence a channel.
but ya I 100% agree py is easier, I'm sure you could learn cpp in a similar fashion but static but there's just so much more flexibility/complexity it offers
???
but ya I 100% agree py is easier, I'm sure you could learn cpp in a similar fashion
but staticbut there's just so much more flexibility/complexity it offers
@versed saffron nah
Join ur guild??
im confused?
oh that? yea i don't know what will happen with that
😑
@rancid forge It is a web based compiler that allows you to explore how your code compiles to asm code for different compiler settings and architectures. Really handy tool for low level programming!
Compiling in Linux is fun
Though I've yet to find a sweet spot for my Haskell and Rust setup
wut
I thought Rust was fairly plug'n'play
Chromium Edge? Scrolling is the same, if not better than Chrome
Microsoft edge is a privacy nightmare
Compared to Chrome?
idk but edge smooth scrolling does not feel smooth at all
*laughs in netsurf*
lol
it even works on amigaOS!
what is that
why! why my edge scrolling suck
i do not care about smooth scrolling that much
that is until i used firefox
and got addicted to it
well i thought it is my problem it might not be idk i tried it on multiple devices all of them feel very bad
sure
I use firefox for a reason
Edgium is ok replacement for those who are rocking Google Chrome
if you doing desktop management, Edigum is GREAT replacement for Chrome
i decided to switch to firefox a few days ago
which is really who Edigum is for
All of my firefox addons:
that is more than i have
f r o g g y c h a i r
https://en.wikipedia.org/wiki/Comparison_of_file_comparison_tools comparison of ways to do comparisons
This article compares computer software tools that compare files, and in many cases directories or folders, whether it is their main purpose or as part of more general file management.
dont most editors have a comparision tool or sth
yeah
Never expected to change to sublime from NeoVim
you should've gone backwards:
$ echo "#!/bin/sh" > file.sh
$ echo "echo \"Java info:\"
> java -version" >> file.sh
$ chmod +x file.sh
$ ./file.sh
Java info:
'java' not found
done.
dumb make is dumb
Is there a market for a machine that causes objects in your room to move around more sporadically when you're having intense dreams?
I'm curious about this 'more' part
I'm confused about all of it
Well, one company created these floating balls that you could lift into the air whenever you concentrated hard enough
Which is cool, but boring
Imagine balls that flitted through your room while you slept based off of how vivid your dreams were!
Well, if you had vivid nightmares, you'd probably be woken up while things are careening around your room, so that's a bonus. Then you could gauge how bad your nightmare was based off of uh, how messed up your room got
I can just look at where my comforter ended up
What if whenever you had a nightmare your comforter hugged you tighter?
Comforting, right?
Sounds excellent for claustrophobes
can someone explain to me how the hell this happened:
Imgflip api docs say they want the text boxes to be like this in params:
"boxes": [{"text": "my text here"}, {"text": "my text here"}, etc...]
but in reality the params must be exactly as follows:
'boxes[0][text]': 'this', 'boxes[1][text]': 'is', 'boxes[2][text]': 'text'
did they doof? or did I? The error message with the first example specifically says requests should NOT be json, but their api docs tell me otherwise
im hearing the json in the original should maybe be "form encoded" but idk what that means
At the very least, they have poor documentation
That is for sure haha
I am unsure how this works on their end. why/how they are parsing the api request this way, where each box must be a string in the form 'boxes[0][text]': 'text'
Scary, capital letters in channel name!
Yea, it really looks so out of place
Is this an SS13 meme?
yo i love among us @mild abyss
thats a good meme too
😂 so relatable
Maybe it's not, that's what what I've heard, though. I haven't played either enough honestly
They're pretty similar, at least
its fine haha
i play deceit so
it be like that sometimes. hahaha
hehe i like deceiving everyone that im the good guy
next channel
LMAO
rip
Lol
!ouchmyping
That was fast
Congrats
l
DO A KIXKFLO
shit is crazy man
@everyone
guys they are murdeirng the channels
Proceeds to ping 90k people
run for your lives
F
NICKOLAS CAGE
@everyone
@dull jolt no
what is hapening
imagine being a programmer and getting played by a simple discord message
goodbye friends
HOW do you run code in vs code quick before this goes on lockdown
Okay but like why silence? :/
oh my god what is hapeneing here
Mass chaos ensues
Yea LOL
o7 python server
lmao
:incoming_envelope: :ok_hand: applied mute to @fresh solar until 2020-08-27 01:40 (9 minutes and 59 seconds) (reason: discord_emojis rule: sent 27 emojis in 10s).
fix it
hi
e
how did u not think about the consequences about quoting a message with @e ping in it
lmao
I'm laughing so hard
f
it's literally so ironic
my problem is they always handle it so poorly
Gotta love it when you quote a failed mass tag, and your quoted mass tag tags everyone
discord
XD
@obtuse escarp because Discord mobile gives no warning like desktop does, we all make mistakes my guy.
that's amazing
is slow
lmao
rip, was an unfortunate accident
@zealous stump we're... open to feedbackk
Yeah thats an f
discord is slow
My problem is people thinking they know how to manage a 9k person server from their armchair captains seat 😛, and critizise those who actually do
the irony in that message is amazing
ikr
@bleak lintel Why did PythonBot mute so many people?
that was brilliantly timed, right in the middle of my maths quiz 
lol
Bruh
They do know how to manage a server, it was just an accident
Actually, it does give a warning. Maybe only when typed yourself?
sikiri.
The irony was amazing haha. Mistakes happen, what can you do besides learn 😄
idk the solution probably isn't to mute everything and delete all the voice chats
and why do they keep silencing channels lol
lemon should've noticed the everyone
Or maybe not with a crazy high number of people
maybe mobile?
@silk copper not on mobile.
@round zenith because they know if everyone gets pinged, we all riot and set fire to everything
Yeah the irony was incredible but things happen
oh yh joe just confirme
actual wtf
d
Sikari pulling a reversal on him
oof
We silence channels to stop the flood of messages.
what did i miss in general?
Hello
seems like a raid happened lol
Dpy also knows.
yes, I'm very stupid.
Hnm ot unlocked but general still no perms to write. Feels just fun how one of the owners manages to ping everyone with quote when trying to scold someone else for attempting 
sikiri is the core of this noobie thing
Hmm, I’ve gotten warnings of it on mobile for my smaller server.
what happened
Poor lemon..
but whats the point of deleting the voicechats?
dw lemon
Oh well.
We silence channels to stop the flood of messages.
@bleak lintel yo joe do u not do CD anymore?
u too old now?
its not like people can spam the voicechats lol
Lemon, mistakes happen 😄
@tame terrace is ok man
we're back
Well now i think we need a petition for the warning to appear on mobile as well
oh also, hi im back. i should start coding again
And that's a great story
Oh my dog
when will general be back

I think maybe they have the warning on iOS
Shit happens
this was an interesting experience lol
oh lemon ping got someone to be back to coding
Android app sucks, though.
Ah just not android
A ping isn't the end of the world lmao
it isnt but its also very annoying (even if its understandable why it happened)
How are you doing lemon
Oh, that would do it.
that's pretty funny
usually its the other way around
Why wasn't everyone ping disabled..?
@tame terrace Its ok, they should have warnings for this.
You would have thought both mobile versions would have the same features
android as a lot of features that iOS doesn't
There might be a way to restrict messaging without mass role adding "Muted". But if it works it works
Oh ye mobile still doesn't have the warning? 😂
what happened why is #python-discussion closed
im actually gonna be taking ap comp sci and a python coding class for school this year :)
i'm sorry, i had to
...
maybe resetting role perms everyone has
and many other chats
LOL
Lmao
Ohhhh
Hahaha it’s very very funny but pings don’t hurt people
damn
I'm so sorry but that is so ironic and hilarious
So nbd
is that a jojo reference?
i just came back from 20m of shutting down my new rpi and misspelling commands and getting random network errors. but i finally got remote connection to my rpi
impressive, lemon
wait im so confusd
Lol
discord is slow asf
Poor guy : /
everything is a jojo reference
Lemon as everyone ping priveliges
@exotic peak
. that's why
I'm not deeply troubled by an accidental ping. I, too, appreciate the irony.
Um
i thought somebody exploited a bot here to ping everyone, but what i saw was even funnier
Gl mods, I’ve seen how people@react to mass pings
@spiral ridge did you use the built in VNC server?
Oh lemon
yeah
do i have to pay for python?
there should be an option on discord to remove mentions from quotes, or at least feature parity with desktop
@rough sapphire people started talking in the help channels
spare coochie maam
i did that after i got remote control
People get incredibly worked up over a notification on their phone
usually im annoyed by random everyone pings but that was great, lmao
python is free bruh
Glad I wake up to this
Niiiice
good job mr lemon
I got pinged so i checked the server
thanks man
pinged
there should be an option on discord to remove mentions from quotes, or at least feature parity with desktop
@old shuttle it should just not @everyone if u quote it and have perms
python is free bruh
@hoary steppe kk thx bby
good job lemon 
This is why i just full on mute and disable any ping on large discords unless it's something I need to actively follow. Saves me from ping reeing marathon
I've got one for my current project and it's being a great web server
But the irony here is pretty incredible lol, gave me a laugh on a tough night
to be frank though, that was the funniest shit I seen all day
This will go down in server history as one of the classic blunders
Yeah theres no way the python channel would be on topic if you unlocked it now
i’m dying.
We mute the whole server for a matter of minutes to not cause, y'know, crashes on our and Discords side.
The Mods during the "raid"
https://www.youtube.com/watch?v=rIos0ya-yss
Yes, yes, there's an explosion at the end ;)
The title used to be 'Nuclear siren [10 hours]' but that was incorrect, hence the picture.
Well that was interesting
Hey cool I found the one and only not-dead channel. I feel like Indiana Jones. I have chosen... Wisely.
how did this happen??
Honestly, thank you for the fun times, Lemon
Lol
usually i would get access in at least 5 min. i some how messed up 4 times. took me 30 min
glad I could make you all laugh. 
man i can imagine some of these guys complaining did the same accident
its alright lemon, it made me laugh and my day got better 
that was great
Probably can’t unlock general for like an hour without it getting destroyed
it really was brilliant
At least the irony was incredible
Pfff
irony at its best ngl
It is,hahahaj
everyone
Don't try to ping everyone
That's sucks lol
maybe we should pin the message.
lemon made a mistake and it was a good laugh, glad it got handled this well tbh
Yes
we all kinda ROFL rn
Yes pin it!
yes pin
Please pin that lmao
comical
Joe, python bot breaks discord faster than 90k going ping reeing 
To be honest yes
Yes pin it
d o i t
ye that was pretty funny lol
pin pls
yall should its worth it
Pin it
yes pin
PIN IT
Pin it.
Thats iconic
It’s too good to not
yes pin
This is a fucking twitch chat
pin it
It’s iconic
Lol
pin
you already pinged 100k people dont make it all for nothing
tfw discord evolves into stream chat
lol twitch chat inedeed
OIII
I just don't code enough to be active lol
lol
Let’s gooooooo
omg yes pin
slowmode
why wasnt there a ping 90k people prompt?
it's twitch yes
✅ pin it ✅ pin it ✅ pin it ✅ pin it
ayyy im unmuted
@boreal swift oh, well then wheresy free donos? 
Ironic, he could prevent others pinging everyone but not himself.
Kinda funny how the bot, which usually just helps out with programming, had the defense capabilities of a u.s. naval base
@stuck cape yes
@rough sapphire it doesnt show on mobile, also haha invisable
oh the irony
how embarassing
kekw
lmao I thought someone tagged everyone again
😂
now since its pinned its a memory now
yessss
ah
oh hey, #ot1-perplexing-regexing is being used
Whaat.. youre the only one that pinged me, and it was a mistake???
so uh
Lemon you made my day better 😍
what happened
aye lets not somehow send 22 message in 10 second
this is a historical moment
@crimson crag https://www.youtube.com/watch?v=rIos0ya-yss
Yes, yes, there's an explosion at the end ;)
The title used to be 'Nuclear siren [10 hours]' but that was incorrect, hence the picture.
lmao
that was brilliant
oof
Lemon, you have a great sense of humor
Wait so some people just started spamming right?
very epic python server asks someone to not ping everyone
Or is it because of the ping?
and then lemon pinged me
The ping
nice
Idk what happend tbh
and then the spam happened
The Rumor Come Out: Does Parrot can ddos ?
Parrot can ddos is the most discussed in the media int he few years ago. Even it has happened in 2012 but some of the public still curious about what is exactly happening and to be the reason there is a rumor comes about its ddos. At that time it became the massive social networking hack. The public, especially its fans are shocked. The Parrot just came out with its bad rumor which is spread massively. This time is not about its programming career, but its bad rumor. The rumor is out of standardize of hoax, according to the last reported this programmer revealed itself as hacker. Do you still believe or not, this rummor is really much talked by people even in a person of the parrots fans.
Hey uhm what happened to the general chats?
banned
why can't I tlak in them
this is why discord should fix quotes
Its closed atm
so the bot detected multiple pings and a lot of messages
does bruno mars is gay
Cause there is no way it would be on topic if opened
and it suddenly had vitenam flashbacks? @tranquil orchid
@rough sapphire read #python-discussion
And some self bots appeared
Glorious, thank you, Lemon
this was actually a lot of fun, thanks lemon
I appreciate you all.
This was a lot of fun thanks lemon
oh no
If you're going to ping everyone by accident that is how you should do it
Gl with chat
Love you lemon
Yep, classic blunder 
just waiting for Ashton Kutcher to jump around the corner
squeeze lemon into your eyes
When live gives you lemon
idk whats funny in that but what i feel about it is nothing just normal
Irony is always incredibly funny
happend a lot of tim es
ngl its kinda funny seeing a 90k user discord server grind to a halt
I'm more active now than I've been at any other point
Personally I think discord should make it so pinging like that doesn't work
eh fair
atleast the ping got some ppl to code again and be active @tame terrace
@sudden wharf It doesn't on any other os
How about next simon says bot game with everyone tag?
that'd be true python discord roulette
or just go dnd
It was only because android mobiles don't show the warning
@sudden wharf Desktop gives a warning, mobile doesn't
OHHH
I saw some admin do this on DevCord the other day and I laughed at them. now I feel stupid for laughing 
that makes sense @tranquil orchid
f
Ooh, damn
On pc and ios it would have shown the warning
well, they do warn you if you are about to ping everyone
No, laugh now, more than ever
Lemon, how bad did you facepalm when it happened?
😎
It's hilarious and quite ironic
Lemon, you sure it wasnt you? 😂
I dont know why it did not work for the owner
slow discord
prolly because he is?:
@lost vine not on Android
Did this dude ping 91K people holy shit
Thanks joe for fast respon
yeah, what was your first reaction?
ah
what is the best db library?
async sqlite (imo)
Did you like go pale faced and wide eyed
yes, he did
lol
That was amazing
I am still laughing about it xD
The staff were probably like
Lol
lolol
ok stop with attention seeking ;-;
OH GOD LOCK THE CHATS
lol
and please don't try to ping 90k people
that was some moments
pings 90K people
i shared your mistake in the rpi discord server. hope you dont mind
RIIGHT!?!?!?!
I would've collapsed
make this the highlight of the year
lmao????
they are having a good laugh at it
cry-laughing
I'm out for the night, thanks for the fun, lemon
@tame terrace You're on Android, does it ever happen that you type in a channel name, click the auto-complete, type again, and then it types as if you didn't auto-complete the channel?
omg Lemon, When life gives em to ya.
you lolol just made my day
@round zenith I'm on Android, doesn't happen to me
why dont i feel anything towards the accident
did sakiri get banned?
@spiral ridge No..
yes
@gentle hill hi
it's a ping, you'll all live.
@hoary steppe well remove the stick out of ye ass
haha good job mate your a legend
It was funny more than anything else
why would I ban sikari?
Zug Zug Zug
it was my dumb ass fault.
I'll happily get pinged for that
I think we are just more chatting about the fact how ironic/funny it is
that's what we're afraid of, lemon. it's 2020, who even wants to live anymore
this is why we riot
who would win: brand new discord account or admin of an official discord
surprisingly not alot of people witnessed this and were offline
take it easy on yourself. everyone makes mistakes
@tame terrace i knew immediately after i saw the ping "aww shit this is going to be funny"
2020 needed some fun shit to happen and Lemon just gave it to us on silver plate 
^
@rough sapphire watches online count increase as people check the ping
lel
thanks lemon
What did you think after it happened lemon? XD
hah
Oh shit
dont interview him. he just made a mistake.
@hoary steppe you're beyond help smh
the press wants to know
^
why discord is slow
/nickname the press
send messages minutes ago
Lemon pings everyone
Members responded calmly
@rough sapphire not all
There u go
everyone kinda be like 
gj
@tame terrace interview when
Are you guys gonna ever unsilence #python-discussion ?
in an hour
k
i live in wakanda @rough sapphire
Nice
Sneakily add a @everyone , when someone is about to type a reply.
then fought aliens again
I payed for the whole clock so i'm gonna use the whole clock
ninja
go
everyone ping
It's ironic
I think they are lifting the mute
but something else happened
idk what
because I didn't get ping untl lemon quoted it
only staff can ping everyone
basically what happened
Oh
@everyone ofc only staff can
But it feels even better when the ping comes from one of the owners 
because I didn't get ping untl lemon quoted it
@neon shoal same
funniest thing i've seen this month
But it feels even better when the ping comes from one of the owners :excellent:
@subtle seal yea
This is the history of Python Discord server
I'm new

Lol
@proper night who u?
why didnt i laugh
am i ok
do i need to go to doctor
@rough sapphire what makes u think lemon would quote my message
i also didnt killed ur father stop chasing me
yeah thats my reddit name
slow discored
I know what you did on Aug 27th 2020 in PyDisc 
discord
reddit made it for me
Yep i had a feeling that channel would never stay on topic
mhm
In next 3 minutes
.topic
What is your favourite food?
Maths online class
@tranquil orchid i always forgot that it was not an off topic channel
rice
my fav food is python
and spicy
i eat snake eggs for breakfast
Lol
ruby + salt = python
C++ & cobol = brainfuck/java 
K bye
not really
c++, + java + javascript = worst than malbolge
If pinging everybody doesn't even work why was this havoc even caused?
One of the owners quoted the message
Ah
The general chat is just chaos
This chat was too a couple minutes ago lol
yeah but now general is just madness
And it has 30 second slowmode
And its still flying
@sleek temple @sleek temple @sleek temple @sleek temple
@bleak lintel The spike is insane
I expected about that behaviour, same amount carry over to next hour
Yeah i had a feeling there was no way that chat was going to stay on topic after that
Hell of a hour
Messages here in #ot1-perplexing-regexing spiked lol
Even more so in #ot0-psvm’s-eternal-disapproval
#ot0-psvm’s-eternal-disapproval seems to have been going off in general for the past few days
What is your favourite place that you have visited?
my bedroom, it has my video games
my bedroom, I don't remember otherwise leaving the house
ohh
Someone should post this in another server
@fathom lotus Why would someone post spam, though?
Eh, just not into spam. The less of it, the better
called it
cool man
called what?
it would return like this
I like dogs
i think i just installed a bunch of random stuff that i wont ever need with -syu....
hey googler
i think i just installed a bunch of random stuff that i wont ever need with -syu....
@rich moon at least you installed a brain
Some people here just can't behave
Hey google
after all i am a professional apple headquarters developer
codechamp2006
Ah yes, 14yo apple dev, whomst is taking online classes
This is what I've allways wanted.
@rich moon i imagine you're referring to pacman -Syu? in that case, all you did was update all of the programs that are already on your computer. in some cases it may install a new package or two if one of your current packages now requires a couple more dependencies after being updated. all of the random packages you see that you're unfamiliar with are most likely being used as dependencies for programs that you do use directly, which otherwise wouldn't work properly if you didn't have those packages installed.
and probably 95% of them starts with lib
hello peeps
Yo
suggest some colleges like WAterloo
Heyo
What do you mean?
just...any college?
like Waterloo
like for engineering?
in NA?
where do you live
Oman India
there are the ivies, most of their CS programs are pretty good
the UCs also have pretty good cs programs
CMU has a really good program
what is an ivy?
just a really old group of schools
yale, harvard, upenn, brown, columbia, princeton, dart, cornell
i'm still a student
i'm not sure what you mean
you have heard of Co-op right?
not really
oh ok
I think Discord was having some trouble
Apperenatly, I don’t share a server with this server😔
F
@bleak lintel I was looking through the first messages on the server (why not🤷🏼♂️) and copied one of the messages. It said “detide”, I believe. No clue what it is. When pasting and sending the message here, Discord seems to be having some trouble. Maybe it’s just too old — not sure
That’s what the error above was about
there was a time where if you sent a message and then edited it with a right-to-left override character
it would also flip the:
Aah, alrighty
Not sure why discord gets confused by it
For some reason, it thinks that I don’t share a server with this one
I've seen some usernames that make it say ...is typing {name here} when they are typing, i'm assuming because they have RTL characters or something
yeah
Sometimes arabic characters I think
That’s so odd. I’ll see what discord thinks of this thing I have copied as a nickname
Seems like I could set it
communicators back to normal
Nice
Oh good. Never takes too long for things to settle back down to normal
Seems like I could set it
@narrow pecan but the name wasn’t changed. Didn’t give me an error either
Yeah, you're still Vestergurkan to me
discord silently strips character sometimes
Alright
https://drive.google.com/file/d/1ssFUS8vdyoPIPaBZyQmSIMIMLnoqugFH/view i think you guys will enjoy this one
LOL
hah, that's great
Amazing @tranquil orchid, thank you
That's a pretty good video ngl
Quality content right there
Haha
I can't stop watching this, i mean, the music is just... perfect lmfao
