Skip to content

Instantly share code, notes, and snippets.

@rogeralbp
rogeralbp / clean_code.md
Created June 29, 2022 23:40 — forked from wojteklu/clean_code.md
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules

@rogeralbp
rogeralbp / vs-extensions.md
Created October 30, 2021 21:56
VS Code extensions favorites of @rogeralbp

VSCode - Extensions

Useful extensions to improve the speed and reduce the inverted time during the coding.

Prefered Extensions for Roger Oporta

@rogeralbp
rogeralbp / vs-shorcuts.md
Created October 30, 2021 21:55
VS Code shorcuts favorites of @rogeralbp

VSCode - Shortcuts

Useful shorcuts to improve the speed and reduce the inverted time during the coding.

Favorites commands and Shortcuts

Delete auto-identation of VS Code

    Mac -> ⇧ ⌥ tab
 Windows -> Shift + tab
@rogeralbp
rogeralbp / git-commands.md
Last active January 23, 2022 20:09
Important things of Git by @rogeralbp
@rogeralbp
rogeralbp / useful-snippets.json
Last active October 29, 2021 00:04
These are some useful snippets to implement in VS Code when you are coding.
JavaScript:
{
"Console Log": {
"prefix": "clg",
"body": [
"console.log(${1:AAAAAAAAAA});"
],
"description": "Log output to console"
}