라벨이 LANG=ko_KR.UTF-8인 게시물 표시

Kraken api - get token with python

Kraken api - get token with python an example of how you can generate a WebSocket authentication token using Python for Kraken's API: ```python import time import base64 import hashlib import hmac import urllib.request import json # Replace with your Kraken API public and private keys api_key = 'YOUR_API_PUBLIC_KEY' api_secret = 'YOUR_API_PRIVATE_KEY' # API endpoint and parameters api_path = '/0/private/GetWebSocketsToken' api_nonce = str(int(time.time() * 1000)) api_post = 'nonce=' + api_nonce # Create the SHA256 hash api_sha256 = hashlib.sha256(api_nonce.encode('utf-8') + api_post.encode('utf-8')).digest() # Create the HMAC signature api_hmac = hmac.new(base64.b64decode(api_secret), api_path.encode('utf-8') + api_sha256, hashlib.sha512) api_signature = base64.b64encode(api_hmac.digest()) # Create the request api_request = urllib.request.Request('https://api.kraken.com' + api_path, api_post.encode('utf-8')) ap

[꿀팁] 리눅스 콘솔에서 한글을 사용 localectl 시스템 명령

  [꿀팁] 리눅스 콘솔에서 한글을 사용 localectl 시스템 명령 부제 : [CentOS 8]How to Fix “Failed to set locale, defaulting to C.UTF-8” 리눅스를 오랜 만에 사용하다 보니 예전에 없던 에러들을 접하게 되었다. 나름 리눅스만 20년 째가 넘는 고수라고 생각 했는데 ㅠㅠ. 그런 쪽팔림을 벗어나고자 다시금 머리 속을 정리해 본다. 리눅스 콘솔에서 한글을 사용하려면 예전에는  /etc/sysconfig/i18n을 고치면 되었는데 CentOs8 이후 부터 이런 파일은 없고 locale( 로케일) 을 설정해야 합니다. ㅠㅠ   localectl 시스템 명령으로 로케일을 변경하면됩니다.. localectl set-locale LANG=ko_KR.UTF -8 LANG=ko_KR.UTF-8 #한국어 LANG=en_US.UTF-8 #영어 1 2 3 4 #[한글 또는 영어 로케일 설정] # localectl set-locale LANG=ko_KR.UTF-8 or # localectl set-locale LANG=en_US.UTF-8 cs    "Failed to set locale, defaulting to C.UTF-8" 오류 해결 위와 같이 locale을 수정하고 아래와 같이  "Failed to set locale, defaulting to C.UTF-8" 라는 에러가 계속 창에 보이는 것이 여간 거슬릴수가 없습니다. 1 2 3 4 5 6 yum search langpacks * Failed to  set  locale, defaulting to C.UTF - 8 Last metadata expiration check:  0 : 04 : 13  ago on Wed Aug   5   20 : 50 : 57   2020. = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =

이 블로그의 인기 게시물

SSL/TLS 인증서 오류를 해결- 리눅스명령모음 - SSL certificate problem

(truffle 환경 설정) 스마트 계약 배포 와 truffle deploy 오류 해결 - Error: Could not find artifacts for SimpleStorage from any sources

자기주권 신원 (SSI Self-Sovereign Identity) 인증의 발전 그리고 정보 민주화 (Information Democratization)