
-----------------------------------
StarGateSG-1
Wed May 25, 2005 4:43 pm

Proper Posting Format Procedure
-----------------------------------
The messages are getting worst it seems, ti use to be once in a blue moon that someone would forget code brackets, now everyother post.

I think something need to be done about this, it really isn't hard, that is why there are buttons at the top of the posting screen

Please use them, it is an eyesoe to read code without them, I am not forcing you to use them but it would be nice.

-----------------------------------
wtd
Wed May 25, 2005 6:46 pm


-----------------------------------
Additionally... use the "preview" button.  Do not assume your post looks good.  Mine often don't the first time around, and I'm no slouch.

If you're posting code... indent.  

Do not post:

for c : 1..42
if c mod 6 = 3 then
put "yo"
else
put "oy"
end if
end for

Then you might as well forget the code tags.  Instead post:

for c : 1..42
   if c mod 6 = 3 then
      put "yo"
   else
      put "oy"
   end if
end for

-----------------------------------
StarGateSG-1
Wed May 25, 2005 9:14 pm


-----------------------------------
I am glad other ppl feel the same way, even so few for now :(

-----------------------------------
[Gandalf]
Wed May 25, 2005 11:10 pm


-----------------------------------
True, although I would rename it to "Proper Posting Format Procedure".  Anyways, also, keep in mind that when you are indenting, the normal "tab" doesn't work (if you are doing it from your web browser), so you have to press "space" 3 times (or 4 if you like).

Do not do this:




put "dstufdjskf"



delay(56000)

put "enter"


get gsdf



It 

obviously
looks bad, and wastes space in the forum.

Additionally, do NOT USE CAPS LOCK FOR YOUR WHOLE POST, IT IS VERY ANNOYING AND SOMEONE WILL GET PISSED OFF AT YOU.  AT THE VERY LEAST LESS PEOPLE WILL WANT TO ANSWER YOUR QUESTION.

Thanks :).

-----------------------------------
wtd
Wed May 25, 2005 11:20 pm


-----------------------------------
Do not post code with useless comments.

% create variable "foo" and initialize to 42
var foo := 42

% clear the screen
cls

-----------------------------------
MysticVegeta
Thu May 26, 2005 7:46 am


-----------------------------------
or. 
%Declaring Variables
%The above comment was used to guide me in use of different procedures
%The above comment was to ensure that
%This comment is saying that this variable will be used in processs too!
%...
%...
%Ahh i cant think or any more to say

