You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

1.4 KiB

good practices

code

  • Commenting and Documentation
  • Consistent Indentation
  • Avoid Obvious Comments
  • Code Grouping
  • Consistent Naming Scheme
    • camelCase
    • under_scores
  • DRY (Don't Repeat Yourself) or DIE (Duplication is Evil) principle
  • KISS (Keep It Simple Stupid)
  • YAGNI (You Aren’t Gonna Need It)
  • SOC (Separation of Concerns)
  • Avoid Deep Nesting
  • Handling errors
  • Limit Line Length
  • File and Folder Organization
  • Consistent Temporary Names
  • Separation of Code and Data
  • Code Refactoring

Go

CSS

Dockerfile

Time Limitation

  • Every computing programs should execute in a time limit of 5 minutes.