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
#!/usr/bin/env python3 | |
import os | |
import shutil # backups... | |
import textwrap # dedent hard-coded symbol strings | |
from lxml import etree | |
from lxml.builder import E | |
XKB = '/usr/share/X11/xkb/' | |
NAME = 'lafayette' | |
LAYOUTS = {'fr': [{ |
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, request, jsonify, json, abort | |
from flask_cors import CORS, cross_origin | |
import pandas as pd | |
app = Flask(__name__) | |
cors = CORS(app) | |
app.config['CORS_HEADERS'] = 'Content-Type' |
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
; ticker - A Simple Time Tracker | |
; track your time usage on a daily basis | |
#InstallKeybdHook | |
#InstallMouseHook | |
Menu, Tray, Icon, %A_WinDir%\system32\shell32.dll, 44 | |
Menu, Tray, Tip, ticker - A Simple Time Tracker`nPress right control to see details | |
SetWorkingDir, C:\Users\%A_UserName%\Documents | |
SetTimer, CheckTime, 60000 ; updates every 1 minute |