Your Largest Program
-
Matrix is your company?
“Cannot find REALITY.SYS...Universe Halted.” ~ God on phone with Microsoft Customer Support
-
Well I wrote "hello world" in
COBOL
. :-DIf 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]Anything written in COBOL counts!
“Cannot find REALITY.SYS...Universe Halted.” ~ God on phone with Microsoft Customer Support
-
Well I wrote "hello world" in
COBOL
. :-DIf 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]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
-
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
-
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
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[^]
-
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
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] -
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] -
That's amazing! Can you say what it did?
“Cannot find REALITY.SYS...Universe Halted.” ~ God on phone with Microsoft Customer Support
Does it really matter? It involved animal genetics.
-
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
-
Does it really matter? It involved animal genetics.
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
-
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
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
-
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[^]
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
-
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
-
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
-
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
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[^]
-
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[^]
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
-
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
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 -
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 Metcalfednh 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
-
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 MetcalfeIf 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
-
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
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