Skip to content
View ozanaaslan's full-sized avatar
🏠
Working from home
🏠
Working from home
  • 127.0.0.1, Germany

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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

Pinned Loading

  1. LWJWL LWJWL Public

    Lightweight Java Web Library facilitating the creation of RESTful microservices.

    Java

  2. PixieOffice PixieOffice Public

    No idea, but it's 2D and working

    Java

  3. Modules4J Modules4J Public

    An extension library for java

    Java

  4. A Java Class to generate SSL Certifi... A Java Class to generate SSL Certificates with KeyTool for Linux Systems (Builder Pattern)
    1
    
                  
    2
    import lombok.*;
    3
    import java.security.KeyStore;
    4
    
                  
    5
    public class KeyTool4J {
  5. End to End Encryption End to End Encryption
    1
    import java.security.*;
    2
    import java.security.spec.X509EncodedKeySpec;
    3
    import java.util.Base64;
    4
    
                  
    5
    import javax.crypto.Cipher;
  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
        /**