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
from flask import Flask | |
from flask import request | |
from time import strftime, time | |
import os | |
sites = {"1":"trackedsite.com"} | |
app = Flask(__name__) | |
@app.route("/t", methods=['GET']) | |
def track(): |
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
from libqtile.config import Key, Screen, Group | |
from libqtile.command import lazy | |
from libqtile import layout, bar, widget | |
import os | |
mod = "mod1" | |
modR = "mod5" | |
keys = [ | |
# Switch between windows in current stack pane |
NewerOlder