on Top Meta executive said the company's name change was a success because it beat out coverage of the 'Facebook Papers' revelations · c/technology · 2 pts · 3yWashington Post has a paywall after a certain number of article views unless you're a subscriber.
on How i feel on Lemmy · c/memes · 18 pts · 3yIf lemmygrad is what op is commenting on, they left it out of the image and caption.
on Random internet people explaining math better then math teacher · c/memes · 1 pts · 3yFor the case that n = 0 (before the first run of the loop), x(0) = 1. For the first actual case, n = 1. X(1) = x(0)*3*n = 1*3*1 = 3. For the next case, n = 2. X(2) = x(1)*3*n = 3*3*2 = 18. For the next case, n = 3. X(3) = x(2)*3*n = 18*3*3 = 162. For the next and last case, n = 4. X(4) = 162*3*4 which I'm not computing. The computer value of x(4) is the value of the product loop. If that doesn't help, I could try helping again to rephrase, but I'm not sure what else to add.
on Random internet people explaining math better then math teacher · c/memes · 1 pts · 3yI think it would be much better to write it in another language, but here's another way to do the second one (this is on Visual Basic): Dim n as long Dim product as long Product = 1 For n = 1 to 4 Product = product * 2 * n Next n
on Gearless Magnet Bike · c/mildlyinteresting · 1 pts · 3yIt bothers me that he called it a gearless bike. It's clutched, but also still geared.
on What is something that sounds 100% false but is actually 100% true? · c/asklemmy · 1 pts · 3yIt's odd. I can access it as a guest but not as a user of the very same instance.
Washington Post has a paywall after a certain number of article views unless you're a subscriber.
If lemmygrad is what op is commenting on, they left it out of the image and caption.
For the case that n = 0 (before the first run of the loop), x(0) = 1.
For the first actual case, n = 1. X(1) = x(0)*3*n = 1*3*1 = 3.
For the next case, n = 2. X(2) = x(1)*3*n = 3*3*2 = 18.
For the next case, n = 3. X(3) = x(2)*3*n = 18*3*3 = 162.
For the next and last case, n = 4. X(4) = 162*3*4 which I'm not computing. The computer value of x(4) is the value of the product loop.
If that doesn't help, I could try helping again to rephrase, but I'm not sure what else to add.
I think it would be much better to write it in another language, but here's another way to do the second one (this is on Visual Basic):
It bothers me that he called it a gearless bike. It's clutched, but also still geared.
It's odd. I can access it as a guest but not as a user of the very same instance.