Skip to content
View pkruczynski's full-sized avatar
πŸ‡΅πŸ‡±
πŸ‡΅πŸ‡±
Block or Report

Block or report pkruczynski

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

  1. common.php common.php
    1
    #!/usr/bin/env php
    2
    <?php 
    3
    /*  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
    4
        β”‚    β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ–ˆβ•—   β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•—   β–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ–ˆβ•—   β–ˆβ–ˆβ•—
    5
        β”‚   β–ˆβ–ˆβ•”β•β•β•β•β• β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ•‘ β–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ•‘
  2. JsonMapping.java JsonMapping.java
    1
    package pl.glx.common;
    2
    
                  
    3
    import java.lang.annotation.*;
    4
    import org.springframework.web.bind.annotation.*;
    5
    import org.springframework.core.annotation.AliasFor;
  3. Example Java Enum class with the pre... Example Java Enum class with the prev() and next() accessors
    1
    package pl.glx.common.enums;
    2
    
                  
    3
    import java.util.*;
    4
    
                  
    5
    
                  
  4. JsonResponse.java JsonResponse.java
    1
    import pl.glx.common;
    2
    
                  
    3
    import lombok.*;
    4
    import lombok.experimental.Accessors;
    5
    import org.apache.logging.log4j.util.Strings;
  5. JavaAutoBind Concept JavaAutoBind Concept
    1
    ////////////////////////////////////////////////////////////////////////////////
    2
    package pl.glx.pattern;
    3
     
    4
    public interface HasFriendship<Owner extends HasFriendship<Owner, Friend>, Friend extends HasFriendship<Friend, Owner>> {
    5
        Friendship<Owner, ?> friendship(Class friendClass);
  6. oracleLogs.sql oracleLogs.sql
    1
    create table TMP_LOGS (
    2
      id         number         primary key     not null 
    3
    , created_at date           default sysdate not null
    4
    , created_as varchar2( 128) default user    not null
    5
    , created_by varchar2( 256) default sys_context('USERENV', 'OS_USER')