Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

Craig Atwood

@Craig Atwood
About
Posts
11
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • C++ Style Question
    C Craig Atwood

    Its all up to your personal preference, the only time it matters is when you declare many variables in 1 line e.g int* first, second here both variables are type int* int *first, second here first is int* and second is primitive int Personally i use int* ithe reason being that the data type is more clear when reading the code

    http://www.4cgroup.co.za/

    The Lounge question c++ visual-studio

  • jobs.codeproject.com [modified]
    C Craig Atwood

    goodideadave wrote:

    so if someone came along with a HUGE BUTTWAD of job dollars...

    erm...so?

    The Lounge com business career learning

  • jobs.codeproject.com [modified]
    C Craig Atwood

    how about we just leave it at ...it is ethically correct I think it is a perfectly good idea to have a job section to the website, this is a site for developer resources and thats just another resource, I SERIOUSLY doubt that the job section could ever overshadow the comunity, even if SOMEHOW it does, the job section cant function properly without the community As to CP reaping the finanicial benefits. 300 bucks is a longs ways off, agencies will often take a percentage of your first year's pay. As to the image of CP, having the $300 charge could even improve that image depending on who looks at it, having a price means that its only for serious job notices, I've seen some free ad sites with job sections and they have the most bogus adds somtimes anyway if it came down to a vote my vote would go towards having the job section, wven tho being from SA I dont have much use for it. P.S Most likly Mr bigdenny is a recruiter who cant afford the 300 bucks and this is his petition to get the price to drop :suss: ;P

    The Lounge com business career learning

  • Oopsie!
    C Craig Atwood

    LOL :laugh:

    The Lounge c++ com debugging architecture

  • jobs.codeproject.com [modified]
    C Craig Atwood

    Ditto that was my thought on this point sigh...

    The Lounge com business career learning

  • Brace style
    C Craig Atwood

    I didnt know that it did that with class objects thanx very usefull

    The Lounge com question

  • Brace style
    C Craig Atwood

    MORE BLASPHEMY!!! the true if is as follows

    if(condition)
    {
    doStuff();
    }
    else
    {
    doSomethingElse();
    }

    Your Brace style bears the identifiable stench of a Vagabond Romulan coder, May Fek'lhr forgive your dishonour.

    The Lounge com question

  • Brace style
    C Craig Atwood

    BLASPHEMY!!!!:omg: indenting the closing brace *-Shudder-* u r a Patagh

    The Lounge com question

  • Brace style
    C Craig Atwood

    as far as if() with or without a space in between i dont care but the difference between "i++" and "++i" is... i++ = returns the value of 'i' before it was incremented ++i = returns the value of 'i' after it was incremented e.g

    int i = 1;
    if(++i == 2)
    {
    thisWillWork();
    }
    //
    //OR
    //
    int i = 1;
    if(i++ == 2)
    {
    thisWontWork();
    }

    This is what the operators do and you can use them bassed on what you need your code to do. if you use them correctly you can end up saving a few lines of code:cool: ps. as to my brace style brace on next line = more readable thats my vote

    The Lounge com question

  • Brace style
    C Craig Atwood

    This is interesting, I myself used the latter, but in the programming course Ive done they teach using the former, although Ive gotten used to programming like that i still dont like it and prefer having the extra line breaks

    The Lounge com question

  • RAR vs ZIP
    C Craig Atwood

    Im Currently using Power Archiver and im having no problems, it has a nice UI and it can unzip almost anything, the only thing i found that it cant unzip is 7zip files

    The Lounge c++ visual-studio com architecture question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups