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
| tap "artginzburg/tap" | |
| tap "clangen/musikcube" | |
| tap "cmacrae/formulae" | |
| tap "derailed/k9s" | |
| tap "discoteq/discoteq" | |
| tap "elastic/tap" | |
| tap "ethereum/ethereum" | |
| tap "felixkratz/formulae" | |
| tap "filosottile/musl-cross" | |
| tap "gleich/tap" |
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
| e |
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
| const int dischargePin = 10; // Digital output pin for controlling transistor | |
| const int voltagePin = A0; // Analog input pin for measuring battery voltage | |
| float dischargeCurrent = 0.80; // Specify the discharge current in amperes | |
| int pulseDuration = 900000; // Specify the pulse duration in milliseconds | |
| bool dischargeComplete = false; // Flag variable to track pulse discharge completion | |
| void setup() { | |
| pinMode(dischargePin, OUTPUT); | |
| pinMode(voltagePin, INPUT); |
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
| import requests | |
| from datetime import datetime, timedelta | |
| import pandas as pd | |
| API_KEY="23D47252-3223-46EA-8F48-161416F44F57" | |
| SYMBOL_IDS = ['BITSTAMP_SPOT_BTC_USD'] | |
| end_date = pd.Timestamp(datetime.now()) | |
| start_date = pd.Timestamp(end_date - timedelta(days=90)) |
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
| import asyncio | |
| import json | |
| import time | |
| from datetime import datetime, timedelta | |
| from solana.rpc.async_api import AsyncClient | |
| from solders.pubkey import Pubkey | |
| from solana.rpc.commitment import Confirmed | |
| from solders.signature import Signature | |
| WALLET_ADDRESS = "Xatt2uaAnQY3tmT98EaUeRrrp1QFeCNnQrqKf1GY7cC" |
OlderNewer