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
| apiVersion: rbac.authorization.k8s.io/v1 | |
| kind: ClusterRoleBinding | |
| metadata: | |
| name: admin-user | |
| roleRef: | |
| apiGroup: rbac.authorization.k8s.io | |
| kind: ClusterRole | |
| name: cluster-admin | |
| subjects: | |
| - kind: ServiceAccount |
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
| #!/usr/bin/env python3 | |
| import sys | |
| import os | |
| from ptttl.parser import PTTTLParser | |
| from math import log2 | |
| DURATION_ADJUSTMENT = 18 | |
| def parse_rtttl(file_path): | |
| with open(file_path, 'r') as f: |
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
| matrix = { | |
| # matrix night | |
| 'matrix0': '#0D0208', | |
| 'matrix1': '#0D0208', | |
| 'matrix2': '#0D0208', | |
| 'matrix3': '#226622', | |
| # term | |
| 'matrix4': '#55ff55', | |
| 'matrix5': '#00ff41', | |
| 'matrix6': '#00ff41', |
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 argparse | |
| import os | |
| import json | |
| import subprocess | |
| import tempfile | |
| import re | |
| import sys | |
| import tkinter as tk | |
| from urllib.parse import urlparse | |
| from tkinter import simpledialog |
OlderNewer