일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 로드 밸런서
- bastion host
- NAT 게이트웨이
- 직무경험
- private 서브넷 접속
- ec2 생성
- eip 비용
- 코멘토
- 생성자 함수
- 프리티어
- alb 구축
- aws 비용 계산
- pricing calculator
- Budgets
- 코멘토 직무부트캠프
- 프로토타입 상속
- 프로토타입 미니 프로젝트
- 워드프레스 매니지드
- 직무부트캠프
- 비동기처리
- ec2 ssh 접속
- 코멘토 후기
- 프라미스
- ec2에 apache설치
- 직무부트캠프 후기
- 자바스크립트 클래스
- aws
- MySQL 접속
- rds
- 제너레이터
- Today
- Total
목록전체 글 (38)
기본을 충실하게
What is “version control”, and why should you care? Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. For the examples in this book, you will use software source code as the files being version controlled, though in reality you can do this with nearly any type of file on a computer. 버전 관리가 무었이고, 왜 관심을 가져야 할까? / 버전..
function solution(sizes) { let maxSize = 0; let minSize = 0; sizes.forEach((size) => { const max = Math.max.apply(null,size) const min = Math.min.apply(null,size) if(maxSize < max && minSize < max) maxSize = max; if(minSize < min) minSize = min; }) return maxSize * minSize; }
This chapter will be about getting started with Git. We will begin by explaining some background on version control tools, then move on to how to get Git running on your system and finally how to get it set up to start working with. At the end of this chapter you should understand why Git is around, why you should use it and you should be all set up to do so. 이 챕터는 Git의 처음으로 시작할 것이다. / 우리는 조금 설명..
Introduction In Chapter 1, we’re going to cover Version Control Systems (VCSs) and Git basics — no technical stuff, just what Git is, why it came about in a land full of VCSs, what sets it apart, and why so many people are using it. Then, we’ll explain how to download Git and set it up for the first time if you don’t already have it on your system. 챕터1에서, // 우리는 버전 제어 시스템 과 깃 기초를 다룰 것입니다 // 기술적인..
IT영어를 읽는 4가지 중요점 1. 어휘 - 단어 2. 문법 3. 담화 구조 4. 전문 지식 - 익숙하지 않은 전문지식은 모국어로 공부 영어 속독 테크닉 (I have read the magazine that i bought yesterday at the convenience store) 1. 영어 어순으로 이해하기 - 나는 / 잡지를 읽었다 / 어제산 / 편의점에서 2. 끊어 읽기 - I have read the magazine // that I bought yesterday // at the convenience store - 전치사, 관계사, 접속사 .... 3. 스캐닝 - 문서 전체에서 본인이 원하는 정보만 골라 읽는 방법 4. 스키밍 - 문서 전체의 요점을 파악하며 읽는 것 (제목, 목차, in..
프로젝트 기획서 프로젝트명 Comento Todo (코멘토 부트캠프 기간동안 사용 할 Todo) 제작 기간 2022.08.18 ~ 2022.08.21(약 4일) 담당 역할 애플리케이션 개발 및 배포, 유지보수 구현 기능 - 요일별 todo, doing, done 구현 - 현재시간, 날씨 표기, 휴일, 공휴일 표기 - 다크모드 - todo, doing, done slider 수행 목표 1. 유다시티 커밋 컨벤션 활용 능력 올리기 ⭐⭐⭐ 2. git,github 활용 능력 올리기⭐⭐⭐ 3. github actions을 통한 CI/CD 경험 ⭐⭐ 4. typescript, react(context-api) 연습 ⭐⭐ 5. figma 체험 ⭐ 사용 기술 typescript, react, github-action..