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
// Takes an input from Serial (11111110) and turns on 1-7 relays and turns off relay 8. | |
// the setup function runs once when you press reset or power the board | |
void setup() { | |
pinMode(2, OUTPUT); | |
pinMode(3, OUTPUT); | |
pinMode(4, OUTPUT); | |
pinMode(5, OUTPUT); | |
pinMode(6, OUTPUT); | |
pinMode(7, OUTPUT); |
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 mysql.connector | |
import os, sys | |
from datetime import datetime | |
import time | |
path = "GriefPreventionData"+time.strftime("%Y%m%d-%H%M%S") | |
try: | |
os.mkdir(path) | |
os.mkdir(path+"/PlayerData") |
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
This file contains the winners and transactions of the Garlic Bank (discord.gg/bjRA52C) giveaway. Transactions can be looked up on garlicinsight.com. Shoutout to @GarlicBank#8253 for hosting and supplying coins for the event! - @ar0n#1462 | |
Verification: | |
Message: "This file is signed by @ar0n#1462 on 03/03/2018." | |
Address: "GSfzfb3tZ4dkFf9ULxVTMEPu8uhMgmuzvY" | |
Signature: "IG5tuD+JQRsL2yD2G8WK9wvnEPZVYjeArM7RuSPzRoGkKqINRRuKc6XE6C1zk0b1qv9nQvF22FaCgYD/aepN+gY=" | |
Discord Name Transaction Id | |
@Kmorae#6969 5892011b9ed3527ad8b4abe2dc68c28dd0ee874e999c8ac94f9ee21da4cf2a15 |
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 discord | |
from discord.ext import commands | |
from discord.ext.commands import Bot | |
from secrets import choice | |
from asyncio import sleep | |
import asyncio | |
bot = commands.Bot(command_prefix=[',']) | |
@bot.event |