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

Block or report ws2356

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

    Shell 1

  2. xnix-config xnix-config Public

    linux goodies: .vimrc .bashrc ssh_config .gitconfig

    Vim Script 1

  3. 自建ca 自建ca
    1
    # 1, CA证书
    2
    ## 创建ca私钥
    3
    openssl genrsa -out ca.home.org.key 2048
    4
    ## 创建ca自签名证书
    5
    openssl req -new -x509 -key ca.home.key -out ca.home.crt
  4. my homebrew install list my homebrew install list
    1
    dump.list
  5. bash script used to uninstall mac os... bash script used to uninstall mac osx app and related config file
    1
    #!/usr/bin/env bash
    2
    set -e
    3
    
                  
    4
    app_name=$1
    5
    dry_run=${2:-false}
  6. x509tools x509tools Public

    shell scripts to make ca certs, cert sign, etc.

    Shell