Skip to content

Instantly share code, notes, and snippets.

View Kejax's full-sized avatar

Kejax Kejax

  • Germany
  • 22:46 (UTC +02:00)
  • X @Kejax5
View GitHub Profile
@Kejax
Kejax / available-polus-mods.json
Last active October 13, 2025 15:30
available-polus-mods.json
{
"mods":[
{
"id": "mira_api",
"name": "MiraAPI",
"url": "https://github.com/All-Of-Us-Mods/MiraAPI/releases/download/0.3.1/MiraAPI.dll"
},
{
"id": "reactor",
"name": "Reactor",
@Kejax
Kejax / format_number.py
Created July 5, 2022 19:09
A simple number formating function, made for the Pythonista Guild Trivia Games
# Copyright 2022 Kejax (https://gist.github.com/Kejax/25ab3221b4530d963f519ccfd789ec54)
# This function is published under no license, so feel free to use it
def format_number(number: int) -> str:
index = 0
formated = str()
for digit in list(str(number)):
formated = formated + digit
if index == 2:
formated = formated + ","