background

Hello, I'm Kajteh

Freelance Programmer with 3+ Years of Experience

15 years old, from Poznań Poland, currently focusing on web development, always learning new things.

My last projects

A selection of my projects, showcasing the work I've done.

CashBill Payments LibraryCashBill Payments Library hover

CashBill Payments Library

A Java library for integrating with the CashBill payment system, enabling payment creation and retrieval via OkHttp3.

Open Source

April 2024

AntylogoutAntylogout hover

Antylogout

A Bukkit plugin preventing logout during fights, with +45,000 downloads on SpigotMC. Released in 2022, recoded in the end of 2024.

Open Source

March 2024

BlackjackBlackjack hover

Blackjack

A Bukkit plugin for blackjack, where you can bet items and play against a bot.

January 2025

What others think about my work

John Doe

John Doe

Owner of Company

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio officia explicabo facere libero maxime.

Jane Smith

Jane Smith

Creative Director

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio officia explicabo facere libero maxime.

Alice Johnson

Alice Johnson

Project Manager

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio officia explicabo facere libero maxime.

Michael Brown

Michael Brown

Developer

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio officia explicabo facere libero maxime.

Lorem ipsum dolor sit amet
package pl.kajteh.payment;

import lombok.NonNull;

public class CashBillPaymentException extends Exception {

    public CashBillPaymentException(@NonNull String message) {
        super(message);
    }

    public CashBillPaymentException(@NonNull String message, @NonNull Throwable cause) {
        super(message, cause);
    }
}
public record User(String name, int age, String locale, String[] skills) {
    public void printInfo() {
        System.out.println(String.format("Hello, I'm %s, %s yo, from %s, I know %s", 
                this.name, 
                this.age, 
                this.locale, 
                String.join(", ", this.skills)));
    }
}
final User me = new User("Kajteh", 15, "Poznan Poland", new String[]{"...", "..."});

me.printInfo();

Let's work together