본문 바로가기

분류 전체보기445

졸작] 기온 변화 알림 서비스(FCM)에 필요한 자료 기온 습도 "아침부터 짜증 확 나는 이유 '이것' 때문?" 기상청 불쾌지수, 알고 계세요? #회사원 J씨는 사무실에 들어서자마자 짜증이 났다. "밥 한 끼 먹고 오는 게 이렇고 덥고 피곤하다니.." 볼멘소리가 절로 나오는 한낮이다. 책상에 앉아 기상청 홈� www.asiae.co.kr 미세먼지(PM10만) UV 강수량 2020. 7. 2.
Design Pattern ] Singleton Pattern Singleton Real-World Analogy The government is an excellent example of the Singleton pattern. A country can have only one official government. Regardless of the personal identities of the individuals who form governments, the title, “The Government of X”, is a g refactoring.guru Singleton Pattern Class가 하나의 인스턴트를 갖게 하는 동시에 액세스를 제공할 수 있게 하는 패턴 (제가 갠적으로 좋아하는 패턴입니다. 왜냐면 구현이 간단하걸랑요!ㅎ) Problem Single.. 2020. 7. 2.
Design Pattern] Builder Builder Say you have a constructor with ten optional parameters. Calling such a beast is very inconvenient; therefore, you overload the constructor and create several shorter versions with fewer parameters. These constructors still refer to the main one, passing s refactoring.guru 빌더 패턴(Builder Pattern) 객체의 생성 방법과 표현 방법을 분리한다 johngrib.github.io Builder Pattern - 복잡한 객체를 단계별로 구성하는 디자인 패턴 - 객체의 생성.. 2020. 7. 2.
책과 함께] 리액트 동작 원리 및 기초 개념 * 책의 모든 내용을 업로드할 수 없기 때문에 간단한 부분만 업로드한 후, 직접 클론 코딩한 내용은 비공개로 업로드 하겠습니다. 동작 원리 복습 리액트는 개발자가 작성/수정한 프로젝트 폴더의 code를 JavaScript를 이용해 해석합니다. 기초 개념 1. App( ) 함수의 반환값이 많아지면? App.js Function App(){ return ( Hello ; } //------------------ // App() 함수의 반환값이 많아지면 소괄호로 감싸기 // Function App(){ return ( Hello ); } //------------------ 2. 컴포넌트 리액트는 같은 표시를 컴포넌트로 인식하고, 컴포넌트가 반환하는 값을 화면에 그립니다. -> 리액트는 컴포넌트와 함께 동작하.. 2020. 7. 1.