Skip to content
View gilchris's full-sized avatar

Block or report gilchris

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

    Java Hangul(한글) Utils

    Java

  2. PasswordDeriveBytesForJava PasswordDeriveBytesForJava Public

    a Java port of C# PasswordDeriveBytes class

    Java 12 1

  3. ConvenientHanYoung ConvenientHanYoung Public

    adding options of Shift+Space to Han/Young key on keyboard

    C# 1

  4. ConvenientRedmine ConvenientRedmine Public

    chrome extension for adding advantages of redmine

    JavaScript 4

  5. Extracting script in HTML Extracting script in HTML
    1
    function extractScript(str) {
    2
      let r = new RegExp(/<script[\s\S]*?>([\s\S]+?)<\/script>/mig);
    3
      return str.match(r)
    4
          .map(function (s) { 
    5
            return s.replace(r, "$1");
  6. docker command shortcut docker command shortcut
    1
    #!/bin/bash
    2
    
    
    3
    function fzf_container() { 
    4
        docker container ls -a | fzf -m | awk '{print $1}' 
    5
    }