README.md
December 4, 2022 ยท View on GitHub
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 | |
| By | Julian The Programmer |
| Level | Beginner |
| User Rating | 3.2 (29 globes from 9 users) |
| Compatibility | VB 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 |
| Category | Miscellaneous |
| World | Visual Basic |
| Archive File |
Source Code
10 CODING HABITS TO REMEMBER
- ALWAYS use INTERNATIONAL ENGLISH variable names, and ALWAYS comment in INTERNATIONAL ENGLISH
- NEVER use native functions for critical operations, actually try avoiding using native functions at all, because of their lack of control, speed and stability.
- ALWAYS try to incooporate as much OOP(Object Orientated Programming) as possible into your code.
- NEVER use databases if it can be avoived, because they require certain components that are not always installed.
- ALWAYS have a design for your project and a step-by-step procedure for your algorithms.
- NEVER try to start a project that is alike the one you just failed.
- ALWAYS keep your code from failed projects, because even though they are failed, they might still be usefull.
- NEVER copy parts of others code you do not understand since they are always to blame when there are errors.
- ALWAYS remember how to count binary on your fingers since they might come handy at anytime when dealing with computers.
- 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