Skip to content
View pl99's full-sized avatar
:electron:
:electron:

Block or report pl99

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. filestorage filestorage Public

    Java 1

  2. backup current branch to some directory backup current branch to some directory
    1
    ## Git 1.6.3 or newer
    2
    $ cp -a ./ /c/temp/"${PWD##*/}-$(git rev-parse --abbrev-ref HEAD)-$(date +"%Y-%m-%d-%H-%M-%S")"
    3
    
                  
    4
    ## Git 2.22 and above
    5
    $ cp -a ./ /c/temp/"${PWD##*/}-$(git branch --no-color --show-current)-$(date +"%Y-%m-%d-%H-%M-%S")"
  3. PostInitialize annotation for spring... PostInitialize annotation for spring projects. Run all methods with annotation
    1
    /** Аннотация**/
    2
    import java.lang.annotation.Retention;
    3
    import java.lang.annotation.RetentionPolicy;
    4
    
                  
    5
    @Retention(RetentionPolicy.RUNTIME)