Skip to content
View alexgalkin's full-sized avatar
Block or Report

Block or report alexgalkin

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. node-uglify node-uglify
    1
    uglifyjs --compress --mangle toplevel=true -- bin/index.js
  2. Fix UTF-8 encoding for couple specia... Fix UTF-8 encoding for couple special russian letters
    1
    ## Fixing encoding issues in russian filenames
    2
    - https://habrahabr.ru/post/262679/
    3
    - http://ru.stackoverflow.com/questions/481050/%D0%9F%D1%80%D0%BE%D0%B1%D0%BB%D0%B5%D0%BC%D0%B0-%D1%81-%D0%B1%D1%83%D0%BA%D0%B2%D0%BE%D0%B9-%D0%99-%D0%B2-utf-8
    4
    
                  
    5
    - find . -name '*й*' | while read f; do echo mv "$f" "${f//й/й}"; done
  3. Sublime Tips Sublime Tips
    1
    RegExpt for getting String before the first comma
    2
    ^([^,])+
    3
    
                  
    4
    ... alternative approach (option with selecting all possible characters)
    5
    ^[a-zA-Z0-9\s\-\(\)\_\<\>]+
  4. docker-mail-notes.md docker-mail-notes.md
    1
    ### Docker for mail
    2
    mkdir -p config
    3
    touch config/postfix-accounts.cf
    4
    docker run --rm \
    5
      -e MAIL_USER=alex@domain.com \