[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

Girls should code more

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 21
Thread images: 5

File: Girls who code.png (240KB, 652x669px) Image search: [Google]
Girls who code.png
240KB, 652x669px
Why don't girls code more?
It looks so nice and well structured
>>
>>58813211
nice bait
>>
File: 881getafix.jpg (14KB, 300x300px) Image search: [Google]
881getafix.jpg
14KB, 300x300px
>>58813211
Girls can make great programmers. Clearly this one doesn't. What's your point OP?
>>
>>58813211

I'm not a programmer

Is this literally a program to multiply things without using a multiplication sign
>>
File: 4chanWhy.jpg (131KB, 1024x924px) Image search: [Google]
4chanWhy.jpg
131KB, 1024x924px
You know I get kind of sick of this.

There are wonderful female programmers out there. I have personally met and have worked with several. Then I have met girls who suck at code but get pushed along because there's this "women in tech" movement -- reinforcing sexist stereotypes that women can't code or whatever.

Why don't we just try to be objective and evaluate code on its own merits?
>>
>>58813280

Yes, and it's done poorly. It illustrates an understanding of java, but does so at the cost of higher principles like DRY.
>>
>>58813239
Girl detected.
>>
File: rel.jpg (34KB, 540x421px) Image search: [Google]
rel.jpg
34KB, 540x421px
Society raises girls 'differently', then, when they grow up, some of them think they have to "be different" (there's no 'boys who code').
Raise your girls (if you guys are having any kids) "like boys": let them face the world and fall down and get up and break RC cars after one week to see what's inside and...

Now recommend me some
>>
>>58813316
>>58813211

What's the "right" answer to this question?
Do you just bitshift 'a' 'b' times
>>
>>58813501
there are many ways to do it but definitely not by bitshifting 'a' 'b' times
>>
>>58813653
I realized as soon as i posted it that it would end up being a^b. forgive me :/
>>
>>58813721
you mean a*2^b
>>
>>58813501
Just add a to itself b times. So a for loop with incrementation of a by it's original value b times should work.
>>
>>58813501
for(int i = 0; i < b; i++) a += a;
return a;
>>
>>58813921
lmao
>>
>>58813255
>Girls can make great programmers.
Correct, giving birth is the only thing women are good for, and their sons could potentially be great programmers.
>>
>>58813885
wow im dumb i thought this was le super clever haxor knowing that the computer uses powers of two and you can bitshift those to simulate multiplication

i forgot what multiplication was
>>
>>58813211
why the fuck isn't this a loop
>>
>>58814030
that's the joke dude
>>
File: 420522.png (354KB, 594x593px) Image search: [Google]
420522.png
354KB, 594x593px
>>58813302
This.
There are great programmers that happen to be women, but the set of genitals you get is seldom relevant.

I wish people would quit with the divisive bullshit and let people do what they enjoy doing, whatever that is.
>>
post code faggits

int mult(int a, int b)
{
if(a < 0 && b < 0)
return mult(abs(a), abs(b));

if(a < 0)
return mult(b, a);

if(a == 0)
return 0;
else
return b + mult(a-1, b);
}

int mult(int a, int b)
{
if(a < 0 && b < 0)
return mult(abs(a), abs(b));

if(a < 0)
return mult(b, a);

int temp = 0;
while(a-- != 0)
{
temp += b;
}
return temp;
}
Thread posts: 21
Thread images: 5


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.