Skip to content

Commit 119ee5c

Browse files
author
seungwonme
committed
Docs: Add GUIDE.md
1 parent 895d97b commit 119ee5c

24 files changed

+54
-1347
lines changed

.gitmessage

+18-22
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,33 @@
1-
# https://hyunjun.kr/21
2-
# https://hangbok-archive.com/development/management/git-convention/
31
# commit message template
4-
# 본문과 푸터는 선택 사항입니다.
52
##################
6-
# type: Subject
3+
# git config --local commit.template .gitmessage
4+
# git config --local --unset commit.template
5+
# Body와 Footer는 선택사항입니다.
6+
##################
7+
# Type: Subject
78

89
# Body
910

1011
# Footer
11-
##################
12+
########Type########
1213
# feat: 새로운 기능 추가
1314
# fix: 버그 수정
14-
# docs: 문서 수정
15-
# style: 코드 포맷팅, 세미콜론 누락, 코드 변경이 없는 경우
1615
# refactor: 코드 리팩토링
17-
# test: 테스트 코드, 리팩토링 테스트 코드 추가
1816
# chore: 빌드 업무 수정, 패키지 매니저 수정, production code와 무관한 부분들 (.gitignore, build.gradle 같은)
19-
# comment: 주석 추가 및 변경
20-
# remove: 파일, 폴더 삭제
21-
# rename: 파일, 폴더명 수정
22-
##################
17+
# test: 테스트 코드, 리팩토링 테스트 코드 추가
18+
########Subj########
2319
# 영어로 Subject 작성 시
24-
# Add : 추가
25-
# Remove : 삭제
26-
# Simplify : 단순화
27-
# Update : 보완
28-
# Implement : 구현
29-
# Prevent : 방지
30-
# Move : 이동
31-
# Rename : 이름 변경
32-
##################
20+
# Add: 추가
21+
# Remove: 삭제
22+
# Simplify: 단순화
23+
# Update: 보완
24+
# Implement: 구현
25+
# Prevent: 방지
26+
# Move: 이동
27+
# Rename: 이름 변경
28+
####################
3329
# 예시
34-
# feat: "로그인 기능 구현"
30+
# feat: Implement JWT
3531

3632
# 로그인 시 JWT 발급
3733

GUIDE.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# How to study Network?
2+
3+
> [어떻게 네트워크를 공부할 것인가?](https://covenant.tistory.com/222) 글을 참고하여 제 경험을 작성한 글입니다.
4+
5+
## Lectures
6+
7+
### [KOCW 이석복 교수님 네트워크](http://www.kocw.net/home/enrolment/enrolmentView.do?cid=6166c077e545b736&lid=dd53ceac302ff18b)
8+
9+
<img src=" http://www.kocw.net/home/common/contents/thumbnail/07/t1169634.jpg" alt="KOCW" style="width:300px;"/>
10+
11+
### [외워서 끝내는 네트워크 핵심이론 - 기초](https://www.inflearn.com/course/%EB%84%A4%ED%8A%B8%EC%9B%8C%ED%81%AC-%ED%95%B5%EC%8B%AC%EC%9D%B4%EB%A1%A0-%EA%B8%B0%EC%B4%88)
12+
13+
<img src="https://cdn.inflearn.com/public/courses/329534/cover/76d5fd7f-3e76-4801-bb8f-523d10ff5829/329534-eng.jpg?w=736" alt="Inflearn" width="300px;">
14+
15+
### [외워서 끝내는 네트워크 핵심이론 - 응용](https://www.inflearn.com/course/%EB%84%A4%ED%8A%B8%EC%9B%8C%ED%81%AC-%ED%95%B5%EC%8B%AC%EC%9D%B4%EB%A1%A0-%EC%9D%91%EC%9A%A9)
16+
17+
<img src="https://cdn.inflearn.com/public/courses/329541/cover/7aacdec4-870c-4f72-a1a1-3112d2386bc0/329541-eng.jpg?w=736" alt="Inflearn" width="300px;">
18+
19+
### [와이어샤크 네트워크 패킷 분석](https://cdn.inflearn.com/public/courses/324137/cou…2-4172-8b7f-a4686fb7db03/boan_wireshark.png?w=736)
20+
21+
<img src="https://cdn.inflearn.com/public/courses/324137/course_cover/28e6c95d-9492-4172-8b7f-a4686fb7db03/boan_wireshark.png?w=736" alt="Inflearn" width="300px;">
22+
23+
### [CS 지식의 정석](https://www.inflearn.com/course/%EA%B0%9C%EB%B0%9C%EC%9E%90-%EB%A9%B4%EC%A0%91-cs-%ED%8A%B9%EA%B0%95/dashboard)
24+
25+
<img src="https://cdn.inflearn.com/public/courses/328823/cover/1081d7c2-64b4-4063-87f4-c40e11bb481f/KakaoTalk_20220517_140737840.jpg?w=736" alt="Inflearn" style="width:300px;"/>
26+
27+
전반적인 흐름을 빠르게 익힐 때 사용했습니다.
28+
29+
## Books
30+
31+
### Computer Networking: A Top-Down Approach
32+
33+
<img src=" https://contents.kyobobook.co.kr/sih/fit-in/458x0/pdt/9789813350212.jpg" alt="Kyobo" style="width:300px;"/>
34+
35+
[이 사이트](https://gaia.cs.umass.edu/kurose_ross/lectures.php)에 온라인 강의 및 시험, 추가 자료가 있습니다.

server/http1.1/Makefile

-92
This file was deleted.

server/http1.1/server

-52.9 KB
Binary file not shown.

server/http1.1/src/Exception/Exception.hpp

-15
This file was deleted.

server/http1.1/src/httpMessage/RequestMessage.cpp

-38
This file was deleted.

server/http1.1/src/httpMessage/RequestMessage.hpp

-27
This file was deleted.

server/http1.1/src/httpMessage/ResponseMessage.cpp

Whitespace-only changes.

server/http1.1/src/httpMessage/ResponseMessage.hpp

Whitespace-only changes.

server/http1.1/src/httpMessage/headerFields/AHeaderFields.cpp

Whitespace-only changes.

server/http1.1/src/httpMessage/headerFields/AHeaderFields.hpp

-1
This file was deleted.

0 commit comments

Comments
 (0)