Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
arminiae5668y//so therefore
if(woman) {
cry = true; // ??
}
it seems like this is somehow wrong and that i should be upset about this, but i can't quite put my finger on why.. -
@arminiae
// the inverse would be
if (! isset($woman))
{
cry=true
}
So if woman is non exist, cry
If woman does exist, don't cry. -
@arminiae It is upsetting, because most forms of "men are like this, women are like that" diminish a person to their gender. Tell me your gender and I'll tell you who you are :(
Most disturbing IMO is that the more we hear these false truths, the more they become true. Kids and teenagers hear that and let it define them.
if (!isset($woman))
{
$cry = false;
}
undefined