Skip to content

Commit 919284c

Browse files
committed
[FIX] README
- 관리의 용이함을 위해 글제목이 한글인것 모두 영어로 수정
1 parent 0520e3c commit 919284c

26 files changed

+25
-27
lines changed

README.md

Lines changed: 25 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
**도움에 감사드립니다.** :pray:
2626

27-
2827
## TechnicalNote?
2928
- **개발 관련 지식**을 정리해 놓은 저장소입니다.
3029
- 필기시험과 면접에서 **직접 겪었던** 내용 위주로 구성되어 있습니다.
@@ -45,18 +44,18 @@
4544
- [Radix Sort](https://github.com/jobhope/TechnicalNote/blob/master/algorithm/RadixSort.md)
4645
- [Counting Sort](https://github.com/jobhope/TechnicalNote/blob/master/algorithm/CountingSort.md)
4746
- [DiceProblem](https://github.com/jobhope/TechnicalNote/blob/master/algorithm/DiceProblem.md)
48-
- [스택으로 큐 구현](https://github.com/jobhope/TechnicalNote/blob/master/algorithm/%EC%8A%A4%ED%83%9D%EC%9C%BC%EB%A1%9C%20%ED%81%90%20%EA%B5%AC%ED%98%84.md)
47+
- [스택으로 큐 구현](https://github.com/jobhope/TechnicalNote/blob/master/algorithm/QueueImplementationWithStack.md)
4948
- [좌표 압축 기법](https://github.com/jobhope/TechnicalNote/blob/master/algorithm/CoordinateCompression.md)
5049

5150
## :moneybag: C++ [:top:](#top)
52-
- [형변환 연산자](https://github.com/jobhope/TechnicalNote/blob/master/c%2B%2B/TypeCastingOperator.md)
53-
- [Const](https://github.com/jobhope/TechnicalNote/blob/master/c%2B%2B/Const.md)
54-
- [Vector](https://github.com/jobhope/TechnicalNote/blob/master/c%2B%2B/Vector.md)
55-
- [Virtual](https://github.com/jobhope/TechnicalNote/blob/master/c%2B%2B/Virtual.md)
56-
- [가상함수의 동작 원리](https://github.com/jobhope/TechnicalNote/blob/master/c%2B%2B/PrincipleOfVirtualFunctionInCpp.md)
51+
- [형변환 연산자](https://github.com/jobhope/TechnicalNote/blob/master/cplusplus/TypeCastingOperator.md)
52+
- [Const](https://github.com/jobhope/TechnicalNote/blob/master/cplusplus/Const.md)
53+
- [Vector](https://github.com/jobhope/TechnicalNote/blob/master/cplusplus/Vector.md)
54+
- [Virtual](https://github.com/jobhope/TechnicalNote/blob/master/cplusplus/Virtual.md)
55+
- [가상함수의 동작 원리](https://github.com/jobhope/TechnicalNote/blob/master/cplusplus/PrincipleOfVirtualFunctionInCpp.md)
5756

5857
## :computer: Computer Architecture [:top:](#top)
59-
- [빅엔디언과 리틀엔디언](https://github.com/jobhope/TechnicalNote/blob/master/computer_architecture/%EB%B9%85%EC%97%94%EB%94%94%EC%96%B8%EA%B3%BC%20%EB%A6%AC%ED%8B%80%EC%97%94%EB%94%94%EC%96%B8.md)
58+
- [빅엔디언과 리틀엔디언](https://github.com/jobhope/TechnicalNote/blob/master/computer_architecture/BigEndianAndLittleEndian.md)
6059
- [실행파일의 생성과정](https://github.com/jobhope/TechnicalNote/blob/master/computer_architecture/ExecutionProcess.md)
6160
- [컴퓨터에서의 실수 표현방법](https://github.com/jobhope/TechnicalNote/blob/master/computer_architecture/RealNumberRepresentation.md)
6261
- [10진수와 2진수의 변환](https://github.com/jobhope/TechnicalNote/blob/master/computer_architecture/BinaryDecimalConversion.md)
@@ -66,31 +65,30 @@
6665
- [Queue](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/Queue.md)
6766
- [Deque](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/Deque.md)
6867
- [트리](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/Tree.md)
69-
- [이진트리](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/%EC%9D%B4%EC%A7%84%ED%8A%B8%EB%A6%AC.md)
70-
- [트리의 순회](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/%ED%8A%B8%EB%A6%AC%EC%9D%98%20%EC%88%9C%ED%9A%8C.md)
68+
- [이진트리](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/BinaryTree.md)
69+
- [트리의 순회](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/TreeTraversal.md)
7170
- [최소신장트리(MST)](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/MST.md)
72-
- [자료구조를 이용한 스택의 구현](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/%EC%9E%90%EB%A3%8C%EA%B5%AC%EC%A1%B0%EB%A5%BC%20%EC%9D%B4%EC%9A%A9%ED%95%9C%20%EC%8A%A4%ED%83%9D%EC%9D%98%20%EA%B5%AC%ED%98%84.md)
71+
- [자료구조를 이용한 스택의 구현](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/StackImplementation.md)
7372
- [해싱](https://github.com/jobhope/TechnicalNote/blob/master/data_structure/Hashing.md)
7473

7574

7675
## :floppy_disk: Database [:top:](#top)
77-
- [DB 쿼리문 정리](https://github.com/jobhope/TechnicalNote/blob/master/database/DB%20%EC%BF%BC%EB%A6%AC%EB%AC%B8%20%EC%A0%95%EB%A6%AC.md)
78-
- [JOIN의 종류](https://github.com/jobhope/TechnicalNote/blob/master/database/JOIN%EC%9D%98%20%EC%A2%85%EB%A5%98.md)
79-
- [DDL,DML,DCL](https://github.com/jobhope/TechnicalNote/blob/master/database/DDL%2CDML%2CDCL.md)
76+
- [DB 쿼리문 정리](https://github.com/jobhope/TechnicalNote/blob/master/database/DBQuery.md)
77+
- [JOIN의 종류](https://github.com/jobhope/TechnicalNote/blob/master/database/AboutJoin.md)
78+
- [DDL,DML,DCL](https://github.com/jobhope/TechnicalNote/blob/master/database/DDLAndDMLAndDCL.md)
8079
- [트랜잭션의 ACID 속성](https://github.com/jobhope/TechnicalNote/blob/master/database/ACID.md)
8180
- [트랜잭션 격리수준](https://github.com/jobhope/TechnicalNote/blob/master/database/IsolationLevel.md)
8281
- [RDBMS와 NoSQL의 차이](https://github.com/jobhope/TechnicalNote/blob/master/database/RDBMSAndNoSQL.md)
8382

84-
8583
## :octocat: Github [:top:](#top)
8684
- [repository를 clone할 때 모든 branch를 local에 받기](https://github.com/jobhope/TechnicalNote/blob/master/github/CloneRepository.md)
8785
- [Pull Request 방법](https://github.com/jobhope/TechnicalNote/blob/master/github/GithubPullRequestProcess.md)
8886

8987
## :lips: Java [:top:](#top)
9088
- [JVM](https://github.com/jobhope/TechnicalNote/blob/master/java/JVM.md)
91-
- [Eclipse Attach Source 설정하기](https://github.com/jobhope/TechnicalNote/blob/master/java/Eclipse%20Attach%20Source%20%EC%84%A4%EC%A0%95.md)
92-
- [String, StringBuffer, StringBuilder의 차이](https://github.com/jobhope/TechnicalNote/blob/master/java/String%2C%20StringBuffer%2C%20StringBuilder%EC%9D%98%20%EC%B0%A8%EC%9D%B4.md)
93-
- [HashMap과 Hashtable의 차이](https://github.com/jobhope/TechnicalNote/blob/master/java/HashMap%EA%B3%BC%20HashTable%EC%9D%98%20%EC%B0%A8%EC%9D%B4.md)
89+
- [Eclipse Attach Source 설정하기](https://github.com/jobhope/TechnicalNote/blob/master/java/EclipseAttachSourceSetting.md)
90+
- [String, StringBuffer, StringBuilder의 차이](https://github.com/jobhope/TechnicalNote/blob/master/java/StringAndStringBufferAndStringBuilder.md)
91+
- [HashMap과 Hashtable의 차이](https://github.com/jobhope/TechnicalNote/blob/master/java/HashMapAndHashTable.md)
9492
- [final](https://github.com/jobhope/TechnicalNote/blob/master/java/final.md)
9593
- [Interface와 abstract의 차이](https://github.com/jobhope/TechnicalNote/blob/master/java/InterfaceAndAbstract.md)
9694

@@ -103,27 +101,27 @@
103101

104102
## :globe_with_meridians: Network [:top:](#top)
105103
- [OSI 7 Layer](https://github.com/jobhope/TechnicalNote/blob/master/network/OSI7layer.md)
106-
- [URI, URL, URN 개념](https://github.com/jobhope/TechnicalNote/blob/master/network/URI%2C%20URL%2C%20URN%20%EA%B0%9C%EB%85%90.md)
107-
- [포트와 소켓](https://github.com/jobhope/TechnicalNote/blob/master/network/%ED%8F%AC%ED%8A%B8%EC%99%80%20%EC%86%8C%EC%BC%93.md)
104+
- [URI, URL, URN 개념](https://github.com/jobhope/TechnicalNote/blob/master/network/URIAndURLAndURN.md)
105+
- [포트와 소켓](https://github.com/jobhope/TechnicalNote/blob/master/network/PortAndSocket.md)
108106
- [서브넷마스크](https://github.com/jobhope/TechnicalNote/blob/master/network/SubnetMask.md)
109107
- [Nagle 알고리즘](https://github.com/jobhope/TechnicalNote/blob/master/network/Nagle.md)
110108
- [TCP와 UDP의 차이](https://github.com/jobhope/TechnicalNote/blob/master/network/TCPAndUDP.md)
111109
- [HTTP와 HTTPS](https://github.com/jobhope/TechnicalNote/blob/master/network/HTTPAndHTTPS.md)
112110

113111
## :bus: Operating System [:top:](#top)
114112
- [메모리 구조](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/MemoryStructure.md)
115-
- [프로세스와 스레드](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/%ED%94%84%EB%A1%9C%EC%84%B8%EC%8A%A4%EC%99%80%20%EC%8A%A4%EB%A0%88%EB%93%9C.md)
113+
- [프로세스와 스레드](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/ProcessAndThread.md)
116114
- [Context Switching](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/ContextSwitching.md)
117-
- [동시성과 병렬성](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/%EB%8F%99%EC%8B%9C%EC%84%B1%EA%B3%BC%20%EB%B3%91%EB%A0%AC%EC%84%B1.md)
115+
- [동시성과 병렬성](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/ConcurrencyAndParallelism.md)
118116
- [Deadlock](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/Deadlock.md)
119117
- [CPU 스케줄링](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/CPUScheduling.md)
120-
- [페이지 교체 알고리즘](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/%ED%8E%98%EC%9D%B4%EC%A7%80%20%EA%B5%90%EC%B2%B4%20%EC%95%8C%EA%B3%A0%EB%A6%AC%EC%A6%98.md)
118+
- [페이지 교체 알고리즘](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/PageReplacementAlgorithm.md)
121119
- [메모리 단편화](https://github.com/jobhope/TechnicalNote/blob/master/operating_system/Fragmentation.md)
122120

123121
## :speech_balloon: Programming Language [:top:](#top)
124122
- [객체지향 프로그래밍](https://github.com/jobhope/TechnicalNote/blob/master/programming_language/OOP.md)
125-
- [객체 지향 원칙](https://github.com/jobhope/TechnicalNote/blob/master/programming_language/%EA%B0%9D%EC%B2%B4%20%EC%A7%80%ED%96%A5%20%EC%9B%90%EC%B9%99.md)
126-
- [자료형](https://github.com/jobhope/TechnicalNote/blob/master/programming_language/%EC%9E%90%EB%A3%8C%ED%98%95.md)
123+
- [객체 지향 원칙](https://github.com/jobhope/TechnicalNote/blob/master/programming_language/ObjectOrientedPrinciples.md)
124+
- [자료형](https://github.com/jobhope/TechnicalNote/blob/master/programming_language/DataType.md)
127125
- [Call by Sharing](https://github.com/jobhope/TechnicalNote/blob/master/programming_language/call-by-sharing.md)
128126
- [Short Circuit](https://github.com/jobhope/TechnicalNote/blob/master/programming_language/ShortCircuit.md)
129127
- [함수의 인자 전달 방식](https://github.com/jobhope/TechnicalNote/blob/master/programming_language/CallByParameterType.md)
@@ -140,8 +138,8 @@
140138
- [클린 코드](https://github.com/jobhope/TechnicalNote/blob/master/software_engineering/CleanCode.md)
141139

142140
## :earth_asia: Web [:top:](#top)
143-
- [AMP와 PWA](https://github.com/jobhope/TechnicalNote/blob/master/web/AMP%EC%99%80PWA.md)
144-
- [REST란 무엇인가?](https://github.com/jobhope/TechnicalNote/blob/master/web/REST%EB%9E%80%20%EB%AC%B4%EC%97%87%EC%9D%B8%EA%B0%80.md)
141+
- [AMP와 PWA](https://github.com/jobhope/TechnicalNote/blob/master/web/AWPAndPWA.md)
142+
- [REST란 무엇인가?](https://github.com/jobhope/TechnicalNote/blob/master/web/AboutREST.md)
145143
- [Reverse Proxy와 Load Balancing](https://github.com/jobhope/TechnicalNote/blob/master/web/ReverseProxyAndLoadBalancing.md)
146144
- [세션과 쿠키](https://github.com/jobhope/TechnicalNote/blob/master/web/SessionAndCookie.md)
147145
- [Open API Architecture](https://github.com/jobhope/TechnicalNote/blob/master/web/OpenAPIArchitecture.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)