본문 바로가기

반응형

전체 글

C276x260 dns(hostname) 정보 확인 python dns(hostname) 정보 확인socket.gethostbyname : 도메인 이름에 대한 IP 주소를 반환socket.gethostbyname('naver.com')socket.gethostbyname_ex : 확장판(다른 이름의 리스트, 주소의 리스트를 반환)socket.gethostbyname_ex('naver.com')$ pythonPython 3.9.13 (main, Aug 7 2022, 01:19:39)[Clang 13.1.6 (clang-1316.0.21.2.5)] on darwinType "help", "copyright", "credits" or "license" for more information.>>> import socket>>> socket.gethostbyna.. 더보기
C276x260 python tcp 소켓 통신 python tcp 소켓 통신code : https://github.com/madscheme/introducing-python tcp_server.py 작성from datetime import datetimeimport socketaddress = ('localhost', 6789)max_size = 1000print('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 = client.re.. 더보기
C276x260 udp 소켓 통신 python udp 소켓 통신code : https://github.com/madscheme/introducing-python udp_server.py 작성from datetime import datetimeimport socketserver_address = ('localhost', 6789)max_size = 4096print('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)print('At.. 더보기
C276x260 [집체교육] DevOps를 위한 IaC 클라우드 인프라 자동화 전문가 과정 DevOps를 위한 IaC 클라우드 인프라 자동화 전문가 과정[메일] 홍보 메일 받음[메일] 교육 신청 후 받은 메일[CCCR ACADEMY 사이트] 선발테스트 실시** 2번 도전 끝에 시험 합격[메일] 교육 확정 메일 도착 집체교육 선발 성공 내가 가지고 있는 맥북 m1인데... VirtualBox 설치 불가 ㅠㅠ원도우 노트북은 메모리 8GB ㅠㅠ과연 교육을 잘 받을 수 있을까? 참고URL- https://www.cccr-edu.or.kr/course/course_view.jsp?id=40542 더보기
C276x260 2022년 8월 외래 2022년 8월 외래2022년 08월 17일항암 치료 종료 후 진행했던 각종 검사 결과를 확인하기 위해 외래 진료를 받았다.진료실로 들어가는 순간까지도 긴장감이 컸고, 검사 결과를 기다리는 시간은 유난히 길게 느껴졌다. 그리고 마침내 담당 교수님으로부터 완전관해(Complete Remission)라는 말을 들을 수 있었다. 처음 건강검진에서 비장비대 소견을 들었던 2020년,그리고 본격적으로 림프종 진단과 정밀검사가 시작되었던 2021년 11~12월부터 2022년 8월까지. 수많은 검사와 조직검사, 반복된 입원과 항암 치료를 지나 마침내 완전관해 판정받게 되었다. 돌이켜보면 힘들었던 순간들도 많았다.처음 들었던 림프종 진단끝이 보이지 않던 검사 일정항암 치료의 부작용과 응급실 방문반복되는 입원 생활과 불.. 더보기
C276x260 [이슈] 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 Intelligence)T.. 더보기
C276x260 [url] Linux 배포판 목록(List of Linux distributions) Linux 배포판 목록(List of Linux distributions) List of Linux distributions | WikiwandThis 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# 더보기
C276x260 Amazon Linux 2에서 Python 3.10를 설치하는 방법 Amazon Linux 2에서 Python 3.10를 설치하는 방법테스트 환경운영체제 버전 정보 확인$ cat /etc/os-releaseNAME="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_BIT64시스템에 설치된 python version$ python --versionPython 2.7.18$ python3 --versionPython 3.7.9 1. 필수 패키지 설치.. 더보기

728x90
반응형