<190109>
< 190109 >
Git 과 Github 개념 확인하기.
Git : 버전 관리를 위한 도구
Github : 분산 버전 관리 툴인 Git을 사용하는 프로젝트를 지원하는 웹호스팅 서비스
관련 포스팅 내용 확인해보기
https://www.zerocho.com/category/Git/post/58045dbc146be6001542a465
깃허브 관련 최근기사 읽어보기
https://www.44bits.io/ko/post/news--github-announcing-unlimited-free-private-repository#깃헙github-무료-플랜에-대해-무제한-비공개-저장소-제공Git Flow 이해해보기
Pull(Fetch + Merge), Push, Pull Request, Branch 후 작업 흐름.
관련 포스팅 내용 확인해보기
http://mwoo526.tistory.com/18HTTP 응답 상태코드.
2xx : 정상 응답
3xx : 리다이렉션
4xx : 클라이언트 에러
5xx : 서버 에러
관련 포스팅 내용 읽어보기
https://www.zerocho.com/category/NodeJS/post/579b4ead062e76a002648af7gVim 설치해보기
설치 사이트 : https://www.vim.org/download.phpD1 문제 풀고 풀리퀘스트 날려보기.
https://swexpertacademy.com/main/code/problem/problemList.do?problemLevel=1&problemTitle=&orderBy=FIRST_REG_DATETIME&select-1=&pageSize=10&pageIndex=1
branch 생성하기 전에 origin remote 에 최신버전 있는지 확인하고 있다면 pull 하기.
push 하기 전에도 마찬가지..!!오픈소스에 참여해서 좋은 개발자 되기.pdf 읽어보기 (by 강대명 님)
'Tutoring > 18-2 Final Tutoring' 카테고리의 다른 글
<190116> (0) | 2019.01.16 |
---|---|
<190102> (0) | 2019.01.15 |
<190102>
< 190102 >
- 소스트리 설치 및 Github.com 가입
- Typora 설치
- 소스트리를 이용한 Git 실습 (마크다운 문서 실습)
- Fork, Clone
- Repository (local, remote, forked remote)
- Branch 개념, 브랜치 변경, current branch
- Stage area, unstage area, commit (kind of little version)
- Push, pull request, merge, pull
< Homework >
Git 과 소스트리 동영상 보기
https://opentutorials.org/course/1492
누구나 쉽게 이해할 수 있는 Git 입문
https://backlog.com/git-tutorial/kr/intro/intro1_1.html마크다운 문법 공부 (실습은 typora 로..)
https://gist.github.com/ihoneymon/652be052a0727ad59601진유림님의 신입 개발자 생활백서 다 읽어보기.
https://www.slideshare.net/jayjin0427/ss-61315271삼성 소프트웨어 익스퍼트 아카데미 회원가입 하기
https://www.swexpertacademy.com/main/main.doNode.js 설치 및 NPM 개념 확인
https://www.a-mean-blog.com/ko/blog/MEAN-Stack/개발-환경-구축웹스톰 학생인증 하기
https://blog.jetbrains.com/kr/2018/09/jetbrains-학생-무료-라이센스는-이제-github에서-바로-사용할-수/마지막 튜터링 잘 따라오기.
'Tutoring > 18-2 Final Tutoring' 카테고리의 다른 글
<190116> (0) | 2019.01.16 |
---|---|
<190109> (0) | 2019.01.15 |
brew 를 통한 mongoDB 설치 및 설정, 서비스
https://itstory.tk/entry/MongoDB-인증-모드-password-설정
https://robots.thoughtbot.com/starting-and-stopping-background-services-with-homebrew
https://ondemand.tistory.com/245
https://www.popit.kr/개발자를-위한-맥mac-정보-패키지관리자-homebrew/
https://nesoy.github.io/articles/2017-04/MongoDB
'DB' 카테고리의 다른 글
sequelize issue (0) | 2019.03.28 |
---|---|
[Error / solved] ERROR: Can't create database 'node_sns' (errno: 158458432) (0) | 2019.01.17 |
[Workbench] Authentication plugin 'caching_sha2_password' cannot be loaded (0) | 2018.12.02 |
[MySQL] join 해부 (Left, Right, Outer, Inner Join) (0) | 2018.11.24 |
[MongoDB] (RDB vs NoSQL) 및 간단 명령어 (0) | 2018.10.16 |
Git과 Github
- Git 을 조금 더 알아보자. (SlideShare)
https://www.slideshare.net/ky200223/git-89251791
- Git Flow, Github Flow, Gitlab Flow
https://ujuc.github.io/2015/12/16/git-flow-github-flow-gitlab-flow/
- 오픈소스 기여를 위한 GITHUB 개념 정리
http://guruble.com/오픈소스-프로젝트의-컨트리뷰터는-어떻게-되는-것/
- Github cheat sheet
https://github.com/tiimgreen/github-cheat-sheet
'git' 카테고리의 다른 글
git 초보를 위한 풀리퀘스트(pull request) 방법 (0) | 2018.04.07 |
---|
[JS] 정규표현식을 이용한 str.replace() / pattern.exec()
- 여러 공백을 하나의 공백으로 바꾸는 정규표현식
- ref : https://code.i-harness.com/ko-kr/q/1e3ba5
str.replace( / +/g, ' ' ) -> 790ms
str.replace( / +/g, ' ' ) -> 380ms
str.replace( / {2,}/g, ' ' ) -> 470ms
str.replace( /\s\s+/g, ' ' ) -> 390ms
str.replace( / +(?= )/g, ' ') -> 3250ms
- 문자열에서 모든 줄 바꿈(개행)을 제거하는 방버
- ref : https://code.i-harness.com/ko-kr/q/a4df85
someText = someText.replace(/(\r\n\t|\n|\r\t)/gm,"");
- 정규표현식을 사용하여 태그만 제거하기
- ref : https://webisfree.com/2015-12-22/[자바스크립트]-정규표현식을-사용하여-태그만-제거하기
var newText = oriText.replace(/(<([^>]+)>)/ig,"");
>> g : 발생할 모든 pattern에 대한 전역 검색
>> i : 대/소문자 구분 안함
>> ref : http://www.codejs.co.kr/자바스크립트에서-replace를-replaceall-처럼-사용하기/
- 특정 태그 추출
- ref: http://maedoop.dothome.co.kr/2231
- ref: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec
'JS > Reference' 카테고리의 다른 글
How to make a Web Crawler in Node.js (0) | 2018.11.24 |
---|---|
How JS works (0) | 2018.10.02 |
이벤트 루프(Event Loop) (0) | 2018.10.02 |
[Workbench] Authentication plugin 'caching_sha2_password' cannot be loaded
[Error] Authentication plugin 'caching_sha2_password' cannot be loaded
Note: For MAC OS
- Open MySQL from System Preferences > Initialize Database >
- Type your new password.
- Choose 'Use legacy password'
- Start the Server again.
- Now connect the MySQL Workbench
'DB' 카테고리의 다른 글
sequelize issue (0) | 2019.03.28 |
---|---|
[Error / solved] ERROR: Can't create database 'node_sns' (errno: 158458432) (0) | 2019.01.17 |
brew 를 통한 mongoDB 설치 및 설정, 서비스 (0) | 2019.01.15 |
[MySQL] join 해부 (Left, Right, Outer, Inner Join) (0) | 2018.11.24 |
[MongoDB] (RDB vs NoSQL) 및 간단 명령어 (0) | 2018.10.16 |
[MySQL] join 해부 (Left, Right, Outer, Inner Join)
'DB' 카테고리의 다른 글
sequelize issue (0) | 2019.03.28 |
---|---|
[Error / solved] ERROR: Can't create database 'node_sns' (errno: 158458432) (0) | 2019.01.17 |
brew 를 통한 mongoDB 설치 및 설정, 서비스 (0) | 2019.01.15 |
[Workbench] Authentication plugin 'caching_sha2_password' cannot be loaded (0) | 2018.12.02 |
[MongoDB] (RDB vs NoSQL) 및 간단 명령어 (0) | 2018.10.16 |
How to make a Web Crawler in Node.js
1. How to make a web crawler in JavaScript / Node.js
http://www.netinstructions.com/how-to-make-a-simple-web-crawler-in-javascript-and-node-js/
2. “Introduction to Webcrawling (with Javascript and Node.js)” - “Introduction to Webcrawling (with Javascript and Node.js)” @DDCreationStudi
'JS > Reference' 카테고리의 다른 글
[JS] 정규표현식을 이용한 str.replace() / pattern.exec() (0) | 2018.12.26 |
---|---|
How JS works (0) | 2018.10.02 |
이벤트 루프(Event Loop) (0) | 2018.10.02 |
[Artcle] 실무 개발자에게 알고리즘은 덜 중요할까?
'Article' 카테고리의 다른 글
BOJ 채점현황 속도 올리기 (0) | 2018.03.11 |
---|
<181020> LG CNS CODE MONSTER 2018 본선 후기(Off-line TEST)
총 4문제 / 3시간
플랫폼 : 프로그래머스
예선은 1800명 정도 응시, 본선은 100여명 정도 선발.
1) 스타트와 링크의 시너지 버전
2) 로어바운드+어퍼바운드를 통한 구간
3) 맵, 비트 DP
4) KMP 실패함수
- 이런적이 없었는데, 다 풀었다.
'Etc.' 카테고리의 다른 글
<180518> 배민 코테 1차 (0) | 2018.05.19 |
---|---|
[교양] 링크 소프트웨어 세상 (Link Software) (0) | 2018.03.22 |
<180310> 삼성 S/W 테스트 A형 후기(합격) (0) | 2018.03.11 |