라벨이 install WSL인 게시물 표시

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

How to Start WSL2 : Windows Subsystem for Linux (WSL) 설치와 사용법

이미지
  How to Start WSL2 : Windows Subsystem for Linux (WSL) 설치와 사용법 WSL사용법- How To Start WSL 1. Windows Subsystem for Linux (WSL) 설치와 사용법   2. 알면 좋은 WSL 기본 명령 사용법   3. WSL 설치 디렉토리 경로 변경 4. WSL ssh 설치와 접속 하기     리눅스용 윈도우 하위 시스템 (WSL: Windows Subsystem for Linux) 개요 Windows Subsystem for Linux (WSL)은 Windows 운영 체제에서 네이티브하게 Linux 명령 및 응용 프로그램을 실행할 수 있도록 하는 기술입니다.  WSL을 이용하면  Microsoft  Windows 운영체제 내부에 리눅스 OS을 함께 설치하여 사용 할수 있게 되었습니다. 예전에는 리눅스를 사용하려면 멀티 OS 부팅으로 리눅스를 별도로 설치해서 사용했지만, Winodws OS 시스템상에서 리눅스 명령과 프로그램을 실행할 수 있게 되어  개발자들에게 높은 유연성을 제공합니다.     1. Windows Subsystem for Linux (WSL) 의 특징   1. 네이티브 Linux 환경: WSL은 실제로 Linux 커널을 사용하여 Linux 바이너리를 Windows에서 실행할 수 있도록 합니다. 이는 Linux 환경에서 작동하는 응용 프로그램을 Windows에서 동일하게 실행할 수 있게 해줍니다. 2. 멀티 디스트리뷰션 지원 :   WSL은 사용자가 원하는 여러 가지 Linux 배포판을 선택하여 설치하여 사용할 수 있습니다.  Ubuntu, Debian, Fedora 등 다양한 배포판이 지원됩니다. 3. 인터페이스 통합: WSL은 Windows 명령 프롬프트나 PowerShell에서 Linux 명령을 실행할 수 있는 통합된 환경을 제공합니다. 이는 사용자가 Windows와 Linux 간에 쉽게 전환하고 명령을 실행할 수 있게 해줍니다. 4. 파일 시스템 통합: WSL은

이 블로그의 인기 게시물

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

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

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