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. I'm a DLSC...you?

I'm a DLSC...you?

Scheduled Pinned Locked Moved The Lounge
phpcssdatabasecomalgorithms
41 Posts 30 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.
  • E ednrgc

    I took this programming evaluation and I'm a DLSC Clickety[^] You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a Low level. You're from the old school of programming and believe that you should have an intimate relationship with the computer. You don't mind juggling registers around and spending hours getting a 5% performance increase in an algorithm. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a Conservative programmer. The less code you write, the less chance there is of it containing a bug. You write short and to the point code that gets the job done efficiently.

    S Offline
    S Offline
    sw thi
    wrote on last edited by
    #25

    Me too DLSC

    "a child will grow up to become an adult, but you can never stop the adult from acting like a child"

    1 Reply Last reply
    0
    • Steve EcholsS Steve Echols

      B for my liberal use of whitespace (the older I get the more I need).


      - S 50 cups of coffee and you know it's on!

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

      Hey, me too man !


      Kicking squealing Gucci little piggy.
      The Rob Blog

      1 Reply Last reply
      0
      • J Jorgen Sigvardsson

        I use spaces (in combination with tabs!) to make pretty layouts. :-D (My white space style is the latter of your two examples)

        H Offline
        H Offline
        hairy_hats
        wrote on last edited by
        #27

        I also get pi$$ed off with the way C# reorganises my carefully aligned equals signs. :mad:

        J T 2 Replies Last reply
        0
        • H hairy_hats

          I also get pi$$ed off with the way C# reorganises my carefully aligned equals signs. :mad:

          J Offline
          J Offline
          Jorgen Sigvardsson
          wrote on last edited by
          #28

          My blood would be boiling!!!

          1 Reply Last reply
          0
          • C Christian Graus

            I'm a DLSB. I reckon question 12 made me different to you Question 12: What is the 'better' implementation: int main() { printf("5+6=%d", 5+6 ); return 0; } //////////////////////////////////////////////// // AddNumbers // param1 firstParam - The first value to add // param2 secondParam - The second value to add // return - The firstParam added to secondParam // int AddNumbers( int firstParam, int secondParam ) { // Here is some info int theReturn = firstParam + secondParam; // Now return the value return theReturn; } // Entry for program int main() { // Initialize variables int firstParam = 5; int secondParam = 6; // Call the function int returnValue = AddNumbers( firstParam, secondParam ); // Print out the value printf("%d+%d=%d", firstParam, secondParam, returnValue ); return 0; } I said the second because I like to see things refactored into small, reusable methods. I wasn't so keen on all of example 2, it had way too many comments. 'Initialize variables' ? Give me a break, if you can't work out that's what's going on, you should turn off the computer, or at least stop reading code.

            Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

            S Offline
            S Offline
            Stuart Dootson
            wrote on last edited by
            #29

            Christian Graus wrote:

            I said the second because I like to see things refactored into small, reusable methods.

            See, that's why I like functional programming - everything's a function - even operators - and they're all composable. So, if I wanted to apply summation to a list of numbers, I can use

            sumNumbers
            

            or, taking advantage of partial function application,

            sumNumbers = foldl (+) 0
            

            gives you a function that'll take a list of numbers. Want to read numbers from strings and sum them? Easy:

            sumNumberStrings = sumNumbers . map (read :: String -> Integer)
            

            (the :: String -> Integer is there because my favourite functional language, Haskell, is strictly typed, and read is polymorphic). OK, I'll shut up - I'm just a (dis)functional freak.

            1 Reply Last reply
            0
            • M Marc Clifton

              You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a High level. The world is made up of objects and components, you should create your programs in the same way. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a liBeral programmer. Programming is a complex task and you should use white space and comments as freely as possible to help simplify the task. We're not writing on paper anymore so we can take up as much room as we need.

              Thyme In The Country
              Interacx
              My Blog

              I Offline
              I Offline
              Ian Shlasko
              wrote on last edited by
              #30

              *joins the DHSB party* Basically, I'm a design-oriented cowboy coder who writes readable code, so that when they eventually decide to replace me with a cheap college student who thinks C# is the same as D-Flat and OOP is a misspelled mistake, the kid won't screw it up too badly.

              1 Reply Last reply
              0
              • S sw thi

                (PHSB != DHSB) ;p

                "a child will grow up to become an adult, but you can never stop the adult from acting like a child"

                L Offline
                L Offline
                leckey 0
                wrote on last edited by
                #31

                :doh: Was too early when I was looking at these...

                ______________________ stuff + cats = awesome

                1 Reply Last reply
                0
                • E ednrgc

                  I took this programming evaluation and I'm a DLSC Clickety[^] You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a Low level. You're from the old school of programming and believe that you should have an intimate relationship with the computer. You don't mind juggling registers around and spending hours getting a 5% performance increase in an algorithm. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a Conservative programmer. The less code you write, the less chance there is of it containing a bug. You write short and to the point code that gets the job done efficiently.

                  C Offline
                  C Offline
                  Chris McGlothen
                  wrote on last edited by
                  #32

                  I'm a PLTB, a planning - low-level - team orientated - liberal programmer.


                  An American football fan - Go Seahawks! Lil Turtle

                  1 Reply Last reply
                  0
                  • E ednrgc

                    I took this programming evaluation and I'm a DLSC Clickety[^] You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a Low level. You're from the old school of programming and believe that you should have an intimate relationship with the computer. You don't mind juggling registers around and spending hours getting a 5% performance increase in an algorithm. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a Conservative programmer. The less code you write, the less chance there is of it containing a bug. You write short and to the point code that gets the job done efficiently.

                    G Offline
                    G Offline
                    Gary Wheeler
                    wrote on last edited by
                    #33

                    I thought the test was bogus. The answers to most of the questions were such extremes that I disagreed with both of them.


                    Software Zen: delete this;

                    E 1 Reply Last reply
                    0
                    • G Gary Wheeler

                      I thought the test was bogus. The answers to most of the questions were such extremes that I disagreed with both of them.


                      Software Zen: delete this;

                      E Offline
                      E Offline
                      ednrgc
                      wrote on last edited by
                      #34

                      It's just for fun, lighten up.

                      1 Reply Last reply
                      0
                      • E ednrgc

                        I took this programming evaluation and I'm a DLSC Clickety[^] You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a Low level. You're from the old school of programming and believe that you should have an intimate relationship with the computer. You don't mind juggling registers around and spending hours getting a 5% performance increase in an algorithm. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a Conservative programmer. The less code you write, the less chance there is of it containing a bug. You write short and to the point code that gets the job done efficiently.

                        L Offline
                        L Offline
                        lost in transition
                        wrote on last edited by
                        #35

                        Your programmer personality type is: DLSB You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a Low level. You're from the old school of programming and believe that you should have an intimate relationship with the computer. You don't mind juggling registers around and spending hours getting a 5% performance increase in an algorithm. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a liBeral programmer. Programming is a complex task and you should use white space and comments as freely as possible to help simplify the task. We're not writing on paper anymore so we can take up as much room as we need.


                        God Bless, Jason

                        DavidCrow wrote:

                        It would not affect me or my family one iota. My wife and I are in charge of when the tv is on, and what it displays. I do not need any external input for that.

                        1 Reply Last reply
                        0
                        • E ednrgc

                          I took this programming evaluation and I'm a DLSC Clickety[^] You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a Low level. You're from the old school of programming and believe that you should have an intimate relationship with the computer. You don't mind juggling registers around and spending hours getting a 5% performance increase in an algorithm. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a Conservative programmer. The less code you write, the less chance there is of it containing a bug. You write short and to the point code that gets the job done efficiently.

                          S Offline
                          S Offline
                          Sathesh Sakthivel
                          wrote on last edited by
                          #36

                          I too DLSC.

                          Regards, Satips.:rose:

                          1 Reply Last reply
                          0
                          • E ednrgc

                            I took this programming evaluation and I'm a DLSC Clickety[^] You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a Low level. You're from the old school of programming and believe that you should have an intimate relationship with the computer. You don't mind juggling registers around and spending hours getting a 5% performance increase in an algorithm. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a Conservative programmer. The less code you write, the less chance there is of it containing a bug. You write short and to the point code that gets the job done efficiently.

                            M Offline
                            M Offline
                            Michael Sadlon
                            wrote on last edited by
                            #37

                            Your programmer personality type is: PLTB You're a Planner. You may be slow, but you'll usually find the best solution. If something's worth doing, it's worth doing right. You like coding at a Low level. You're from the old school of programming and believe that you should have an intimate relationship with the computer. You don't mind juggling registers around and spending hours getting a 5% performance increase in an algorithm. You work best in a Team. A good group is better than the sum of it's parts. The only thing better than a genius programmer is a cohesive group of genius programmers. You are a liBeral programmer. Programming is a complex task and you should use white space and comments as freely as possible to help simplify the task. We're not writing on paper anymore so we can take up as much room as we need. I disliked some of the questions. For example, I prefer C++ or even C++/CLI over straight Java or .NET, but I'm getting picky :) I still value performance and control, but I don't want to reinvent the wheel for everything either.

                            1 Reply Last reply
                            0
                            • E ednrgc

                              I took this programming evaluation and I'm a DLSC Clickety[^] You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a Low level. You're from the old school of programming and believe that you should have an intimate relationship with the computer. You don't mind juggling registers around and spending hours getting a 5% performance increase in an algorithm. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a Conservative programmer. The less code you write, the less chance there is of it containing a bug. You write short and to the point code that gets the job done efficiently.

                              P Offline
                              P Offline
                              PIEBALDconsult
                              wrote on last edited by
                              #38

                              Your programmer personality type is: PHSB You're a Planner. You may be slow, but you'll usually find the best solution. If something's worth doing, it's worth doing right. You like coding at a High level. The world is made up of objects and components, you should create your programs in the same way. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a liBeral programmer. Programming is a complex task and you should use white space and comments as freely as possible to help simplify the task. We're not writing on paper anymore so we can take up as much room as we need.

                              1 Reply Last reply
                              0
                              • H hairy_hats

                                I also get pi$$ed off with the way C# reorganises my carefully aligned equals signs. :mad:

                                T Offline
                                T Offline
                                TheGreatAndPowerfulOz
                                wrote on last edited by
                                #39

                                you can turn that off. btw, it's not C# doing it, it's visual studio. clear "Automatically format completed statement on ;" checkbox here: Tools->Options->Text Editor->C#->Formatting

                                Silence is the voice of complicity. Strange women lying in ponds distributing swords is no basis for a system of government. -- monty python Might I suggest that the universe was always the size of the cosmos. It is just that at one point the cosmos was the size of a marble. -- Colin Angus Mackay

                                1 Reply Last reply
                                0
                                • M Marc Clifton

                                  You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a High level. The world is made up of objects and components, you should create your programs in the same way. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a liBeral programmer. Programming is a complex task and you should use white space and comments as freely as possible to help simplify the task. We're not writing on paper anymore so we can take up as much room as we need.

                                  Thyme In The Country
                                  Interacx
                                  My Blog

                                  V Offline
                                  V Offline
                                  Vikram A Punathambekar
                                  wrote on last edited by
                                  #40

                                  I'm one too! :-D

                                  Cheers, Vıkram.


                                  After all is said and done, much is said and little is done.

                                  1 Reply Last reply
                                  0
                                  • E ednrgc

                                    I took this programming evaluation and I'm a DLSC Clickety[^] You're a Doer. You are very quick at getting tasks done. You believe the outcome is the most important part of a task and the faster you can reach that outcome the better. After all, time is money. You like coding at a Low level. You're from the old school of programming and believe that you should have an intimate relationship with the computer. You don't mind juggling registers around and spending hours getting a 5% performance increase in an algorithm. You work best in a Solo situation. The best way to program is by yourself. There's no communication problems, you know every part of the code allowing you to write the best programs possible. You are a Conservative programmer. The less code you write, the less chance there is of it containing a bug. You write short and to the point code that gets the job done efficiently.

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

                                    You program assembly? :wtf:

                                    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