Skip to content

Instantly share code, notes, and snippets.

View tientham's full-sized avatar
🚀
Focusing

Minh Tien TO tientham

🚀
Focusing
View GitHub Profile
@tientham
tientham / gist:db14a3aedd7c2124a32aee308b3a8343
Last active April 29, 2019 16:05
SOLID principle quick recap

SOLID

  • S - Single Responsibility Principle
  • O - Open/Closed Principle
  • L - Liskov’s Substitution Principle
  • I - Interface Segregation Principle
  • D - Dependency Inversion Principle

S - Single Responsibility Principle

“Class should be having one and only one responsibility”.

@tientham
tientham / docker-help.md
Created August 24, 2018 13:33 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@tientham
tientham / ssh.md
Created August 24, 2018 13:32 — forked from bradtraversy/ssh.md
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh brad@192.168.1.29

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test