This guide explains how to run multiple productive Kimai instances using Docker.
In this example, files are created in /opt/kimai-mydomain.
The folder name is not critical, but using descriptive names helps distinguish different instances.
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
| These are mostly CP437/ANSI-art style handles using extended ASCII, box-drawing chars, superscripts, and decorative glyph substitution. A lot of classic Palace/IRC/BBS names depended on fonts rendering CP437 correctly, so portability is inconsistent. | |
| Examples: | |
| ```text | |
| Jø§§§®™ | |
| ÐRΣΛM™ | |
| ¢¥ß€R†M | |
| §håÐØw™ | |
| †h€•VØID |
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
| ; Server Prefs | |
| ; | |
| SERVERNAME "localhost" | |
| PERMISSIONS 0xFFFFEFFB | |
| DEATHPENALTY 3 | |
| MAXOCCUPANCY 1000 | |
| ROOMOCCUPANCY 16 | |
| MINFLOODEVENTS 200 | |
| PURGEPROPDAYS 30 | |
| AUTOPURGE ON |
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
| #include <WiFi.h> | |
| #include <HTTPClient.h> | |
| #include <time.h> | |
| #include <esp_sleep.h> | |
| const char* ssid = "your_ssid"; | |
| const char* password = "your_password"; | |
| const char* influx_url = "http://192.168.1.100:8086/api/v2/write?org=myorg&bucket=mybucket&precision=s"; | |
| const char* influx_token = "your_token"; |
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
| #include <Arduino.h> | |
| void setup() { | |
| // Initialize serial communication | |
| Serial.begin(115200); | |
| // Wait for serial to be ready | |
| while (!Serial) { | |
| delay(10); | |
| } |
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 | |
| """ | |
| (Copyleft) 2025 Jonathan D. Kelley | |
| ROM Organizer Tool | |
| ================== | |
| This script organizes ROM files into structured directories based on region | |
| and alphabetical ranges. It supports recursive scanning, dry-run mode, | |
| and automatic directory cleanup. |
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
| kubectl apply -f flink-configuration-configmap.yaml | |
| kubectl apply -f jobmanager-svc.yaml | |
| kubectl apply -f jobmanager-session-deployment.yaml -f task-manager-session-deployment.yaml |
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
| awk 'function hextodec(str,ret,n,i,k,c){ | |
| ret = 0 | |
| n = length(str) | |
| for (i = 1; i <= n; i++) { | |
| c = tolower(substr(str, i, 1)) | |
| k = index("123456789abcdef", c) | |
| ret = ret * 16 + k | |
| } | |
| return ret | |
| } |
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
| # 1) Deploy the pod | |
| # | |
| # kubectl create -f busybox-non-root.yaml | |
| # | |
| # 2) Access the shell | |
| # | |
| # kubectl exec -ti busybox-1000 -- sh | |
| # | |
| # 3) from the shell run: | |
| # |
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
| from time import sleep | |
| from tornado.httpserver import HTTPServer | |
| from tornado.ioloop import IOLoop | |
| from tornado.web import Application, asynchronous, RequestHandler | |
| from multiprocessing.pool import ThreadPool | |
| _workers = ThreadPool(10) | |
| def run_background(func, callback, args=(), kwds={}): | |
| def _callback(result): |
NewerOlder