Command line instructions You can also upload existing files from your computer using the instructions below.
Git global setup
git config --global user.name "<user_name>"
git config --global user.email "<user_email>"
Command line instructions You can also upload existing files from your computer using the instructions below.
Git global setup
git config --global user.name "<user_name>"
git config --global user.email "<user_email>"
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| contract BankOwned { | |
| address public bankAddress; | |
| constructor() { | |
| bankAddress = msg.sender; | |
| } |
| arr = [[6, 1], [1, 2], [3, 4], [5, 6], [2, 3], [4, 5]] | |
| def separator(ab, b): | |
| if b.index(ab) == 0: | |
| return b[1] | |
| else: | |
| return b[0] | |
| import time |
| import asyncio | |
| async def fetch_data(): | |
| print('Start Fetching Data') | |
| await asyncio.sleep(2) | |
| print('Done fetching') | |
| return {'Data' : 1} | |
| async def print_numbers(): | |
| for i in range(10): |
| // Importing Binance and Bybit Node Packages | |
| const {CoinMClient} = require('binance'); | |
| const RestClientV5 = require('bybit-api').RestClientV5; | |
| // Set the API keys for the Binance and Bybit APIs | |
| // Set the API keys for the Binance and Bybit APIs | |
| const apiKeyBinance = 'your-binance-api-key'; | |
| const apiSecretBinance = 'your-binance-api-secret'; | |
| const apiKeyBybit = 'your-bybit-api-key'; | |
| const apiSecretBybit = 'your-bybit-api-secret'; |
| import os | |
| import rasterio | |
| import pandas as pd | |
| folder_path = "/path/to/your/folder" | |
| all_tiffs = [f for f in os.listdir(folder_path) if f.endswith('.tif') or f.endswith('.tiff')] | |
| master_df = pd.DataFrame() | |
| for tiff_file in all_tiffs: |