README.md

December 4, 2022 ยท View on GitHub

Article: 10 CODING HABITS TO REMEMBER

Description

This article lists 10 coding habits to remember, they will help you when you program in the future.

TRUST ME.

More Info

Submitted On
ByJulian The Programmer
LevelBeginner
User Rating3.2 (29 globes from 9 users)
CompatibilityVB 3.0, VB 4.0 (16-bit), VB 4.0 (32-bit), VB 5.0, VB 6.0, VB Script, VBA MS Access, VBA MS Excel
CategoryMiscellaneous
WorldVisual Basic
Archive File

Source Code

10 CODING HABITS TO REMEMBER

  1. ALWAYS use INTERNATIONAL ENGLISH variable names, and ALWAYS comment in INTERNATIONAL ENGLISH
  2. NEVER use native functions for critical operations, actually try avoiding using native functions at all, because of their lack of control, speed and stability.
  3. ALWAYS try to incooporate as much OOP(Object Orientated Programming) as possible into your code.
  4. NEVER use databases if it can be avoived, because they require certain components that are not always installed.
  5. ALWAYS have a design for your project and a step-by-step procedure for your algorithms.
  6. NEVER try to start a project that is alike the one you just failed.
  7. ALWAYS keep your code from failed projects, because even though they are failed, they might still be usefull.
  8. NEVER copy parts of others code you do not understand since they are always to blame when there are errors.
  9. ALWAYS remember how to count binary on your fingers since they might come handy at anytime when dealing with computers.
  10. NEVER try to do something, but ALWAYS do something! Because most projects fails, not because of lack of experience but because of lack of moral.
  • Julian