Thread: !!Everybody *has* to answer this one!!

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Super unModrator
    Join Date
    Dec 2007
    Posts
    321

    Talking !!Everybody *has* to answer this one!!

    Are you a man or a woman ?


    Seriously, its not possible to guess people's gender from their names and many of you don't have an Avatar. I don't understand whether its a man or a woman answering my questions in C/C++. I might end up referring you by "she" even if you are a man in case you don't answer this question.

    So please specify your gender here.

  2. #2
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    I see no need to, really. Deal with it instead.

    If someone feels like they need to correct you, they will. Sure nobody will be offended because someone confused their gender. Move on...
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

  3. #3
    Jack of many languages Dino's Avatar
    Join Date
    Nov 2007
    Location
    Chappell Hill, Texas
    Posts
    2,337
    Manly man. Arrrrrgh. (just in case "Todd" wasn't clear enough.)

    I think I know where you are going with this, and I'm pretty sure Elysia is female!!
    Mainframe assembler programmer by trade. C coder when I can.

  4. #4
    Super unModrator
    Join Date
    Dec 2007
    Posts
    321
    Quote Originally Posted by Todd Burch View Post

    I think I know where you are going with this
    Nothing like that , just a general question out of curiosity.

  5. #5
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    Sometime ago I made a public move on laserlight on this forum only to discover he's male and the avatar is of a female colleague at work.

    Traumatic as it may seem, it served to make me realize that I'm probably gay and I just don't know yet. I'm currently exploring the woman inside me. So... I'm unsure as to what exactly I am. I'll let you know when I can have a decent talk with her without starting to argue.
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

  6. #6
    Malum in se abachler's Avatar
    Join Date
    Apr 2007
    Posts
    3,195
    Quote Originally Posted by Mario F. View Post
    Sometime ago I made a public move on laserlight on this forum only to discover he's male and the avatar is of a female colleague at work.
    Oh the humanity, that just ruined my week

    On a lighter note, in Modern English, he/him/his is also the neuter. So unless the gender of the article is relevant to the discussion, it is perfectly correct to use he/him/his when the gender is unknown.

    Quote Originally Posted by CornedBee View Post
    On another board there's mostly women, so my default stance there is "she".)
    That makes me wonder if perhaps there isnt a gender imbalance among programmers, but maybe just self segregation on to male and female websites
    Last edited by abachler; 02-04-2008 at 03:19 PM.

  7. #7
    & the hat of GPL slaying Thantos's Avatar
    Join Date
    Sep 2001
    Posts
    5,681
    Quote Originally Posted by abachler View Post
    Oh the humanity, that just ruined my week

    On a lighter note, in Modern English, he/him/his is also the neuter. So unless the gender of the article is relevant to the discussion, it is perfectly correct to use he/him/his when the gender is unknown.
    Not anymore. The PC preference is to use he/she or him/her or to avoid it all together.


    This topic reminds me of what I consider the first rule of the internet: Assume a penis until proven otherwise.

  8. #8
    Cat without Hat CornedBee's Avatar
    Join Date
    Apr 2003
    Posts
    8,895
    The Obait-Ku don't have genders.
    All the buzzt!
    CornedBee

    "There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code."
    - Flon's Law

  9. #9
    Super unModrator
    Join Date
    Dec 2007
    Posts
    321
    Quote Originally Posted by CornedBee View Post
    The Obait-Ku don't have genders.
    Google says "Obait-Ku" didn't match any documents. What does it mean ?

  10. #10
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    The first question here is "How do you know if the other person is telling the truth anyways?"

    Things like "Does this code work?" can be verified, but should someone say that they are male or female, you can't REALLY check that unless you meet with that person - which may be difficult for some of us, as there are members almost all over the world here.

    And of course, no one HAS to answer any questions here, unless the owner of the website says so [that is allowed under the condition that a website owner can do anything they like, it's voluntary to join any particular site - although each country has some laws regarding what sort of questions you may or may not ask].

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  11. #11
    Super unModrator
    Join Date
    Dec 2007
    Posts
    321
    Quote Originally Posted by matsp View Post
    And of course, no one HAS to answer any questions here, unless the owner of the website says so
    umm.....sorry for that *has* thing, but i don't know how to edit it now. Maybe the admin will change it to "Everybody is requested to answer this" or something like that. I hope this post is not toooo offending to get deleted completely.

  12. #12
    Unregistered User Yarin's Avatar
    Join Date
    Jul 2007
    Posts
    2,158
    the admin will change it to "Everybody is requested to answer this" or something like that.
    Believe me, he won't.
    I hope this post is not toooo offending to get deleted completely.
    It's very 'not smart', but not offending.

    You never even said what you are. (I'm guessing you'r a female though)

    The majority of people here are males, so just guess, or say "he" until she says somthing.

  13. #13
    Dr Dipshi++ mike_g's Avatar
    Join Date
    Oct 2006
    Location
    On me hyperplane
    Posts
    1,218
    This can be determined with a get sex calculator. Just plug in the username:
    Code:
    #include <stdio.h>
    #include <string.h>
    
    int getSex()
    {
        char name[100];
        fgets(name, 100, stdin);
        int i, sex=0;
        for(int i=0; i<strlen(name); i++)    
            sex += name[i];
        return sex & 2; 
    }
    
    int main()
    {
        if(getSex())
            printf("Is man!");
        else
            printf("Is woman!");
        getchar();
        return 0;
    }
    Last edited by mike_g; 02-04-2008 at 09:22 AM.

  14. #14
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    Quote Originally Posted by mike_g View Post
    Code:
        if(getSex())
            printf("Is man!");
        else
            printf("Is woman!");
        getchar();
        return 0;
    }

    So... if you can get sex it's a woman? I thought that was men?
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

  15. #15
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    Quote Originally Posted by mike_g View Post
    This can be determined with a get sex calculator. Just plug in the username:
    Code:
    #include <stdio.h>
    #include <string.h>
    
    int getSex()
    {
        char name[100];
        fgets(name, 100, stdin);
        int i, sex=0;
        for(int i=0; i<strlen(name); i++)    
            sex += name[i];
        return sex & 2; 
    }
    
    int main()
    {
        if(getSex())
            printf("Is man!");
        else
            printf("Is woman!");
        getchar();
        return 0;
    }
    This makes me wonder if you tested is right
    Enter name: Prelude
    Is a man!
    Hehehe.
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Looking for constructive criticism
    By wd_kendrick in forum C Programming
    Replies: 16
    Last Post: 05-28-2008, 09:42 AM
  2. One quick question...
    By Kross7 in forum C++ Programming
    Replies: 10
    Last Post: 04-13-2007, 09:50 PM
  3. Tic Tac Toe program...
    By Kross7 in forum C++ Programming
    Replies: 12
    Last Post: 04-12-2007, 03:25 PM
  4. Game Programming FAQ
    By TechWins in forum Game Programming
    Replies: 5
    Last Post: 09-29-2004, 02:00 AM
  5. code help :)
    By Unregistered in forum C Programming
    Replies: 4
    Last Post: 02-28-2002, 01:12 PM