Largest program you have written

  • Thread starter Thread starter Howard
  • Start date Start date
H

Howard

Just curious
What is the largest program you have written in terms of source code length
and complexity?

Howard
 
Howard,
Not sure I really get the point here. Most "large programs" are written by a
team of developers and have many different component parts and assemblies.
For example, in 2001 I worked as a team lead to convert retail banking
software that was originally written in classic COM to the .NET platform.
There were 18 total developers, broken into teams based on things like UI,
Data layer, Middleware, and other functionality. I never bothered to count
the total lines of code or even the number of assemblies in the finished
product, because my focus was to make sure that everybody did what they were
supposed to be doing and that it "fit" with what the other teams were doing.
It turned out at the MS Testing labs in Charlotte to be 1000% faster than the
original COM implementation, by the way.
Hope that makes sense.
Peter
 
I see. very impressive.

Peter Bromberg said:
Howard,
Not sure I really get the point here. Most "large programs" are written by
a
team of developers and have many different component parts and assemblies.
For example, in 2001 I worked as a team lead to convert retail banking
software that was originally written in classic COM to the .NET platform.
There were 18 total developers, broken into teams based on things like UI,
Data layer, Middleware, and other functionality. I never bothered to
count
the total lines of code or even the number of assemblies in the finished
product, because my focus was to make sure that everybody did what they
were
supposed to be doing and that it "fit" with what the other teams were
doing.
It turned out at the MS Testing labs in Charlotte to be 1000% faster than
the
original COM implementation, by the way.
Hope that makes sense.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
 
Many business systems are defined by the number of associated tables. I
worked for quite some time on a 1000+ table system.

Of course this system wasn't necesarily complex ... smaller systems can be
much more complex than many of the larger systems.

Cheers,

Greg
 
I worked on a relatively small system for an on-line banking system in the
UK.

The tables numbered in the low hundreds but it had to handle several million
banking transactions per hour (in a peak at lunchtime). It was fun. At the
time we had to ditch MSSQL (6.5) and use DB/2 with Java stored procedures
and VB6 COM+ for the data and business logic layers.
 
Back
Top