• 5 Posts
  • 271 Comments
Joined 7 months ago
cake
Cake day: August 25th, 2024

help-circle












  • Government providing money to create innovative new tech and make it available at a lowe cost to their constituents

    Manipulating the prices to be lower

    I just wanted to point out the pervasiveness of capitalist propaganda here. They’re not manipulating prices, they’re helping their people. It just so happens that our capitalistic systems don’t do well when someone helps their neighbor because then we can’t abuse them.

    Now don’t get me wrong though, I’m not gonna sit here and tell you the Chinese government does no wrong. But in just this particular case I think we’re picking the wrong battle





  • for( int i = 0; i < 10; i ++)

    This reads as “assign an integer to the variable I and put a 0 in that spot. Do the following code, and once completed add 1 to I. Repeat until I reaches 10.”

    Int I = 0 initiates I, tells the compiler it’s an integer (whole number) and assigns 0 to it all at once.

    I ++ can be written a few ways, but they all say “add 1 to I”

    I < 10 tells it to stop at 10

    For tells it to loop, and starts a block which is what will actually be looping

    Edits: A couple of clarifications