Skip to content
View ozanaaslan's full-sized avatar
🏠
Working from home
🏠
Working from home
  • 127.0.0.1, Germany
  • 02:56 (UTC +01:00)

Highlights

  • Pro

Block or report ozanaaslan

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ozanaaslan/README.md

Hi there 👋

  • 🔭 I’m working on a bunch of APIs and private projects.
  • 🌱 I’m currently learning Java as you might recognize by my repositories.
  • 💬 Ask me anything regarding my repositories if you have questions.
  • 😄 Pronouns: He/Him

#16.8.2024

  • 🧙‍♂️ I can code in java now.

Hey! Check out my most recent Repository!
https://github.com/ozanaaslan/LeafShotSwingUI

Pinned Loading

  1. LeafShotSwingUI LeafShotSwingUI Public

    A FLOSS alternative to a very popular screenshot app.

    Java

  2. leafshot-web-backend leafshot-web-backend Public

    A FLOSS spring boot based backend for the LeafShotSwingUI screenshot utility.

    Java

  3. modularitea modularitea Public

    ModulariTea is a Java 8 boilerplated framework designed for building decoupled, component-based applications. It automates the lifecycle and wiring of internal logic and external JAR plugins reflec…

    Java

  4. modularitea-demo modularitea-demo Public

    demo app for modularitea

    Java

  5. A lightweight plugin system for Java A lightweight plugin system for Java
    1
    import lombok.Getter;
    2
    import lombok.SneakyThrows;
    3
    
                  
    4
    import java.io.*;
    5
    import java.lang.reflect.Method;
  6. Lightweight event handling in Java Lightweight event handling in Java
    1
    public class EventManager {
    2
    
                  
    3
        private final List<RegisteredListener> eventRegister = new ArrayList<>();
    4
    
                  
    5
        /**