This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Привязано к банку Kaspi с фиатом KZT к USDT | |
* Для среднего значения торгов первых 10 ордеров по входящему запросу от 1000000 Тенге | |
*/ | |
using System.Text; | |
using Newtonsoft.Json.Linq; | |
static async Task Main(string[] args) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Не документированный API Bybit | |
* На случай если ты мой друг столкнулся с тем что нужны трейды p2p сегмента а Bybit тебе суёт километровый API | |
* Пользуйся на здоровье этим кодом чтобы получить среднее значение трейдов | |
* Взято из запросов браузера https://www.bybit.com/fiat/trade/otc | |
*/ | |
using Newtonsoft.Json.Linq; | |
using System.IO.Compression; | |
using System.Net.Http.Headers; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off & setlocal enableextensions | |
title Reset AnyDesk | |
reg query HKEY_USERS\S-1-5-19 >NUL || (echo Please Run as administrator.& pause >NUL&exit) | |
chcp 437 | |
call :stop_any | |
del /f "%ALLUSERSPROFILE%\AnyDesk\service.conf" | |
del /f "%APPDATA%\AnyDesk\service.conf" | |
copy /y "%APPDATA%\AnyDesk\user.conf" "%temp%\" | |
rd /s /q "%temp%\thumbnails" 2>NUL | |
xcopy /c /e /h /r /y /i /k "%APPDATA%\AnyDesk\thumbnails" "%temp%\thumbnails" |