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. Other Discussions
  3. Site Bugs / Suggestions
  4. Alternate Tip/Trick pending for 10 hours

Alternate Tip/Trick pending for 10 hours

Scheduled Pinned Locked Moved Site Bugs / Suggestions
comquestion
8 Posts 3 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.
  • A Offline
    A Offline
    Aescleal
    wrote on last edited by
    #1

    Hi folks, Earlier today I submitted an alternate to a tip. It hasn't shown up on the list yet and still says it's pending. Anyone care to tell me what I have to do to change it's state? Cheers, Ash PS: The alternate is: http://www.codeproject.com/Tips/110949/Fibonacci-Recursive-and-Non-Recursive-Cplusplus.aspx#alternate2[^]

    D L 2 Replies Last reply
    0
    • A Aescleal

      Hi folks, Earlier today I submitted an alternate to a tip. It hasn't shown up on the list yet and still says it's pending. Anyone care to tell me what I have to do to change it's state? Cheers, Ash PS: The alternate is: http://www.codeproject.com/Tips/110949/Fibonacci-Recursive-and-Non-Recursive-Cplusplus.aspx#alternate2[^]

      D Offline
      D Offline
      DaveyM69
      wrote on last edited by
      #2

      It needs approving by a member with sufficient status - at the weekend there aren't as many members around to look it over. Just be patient :thumbsup: I'll have a look at myself shortly... Approved :)

      Dave
      Binging is like googling, it just feels dirtier. Please take your VB.NET out of our nice case sensitive forum. Astonish us. Be exceptional. (Pete O'Hanlon)
      BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)

      A 1 Reply Last reply
      0
      • A Aescleal

        Hi folks, Earlier today I submitted an alternate to a tip. It hasn't shown up on the list yet and still says it's pending. Anyone care to tell me what I have to do to change it's state? Cheers, Ash PS: The alternate is: http://www.codeproject.com/Tips/110949/Fibonacci-Recursive-and-Non-Recursive-Cplusplus.aspx#alternate2[^]

        L Offline
        L Offline
        Luc Pattyn
        wrote on last edited by
        #3

        your alternate seems to need approval for reasons unknown to me. As you posted another T&T today (to which I added a comment!), you might have known that already. I'm not going to approve it, as I am not sufficiently comfortable with C++, and don't see the added value; I do agree with most that was said in the original T&T. I'm also afraid your alternate is making the compiler do the inefficient recursions. IMO Fibonacci is the prime example of things that should NOT be done with recursion, in the app nor in the compiler. :)

        Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum

        Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.

        D A 2 Replies Last reply
        0
        • L Luc Pattyn

          your alternate seems to need approval for reasons unknown to me. As you posted another T&T today (to which I added a comment!), you might have known that already. I'm not going to approve it, as I am not sufficiently comfortable with C++, and don't see the added value; I do agree with most that was said in the original T&T. I'm also afraid your alternate is making the compiler do the inefficient recursions. IMO Fibonacci is the prime example of things that should NOT be done with recursion, in the app nor in the compiler. :)

          Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum

          Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.

          D Offline
          D Offline
          DaveyM69
          wrote on last edited by
          #4

          I've approved it anyway Luc. I agree with all your points but it adheres to the approval recommendations, the rest is up to the community to judge/vote on now it's 'in the wild'.

          Dave
          Binging is like googling, it just feels dirtier. Please take your VB.NET out of our nice case sensitive forum. Astonish us. Be exceptional. (Pete O'Hanlon)
          BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)

          L 1 Reply Last reply
          0
          • D DaveyM69

            I've approved it anyway Luc. I agree with all your points but it adheres to the approval recommendations, the rest is up to the community to judge/vote on now it's 'in the wild'.

            Dave
            Binging is like googling, it just feels dirtier. Please take your VB.NET out of our nice case sensitive forum. Astonish us. Be exceptional. (Pete O'Hanlon)
            BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)

            L Offline
            L Offline
            Luc Pattyn
            wrote on last edited by
            #5

            No problem, the Force is with you. :)

            Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum

            Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.

            1 Reply Last reply
            0
            • D DaveyM69

              It needs approving by a member with sufficient status - at the weekend there aren't as many members around to look it over. Just be patient :thumbsup: I'll have a look at myself shortly... Approved :)

              Dave
              Binging is like googling, it just feels dirtier. Please take your VB.NET out of our nice case sensitive forum. Astonish us. Be exceptional. (Pete O'Hanlon)
              BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)

              A Offline
              A Offline
              Aescleal
              wrote on last edited by
              #6

              Thanks! I'll wait until monday morning next time before whinging, Cheers, Ash

              1 Reply Last reply
              0
              • L Luc Pattyn

                your alternate seems to need approval for reasons unknown to me. As you posted another T&T today (to which I added a comment!), you might have known that already. I'm not going to approve it, as I am not sufficiently comfortable with C++, and don't see the added value; I do agree with most that was said in the original T&T. I'm also afraid your alternate is making the compiler do the inefficient recursions. IMO Fibonacci is the prime example of things that should NOT be done with recursion, in the app nor in the compiler. :)

                Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum

                Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.

                A Offline
                A Offline
                Aescleal
                wrote on last edited by
                #7

                [Probably the wrong place to mention this] The point I was trying to make in the tip (oops, obviously failed) was: "Interestingly, the compiler doesn't take very long to work this out while the recursive technique the original poster outlined was incredibly slow. So how does the compiler do it?" Cheers, Ash

                L 1 Reply Last reply
                0
                • A Aescleal

                  [Probably the wrong place to mention this] The point I was trying to make in the tip (oops, obviously failed) was: "Interestingly, the compiler doesn't take very long to work this out while the recursive technique the original poster outlined was incredibly slow. So how does the compiler do it?" Cheers, Ash

                  L Offline
                  L Offline
                  Luc Pattyn
                  wrote on last edited by
                  #8

                  I don't know. Maybe it did take long (and you didn't notice) the first time the file got compiled, and did not bother recompiling the file later on as nothing had been changed? :)

                  Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum

                  Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.

                  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