분류 전체보기 썸네일형 리스트형 [python] tcp 소켓 통신 python tcp 소켓 통신 code : https://github.com/madscheme/introducing-python tcp_server.py 작성 from datetime import datetime import socket address = ('localhost', 6789) max_size = 1000 print('Starting the server at', datetime.now()) print('Waiting for a client to call.') server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server.bind(address) server.listen(5) client, addr = server.accept() data.. 더보기 [python] udp 소켓 통신 python udp 소켓 통신 code : https://github.com/madscheme/introducing-python udp_server.py 작성 from datetime import datetime import socket server_address = ('localhost', 6789) max_size = 4096 print('Starting the server at', datetime.now()) print('Waiting for a client to call.') server = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) server.bind(server_address) data, client = server.recvfrom(max_size.. 더보기 [집체교육] DevOps를 위한 IaC 클라우드 인프라 자동화 전문가 과정 DevOps를 위한 IaC 클라우드 인프라 자동화 전문가 과정 [메일] 홍보 메일 받음 [메일] 교육 신청 후 받은 메일 [CCCR ACADEMY 사이트] 선발테스트 실시 ** 2번 도전 끝에 시험 합격 [메일] 교육 확정 메일 도착 집체교육 선발 성공 내가 가지고 있는 맥북 m1인데... VirtualBox 설치 불가 ㅠㅠ 원도우 노트북은 메모리 8GB ㅠㅠ 과연 교육을 잘 받을 수 있을까? 참고URL - https://www.cccr-edu.or.kr/course/course_view.jsp?id=40542 더보기 [아프다] 2022년 8월 외래 2022년 8월 외래 2022년 8월 17일 외래 의사 선생님으로부터 완전관해라는 말을 들을 수 있었다. 2021년 11~12월부터 시작하여 2022년 8월까지 림프종으로 검사, 조직 검사, 항암 치료받았으며 의사 선생님으로부터 완전관해라는 말을 들을 수 있었다. 암 환자라면 알고 있는 ‘관해’라는 용어는 항암제에 반응이 있을 때 사용한다. 병원에서는 환자에게 항암제를 투입한 뒤 종양 크기 변화, 종양표지자 수치 등을 통해 암 치료 효과를 평가한다. 세계보건기구에서는 ‘완전관해’(Complete Response, CR)를 ‘임상적으로 계측·평가 가능한 병변이 모두 사라지고, 새로운 병변(암세포)이 보이지 않는 상태가 4주 이상 지속된 상태’라고 정의한다. 이러한 완전관해 상태가 5년간 지속되면 암이 완치.. 더보기 [이슈] 2022년 Gartner 최고의 전략적 기술 동향 2022년 Gartner 최고의 전략적 기술 동향(Gartner Top Strategic Technology Trends for 2022) [1] 성장 가속(Accelerating Growth) 부문 Trend 9: 분산형 엔터프라이즈(Distributed Enterprises) Trend 10: 통합 경험(Total Experience, TX) Trend 11: 오토노믹 시스템(Autonomic Systems) Trend 12: 제너레이티브 AI(Generative Artificial Intelligence) [2] 변화 형성(Sculpting Change) 부문 Trend 5: 컴포저블 애플리케이션(Composable Applications) Trend 6: 의사결정 지능(Decision Intell.. 더보기 [리눅스] Linux 배포판 목록(List of Linux distributions) Linux 배포판 목록(List of Linux distributions) List of Linux distributions | Wikiwand This page provides general information about notable Linux distributions in the form of a categorized list. Distributions are organized into sections by the major distribution or package management system they are based on. www.wikiwand.com 원본 URL - https://www.wikiwand.com/en/List_of_Linux_distributions# 더보기 Amazon Linux 2에서 Python 3.10를 설치하는 방법 Amazon Linux 2에서 Python 3.10를 설치하는 방법 테스트 환경 운영체제 버전 정보 확인 $ cat /etc/os-release NAME="Amazon Linux" VERSION="2" ID="amzn" ID_LIKE="centos rhel fedora" VERSION_ID="2" PRETTY_NAME="Amazon Linux 2" ANSI_COLOR="0;33" CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2" HOME_URL="https://amazonlinux.com/" $ getconf LONG_BIT 64 시스템에 설치된 python version $ python --version Python 2.7.18 $ python3 --version Python.. 더보기 [python] ModuleNotFoundError: No module named 'PIL' python ModuleNotFoundError: No module named 'PIL' 테스트 환경 $ sw_vers ProductName:macOS ProductVersion:12.5 BuildVersion:21G72 $ python --version Python 3.9.13 Module Not Found Error Traceback (most recent call last): File "/Users/.../convert_image.py", line 2, in from PIL import Image ModuleNotFoundError: No module named 'PIL' pillow(PIL) 모듈 설치 pip 명령을 사용하여 pillow(PIL) 모듈 설치 pip3 install Pillow $ .. 더보기 이전 1 ··· 138 139 140 141 142 143 144 ··· 298 다음