This file contains 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
# validate email addresses | |
def validate_email(email): | |
pattern = r"(^(?!-|\.)([a-zA-Z0-9._%+-]+)@(?!-)[a-zA-Z0-9.-]+(?<=[a-zA-Z0-9])\.[a-zA-Z]{2,}$)" | |
if re.match(pattern, email): | |
return True | |
else: | |
return False | |
if __name__ == "__main__": |
This file contains 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 matplotlib.pyplot as plt | |
def spot_formula(x, y=100): | |
return (1 + (x / 100)) * y | |
def usdt_m_formula(x, y=100): | |
return (1 + (x / 50)) * y | |
def coin_m_formula(x, y=100): | |
return ((1 + (x / 100)) ** 2) * y |
This file contains 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 json | |
import requests | |
if __name__ == "__main__": | |
r = requests.get( | |
"https://ledger-ecom-cdn-prod.s3-eu-west-1.amazonaws.com/website/assets/website_input.json") | |
stakable = set() | |
for coin in r.json(): | |
if coin["staking_live"] or coin["staking_ext"]: | |
stakable.add(coin["name"]) |
This file contains 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 bs4 import BeautifulSoup | |
def scrape_webpage(page): | |
r = requests.get(f"https://web3.career/remote-jobs?page={page}") | |
webpage = BeautifulSoup(r.text, "html.parser") | |
table_section = webpage.find("tbody", {"class": "tbody"}) | |
jobs_data = "" |
This file contains 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
package main | |
import ( | |
"crypto/sha256" | |
"encoding/json" | |
"fmt" | |
"strconv" | |
"strings" | |
"time" | |
) |
This file contains 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 json | |
import requests | |
from bs4 import BeautifulSoup | |
def fetch_coingecko_html(): | |
# make a request to the target website | |
r = requests.get("https://www.coingecko.com") | |
if r.status_code == 200: | |
# if the request is successful return the HTML content |
This file contains 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
package main | |
import ( | |
"context" | |
"fmt" | |
"github.com/portto/solana-go-sdk/client" | |
"github.com/portto/solana-go-sdk/client/rpc" | |
"github.com/portto/solana-go-sdk/common" | |
"github.com/portto/solana-go-sdk/program/sysprog" | |
"github.com/portto/solana-go-sdk/types" |
This file contains 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
package sequences | |
import ( | |
"errors" | |
"math" | |
) | |
func calcNextSequence(a, b, c float64, n int, apSeq bool) (float64, error) { | |
if apSeq { | |
if c - b != b - a { |
This file contains 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
from flask import * | |
from LoginRadius import LoginRadius as LR | |
app = Flask(__name__) | |
app.config["SECRET_KEY"] = "SECRET_KEY" | |
LR_AUTH_PAGE = "https://<APP_NAME>.hub.loginradius.com/auth.aspx?action={}&return_url={}" | |
LR.API_KEY = "LR_API_KEY" | |
LR.API_SECRET = "LR_API_SECRET" | |
loginradius = LR() |
This file contains 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
from flask import Flask | |
from flask_restful import Api, Resource, reqparse, fields, marshal_with, abort | |
app = Flask(__name__) | |
api = Api(app) | |
TODOS = {} | |
parser = reqparse.RequestParser() | |
parser.add_argument( | |
"task", |
NewerOlder