From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: * X-Spam-Status: No, score=1.4 required=5.0 tests=BAYES_50,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 109fba,d95b511473b3a931 X-Google-Attributes: gid109fba,public X-Google-Thread: 103376,d95b511473b3a931 X-Google-Attributes: gid103376,public X-Google-Thread: 1014db,d95b511473b3a931 X-Google-Attributes: gid1014db,public From: Rich Maggio Subject: Re: Language Choice and Coding style Date: 1996/06/29 Message-ID: <31D5AC85.203A@world2u.com>#1/1 X-Deja-AN: 162835527 x-nntp-posting-host: i123.213.world2u.com references: x-nntp-posting-user: (Unauthenticated) content-type: text/plain; charset=us-ascii x-trace: 836087664/24099 organization: Rich Maggio mime-version: 1.0 newsgroups: comp.lang.ada,comp.lang.c,comp.lang.c++ x-mailer: Mozilla 2.01KIT (Win95; U) Date: 1996-06-29T00:00:00+00:00 List-Id: I found this to be a rather interesting thread. It is interesting to see discussions on "religious" topics. I can't wait to go and check out the OS news groups :-). I'll bet there is all sorts of fire and brimstone over there. I just wanted to offer my 2 cents worth. I agree strongly with a comment that was made - there is no point in forcing people to drive on the right side of the road, but there is a STRONG point for making people drive on the same side of the road. Basically, what this person was pointing out is the need consistency. I tend to write code that is consistent, though it may not be consistent with how others write code. In my code, I know that all variables that begin with a capital letter (i.e. Tone_count) are global. Someone else reading my code may not catch this little nuance. Though things like Hungarian notation are cumbersome, I think there is definitely a need for it. There needs to be some consistency in coding standards. This makes it much easier on the poor slob that has to maintain the code once the initial development has been done. And I agree that more people should use the underscore key. It sure makes it easier to read, especially when function names get out of control (i.e. GetCurrentCursorPosition() is just ridiculous.). Rich Maggio