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. Your Largest Program

Your Largest Program

Scheduled Pinned Locked Moved The Lounge
questiondesigntestingsalesbeta-testing
34 Posts 14 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.
  • CPalliniC CPallini

    Well I wrote "hello world" in COBOL. :-D

    If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
    [my articles]

    R Offline
    R Offline
    Ravi Bhavnani
    wrote on last edited by
    #12

    CPallini wrote:

    Well I wrote "hello world" in COBOL.

    Mmm... COBOL! :cool:

    000100 IDENTIFICATION DIVISION.
    000200 PROGRAM-ID. HELLOWORLD.
    000300
    000400*
    000500 ENVIRONMENT DIVISION.
    000600 CONFIGURATION SECTION.
    000700 SOURCE-COMPUTER. RM-COBOL.
    000800 OBJECT-COMPUTER. RM-COBOL.
    000900
    001000 DATA DIVISION.
    001100 FILE SECTION.
    001200
    100000 PROCEDURE DIVISION.
    100100
    100200 MAIN-LOGIC SECTION.
    100300 BEGIN.
    100400 DISPLAY " " LINE 1 POSITION 1 ERASE EOS.
    100500 DISPLAY "Hello world!" LINE 15 POSITION 10.
    100600 STOP RUN.
    100700 MAIN-LOGIC-EXIT.
    100800 EXIT.

    /ravi

    This is your brain on Celcius Home | Music | Articles | Freeware ravib(at)ravib(dot)com

    CPalliniC 1 Reply Last reply
    0
    • Richard Andrew x64R Richard Andrew x64

      What is the largest program you have ever developed entirely by yourself? You were handed a specs document and you did the technical design, all the coding and testing until the application was complete and delivered?

      “Cannot find REALITY.SYS...Universe Halted.” ~ God on phone with Microsoft Customer Support

      C Offline
      C Offline
      Chris Losinger
      wrote on last edited by
      #13

      according to this tool[^], my largest[^] currently comes in at 337K lines of code.

      image processing toolkits | batch image processing

      1 Reply Last reply
      0
      • Richard Andrew x64R Richard Andrew x64

        What is the largest program you have ever developed entirely by yourself? You were handed a specs document and you did the technical design, all the coding and testing until the application was complete and delivered?

        “Cannot find REALITY.SYS...Universe Halted.” ~ God on phone with Microsoft Customer Support

        Mike HankeyM Offline
        Mike HankeyM Offline
        Mike Hankey
        wrote on last edited by
        #14

        I was working for a mega company and there was a program that interfaced with a GPX, it was written in C and I was given the task of upgrading it. It wasn't documented, commented and no one knew anything about it other than it worked. I had just finished developing a base class lib for C++ so I convinced them to let me rewrite in C++. To this day it is still in production...I finished it in 1995. It handles a call center with 150 agents (at the time) and takes an average of 3000 calls a day. Mike

        Life is not measured by the number of breaths we take, but by the moments that take our breath away. "George Carlin

        Semper Fi http://www.hq4thmarinescomm.com[^]

        P 1 Reply Last reply
        0
        • R Ravi Bhavnani

          CPallini wrote:

          Well I wrote "hello world" in COBOL.

          Mmm... COBOL! :cool:

          000100 IDENTIFICATION DIVISION.
          000200 PROGRAM-ID. HELLOWORLD.
          000300
          000400*
          000500 ENVIRONMENT DIVISION.
          000600 CONFIGURATION SECTION.
          000700 SOURCE-COMPUTER. RM-COBOL.
          000800 OBJECT-COMPUTER. RM-COBOL.
          000900
          001000 DATA DIVISION.
          001100 FILE SECTION.
          001200
          100000 PROCEDURE DIVISION.
          100100
          100200 MAIN-LOGIC SECTION.
          100300 BEGIN.
          100400 DISPLAY " " LINE 1 POSITION 1 ERASE EOS.
          100500 DISPLAY "Hello world!" LINE 15 POSITION 10.
          100600 STOP RUN.
          100700 MAIN-LOGIC-EXIT.
          100800 EXIT.

          /ravi

          This is your brain on Celcius Home | Music | Articles | Freeware ravib(at)ravib(dot)com

          CPalliniC Offline
          CPalliniC Offline
          CPallini
          wrote on last edited by
          #15

          Ravi Bhavnani wrote:

          000100 IDENTIFICATION DIVISION. 000200 PROGRAM-ID. HELLOWORLD. 000300 000400* 000500 ENVIRONMENT DIVISION. 000600 CONFIGURATION SECTION. 000700 SOURCE-COMPUTER. RM-COBOL. 000800 OBJECT-COMPUTER. RM-COBOL. 000900 001000 DATA DIVISION. 001100 FILE SECTION. 001200 100000 PROCEDURE DIVISION. 100100 100200 MAIN-LOGIC SECTION. 100300 BEGIN. 100400 DISPLAY " " LINE 1 POSITION 1 ERASE EOS. 100500 DISPLAY "Hello world!" LINE 15 POSITION 10. 100600 STOP RUN. 100700 MAIN-LOGIC-EXIT. 100800 EXIT.

          /ravi? Mmm....http://www.engin.umd.umich.edu/CIS/course.des/cis400/cobol/hworld.html[^] :-D Happy new year! :rose:

          If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
          [my articles]

          In testa che avete, signor di Ceprano?

          R 1 Reply Last reply
          0
          • CPalliniC CPallini

            Ravi Bhavnani wrote:

            000100 IDENTIFICATION DIVISION. 000200 PROGRAM-ID. HELLOWORLD. 000300 000400* 000500 ENVIRONMENT DIVISION. 000600 CONFIGURATION SECTION. 000700 SOURCE-COMPUTER. RM-COBOL. 000800 OBJECT-COMPUTER. RM-COBOL. 000900 001000 DATA DIVISION. 001100 FILE SECTION. 001200 100000 PROCEDURE DIVISION. 100100 100200 MAIN-LOGIC SECTION. 100300 BEGIN. 100400 DISPLAY " " LINE 1 POSITION 1 ERASE EOS. 100500 DISPLAY "Hello world!" LINE 15 POSITION 10. 100600 STOP RUN. 100700 MAIN-LOGIC-EXIT. 100800 EXIT.

            /ravi? Mmm....http://www.engin.umd.umich.edu/CIS/course.des/cis400/cobol/hworld.html[^] :-D Happy new year! :rose:

            If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
            [my articles]

            R Offline
            R Offline
            Ravi Bhavnani
            wrote on last edited by
            #16

            Damn, I thought I was the only one who knew about Google. :( Happy new year to you too! /ravi

            This is your brain on Celcius Home | Music | Articles | Freeware ravib(at)ravib(dot)com

            P 1 Reply Last reply
            0
            • Richard Andrew x64R Richard Andrew x64

              That's amazing! Can you say what it did?

              “Cannot find REALITY.SYS...Universe Halted.” ~ God on phone with Microsoft Customer Support

              P Offline
              P Offline
              Paul Brower
              wrote on last edited by
              #17

              Does it really matter? It involved animal genetics.

              Richard Andrew x64R 1 Reply Last reply
              0
              • R Ravi Bhavnani

                Damn, I thought I was the only one who knew about Google. :( Happy new year to you too! /ravi

                This is your brain on Celcius Home | Music | Articles | Freeware ravib(at)ravib(dot)com

                P Offline
                P Offline
                Paul Conrad
                wrote on last edited by
                #18

                Ravi Bhavnani wrote:

                I thought I was the only one who knew about Google.

                Google? What's that? :rolleyes:

                "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                modified on Monday, December 31, 2007 6:48:27 PM

                R 1 Reply Last reply
                0
                • P Paul Brower

                  Does it really matter? It involved animal genetics.

                  Richard Andrew x64R Offline
                  Richard Andrew x64R Offline
                  Richard Andrew x64
                  wrote on last edited by
                  #19

                  I don't mean to pry. The reason I asked is that I'm considering writing a very large program on my own, and I only wanted to get a sense of the complexity that other people had tackled on their own.

                  “Cannot find REALITY.SYS...Universe Halted.” ~ God on phone with Microsoft Customer Support

                  P 1 Reply Last reply
                  0
                  • Richard Andrew x64R Richard Andrew x64

                    What is the largest program you have ever developed entirely by yourself? You were handed a specs document and you did the technical design, all the coding and testing until the application was complete and delivered?

                    “Cannot find REALITY.SYS...Universe Halted.” ~ God on phone with Microsoft Customer Support

                    P Offline
                    P Offline
                    Paul Conrad
                    wrote on last edited by
                    #20

                    In terms of lines of code, was probably a sorting program I had to write for an assembly language class years ago. It was in the neighborhood of about 5,000 lines in the file. Could have been double the length, but I did a self-modifying code trick to trim it down a bit for ascending sorting and descending sorting. But as far as real-world stuff, I really don't pay much attention anymore to the size of the program. As long as it meets client requirements and works as they expect, that is all that really matters.

                    "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                    1 Reply Last reply
                    0
                    • P Paul Conrad

                      Ravi Bhavnani wrote:

                      I thought I was the only one who knew about Google.

                      Google? What's that? :rolleyes:

                      "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                      modified on Monday, December 31, 2007 6:48:27 PM

                      R Offline
                      R Offline
                      Ravi Bhavnani
                      wrote on last edited by
                      #21

                      Paul Conrad wrote:

                      Google? What's that?

                      Apparently it's a website that's supposed to help you find stuff. So I typed in "Where are my gloves?" but it was of no help whatsoever. :( /ravi

                      This is your brain on Celcius Home | Music | Articles | Freeware ravib(at)ravib(dot)com

                      P 1 Reply Last reply
                      0
                      • Mike HankeyM Mike Hankey

                        I was working for a mega company and there was a program that interfaced with a GPX, it was written in C and I was given the task of upgrading it. It wasn't documented, commented and no one knew anything about it other than it worked. I had just finished developing a base class lib for C++ so I convinced them to let me rewrite in C++. To this day it is still in production...I finished it in 1995. It handles a call center with 150 agents (at the time) and takes an average of 3000 calls a day. Mike

                        Life is not measured by the number of breaths we take, but by the moments that take our breath away. "George Carlin

                        Semper Fi http://www.hq4thmarinescomm.com[^]

                        P Offline
                        P Offline
                        Paul Conrad
                        wrote on last edited by
                        #22

                        Mike Hankey wrote:

                        It wasn't documented, commented and no one knew anything

                        Oh boy :rolleyes:

                        "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                        Mike HankeyM 1 Reply Last reply
                        0
                        • R Ravi Bhavnani

                          Paul Conrad wrote:

                          Google? What's that?

                          Apparently it's a website that's supposed to help you find stuff. So I typed in "Where are my gloves?" but it was of no help whatsoever. :( /ravi

                          This is your brain on Celcius Home | Music | Articles | Freeware ravib(at)ravib(dot)com

                          P Offline
                          P Offline
                          Paul Conrad
                          wrote on last edited by
                          #23

                          For some reason the joke icon isn't working. ( It is something with FF, because IE7 it's fine ).

                          Ravi Bhavnani wrote:

                          So I typed in "Where are my gloves?" but it was of no help whatsoever.

                          :laugh:

                          "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                          D 1 Reply Last reply
                          0
                          • P Paul Conrad

                            Mike Hankey wrote:

                            It wasn't documented, commented and no one knew anything

                            Oh boy :rolleyes:

                            "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                            Mike HankeyM Offline
                            Mike HankeyM Offline
                            Mike Hankey
                            wrote on last edited by
                            #24

                            Hey Paul, Yeah, it was a lot of work. We'd test it in production at 3AM shift change so towards the end it was all kinds of crazy hours. There was one lady project manager there and she used to tell me "Mike, I don't know what you do its just magic". I just let her keep thinking that! Have a good new year, be safe. Mike

                            Life is not measured by the number of breaths we take, but by the moments that take our breath away. "George Carlin

                            Semper Fi http://www.hq4thmarinescomm.com[^]

                            P 1 Reply Last reply
                            0
                            • Mike HankeyM Mike Hankey

                              Hey Paul, Yeah, it was a lot of work. We'd test it in production at 3AM shift change so towards the end it was all kinds of crazy hours. There was one lady project manager there and she used to tell me "Mike, I don't know what you do its just magic". I just let her keep thinking that! Have a good new year, be safe. Mike

                              Life is not measured by the number of breaths we take, but by the moments that take our breath away. "George Carlin

                              Semper Fi http://www.hq4thmarinescomm.com[^]

                              P Offline
                              P Offline
                              Paul Conrad
                              wrote on last edited by
                              #25

                              Mike Hankey wrote:

                              I just let her keep thinking that!

                              :laugh:

                              Mike Hankey wrote:

                              Have a good new year, be safe.

                              Same to you and your family :)

                              "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                              1 Reply Last reply
                              0
                              • P Paul Conrad

                                For some reason the joke icon isn't working. ( It is something with FF, because IE7 it's fine ).

                                Ravi Bhavnani wrote:

                                So I typed in "Where are my gloves?" but it was of no help whatsoever.

                                :laugh:

                                "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                                D Offline
                                D Offline
                                DavidNohejl
                                wrote on last edited by
                                #26

                                Paul Conrad wrote:

                                For some reason the joke icon isn't working. ( It is something with FF, because IE7 it's fine ).

                                FF 2.0.0.11 here, and I see that joke icon just fine. wohooo!! This is my first CP post in 2008. :cool: And totally useless one ;)


                                [My Blog]
                                "Visual studio desperately needs some performance improvements. It is sometimes almost as slow as eclipse." - Rüdiger Klaehn
                                "Real men use mspaint for writing code and notepad for designing graphics." - Anna-Jayne Metcalfe

                                P 2 Replies Last reply
                                0
                                • D DavidNohejl

                                  Paul Conrad wrote:

                                  For some reason the joke icon isn't working. ( It is something with FF, because IE7 it's fine ).

                                  FF 2.0.0.11 here, and I see that joke icon just fine. wohooo!! This is my first CP post in 2008. :cool: And totally useless one ;)


                                  [My Blog]
                                  "Visual studio desperately needs some performance improvements. It is sometimes almost as slow as eclipse." - Rüdiger Klaehn
                                  "Real men use mspaint for writing code and notepad for designing graphics." - Anna-Jayne Metcalfe

                                  P Offline
                                  P Offline
                                  Paul Conrad
                                  wrote on last edited by
                                  #27

                                  dnh wrote:

                                  FF 2.0.0.11 here.

                                  Same here. Trying with CPHog turned off. --modified And it works now. :suss:

                                  "The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                                  1 Reply Last reply
                                  0
                                  • D DavidNohejl

                                    Paul Conrad wrote:

                                    For some reason the joke icon isn't working. ( It is something with FF, because IE7 it's fine ).

                                    FF 2.0.0.11 here, and I see that joke icon just fine. wohooo!! This is my first CP post in 2008. :cool: And totally useless one ;)


                                    [My Blog]
                                    "Visual studio desperately needs some performance improvements. It is sometimes almost as slow as eclipse." - Rüdiger Klaehn
                                    "Real men use mspaint for writing code and notepad for designing graphics." - Anna-Jayne Metcalfe

                                    P Offline
                                    P Offline
                                    Paul Conrad
                                    wrote on last edited by
                                    #28

                                    If I modify the post with CPHog turned on, then the joke icon goes away :suss: Maunder was looking into it and I let him know that it must be a CPHog matter. Do you use CPHog?

                                    "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                                    D 1 Reply Last reply
                                    0
                                    • P Paul Conrad

                                      If I modify the post with CPHog turned on, then the joke icon goes away :suss: Maunder was looking into it and I let him know that it must be a CPHog matter. Do you use CPHog?

                                      "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon

                                      D Offline
                                      D Offline
                                      DavidNohejl
                                      wrote on last edited by
                                      #29

                                      Paul Conrad wrote:

                                      Do you use CPHog?

                                      Nope. So sorry Shog :)


                                      [My Blog]
                                      "Visual studio desperately needs some performance improvements. It is sometimes almost as slow as eclipse." - Rüdiger Klaehn
                                      "Real men use mspaint for writing code and notepad for designing graphics." - Anna-Jayne Metcalfe

                                      1 Reply Last reply
                                      0
                                      • Richard Andrew x64R Richard Andrew x64

                                        I don't mean to pry. The reason I asked is that I'm considering writing a very large program on my own, and I only wanted to get a sense of the complexity that other people had tackled on their own.

                                        “Cannot find REALITY.SYS...Universe Halted.” ~ God on phone with Microsoft Customer Support

                                        P Offline
                                        P Offline
                                        Paul Brower
                                        wrote on last edited by
                                        #30

                                        Unfortunately I cannot give you specs or even information on specific functionality of the program. I do believe, however, if you tackle a project using an Agile development methodology, 1 person can take it on.

                                        1 Reply Last reply
                                        0
                                        • CPalliniC CPallini

                                          Well I wrote "hello world" in COBOL. :-D

                                          If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
                                          [my articles]

                                          R Offline
                                          R Offline
                                          robertw019
                                          wrote on last edited by
                                          #31

                                          around 11k lines of VB.NET code over the course of 2yrs My RSS reader, FeedMonster.

                                          FeedMonster

                                          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