전체 글 408

TypeScript

TypeScript 2016.09.19 추가 내용 1. Typescript는 JS의 상위집합(superset) 언어.Typescript = ES6(classes, modules) + TYpes + AnnotationsGenerics나 Lambdas를 이용할 수 있다. 2. Javascript의 결점 보완OOP 지원Primitive Type 지원으로 가독성의 장점 3. 프리컴파일 언어 4. Javascript의 미래버전인 Ecma Script 사용 TypeScript Documentation의 BasicTypes 항목을 옮긴 것입니다. 저의 필요에 의한 것만 옮겨왔음으로 직접 보고 확인하시길 추천합니다. Data Type let javascript의 var를 대신함. String multiple line ..

ANgularJS 2.0+ 2016.08.03

[AngularJS 2.0] App Lifecycle

링크에서 내용 찾아보세요.https://mayajuni.github.io/2016/10/21/angular2-lifecycle-hooks/ ngOnInit angular가 data bound input property 초기화한 후 directive/component 초기화ngOnInit is invoked after the component is constructed and is the best place to initialize property values.constructor와 비슷하지만 시점의 차이가 있다. 참고Timing : after the first ngOnChanges.ngOnChangesangular 가 data bound input property를 설정 한 후 respond, 즉 inp..

ANgularJS 2.0+ 2016.08.03

[Git] LF will be replaced by CRLF in ~. The file will have its original line endings in your working directory.

오류 [Git] LF will be replaced by CRLF in ~. The file will have its original line endings in your working directory. warning: LF will be replaced by CRLF in src/assets/i18n/cn.json.The file will have its original line endings in your working directory.warning: LF will be replaced by CRLF in src/assets/i18n/en.json.The file will have its original line endings in your working directory.warning: LF w..

오류관리 2016.08.02

[AngularJS 2.0] Angular 용어 정리

https://angular.io/docs/ts/latest/guide/architecture.html 를 참고하였습니다.1. Module 이 블로그에 정리가 잘되어있으므로 패스http://dalkomit.com/95 2016.07.29 추가 내용 @angular/core 여러 모듈을 하나로 묶어주는 통합모듈, 소스를 실제로 보면 여러 모듈을 다시 export한다.여러 모듈을 묶어서 export하는 모듈을 barrel이라고 한다. 2016.09.19 추가 내용Angular는 많은 모듈로 이루어져있다.Module은 다른 module에 의해 import 될 수 있다.import 시 핵심 모듈은 @를 붙인다. @angular/core, @angular/commonModule은 export할 때 여러 자료형을 ..

ANgularJS 2.0+ 2016.07.28

OTG(On-The-Go)

USB/OTG 기술의 이해 에서 발췌 널리 쓰이고 있는 USB 기술이라도 취약점이 하나 있는데, 반드시 호스트로 동작하는 PC가 있어야 된다는 점이다. 호스트-주변기기(Host-Peripheral) 개념으로 성립되는 USB 기술은 중심 역할을 하는 PC가 사라져 버린다면 사실상 어떻게 할 수가 없는 것이다. USB OTG 기술의 등장으로 인해 USB 주변기기만으로 서로 연결할 수 있게 됐으며 USB 인터페이스를 좀더 많은 분야에 적용할 수 있는 가능성이 열리게 된 것이다. 즉 mp3 플레이어와 외장형 하드디스크를 연결해 서로 데이터를 주고받을 수 있으며, 핸드폰과 PDA를 연결해 무선 인터넷을 이용할 수 있게 되며, 디지털 카메라와 포토 프린터를 연결해 찍은 사진을 곧바로 출력할 수 있게 되는 것이다.

기타내용 2016.07.27

02. DBMS 개요

학습 목표1. DBMS 이해하기2. ANSI / SPARC 구조와 데이터 독립성DBMS 이해하기 1. DBMS 란? DBMS ( Database Management System )DB의 정의와 조작,제어 기능을 제공여러 자용자와 응용 프로그램이 DB를 공용할 수 있도록 관리 데이터 독립성 (Data Independency) 응용 프로그램에 영향을 주지 않고 DB의 구조를 변경할 수 있는 것 DB의 구조를 변경해도 응용 프로그램에 영향을 주지 않고, 반대로 응용 프로그램을 변경해도 DB에 영향을 주지 않도록 하는 것 즉, 응용 프로그램이 데이터에 종속되지 않는 데이터 독립성을 제공하는 것 2. DBMS의 필수 기능 데이터 정의(Definition) 기능다양한 응용 프로그램과 DB가 서로 인터페이스 할 수 ..

Database 2016.07.25
반응형