분류 전체보기174 컨테이너 보안 이 글은 한빛미디어 도서 서평단 나는 리뷰어다 2021을 통해 책을 제공받아 작성하였습니다. 이 책은 원서 Container Security(Liz Rice, O'reilly)를 번역한 책이고, IT 기술 서적을 많이 번역하시는 류광님께서 번역하신 '컨테이너 보안(Container Security, 리즈 라이스 지음, 류광 옮김, 한빛미디어)'입니다. 도커(Docker)와 같은 컨테이너(Container) 기술의 보안에 대한 책이며, 컨테이너나 쿠버네티스(Kubernetes) 그리고 리눅스(Linux) 명령어에 대한 지식을 필요로 합니다. 그렇다고 해서 깊은 배경 지식을 요구하는 것이 아니라 한 번씩 사용해 본 적이 있으면 책을 읽어 나갈 수 있는 수준입니다. 책에서 다루는 것과 다루지 않는 것 책에서는.. 2021. 2. 21. RuntimeError: dictionary changed size during iteration 해결 파이썬(python) 딕셔너리(dictionary) 자료구조와 관련된 에러이다. test.py # wrong a = {1: 'a', 2: 'b', 3: 'c'} for i in a: if i == 2: a.pop(i) Traceback (most recent call last): File "/home/sh/exercises/dummies/python/dump.py", line 3, in for i in a: RuntimeError: dictionary changed size during iteration 딕셔너리를 순회할 때, 딕셔너리 크기가 변경되면 발생한다. 파이썬 3.x 에서는 리스트를 list(a) 형태로 복사하여 해결한다. # correct a = {1: 'a', 2: 'b', 3: 'c'} f.. 2020. 12. 5. test +---head | +-----tail | | ---------------------------------------- | +-----tail----> / | ^ / | \ v↙ | hello +----- ─ㅁ → ↗ → ↑ ↘↙ ㅂ한자 ├────-----─ ㅂㄴㅇㄹㅈㅈㄷ ↑ lain text Python C++ Java Javascript Kotlin C C# # Python3 program to implement direct index # python #include // c++ // Java program to implement direct index // java # Python3 program to implement direct index // javascript #include // kotli.. 2020. 7. 31. C++에서 multithread 시작하기 . #include #include void hello() { std::cout 2020. 7. 22. 오토인코더의 모든 것 unsupervised learning representation learning = efficient coding learning dimensionality reduction = manifold learning, feature extraction generative model learning 입력과 출력이 동일한 값을 가진 네트워크 오토인코더 학습할 때, unsupervised learning loss function은 negative maximum likelihood 학습된 오토 인코더에서 인코더는 차원 축소 역할을 한다(manifold learning) 디코더는 생성 모델의 역할을 수행한다(generative model learning) 2020. 7. 10. BOJ 9095 1, 2, 3 더하기 BOJ 9095 https://www.acmicpc.net/problem/9095 #include int main() { int n, t; std::cin >> t; int result[11]; result[1] = 1; // 1 result[2] = 2; // 1+1, 2 result[3] = 4; // 1+1+1, 2+1, 1+2, 3 int i; for (i = 4; i > n; std::cout 2020. 6. 30. BOJ 1463번 1로 만들기 BOJ 1463번 https://www.acmicpc.net/problem/1463 #include int min(int a, int b) { return (a > n; int result[1000001]; result[1] = 0; result[2] = result[3] = 1; int i; for (i = 4; i 2020. 6. 28. 이전 1 ··· 8 9 10 11 12 13 14 ··· 25 다음