Skip to content
View loveklmn's full-sized avatar
👾
Getting thing done
👾
Getting thing done
  • Amazon
  • 13:46 (UTC -06:00)

Highlights

  • Pro

Block or report loveklmn

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. Identity large commits in `.git` Identity large commits in `.git`
    1
    # from https://stackoverflow.com/questions/10622179/how-to-find-identify-large-commits-in-git-history
    2
    git rev-list --objects --all |
    3
      git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' |
    4
      sed -n 's/^blob //p' |
    5
      sort --numeric-sort --key=2 |
  2. .vscode/extension.json .vscode/extension.json
    1
    {
    2
      "recommendations": [
    3
        // all
    4
        "EditorConfig.EditorConfig",
    5
        "ms-vsliveshare.vsliveshare", // collaboration
  3. I cannot f__king remember the parame... I cannot f__king remember the parameter of tar!!
    1
    ex () {
    2
    	if [ -f $1 ] ; then
    3
    		case $1 in
    4
    			*.tar.bz2)   tar xjf $1   ;;
    5
    			*.tar.gz)    tar xzf $1   ;;
  4. avoid selenium detect avoid selenium detect
    1
    from selenium import webdriver
    2
    
                  
    3
    
                  
    4
    options = webdriver.ChromeOptions()
    5
    options.add_argument("start-maximized")
  5. disciplined-leetcode/discipline disciplined-leetcode/discipline Public

    The bot responsible for removing user access

    Python 2