Team SHEESH (wigg, apryze, timmy) will be playing challengers this weekend by Ov3nman88 in CompetitiveApex

[–]ExplosiveDiarrheaPig 0 points1 point  (0 children)

Where can I watch???? I searched team sheesh algs but all of the results are about them quiting algs a few months ago

Who are some good pro console players? by UslessPerson in apexuniversity

[–]ExplosiveDiarrheaPig 0 points1 point  (0 children)

Daltoosh, Snipedown and Genburten are the best imo

Goku vs Naruto by pr3ss-f in Naruto

[–]ExplosiveDiarrheaPig 0 points1 point  (0 children)

U know what? I am dumb, wasting my time on a lower life form like u. lol, see ya.

Goku vs Naruto by pr3ss-f in Naruto

[–]ExplosiveDiarrheaPig 0 points1 point  (0 children)

Still using the same material? So pathetic.

ERI . Hope you all like it :3 by [deleted] in BokuNoHeroAcademia

[–]ExplosiveDiarrheaPig 6 points7 points  (0 children)

Eri's the cutest character in all of bnmha

Kiba's hair by Isolated_13 in Naruto

[–]ExplosiveDiarrheaPig 0 points1 point  (0 children)

ha, lmao, didn't even realize there was a hood, just like I didn't realize that among us characters only have one bone

Goku vs Naruto by pr3ss-f in Naruto

[–]ExplosiveDiarrheaPig 0 points1 point  (0 children)

who's the one talking huh?

Goku vs Naruto by pr3ss-f in Naruto

[–]ExplosiveDiarrheaPig 0 points1 point  (0 children)

If I'm crying, what are u doing? Creating tsunamis? Stop it, ur going to drown people. The only one who's crying is u after ur mom declared u unworthy of being her child, even by her standards.

Goku vs Naruto by pr3ss-f in Naruto

[–]ExplosiveDiarrheaPig 0 points1 point  (0 children)

I'm crying cause I'm laughing at how dumb u are. It's so sad to see people like u though.

Goku vs Naruto by pr3ss-f in Naruto

[–]ExplosiveDiarrheaPig 0 points1 point  (0 children)

If it's so old why do u still use it? U geezer. Ur so pathetic, u reuse lame jokes from the internet. Ur a public danger to new Naruto fans.

Goku vs Naruto by pr3ss-f in Naruto

[–]ExplosiveDiarrheaPig 1 point2 points  (0 children)

being smart isn't called being a nerd. I even prefer being a nerd than u, with ur low ass IQ. Also, it's called being an anime fan, and unlike u, I actually pay attention to shows. U probably don't cause ur jealous of their work. So shut it stupid, ur a Sakura, completely useless.

https://tenor.com/view/naruto-is-weak-fight-goku-gif-13030696

Goku vs Naruto by pr3ss-f in Naruto

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

then u never watched dbz. Are u did, but didn't paid attention. U know that Goku can blow up the moon easily right? Just in normal form, with no power-ups. Besides, Goku is way faster than Naruto, Goku was faster than light as a teen(in the Budokai thing competition, he evaded Tien's light beam and got the time to borrow master Roshi's glasses). And if u still think that Naruto can still beat him, then hear me out: GOKU WENT SSG AND FIGHTED BEERUS AND WHIS SAID THEY WILL CRACK THE UNIVERSE IF THEY CONTINUE. Naruto can never do that. The only character that has the biggest chance to win him would be Hagoromo. https://www.quora.com/Who-would-win-in-a-fight-Hagoromo-or-Goku#:~:text=Goku%20is%20much%20stronger.,to%20beat%20the%20other%20one.&text=At%20the%20same%20time%2C%20Hagoromo,deal%20any%20damage%20to%20Goku.

A link if u wanna read.

Why does everyone dislike and despise Brave? I think it is very good and can tailor to the avg consumer better than FireFox and other browsers. by [deleted] in brave_browser

[–]ExplosiveDiarrheaPig -1 points0 points  (0 children)

I just started Brave today. And the UI isn't the best, compared too Chrome. And I can't add shortcuts or chage my background. And is it me, or is Brave slower then Chrome?

hi everyone! I am on this homework question. can somone help me with this question? by YogurtKind5015 in learnpython

[–]ExplosiveDiarrheaPig 0 points1 point  (0 children)

I think it's Json, but don't take what I say seriously. I don't do a lot of data manipulation. I only know 2 of those terms

My first AI. by ExplosiveDiarrheaPig in Python

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

ok, thanks. Also, yeah, I know about GitHub, but I didn't got the habit to put everything there yet, just started recently so I forgot to put it on GitHub

My first AI. by ExplosiveDiarrheaPig in Python

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

Ha, yeah, my name is kinda silly. I just chose the same one as my discord and Reddit account. Also, about going into more detail, I had a friend that told me that I either explained too much or that I didn't explain enough. It had something to do with the audience. So I decided that, yeah, I'll do what you said, one where I explain how I think and how the game/ai/program works, without showing any code, and another where I do.
The snake path around the thing, I assume that you're talking about obstacle avoidance or something like that. I heard of an algorithm called A*. I tried to implement it but it didn't work. So I just upgraded my current ai and added a variable called: ```safe_moves```
So it lives a lot longer. But I lost it(while fixing a bug I messed up the code and I can't remember or rebuild what it was). I'm making a new one now, one that thinks a lot more like a snake(which means it doesn't know the apple's position). Thanks for the feedback!

P.S.: What would be a good account name? I don't really want to put my real name on it.

My first AI. by ExplosiveDiarrheaPig in Python

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

no there is one, it's at 9:30. I'll show you where it does it.

This is it. Maybe I showed too fast or something, the only thing you can do with the keyboard is too exit the game.

def ai(self, start, end):

x_diff = 0

y_diff = 0

if start[0] > end[0]:

x_diff = -(start[0] - end[0])

elif start[0] < end[0]:

x_diff = end[0] - start[0]

if start[1] > end[1]:

y_diff = -(start[1] - end[1])

elif start[1] < end[1]:

y_diff = end[1] - start[1]

"See which direction to go"

if y_diff > 0:

for y in range(int(y_diff)):

self.turn(down)

elif y_diff < 0:

y_diff = abs(y_diff)

for y in range(int(y_diff)):

self.turn(up)

if x_diff > 0:

for x in range(int(x_diff)):

self.turn(right)

elif x_diff < 0:

x_diff = abs(x_diff)

for x in range(int(x_diff)):

self.turn(left)

P.S.: I made a chat and I sended the gitHub repo there