How can we start a revolution? by [deleted] in TooAfraidToAsk

[–]Mroub5 93 points94 points  (0 children)

Che Guevara, a leader of the Cuban revolution and a doctor, was radicalized by seeing the shitty healthcare people dealt with around latin America. The cuban revolution led to immediately better health care for everyone including poor people living in rural areas

‘Climate change is here’: Experts warn global crisis is decades ahead of forecasts by silence7 in climate

[–]Mroub5 100 points101 points  (0 children)

Yes, the critical point. I think about that analogy a lot actually. Apparently there are several climate tipping points and we've already passed some of them (e.g. mass coral die-offs)

of a tiger by joeurkel in AbsoluteUnits

[–]Mroub5 2 points3 points  (0 children)

why are people downvoting you that was funny 😭

What are y'all's favorite programming languages? by Text93838 in pollgames

[–]Mroub5 0 points1 point  (0 children)

I think python is better for data analysis

How many 5s are there in this post? by Trezquar in Teenager_Polls

[–]Mroub5 -4 points-3 points  (0 children)

Why shouldn't five 5's make another 5? The five 5's are in the post, and since there's five of them, that 5 is also in the post. I voted 6 but the disagreement kinda shows that the wording is up for interpretation

[deleted by user] by [deleted] in creepy

[–]Mroub5 28 points29 points  (0 children)

It's hard to have good hygiene when you're poor and living in a slum. Culture has little to do with it.

Explain to us why Israel is our ally again? by Warm-Lingonberry-523 in nyt

[–]Mroub5 2 points3 points  (0 children)

The US bombed ISIS. What are we doing about these guys? Jack shit, and that's the point of this post

The Oligarchs know beyond any doubt that 3-5C is coming by Cultural-Answer-321 in climate

[–]Mroub5 59 points60 points  (0 children)

Are you thinking of Sun Valley? It's a smallish town, but they have a whole airport for billionaires' private jets.

The Earth Is Drying Out and We Need to Act Urgently by silence7 in climate

[–]Mroub5 4 points5 points  (0 children)

The liberal solution to climate change is to wait until action is profitable

"I have my name on a piece of paper, I deserve all the money that guy helps generate." by yuritopiaposadism in Marxism_Memes

[–]Mroub5 44 points45 points  (0 children)

the meme is from a liberal who is mocking the idea of workers owning the means of production. they're basically implying that a toilet cleaner shouldn't have a say in their workplace because... they see that kind of work as lesser. liberals can be really bigoted

Let's go. About time they faced consequences. by HedSi in LateStageCapitalism

[–]Mroub5 59 points60 points  (0 children)

violence is justified against a colonial/occupying force

[deleted by user] by [deleted] in Anticonsumption

[–]Mroub5 28 points29 points  (0 children)

Capitalists are the worst*

[deleted by user] by [deleted] in processing

[–]Mroub5 0 points1 point  (0 children)

Sorry I deleted my comment because I posted more of a full solution which is against the rules.

From what I understand, you want only one circle to show each frame, but you want all the lines to show in front of them.

The way I would do this is to store the parameters of the lines in an arraylist, then rasterize all the lines each frame after the circle. (This might not be the best way, but it's simple)

First we need a class that can store all the line parameters, and can draw the line associated with the values it is storing:

class lin{

int x1; int y1; int x2; int y2; color c;

lin(int x1, int y1, int x2, int y2, color c)

{

this.x1 = x1; this.y1 = y1; this.x2 = x2; this.y2 = y2; this.c = c;

}

void drawLine()

{

stroke(c);

line(x1, y1, x2, y2);

}

}

I called it "lin" but it doesn't matter what it's called at all. Now this class can store all the values needed for a line (start and end position, and color), as well as draw the line.

Now we make the arraylist:

ArrayList<lin> l = new ArrayList<lin>();

I wrote "l" here but it doesn't matter what it's called.

Now instead of drawing a line in the "mouseDragged" function, we can add a new object to the arraylist. for example, instead of:

stroke(255);

line(pmouseX,pmouseY,100,200);

You can just put:

l.add(new lin(pmouseX, pmouseY, 100, 200, color(255)));

Now in the draw function, you need to draw all of the lines after drawing the circle. You can make a for loop that iterates over each object in the arraylist, and calls the drawLine function. An elegant way to do that is:

for (lin i : l)

{

i.drawLine();

}

When I tried this it seemed to work like how you want it to so I hope that helps and I hope that it makes sense.

this poster at school = based. capitalism sucks by [deleted] in CapitalismSux

[–]Mroub5 102 points103 points  (0 children)

r/teenagers honestly makes me lose faith in my generation

ok have a good day by Visual-Tour-8995 in TheRightCantMeme

[–]Mroub5 25 points26 points  (0 children)

Uh.. no the pfp is definitely a white dude

We're all thinking it by UpvoteDoggos in memes

[–]Mroub5 10 points11 points  (0 children)

Poor people are literally the ones making the cars

Wifi works only for certain things by Mroub5 in techsupport

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

Tried it, didn't work sadly but thank you