'분류 전체보기' 카테고리의 글 목록 (36 Page) — Archive

분류 전체보기

Computer Science/Software Engineering

[Software Engineering] Requirement Analysis | 요구사항 분석

Requirement Analysis 요구사항 분석 - 요구사항 분석을 통해 개발할 애플리케이션을 분석하거나, 애플리케이션의 논리적 모델을 만들어낼 수 있다. - 요구사항 분석 과정에서는 Class Prototype까지 설계하는 것을 목표로 한다. (그 이후 과정은 Implementation에서 진행한다.) - 요구사항을 도출해내고 최종적으로 시스템의 Class 구조를 설계하기 까지의 과정은 아래와 같다. Use Case Diagram을 그리거나 Use Case Description을 작성한다. - Actor가 이용하는 기능들(Use Cases)을 Identifying기술한다. Use Case를 Realization하여 Communication Diagram을 그린다. - 각각의 Use Case를 Rea..

Computer Science/Git - GitHub

[Git] Git Overview | Git 개요

보호되어 있는 글입니다.

Computer Science/Git - GitHub

[Git] Git Commands | Git 명령어

Git Commands Git 명령어 - Git에서 제공하는 명령어들은 아래와 같다. Category Commands Setup and Config git git config git help git bugreport Getting and Creating Projects git init git clone Basic Snapshotting git add git status git diff git commit git notes git restore git reset git rm git mv Branching and Merging git branch git checkout git switch git merge git mergetool git log git stash git tag git worktree Shar..

Computer Science/Python

[Python] Python Scheduler | 파이썬 스케줄러

Python Scheduler 파이썬 스케줄러 - 특정 주기를 기준으로 반복 동작하는 프로그램을 스케줄러라 부른다. - 파이썬으로 손쉽게 스케줄러를 구현할 수 있게 하는 모듈 혹은 오픈소스 라이브러리들에는 아래와 같은 것들이 있다. sched (Python Built-In Library) APScheduler (Open Source) celery (Open Source) apache-airflow (Open Source) sched Module - Python Built-in Library로, 단순하고 직관적이다. - 복잡한 스케줄러 구현에는 한계를 보인다. APScheduler (URL) - 비교적 사용법이 간단하여 손쉽게 스케줄러를 구현할 수 있다. - 실행하는 Job에 대한 정보를 저장하고 복원하는..

Computer Science/Software Engineering

[Software Engineering] Configuration and Version Management | 형상 관리 및 버전 관리

Configuration and Version Management 형상 관리 및 버전 관리 Configuration Management (CM; 형상 관리) - 변화하는 소프트웨어 시스템을 관리하는 Policy, Process, Tool 등을 의미한다. - 소프트웨어의 최종적인 버전은 Shared Project Repository에 저장된다. - 개발자는 본인의 Workspace에 dl Shared Project를 복사해와서 작업한다. Configuration Management Activity (CM Activity) Version Management (VM) - System Component의 다양한 버전들을 추적해가는 것을 의미한다. - 개발 단계마다 여러 버전이 존재할 수 있으며, 다수의 개발팀이..

Computer Science/Database

[Database] Storing Data: Disks and Files | 데이터 저장: 디스크와 파일 (9장)

Storing Data: Disks and Files 데이터 저장: 디스크와 파일 9.1 The Memory Hierarchy (메모리 계층 구조) Primary Storage - Volatile - Cache, Main Memory Secondary Storage - Nonvolatile - Magnetic Disk Tertiary Storage - Nonvolatile - Tape Magnetic Disk (Disk; 자기 디스크) - 데이터가 위치한 영역으로의 Direct Access가 가능하고, DB Application에 널리 사용되는 저장장치이다. Disk Block (디스크 블록) - 데이터가 디스크 상에 저장·입출력되는 단위이다. - Contiguous Sequence of bytes 형태..

lww7438
'분류 전체보기' 카테고리의 글 목록 (36 Page)