Skip to content

Hello, World!

Coding Principle

Assessment DimensionsDescription
1. ReadabilityNaming, structure, layers, indentation, spacing
2. CorrectnessEdge cases, type checks, etc
3. AbstrationResuability, common elements
4. PerformanceTime complexity, space complexity
5. Thought processAbility to explain the code

API Improvement Proposals

Do’s

  • trying to follow up Google Style Guides, if no standards.
  • Run linter to make you codes format looks beauty.

Don’ts

  • Donot push to the main branch. By right should create Pull Request for code merge.
  • Each repo should has it’s own README.md and Makefile, github or gitlab action better to have.
  • let me think.