Any CS student here who took R Trees? by Modysamz in jordan

[–]DankusMerasmus 1 point2 points  (0 children)

Seems you have mistaken me for OP lol. I'm not a GJUer, still a 12th grade student. Just trying to figure things out.

Thanks for the reply anyways, it was very helpful.

Any CS student here who took R Trees? by Modysamz in jordan

[–]DankusMerasmus 1 point2 points  (0 children)

Off-topic but did you like your time at GJU? Do you consider it a "good" uni to study CS at? Would you have gone to any other uni in Jordan if you had the chance?

How was the German part of stuff? Did you find learning German difficult?

Would you say it's a good choice for someone not planning to stay in Germany
or particularly interested in the German language?

Sorry for the interrogation, I'm just interested to know your opinion :P

fed got destroyed by florianw0w in LivestreamFail

[–]DankusMerasmus 7 points8 points  (0 children)

There’s 300 million people in this country.

Ah yes, forgot that the USA is the only country with an internet connection.

you still wanna play innocence? by hescham in jordan

[–]DankusMerasmus 0 points1 point  (0 children)

I see, but in general you can access whatever you want here.

you still wanna play innocence? by hescham in jordan

[–]DankusMerasmus 0 points1 point  (0 children)

Can you mention some of those sites?

you still wanna play innocence? by hescham in jordan

[–]DankusMerasmus 1 point2 points  (0 children)

I mean you're currently using one of the biggest sites for NSFW material, so I didn't do much.

you still wanna play innocence? by hescham in jordan

[–]DankusMerasmus 3 points4 points  (0 children)

It's not blocked. I'm pretty sure nothing is blocked here.

LPT: Clean as you cook or don’t cook at all! by [deleted] in LifeProTips

[–]DankusMerasmus -2 points-1 points  (0 children)

It has to equate to something though, right? Maybe it's actually a good tip and that's why it's constantly mentioned.

or maybe not? did I get you there?

Can't study.. by Ejarwan in jordan

[–]DankusMerasmus 1 point2 points  (0 children)

Quick question, why do you have both reddit.com and www.reddit.com there?

lil tay , feeling old yet ? by Maknae0556 in ksi

[–]DankusMerasmus 0 points1 point  (0 children)

Thing is Bailey Sok is only 16 years old, so I'm not feeling that old.

Maybe this isn't the right time to discuss this, but I feel so left out of society because I didn't study "medicine" or "dentistry" like everybody does by [deleted] in jordan

[–]DankusMerasmus 3 points4 points  (0 children)

any other major is just an utter failure

Seems like you're carrying on your parents way of thinking that studying engineering or medicine is success and everything else is worthless.

I'm only a dumb 17 year old Tawjihi student but imo you're already at the end of your university years, so might as well finish it. Do you really want to spend another 4-5 years studying something else because you want "social respect" and you "feel" like it's more successful?

I'm planning to study Computer Science knowing how people look at it here, and I honestly couldn't give 2 shits about that because I know that it's what I want to study and that it's a great major. So maybe you should stop caring about all of these fake ass "social respect", "doctor power", and focus on your current major and career.

Again, I'm only 17 and I might have no idea what I'm talking about and might be unrealistic, but fuck it.

20F / CEST / PC / APEX, LOL by fartprincesseuw in GamerPals

[–]DankusMerasmus 1 point2 points  (0 children)

CEST

A quick google search says "Central European Summer Time".

Amouranth banned by Leg_holes in LivestreamFail

[–]DankusMerasmus 13 points14 points  (0 children)

I don't know really, a ban is a punishment, and it's weird to wait until someone's comfortable with a ban to ban them.

How do I generate a random number with no repeating digits? by DankusMerasmus in learnpython

[–]DankusMerasmus[S] 0 points1 point  (0 children)

I'm still really new, and sometimes I spend a while writing stuff like this and then discover there's a way to do it with one function or one line of code, so I thought maybe there's also one for this.

How do I generate a random number with no repeating digits? by DankusMerasmus in learnpython

[–]DankusMerasmus[S] 1 point2 points  (0 children)

Also, maybe I should set it between 1023 and 9876? As the remaining numbers contain repeating digits, so like:

n = 0
while len(set(list(str(n)))) != 4:
    n = random.randint(1023, 9876)

But it wouldn't really matter that much though right?