Thread: Female Oriented C++ -- :D

  1. #16
    Registered User LordVirusXXP's Avatar
    Join Date
    Dec 2002
    Posts
    86
    Prelude's a girl?
    - Dean

  2. #17
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    wow you people really need to lighten up...

    first of all, it was a joke... take it as such... secondly, i don't think anyone ever intended to compile it and actually get it to run...

    damn... some people need to walk away from their computers for a bit and get some fresh air... I know plenty of females both programmers and not who would have laughed at that...

    stuck on the syntax you all are.. see the petty humor you can't.
    EntropySink. You know you have to click it.

  3. #18
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    your opinion... i respect that.
    EntropySink. You know you have to click it.

  4. #19
    Seven years? civix's Avatar
    Join Date
    Jul 2002
    Posts
    605
    Originally posted by LordVirusXXP
    Prelude's a girl?
    Yeh. What did you think she is, an extra-terrestrial lifeform from SR388? Hehe...
    .

  5. #20
    Registered User
    Join Date
    Sep 2002
    Posts
    1,640
    Maybe there needs to be inlcuded a gender option in the
    profile, otherwise whe might get more 'prelude's a girl?'
    misunderstandings.

  6. #21
    Cheesy Poofs! PJYelton's Avatar
    Join Date
    Sep 2002
    Location
    Boulder
    Posts
    1,728
    What difference does it make? Anyone plan on treating those marked female any differently? I think if the person wants others know what their gender is, they'll let'em know.

  7. #22
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >Anyone plan on treating those marked female any differently?
    I'd had that problem with many other forums before I came here, everyone waving off my opinions and corrections because I ws a girl (and girls can't program ), so for quite some time I kept my posts carefully neutral here until my name leaked out somewhere.

    -Prelude
    My best code is written with the delete key.

  8. #23
    Registered User LordVirusXXP's Avatar
    Join Date
    Dec 2002
    Posts
    86
    Originally posted by Travis Dane
    Maybe there needs to be inlcuded a gender option in the
    profile, otherwise whe might get more 'prelude's a girl?'
    misunderstandings.
    I agree with that. Not like I'm going to treat girls any differently, just so I know who's who. Before now, I thought Prelude was a guy. Let's all tell the Web Masta to put in a gender option in peoples' profiles.
    - Dean

  9. #24
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    why? I don't understand why it matters what gender you or anyone else is?! Why does it matter whether you know jack sh1t about anyone else? This is a help forum... not a meet-n-greet forum. You don't need to know everything about a person to answer their C questions.
    EntropySink. You know you have to click it.

  10. #25
    Registered User LordVirusXXP's Avatar
    Join Date
    Dec 2002
    Posts
    86
    Originally posted by ober5861
    why? I don't understand why it matters what gender you or anyone else is?! Why does it matter whether you know jack sh1t about anyone else? This is a help forum... not a meet-n-greet forum. You don't need to know everything about a person to answer their C questions.
    Pardon me sir, but last time I checked this isn't the C++ Forum, this is the General Discussion Forum where people talk about non-C++ related things. And besides, it never hurts to know what gender someone is.
    - Dean

  11. #26
    Senior Member joshdick's Avatar
    Join Date
    Nov 2002
    Location
    Phildelphia, PA
    Posts
    1,146
    I think it'd be a good idea to know the gender of people to avoid misunderstandings. Prelude, I think that's horrible that some programmers have treated you differently due to your gender; however, I don't think you've had that problem here at the C Board. I may be wrong, but from what I've seen here, you are generally worshipped as a great programmer and someone who is very helpful and knowlegable.

    The other reason why I'd like to see a gender option is so that I can learn that female programmers can be just as good, if not better, than male programmers. Prelude, you have truly taught me that there are female programmers in the world and they can be really great programmers. Thank you for that and all of your help with programming.

    "Let's all tell the Web Masta to put in a gender
    option in peoples' profiles."
    I think that's a good suggestion, but I have a feeling that some feel quite differently. I think I'll start up a poll to see how many people think that a gender option would be a good idea.


    Oh, one more reason why I'd like to see that option in a profile. If it was open-ended like location, I'm sure people would come up with funny little things to put for that the way in which they do for location. I think "In a stack" was my favorite that I saw. *small chuckle*
    FAQ

    "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited complexity can be created in the form of computer programs." -- Joseph Weizenbaum.

    "If you cannot grok the overall structure of a program while taking a shower, you are not ready to code it." -- Richard Pattis.

  12. #27
    Registered User
    Join Date
    Nov 2002
    Posts
    1,109
    off topic (but I didn't want to make a new thread about this): in joshdick's sig, #define is listed as evil. I want to know why? thanks.

  13. #28
    Senior Member joshdick's Avatar
    Join Date
    Nov 2002
    Location
    Phildelphia, PA
    Posts
    1,146
    Originally posted by alpha
    off topic (but I didn't want to make a new thread about this): in joshdick's sig, #define is listed as evil. I want to know why? thanks.
    alpha, here are the reasons for using const instead of #define:
    • they obey the language's scoping rules
    • you can see them in the debugger
    • you can take their address if you need to
    • you can pass them by const-reference if you need to
    • they don't create new "keywords" in your program.

    So, instead of
    Code:
    #define true 1
    do this:
    Code:
    const int true = 1;
    For more info on that, go here.
    Also, by evil I don't mean to say that #define should never be used. It's just that it should only be used when it's the lesser of two evils. That's why I use the word 'evil' istead of 'wrong' or 'bad'. However, there is absolutely no reason to use void main.
    FAQ

    "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited complexity can be created in the form of computer programs." -- Joseph Weizenbaum.

    "If you cannot grok the overall structure of a program while taking a shower, you are not ready to code it." -- Richard Pattis.

  14. #29
    Senior Member joshdick's Avatar
    Join Date
    Nov 2002
    Location
    Phildelphia, PA
    Posts
    1,146
    Originally posted by Ken Fitlike
    as someone else has noted, most people would probably choose to fill such fields with witty/witless fiction.
    That's the biggest reason why it should be included—for humor. Really, more things should be done merely for humor's sake. I think I'd get a kick out of the jokes people would put in for their gender.
    FAQ

    "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited complexity can be created in the form of computer programs." -- Joseph Weizenbaum.

    "If you cannot grok the overall structure of a program while taking a shower, you are not ready to code it." -- Richard Pattis.

  15. #30
    Registered User
    Join Date
    Nov 2002
    Posts
    1,109
    Originally posted by joshdick
    alpha, here are the reasons for using const instead of #define:
    • they obey the language's scoping rules
    • you can see them in the debugger
    • you can take their address if you need to
    • you can pass them by const-reference if you need to
    • they don't create new "keywords" in your program.

    So, instead of
    Code:
    #define true 1
    do this:
    Code:
    const int true = 1;
    For more info on that, go here.
    Also, by evil I don't mean to say that #define should never be used. It's just that it should only be used when it's the lesser of two evils. That's why I use the word 'evil' istead of 'wrong' or 'bad'. However, there is absolutely no reason to use void main.
    oh, okay. i haven't seen
    Code:
    #define true 1
    before. the only place I've seen #define is with classes. thanks for the explanation.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. object oriented C
    By FlatLost in forum C Programming
    Replies: 4
    Last Post: 11-08-2005, 06:22 AM
  2. [Code] Oriented Graph
    By ilmarculin in forum C Programming
    Replies: 0
    Last Post: 04-08-2005, 02:09 AM
  3. Party of the first female president
    By vNvNation in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 06-22-2004, 09:46 PM