잘못된 신념
1) What is your passion
2) You should know where you're going by now
3) Be the best version of you
방법
1) Who you are, What you believe, What you do 에 대한 일관적인 이야기를 만들어 내라
2) Gravity and Accept, accept-empathize-define-ideate-prototype-test
3) Ideate 3 five-year versions of me
4) Prototyping
5) Choosing well, gather&create -> narrow down ->choise->agonize->let go and move on
1. Terminal 에서 사용가능한 Font 설치
- 마음에 드는 font 찾기
- 설치(DejaVu) -> download 받은 후 ttf
- console 에서는 monospace 설치 가능
- 관련 정보
1) monospace: 고정너비 2) Command Prompt will recognize only monospace fonts 2. 색상 변경 - 마음에 드는 색상 찾기 - R:0, G:240, B:0 이 눈에 편했다. - Teraterm: setup-window 에서 색상 변경
1. namespace
scope 을 구분해 주는 역할을 한다.
namespace 의 이름을 지정해 주면 using 혹은 name:: 을 통해서 접근이 가능하다.
namespace without name
- It's called an unnamed namespace / anonymous namespace. It's use is to make functions/objects/etc accessible only within that file. It's almost the same as static in C.
2. C++ 에서의 struct
class 와 동일하게 동작하여 상속 등을 사용할 수 있다.
다른점은 class 가 기본 접근지시자가 private 이라면 struct 는 public 이다.
3. C++ 생성자와 초기화
이렇게 하면 argument 로 member 변수가 초기화 된다.
class name {
int member_x;
int member_y;
name(int arg1, int arg2) : member_x(arg1), member_y(arg2);
}