This file contains hidden or 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
pragma solidity ^0.5.1; | |
import "./BridgePublicAPI.sol"; | |
contract PriceUPD is BridgePublicAPI { | |
event price(string TRXprice); | |
constructor() public { | |
send_query("json(https://api.kraken.com/0/public/Ticker?pair=TRXUSD).result.TRXUSD.a.0"); | |
} |
This file contains hidden or 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
# uncompyle6 version 3.7.4 | |
# Python bytecode 3.8 (3413) | |
# Decompiled from: Python 3.8.2 (v3.8.2:7b3ab5921f, Feb 24 2020, 17:52:18) | |
# [Clang 6.0 (clang-600.0.57)] | |
# Embedded file name: main.py | |
print('Code by Duxk from 228iQTeam') | |
print('Ваша поддержка - https://www.donationalerts.com/r/duckhack') | |
print('Можно выделить и скопировать ссылку сверху') | |
from selenium.webdriver.chrome.options import Options | |
from selenium import webdriver |
This file contains hidden or 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
#!/bin/bash | |
# Скрипт для переноса GitLab CI/CD переменных между проектами | |
set -e | |
# Конфигурация | |
OLD_PROJECT_ID="${OLD_PROJECT_ID:-}" | |
OLD_GITLAB_URL="${OLD_GITLAB_URL:-https://gitlab.com}" | |
OLD_GITLAB_TOKEN="${OLD_GITLAB_TOKEN:-}" |