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
  1. Home
  2. The Lounge
  3. Bob gets a bad rep

Bob gets a bad rep

Scheduled Pinned Locked Moved The Lounge
com
24 Posts 20 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Graham Bradshaw

    CP gets a mention in today's Daily WTF (http://thedailywtf.com/forums/thread/85510.aspx[^]), and those commenters, they ain't too complimentary. :(

    C Offline
    C Offline
    Chris Maunder
    wrote on last edited by
    #14

    No, the commenters have a point. What are we doing allowing people to post actual unedited content on the internet. Like, WTF? And we don't provide printed manuals and there's no phone support. Insane.

    cheers, Chris Maunder

    CodeProject.com : C++ MVP

    C 1 Reply Last reply
    0
    • C Christian Graus

      The guy who runs the site and made the original comment said 'here's a clue, it starts with c and ends with odeproject.com'. I tend to agree with what was generally said - if someone writes their code by cutting and pasting a bunch of articles blindly, they deserve what they get. The self published nature of CP means there ARE some lousy articles here, that's what the article rating system and purgatory are for. There is also some amazingly well written and thought out code here, which is what makes the site a great resource for developers who have half a clue.

      Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

      D Offline
      D Offline
      Dave Kreskowiak
      wrote on last edited by
      #15

      Absolutely true! If CP is missing anything it's a shortage of Editors. You got my '5'.

      Dave Kreskowiak Microsoft MVP - Visual Basic

      1 Reply Last reply
      0
      • C Chris Maunder

        No, the commenters have a point. What are we doing allowing people to post actual unedited content on the internet. Like, WTF? And we don't provide printed manuals and there's no phone support. Insane.

        cheers, Chris Maunder

        CodeProject.com : C++ MVP

        C Offline
        C Offline
        Christopher Duncan
        wrote on last edited by
        #16

        Chris Maunder wrote:

        And we don't provide printed manuals and there's no phone support. Insane.

        I agree. You're charging way too much for this stuff. How dare you? :rolleyes:

        Author of The Career Programmer and Unite the Tribes www.PracticalStrategyConsulting.com

        L 1 Reply Last reply
        0
        • G Graham Bradshaw

          CP gets a mention in today's Daily WTF (http://thedailywtf.com/forums/thread/85510.aspx[^]), and those commenters, they ain't too complimentary. :(

          R Offline
          R Offline
          RedZenBird
          wrote on last edited by
          #17

          Out of morbid curiousity I looked at this 'article'....geez, what a bunch of drivel....and the comments that form the 'discussion' don't say a lot for this audience's understanding-of-anything to do with much of anything, much less multi-threaded techniques. ( I mean, really: threads are hard....what, are you high? no they're not...if you know wtf you are doing)....what a bunch of ding dongs...In short, I don't think this mention is worth a second look, as the entire page does not seem to be worth the bits wasted to display it.....

          Just trying to keep the forces of entropy at bay

          1 Reply Last reply
          0
          • G Gary R Wheeler

            dailywtf.com[^] is based mostly on programming by IT kind of folks, and does seem to be pretty penguinophilic. As a result, they rag on Windows a lot. Given that our beloved CP is Windows-specific, it's not surprising that they take the piss at CP. Granted, the post by Alex identifying CP is pretty bad manners for a webmaster, if you ask me.


            Software Zen: delete this;

            Fold With Us![^]

            C Offline
            C Offline
            charlieg
            wrote on last edited by
            #18

            What the he** is penguinophilic???? :wtf: Actually, I know - biased toward unix/linux, but still, never heard THAT term before. Brings new meaning to the bud-light penguin commercials.. :) In all honesty, I thought the comments about CP in wtf to be pretty much out of line. Their complaint was that too many people can just cut/paste code into enterprise systems... as if *thats* never happened before... as others have pointed out, give me any book, any site, any existing code, and I can make a mess out of it if I do not use the computer between the ears.

            Charlie Gilley Will program for food... Whoever said children were cheaper by the dozen... lied. My son's PDA is an M249 SAW. My other son commutes in an M1A2 Abrams

            1 Reply Last reply
            0
            • G Graham Bradshaw

              CP gets a mention in today's Daily WTF (http://thedailywtf.com/forums/thread/85510.aspx[^]), and those commenters, they ain't too complimentary. :(

              S Offline
              S Offline
              S Douglas
              wrote on last edited by
              #19

              Graham Bradshaw wrote:

              CP gets a mention in today's Daily WTF

              Alex Papadimoulis wrote:

              The website in question (and I should note that I get a LOT of submissions directly linking to this site) starts with the the letter "c" and ends with "odeproject.com"

              I half wonder if Alex hasn't confused CodeProject & CodeGuru, CodeGuru has an amazing about of crap. No its just a waste of poor ASCII characters.


              I'd love to help, but unfortunatley I have prior commitments monitoring the length of my grass. :Andrew Bleakley:

              1 Reply Last reply
              0
              • G Graham Bradshaw

                CP gets a mention in today's Daily WTF (http://thedailywtf.com/forums/thread/85510.aspx[^]), and those commenters, they ain't too complimentary. :(

                M Offline
                M Offline
                Maxwell Chen
                wrote on last edited by
                #20

                It's not in C++. Refer to the code snippet in the original post.

                public int ProcessIncomingMessage
                (int messageId, int messageType, char* message)
                {
                //spawn a new listener so we can process this
                int h = CreateThread(
                NULL, 0, ListenForMessage,
                (void *)this, 0, NULL);

                //now process the message
                int result = -1;
                switch (messageType)
                {
                case MSGTYP_M001:
                result = ProcessCvlMessage(messageId, message);
                break;
                case MSGTYP_M002:
                result = ProcessAplMessage(messageId, message);
                break;
                case MSGTYP_M003:
                if (this->routingLevel == 1)
                result = ProcessLcxMessage(messageId, message);
                else
                result = ReRouteMessage(messageId, MSGTYP_M008, message);
                break;

                --- snip ---
                

                Maxwell Chen

                1 Reply Last reply
                0
                • V Varindir Rajesh Mahdihar

                  well, what part of it isn't true ??. most of the code here is brutal to say the least. Most post so-called "articles" here because they think it makes a difference on there resumes', and to re-validate themselves because they have no life. "um, umm, you want to see my slide ruler girls" :laugh: "oh yeah, i had articles published on CP" --- every article is posted NOT published here. when you get a paper published in a real journal, give me a call:laugh::laugh:

                  L Offline
                  L Offline
                  Lost User
                  wrote on last edited by
                  #21

                  I think that says more about you than others.

                  The tigress is here :-D

                  1 Reply Last reply
                  0
                  • C Christopher Duncan

                    Chris Maunder wrote:

                    And we don't provide printed manuals and there's no phone support. Insane.

                    I agree. You're charging way too much for this stuff. How dare you? :rolleyes:

                    Author of The Career Programmer and Unite the Tribes www.PracticalStrategyConsulting.com

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #22

                    Hey, it's worth what I pay for it!

                    The tigress is here :-D

                    1 Reply Last reply
                    0
                    • C Christian Graus

                      The guy who runs the site and made the original comment said 'here's a clue, it starts with c and ends with odeproject.com'. I tend to agree with what was generally said - if someone writes their code by cutting and pasting a bunch of articles blindly, they deserve what they get. The self published nature of CP means there ARE some lousy articles here, that's what the article rating system and purgatory are for. There is also some amazingly well written and thought out code here, which is what makes the site a great resource for developers who have half a clue.

                      Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

                      L Offline
                      L Offline
                      Lost User
                      wrote on last edited by
                      #23

                      My reply: It's not the code snippet but the fact he didn't know what he was doing ("Unix is based on Windows"). As for quality, look at the maturity of the replies in this thread...

                      The tigress is here :-D

                      1 Reply Last reply
                      0
                      • C Christian Graus

                        The guy who runs the site and made the original comment said 'here's a clue, it starts with c and ends with odeproject.com'. I tend to agree with what was generally said - if someone writes their code by cutting and pasting a bunch of articles blindly, they deserve what they get. The self published nature of CP means there ARE some lousy articles here, that's what the article rating system and purgatory are for. There is also some amazingly well written and thought out code here, which is what makes the site a great resource for developers who have half a clue.

                        Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

                        J Offline
                        J Offline
                        Judah Gabriel Himango
                        wrote on last edited by
                        #24

                        Christian Graus wrote:

                        he guy who runs the site and made the original comment said 'here's a clue, it starts with c and ends with odeproject.com'.

                        Ah, must've missed that.

                        Tech, life, family, faith: Give me a visit. I'm currently blogging about: Messianic Instrumentals (with audio) The apostle Paul, modernly speaking: Epistles of Paul Judah Himango

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

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