How We Coding

< 190109 >

  1. 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-무료-플랜에-대해-무제한-비공개-저장소-제공

  2. Git Flow 이해해보기
    Pull(Fetch + Merge), Push, Pull Request, Branch 후 작업 흐름.
    관련 포스팅 내용 확인해보기
    http://mwoo526.tistory.com/18

    git_flow_by_ljm 

  3. HTTP 응답 상태코드.
    2xx : 정상 응답
    3xx : 리다이렉션
    4xx : 클라이언트 에러
    5xx : 서버 에러
    관련 포스팅 내용 읽어보기
    https://www.zerocho.com/category/NodeJS/post/579b4ead062e76a002648af7

  4. gVim 설치해보기
    설치 사이트 : https://www.vim.org/download.php

  5. D1 문제 풀고 풀리퀘스트 날려보기.
    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 하기 전에도 마찬가지..!!

  6. 오픈소스에 참여해서 좋은 개발자 되기.pdf 읽어보기 (by 강대명 님)


Github: https://github.com/Hs-Study/SW_Expert_Academy

'Tutoring > 18-2 Final Tutoring' 카테고리의 다른 글

<190116>  (0) 2019.01.16
<190102>  (0) 2019.01.15

< 190102 >

  1. 소스트리 설치 및 Github.com 가입
  2. Typora 설치
  3. 소스트리를 이용한 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 >

  1. Git 과 소스트리 동영상 보기
    https://opentutorials.org/course/1492
    누구나 쉽게 이해할 수 있는 Git 입문
    https://backlog.com/git-tutorial/kr/intro/intro1_1.html

  2. 마크다운 문법 공부 (실습은 typora 로..)
    https://gist.github.com/ihoneymon/652be052a0727ad59601

  3. 진유림님의 신입 개발자 생활백서 다 읽어보기.
    https://www.slideshare.net/jayjin0427/ss-61315271

  4. 삼성 소프트웨어 익스퍼트 아카데미 회원가입 하기
    https://www.swexpertacademy.com/main/main.do

  5. Node.js 설치 및 NPM 개념 확인
    https://www.a-mean-blog.com/ko/blog/MEAN-Stack/개발-환경-구축

  6. 웹스톰 설치하기
    https://www.jetbrains.com/webstorm/

  7. 웹스톰 학생인증 하기
    https://blog.jetbrains.com/kr/2018/09/jetbrains-학생-무료-라이센스는-이제-github에서-바로-사용할-수/

  8. 마지막 튜터링 잘 따라오기.



Github: https://github.com/Hs-Study/SW_Expert_Academy

'Tutoring > 18-2 Final Tutoring' 카테고리의 다른 글

<190116>  (0) 2019.01.16
<190109>  (0) 2019.01.15

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



Git과 Github

git2019. 1. 4. 20:20

- 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

- 여러 공백을 하나의 공백으로 바꾸는 정규표현식

- 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

[Error] Authentication plugin 'caching_sha2_password' cannot be loaded


https://stackoverflow.com/questions/49194719/authentication-plugin-caching-sha2-password-cannot-be-loaded


Note: For MAC OS

  1. Open MySQL from System Preferences > Initialize Database >
  2. Type your new password.
  3. Choose 'Use legacy password'
  4. Start the Server again.
  5. Now connect the MySQL Workbench



Ref: http://rapapa.net/?p=311


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

https://medium.com/of-all-things-tech-progress/introduction-to-webcrawling-with-javascript-and-node-js-f5a3798ee8ac

'JS > Reference' 카테고리의 다른 글

[JS] 정규표현식을 이용한 str.replace() / pattern.exec()  (0) 2018.12.26
How JS works  (0) 2018.10.02
이벤트 루프(Event Loop)  (0) 2018.10.02

ref : https://medium.com/@ghilbut/실무-개발자에게-알고리즘은-덜-중요할까-fcbab7f87074

'Article' 카테고리의 다른 글

BOJ 채점현황 속도 올리기  (0) 2018.03.11

총 4문제 / 3시간


플랫폼 : 프로그래머스


예선은 1800명 정도 응시, 본선은 100여명 정도 선발.


1) 스타트와 링크의 시너지 버전


2) 로어바운드+어퍼바운드를 통한 구간


3) 맵, 비트 DP


4) KMP 실패함수



- 이런적이 없었는데, 다 풀었다.