본문 바로가기

ETC3

Development on AWS EC2 through Termius and VSCode Create AWS EC2 Instance > Go to the console of AWS. https://console.aws.amazon.com/console/ > Select the Launch a virtual machine. > Select a machine that you want to use. I just select this machine. 😁 > Select instance type and click the Review and Launch button > Click Launch button > Create a new key pair for SSH. Input the name of the key pair and download it. You have to keep this file impo.. 2022. 1. 30.
개발 관련 책 추천 개인 적으로 보고 좋았던 책들을 기록해 놓으려고 만든 포스팅 입니다. 대부분은 소장 중입니다. ^^ 혹시 데이터가 쌓이면 다른 분들께도 도움이 되지 않을까 ^^;; Python 더보기 Language > 효율적 개발로 이끄는 파이썬 실천 기술 입문자에게나 중급자에게나 꼭 보시길 권합니다. 기초부터 꿀팁까지 가득하네요. > 파이썬 스킬업 파이썬 기초를 익힌 후, 바이블 겸 한 단계 업그레이드가 필요한 분들이 보시면 좋을 거 같네요. > 진지한 파이썬 필요한 주제가 있을 때, 깊이있게 찾아보기 위해 먼저 선행으로 볼만 합니다. > 클린 파이썬 "진지한 파이썬"과 유사하지만 각 주제에 대해 클린 코드 관점에서 파이썬을 작성하는 방법을 다루고 있습니다. > 파이썬으로 배우는 수학적 프로그래밍 프로그래밍 사고를 .. 2021. 11. 7.
SOLID Principle of OOP Design SOLID principle is a recommendation for good object-oriented design. SRP (Single Responsibility Principle) OCP (Open-Closed Principle) LSP (Liskov Substitution Principle) ISP (Interface Segregation Principle) DIP (Dependency Inversion Principle) For a good design, decrease coupling among modules and increase the cohesion of code. SOLID principle helps it. SRP (Single Responsibility Principle) A .. 2021. 10. 24.