- Kubernetes
- OpenShift
- operators
- Golang
- Python
- Javascript
- working with command-line
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 pprint import pprint | |
FLOOR_IV = 10 | |
CEILING_IV = 15 | |
IV_TYPES = 3 | |
MAX_IV = CEILING_IV * IV_TYPES | |
def populate_iv_dict(): | |
"""Returns iv_dict with key as IV percent and value as | |
number of IV combinations with that percent. |
Type ,help
(or ,h
for short) for a DM containing all the commands. Type ,help <command>
for more info on a command.
Command | Short | Description |
---|---|---|
,profile |
,p |
Show your leveler progress. Default to yourself. |
,profileset |
Change settings of your profile. | |
,toplevel |
,lb |
Show the server leaderboard! |
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
#!/bin/bash | |
# Bash script to fix assets for Project Uranium as per Step 5 in: | |
# https://github.com/acedogblast/Project-Uranium-Godot/wiki/Setup-and-Building-Instructions | |
# Prerequisites: | |
# - Steps 1-4 | |
# - ffmpeg is in your PATH or installed | |
# - run from project folder where Audio, Fonts and Graphics | |
# directories are located | |
# 1-4 |
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/python3 | |
# Print out table of daily average for every week of Fish command history. | |
import re | |
from datetime import datetime, timedelta | |
from pprint import pprint | |
from prettytable import PrettyTable | |
from os import getenv | |
from argparse import ArgumentParser |
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/python3 | |
# Display Top Box Office movies from Rotten Tomatoes. | |
import requests | |
import colored | |
from pprint import pprint | |
from bs4 import BeautifulSoup | |
# from colored import fg, bg, attr | |
from colored import stylize | |
from prettytable import PrettyTable |
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
#!/bin/bash | |
# Shuffle files for current/given directory. Creates a shuffle cache file | |
# in directory, which rotates through the entire directory contents before | |
# regenerating. | |
# vars {{{ # | |
shuffle_cache="shuffle.txt" | |
regen_flag=0 | |
dir="" |