π
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
prometheus: | |
# Make the Prometheus CRD consider *our* extra monitors | |
prometheusSpec: | |
serviceMonitorSelectorNilUsesHelmValues: false | |
podMonitorSelectorNilUsesHelmValues: false | |
additionalPodMonitors: | |
- name: linkerd-proxy | |
namespaceSelector: | |
any: true |
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
""" | |
This script is used to plot the coverage of the project. | |
It is based on the coverage.xml file generated by pytest-cov. | |
""" | |
import argparse | |
import xml.etree.ElementTree as ET | |
from pathlib import Path | |
# import matplotlib | |
# matplotlib.use('Qt5Agg') |
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
{ | |
"name": "PokeChip", | |
"symbol": "PKCHP", | |
"description": "Crypto version of Pokegambler's Pokechip.", | |
"image": "https://i.imgur.com/y2XCFU1.png" | |
} |
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 os | |
import shutil | |
import tqdm | |
files = [ | |
filename | |
for filename in os.listdir('.') | |
if all([ | |
os.path.isfile(filename), | |
any([ |
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 os | |
import sys | |
import subprocess | |
cores = os.cpu_count() | |
python = 'python' | |
if sys.platform.lower() == "linux": | |
python = "python3" | |
root_ip = "localhost" | |
if len(sys.argv) > 1: |
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
{ | |
"token": "", | |
"command_prefix": "", | |
"env": "dev", | |
"version": "0.0.1", | |
"owner_id": 0 | |
} |