https://github.com/hanull/til
til
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hanull/til
- Owner: hanull
- Created: 2020-04-16T06:43:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-08T08:45:17.000Z (over 4 years ago)
- Last Synced: 2025-04-14T10:19:19.963Z (over 1 year ago)
- Topics: til
- Homepage:
- Size: 1.45 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### OS
- [시스템 콜](https://github.com/hanull/TIL/blob/master/Operating%20System/%EC%8B%9C%EC%8A%A4%ED%85%9C%EC%BD%9C.md)
- [PCB & Context Switching](https://github.com/hanull/TIL/blob/master/Operating%20System/PCB%20%26%20Context%20Switching.md)
- [IPC](https://github.com/hanull/TIL/blob/master/Operating%20System/IPC.md)
- [메모리 관리]()
### Network
- [HTTP & HTTPS](https://github.com/hanull/TIL/blob/master/Network/http%20%26%20https.md)
- [Get & Post](https://github.com/hanull/TIL/blob/master/Network/Get%26Post.md)
- [TCP & UDP](https://github.com/hanull/TIL/blob/master/Network/TCP%26UDP.md)
- [쿠키 & 세션](https://github.com/hanull/TIL/blob/master/Network/%EC%BF%A0%ED%82%A4%20%26%20%EC%84%B8%EC%85%98.md)
### DataBase
- [Statement vs PreparedStatement](https://github.com/hanull/TIL/blob/master/Database/Statement%20vs%20PreparedStatement.md)
- [샤딩(Sharding) & 파티셔닝(Partitioning)](https://github.com/hanull/TIL/blob/master/Database/%EC%83%A4%EB%94%A9%20%26%20%ED%8C%8C%ED%8B%B0%EC%85%94%EB%8B%9D.md)
### Java
- [가비지 컬렉터(GC)는 무엇인가?](https://github.com/hanull/TIL/blob/master/Java/garbage-collector.md)
- [객체, 클래스, 인스턴스의 차이점이 무엇인가?](https://github.com/hanull/TIL/blob/master/Java/Object-Class-Instance.md)
- [자바가상머신(JVM)이란 무엇인가?](https://github.com/hanull/TIL/blob/master/Java/jvm.md)
- [인터프리터(interpreter)와 컴파일러(compiler)에 대해 알아보자](https://github.com/hanull/TIL/blob/master/Java/compiler-interpreter.md)
- [추상 클래스(abstract class)란??](https://github.com/hanull/TIL/blob/master/Java/abstract-class.md)
- [Java equals(), hashCode()에 대해](https://github.com/hanull/TIL/blob/master/Java/equals-hashcode.md)
- [컬렉션 프레임워크 정리](https://github.com/hanull/TIL/blob/master/Java/%EC%BB%AC%EB%A0%89%EC%85%98%20%ED%94%84%EB%A0%88%EC%9E%84%EC%9B%8C%ED%81%AC.md)
- [인터페이스와 추상클래스 차이](https://github.com/hanull/TIL/blob/master/Java/%EC%9D%B8%ED%84%B0%ED%8E%98%EC%9D%B4%EC%8A%A4%EC%99%80%20%EC%B6%94%EC%83%81%ED%81%B4%EB%9E%98%EC%8A%A4%EC%9D%98%20%EC%B0%A8%EC%9D%B4.md)
- [call by reference & call by value](https://github.com/hanull/TIL/blob/master/Java/Call%20by%20Reference%EC%99%80%20Call%20by%20Value%20%EC%B0%A8%EC%9D%B4.md)
- [상수를 관리하는 방법과 enum 등장 배경](https://github.com/hanull/TIL/blob/master/Java/%EC%83%81%EC%88%98%EB%A5%BC%20%EA%B4%80%EB%A6%AC%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95%EA%B3%BC%20enum%20%EB%93%B1%EC%9E%A5%20%EB%B0%B0%EA%B2%BD.md)
- [Character Class 정적 메서드 정리](https://github.com/hanull/TIL/blob/master/Java/Character%20%ED%81%B4%EB%9E%98%EC%8A%A4%20%EC%A0%95%EC%A0%81%20%EB%A9%94%EC%84%9C%EB%93%9C.md)
- [일급 컬렉션이란?](https://github.com/hanull/TIL/blob/master/Java/%EC%9D%BC%EA%B8%89%20%EC%BB%AC%EB%A0%89%EC%85%98%EC%9D%B4%EB%9E%80.md)
- [자바 버전 변경하기](https://github.com/hanull/TIL/blob/master/ETC/%EC%9E%90%EB%B0%94%20%EB%B2%84%EC%A0%84%20%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0.md)
### Spring
### JPA
- [JPA 연관 관계 매핑](https://github.com/hanull/TIL/blob/master/JPA/JPA%20%EC%97%B0%EA%B4%80%20%EA%B4%80%EA%B3%84%20%EB%A7%A4%ED%95%91.md)
### Data Sturcture
- [연결 리스트(linked list)](https://github.com/hanull/TIL/blob/master/DataStructure/linked-list.md)
- [Array, ArrayList, LinkedList](https://github.com/hanull/TIL/blob/master/DataStructure/Array-ArrayList-LinkedList.md)
- [스택(stack)](https://github.com/hanull/TIL/blob/master/DataStructure/stack.md)
- [큐(Queue)](https://github.com/hanull/TIL/blob/master/DataStructure/Queue.md)
- [덱(Deque)](https://github.com/hanull/TIL/blob/master/DataStructure/deque.md)
- [트리(tree)](https://github.com/hanull/TIL/blob/master/DataStructure/tree.md)
- [이진 탐색 트리(BST, Binary Search Tree))](https://github.com/hanull/TIL/blob/master/DataStructure/BST.md)
- [힙(heap)](https://github.com/hanull/TIL/blob/master/DataStructure/heap.md)
- [trie](https://github.com/hanull/TIL/blob/master/DataStructure/trie.md)
### Git
- [git-flow 사용법](https://github.com/hanull/TIL/blob/master/git/git-flow%20%EC%82%AC%EC%9A%A9%EB%B2%95.md)
- [git commit 내역 수정하기](https://github.com/hanull/TIL/blob/master/git/git%20commit%20%EB%82%B4%EC%97%AD%20%EC%88%98%EC%A0%95%ED%95%98%EA%B8%B0.md)
- [gitignore 적용 안될 때 해결방법](https://github.com/hanull/TIL/blob/master/git/gitignore%20%EC%A0%81%EC%9A%A9%EC%9D%B4%20%EC%95%88%EB%90%A0%20%EB%95%8C.md)
### 블록체인
- [블록체인 & 이더리움](https://github.com/hanull/TIL/blob/master/blockchain/%EB%B8%94%EB%A1%9D%EC%B2%B4%EC%9D%B8%20%26%20%EC%9D%B4%EB%8D%94%EB%A6%AC%EC%9B%80.md)
- [solidity uint256 -> java LocalDateTime으로 변경하기](https://github.com/hanull/TIL/blob/master/blockchain/solidity%20uint%20%ED%83%80%EC%9E%85%EC%9D%84%20java%20LocalDateTime%EC%9C%BC%EB%A1%9C%20%EB%B3%80%EA%B2%BD.md)