Apologize

Apologize.

Other urls found in this thread:

sites.math.washington.edu/~morrow/336_12/papers/ben.pdf
twitter.com/SFWRedditGifs

so she wasn't a meme
good job Sup Forums

cd..
cd..
cd ..

who?

Why?

What?

Where?

Fake and gay

Bane?

cd code

float Q_rsqrt( float number )
{
long i;
float x2, y;
const float threehalfs = 1.5F;

x2 = number * 0.5F;
y = number;
i = * ( long * ) &y;
i = 0x5f3759df - ( i >> 1 );
y = * ( float * ) &i;
y = y * ( threehalfs - ( x2 * y * y ) );

return y;
}

A fraud programmer
That being said, it's good that she'll be on the show even though she's a fraud.
She could likely get more girls become actual programmers so it's a net gain.

We don't need more programmers though

Stop this ride. I want off.

she looks like she took a shit and is proud of it. also why does she have that bow tie? she looks ridiculous with it on.

this, maybe future neckbeard generations will be able to obtain a qt programming gf.

>implying i want to work with roasties

I just saw a titlecard for that show on Netflix and the first thing I thought of was "Great now everybody won't shut up about how great this faggot is again"

A dogshit coder and a phony "scientist"
What a joke

now im scared cause i know all airplane software is written by males

>more girls become actual programmers
>girls
>actual programmers
pick one and only one.

You're the reason why people still think geeks and nerds are still neckbeard losers

Do you think the code is good?
Or is it too hacky for you?
01110100 01100110 01110111 00100000
01110100 01101111 01101111 00100000
01101001 01101110 01110100 01100101
01101100 01101100 01101001 01100111
01100101 01101110 01110100

Watch out guys! We got a Real Geekā„¢ here.

Does it change the current directory to code and then to the parent folders? Before going back to code?

>guys
Did you just assume our genders?

Hopefully this strengthens the campaign to replace that ugly freak in the Sup Forums sticky

Is this more legible?

/* Fast implementation of inverse square root using Newton's method.
* The logic of this function can be described in the following paper:
* sites.math.washington.edu/~morrow/336_12/papers/ben.pdf
*/
float fast_inv_sqrt(float number)
{
union { int32_t i; float f; } res = { .f = number };
float half = number * 0.5F;

res.i = 0x5F3759DF - (res.i >> 1);
return res.f * (1.5F - (half * res.f * res.f));
}

>union masking
meh.

No, it prints "tfw too intelligent"

At least it's more explicit about what's being done here.

fuck you

For you. There exist people who perceive the original notation better than union masking.

With a union, you only have to keep track of one variable, and know that all of its members are being type punned. In any case, the choice of int32_t is still better than the original choice of the long data type.

Looking for short-term hacker roommate 1week-3months

I am 5'8'' 130lbs clean, respectful, no drugs or alcohol

Email me at [email protected]

Pls no airbnb

I can agree with (You) on that part.