스프링이 끝났다...! 근데도 공부할거 산더미
1.프로세스와 스레드
“코딩교육 티씨피스쿨.” TCPschool, http://tcpschool.com/java/java_thread_concept.
“프로세스와 스레드의 차이.” Velog, https://velog.io/@raejoonee/%ED%94%84%EB%A1%9C%EC%84%B8%EC%8A%A4%EC%99%80-%EC%8A%A4%EB%A0%88%EB%93%9C%EC%9D%98-%EC%B0%A8%EC%9D%B4.
2.daemon
Tae-Ho, taeho. “데몬(Daemon) 프로세스란 무엇인가?” Taeho's Life Logger, TISTORY, 7 Oct. 2021, https://blogger.pe.kr/770.
Daemon(7) - Linux Manual Page, https://man7.org/linux/man-pages/man7/daemon.7.html.
3.컨테이너
4.도커
5.도커 이미지
Subicura. “초보를 위한 도커 안내서 - 도커란 무엇인가?” Subicura's Blog, 18 Jan. 2017, https://subicura.com/2017/01/19/docker-guide-for-beginners-1.html.
Docker(도커)란? 도커 컨테이너 실행, 사용법, 다운로드, 배포, https://www.redhat.com/ko/topics/containers/what-is-docker.
6.트랜잭션
알고리즘 문제 풀다가 난 에러
input = int(input())
point = []
for i in range(input):
point.append(int(input()))
#위에가 에러난 코드, 밑에는 수정해서 제대로 나오는 코드
n = int(input())
point = []
for i in range(n):
point.append(int(input()))
에러 이유는 TypeError: 'int' object is not callable
예약어를 변수명으로 써서 생긴 오륜데 아무생각없이 코드를 쓰다가 발생했다
완전 바보였다...
도커, 쿠버네티스 복습 및 강의 듣기