기타 썸네일형 리스트형 [url] terraform modules terraform modules providers - https://registry.terraform.io/browse/providers modules - https://registry.terraform.io/browse/modules Terraform Cloud https://app.terraform.io 더보기 [draft] 랜덤 문자열 생성기 랜덤 문자열 생성기https://randstrgen.lazyig.com/bash 랜덤 문자열 생성echo $RANDOM | base64 | head -c 20; echo$ echo $RANDOM | base64 | head -c 20; echoMTYyNjYK리눅스 쉘에서 랜덤 문자열을 생성하는 방법openssl 명령어를 사용하여 랜덤 문자열을 생성하는 방법과 /dev/urandom을 사용하는 방법 두 가지를 소개하겠습니다.1. openssl을 사용하여 랜덤 문자열 생성openssl rand -base64 32위 명령어를 실행하면 길이가 32인 랜덤 문자열이 생성됩니다. -base64 옵션은 Base64 인코딩을 사용하여 랜덤 문자열을 출력합니다. 필요에 따라 길이를 조절하거나 다른 인코딩을 사용할 수 있.. 더보기 [URL] Amazon EC2 AMI Locator Amazon EC2 AMI Locator https://cloud-images.ubuntu.com/locator/ec2/ Ubuntu Amazon EC2 AMI Finder Amazon EC2 AMI Locator As Ubuntu cloud images are uploaded and registered on the Amazon EC2 cloud, they are referred to as AMI (Amazon Machine Images). Each AMI is a machine template from which you can instantiate new servers. Each AMI has its own unique I cloud-images.ubuntu.com 더보기 [Mac] parallels desktop command-line mac parallels desktop command-line prlctl - 유틸리티는 가상 머신을 관리하는 데 사용됩니다. 작업에는 가상 머신 생성 및 구성, 스냅샷 관리, 복제 작업, Parallels Tools 설치, 통계 가져오기, 문제 보고서 생성 등이 포함됩니다. prlsrvctl - 이 유틸리티는 Parallels Desktop을 관리하는 데 사용됩니다. 작업에는 Parallels Desktop에 대한 일반 정보 가져오기, Parallels Desktop 기본 설정 수정, 사용자 목록 가져오기, 통계 가져오기, 라이선스 설치 등이 포함됩니다. Parallels Desktop Business and Pro Editions | Command-Line Reference | v17 prlctl l.. 더보기 [Mac] Parallels Desktop에서 Vagrant를 사용하는 방법 Parallels Desktop에서 Vagrant를 사용하는 방법(설치 실패) mac os version(mac m1) $ sw_vers ProductName:macOS ProductVersion:12.5.1 BuildVersion:21G83 vagrent 설치 brew install vagrant $ vagrant --version Vagrant 2.3.0 vagrant-parallels 플러그인 설치 vagrant plugin install vagrant-parallels $ vagrant plugin list vagrant-parallels (2.2.5, global) mkdir vagrant-test cd vagrant-test vagrant 이미지 검색 Discover Vagrant Boxes .. 더보기 [python] dns(hostname) 정보 확인 python dns(hostname) 정보 확인 socket.gethostbyname : 도메인 이름에 대한 IP 주소를 반환 socket.gethostbyname('naver.com') socket.gethostbyname_ex : 확장판(다른 이름의 리스트, 주소의 리스트를 반환) socket.gethostbyname_ex('naver.com') $ python Python 3.9.13 (main, Aug 7 2022, 01:19:39) [Clang 13.1.6 (clang-1316.0.21.2.5)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import socket >>> socket.ge.. 더보기 [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.. 더보기 이전 1 ··· 8 9 10 11 12 13 14 ··· 17 다음