본문 바로가기

전체 글45

10월 도서 1. Grit: The Power of Passion and Perserverence by Angela Duckworth 2. Atomic Habits by James Clear 3. How We Decide 2023. 10. 2.
July Books 1. Foundation by Isaac Asimov 2. Fantastic Voyage by Isaac Asimov 3. Chronicles of The Black Company by Glen Cook 4. The Traitor Baru Cormorant by Seth Dickinson 5. A Random Walk Down Wall Street by Burton G Malkiel 6. Are You A Conservative Or A Liberal? by Victor Kamber & Bradley O'Leary 2023. 7. 1.
[CS 지식] 하드웨어 컴퓨터: 1) 논리적 (기능적) 구성: 컴퓨터가 어떤 부분들로 이루어져있고 어떻게 연결되는지 주목 2) 물리적 구조: 어떻게 생겼고 어떻게 만들어지는지 주목 운영체제 종류 1. 맥OS 운영체제를 가지고 있는 애플 매킨토시 컴퓨터 (맥) 2. Microsoft의 Windows 운영체제를 가지고 있는 PC (IBM PC에서 이어져온 노트북/데스크탑) 3. 크롬OS (저장과 계산 기능 대부분 인터넷으로 수행) 운영체제를 가지고 있는 크롬북 시장에서 우세한 PC Network-effect: 저렴한 PC 덕에 많은 공급업체가 치열한 경쟁을 벌임. 사람들이 A를 더 많이 쓸 수록 A의 효용이 더 커짐. 한 마디로 효과는 사용자의 수에 비례함. von Neumann architecture 프로세서, 메모리와 저장장치.. 2022. 5. 17.
[문법정리] 3장 파이썬 051622 더보기 CONTENTS I. Python Concepts & Examples II. Practice III. Error Note IV. Application V. Wrap Up Python Concepts & Examples Class Objects & Instance Example: ''' m1 = Monster() m1.damage(90) m1.status_check() ''' class Monster(): hp = 100 alive = True def damage(self,attack): self.hp = self.hp - attack if self.hp bool: """ you need to declare types of variables, parameters, and return values o.. 2022. 5. 17.