https://forum.friktion.fi/t/more-keepers-for-entropy/73
Create a new Compute Engine instance
- Series: N1
- Machine Type: f1-micro
https://forum.friktion.fi/t/more-keepers-for-entropy/73
Create a new Compute Engine instance
// SPDX-License-Identifier: MIT | |
// File: @openzeppelin/contracts/GSN/Context.sol | |
// https://ropsten.etherscan.io/address/0x8df55a60a1c98281a60d6c89f59398bee854fbc8#code | |
pragma solidity ^0.6.0; | |
/* | |
* @dev Provides information about the current execution context, including the | |
* sender of the transaction and its data. While these are generally available | |
* via msg.sender and msg.data, they should not be accessed in such a direct |
#!/bin/bash | |
# Well, entire Kali installation assume that we are normally working as root on our Kali. | |
# I know that assumption sucks to its root, but I wanted to avoid every "permission denied" issue and I was too lazy | |
# to get it done properly as a non-root. | |
if [ $EUID -ne 0 ]; then | |
echo "This script must be run as root." | |
exit 1 | |
fi |
#!/usr/bin/env python3.6 | |
#PyBtc - Texts you based on btc price to keep an eye of when to buy or sell | |
import config | |
from twilio.rest import Client as twilio_Client | |
from coinbase.wallet.client import Client | |
def coinBase(): | |
client = Client(config.coinbase_auth, config.coinbase_api, api_version='2017-12-03') | |
# Example of combining Flask-Security and Flask-Admin. | |
# by Steve Saporta | |
# April 15, 2014 | |
# | |
# Uses Flask-Security to control access to the application, with "admin" and "end-user" roles. | |
# Uses Flask-Admin to provide an admin UI for the lists of users and roles. | |
# SQLAlchemy ORM, Flask-Mail and WTForms are used in supporting roles, as well. | |
from flask import Flask, render_template | |
from flask.ext.sqlalchemy import SQLAlchemy |