YLYL Sup Forums edition

YLYL Sup Forums edition

Other urls found in this thread:

youtube.com/watch?v=Rl4QMS0Zh_w
en.wikipedia.org/wiki/Fast_inverse_square_root#Overview_of_the_code
m.youtube.com/watch?v=1I2MbXHLAss
en.wikipedia.org/wiki/Fast_inverse_square_root
blog.dave.io/2011/10/0x5f3759df-true-magic-number/
twitter.com/NSFWRedditVideo

But it's true.

>The difference between 1.01 and 0.99 is 0.01.
Ok then.

>5 rupees were deposited into your account
even though you can't give more than 100%

"A student of life" is what makes that picture for sure.

if it makes tyrone work a little bit harder at his job so my neighbor Mark can get his annual bonus that might mean I won't have to look at his wife's cunty gardening skills and he can hire Jose instead

If you don't do "1% of extra effort every day of the year", then wouldn't you be at 1.00^365 and not 0.99^365?

at least his teeth are british

youtube.com/watch?v=Rl4QMS0Zh_w

why are we multiplying the effort we make each day with the effort we made in previous days?
isn't it additive?
shouldn't this be .99 * 365 instead?

Leap year.

Not really. The more money you have, the easier it is to make money. A day's work is worth more on the 7th day than the first.

>75000000

fuck

1% of extra effort a day would be 1.01 x 365, wouldn't it?

so you end up with - surprise surprise - 1% extra

but then it's (1 + .99)^365, like compound interest or something

>The more money you have, the easier it is to make money
Only if you invest, and even then you need hundreds of thousands, if not millions, for it to make a tangible difference.

That equation might hold up at the very top, but for the general public, putting in that 1% extra is simply not going to be worth it if it's inconvenient.

Also, on a completely different note, why do "redistribute the wealth" lefties always gravitate towards the extremes? You don't hear them talking about the middle class, it's all about the impoverished and the billionaires for them.

American educational system everyone.

...

...

this is actually pretty nice picture

pol is just about the last place I thought I'd see the carmack inverse square root today

...

wtf is that hex shit going on the the sqrt function

en.wikipedia.org/wiki/Fast_inverse_square_root#Overview_of_the_code

...

Don't post this evil here

...

...

>C
>U
>K

the fuck is "cherry blossom traffic"

Everyone heading out to the popular parks to see the cherry blossoms falling in the spring. It is like holiday traffic on steroids.

joke was originally made by a british man

...

...

...

...

Lost.

How is this related to exponential growth?

If anything you should be multiplying it

They need to ban toenails that are too long. They can get pretty sharp sometimes.

that hull design is shit for a one man craft powered by oars.

Why would you use power in this situation, not to mention that's 2% difference, not 1%. Come on now Pratik

You're doing good work, leaf. Post more. I love all of these.

that's actually a sensible idea in a hospital. Even a tiny cut is a thing you really want to avoid when you're working around infectious diseases.

for Americlaps' benefit I'll point out that 'estate' is generally roughly equivalent to 'section 8 housing' (unless it's in the context of a country estate). Hence the rather strict policing

>calls someone a cuck
>posts anime

AMERICAN EDUCATION

m.youtube.com/watch?v=1I2MbXHLAss

lost

he is saying that the image is retarded because the person in it thinks that 1.01-.99 is .01 and not .02 ya dumb cuckfuck

Hahaha, clever

Omg that stupid fuck.

>(a > b && b < a)
>returns 5 when the two inputs are equal

>because im so random yay :D

thats why

The indentation makes me crazy

also
>a > b && b < a

why

I don't understand code, what's going on?

not a loser nerd here

can anyone explain this? obviously i get the XD IM A GURL HEY GUYS PART but what about the code?

thanks

Assuming that extra 1% contributes 100% to the 1% for the next day

The grey text isn't functional code its just an explanation in the coding used to tell other programmers who might try messing with the code what it does. Since the code on the right already is super simple in its operation you don't need the grey text for most of it. Like we already know that if a>b return b means that if a is greater than b b is returned. You don't need to grey text it. Also the code on the left is a simple number function as well, which needs no explanation.

Always double check your work anons XD

Wouldn't it be multiplication...

Surely it's the opposite, at day 0 you have 0 money, so whatever you earn on day 1 is an infinite increase, day 2 the increase is 2x, day 3 it is 1.5x etc.

Wheres the "//what the fuck?" in the fast inverse square

...

fapping to anime girls is the most alpha thing you can do.

I bet you fap to real women being fucked by real men, you're the cuck, getting off to people having sex.

the one on the left is a clever way to quickly compute inverse square roots, which is really useful when you need to normalize a bunch of vectors (eg, computer graphics stuff).
the one on the right doesn't really do anything useful (that's the joke)

Damn, close but no cigar.

>there's a pic of her "coding" by fucking up cd .. in command prompt
>bitches think she is literally programming the matrix
>mfw everything

That picture makes me so fucking mad

...

...

First one
en.wikipedia.org/wiki/Fast_inverse_square_root

second one is just basic shit you learn within 10 minutes

the code on the left isn't really a simple number function, what it's doing is actually pretty weird.

He can't be that stupid...

no shit, that's why it was my face

He looks like an honest bro, too. What a shame.

He's also missing the fucking coefficient.

if you give 1% more instead of slacking 1% more you faggot

Maybe I'm retarded, but what is it actually doing? Wikipedia article was greek to me.

Are you fucking mad right now too?

>faggot beta
>bro

come on, theres no one to blame but him for this. if he actually had some balls he would have asked to fuck instead of being an orbiter

He's obviously referring to a 1% extra effort with 1 being the baseline you retard

Isn't manchester one of those cities with active muslim rape gangs targeting english children?

Way to go, bongs. Be sure to focus on what's important.

...

Newton-Raphson approximation for inverse square root.

Calculating an approximation x^(-1/2) using a weird but fast method.

yes

Do you think you could even cut your skin with that if you tried?

Trap on female or trap on trap is the only non-cuck porn out there

>=

Good.

Anyone else?

kek

Does anyone remember that hilariously bad code that used to get circulated around Sup Forums? It was like 5000 lines of stuff like this to do something very basic like a calculator

The guys code is a strawman, the code is hard to read because of many useless lines and "overly complicated" lines that do literaly nothing. the code could just be
return 1 / sqrt(number);
The girls code contains way too much useless comments (the grey text) and contain many useless code lines as well.
The code could and should be
if(a < b)
return b;
else
return a;

Also, the girls' code is wrong as if a and b are equal, the function should output a ( or b), and not 5

what the fuck is going on in this picture explain australia

This makes me want to beat some random girl and I'm not even muslim.

I remember. I think it was just a troll, but who knows? Nobody, that's who.

blog.dave.io/2011/10/0x5f3759df-true-magic-number/

Im angrier n' hell

Yes, so it should be 1.01 vs 1 you retard.

The capital letters on the sign spell "CUK", dipshit

>using assignment statement instead of comparison
>supposed game developer
>supposed woman