Toolbox
Tools
Useful things I built for quick jobs. Fast, focused, and ready in your browser.
QR Code Maker
Turn a link or note into a downloadable QR code.
PDF Utils
Handle everyday PDF jobs without uploading your files.
Obfuscator
Encode a short message with a key you choose.
Server Checker
Check a Minecraft server before launching the game.
Helpful links
CI workflows
Gradle · Java 17GitHub Actions
name: Java CI with Gradle
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: zulu
- uses: gradle/actions/setup-gradle@v4
- run: chmod +x gradlew && ./gradlew buildGradle · Java 21GitHub Actions
name: Java CI with Gradle
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: microsoft
- uses: gradle/actions/setup-gradle@v4
- run: chmod +x gradlew && ./gradlew buildUpload build artifactsGitHub Actions
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: build/libs/*.jar
if-no-files-found: error