Skip to content
View zhanglianxin's full-sized avatar
🏃‍♂️
Running
🏃‍♂️
Running
Block or Report

Block or report zhanglianxin

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. Generate ss address and qrcode from ... Generate ss address and qrcode from running docker image
    1
    #!/bin/bash
    2
    
                  
    3
    if [ ! -f /tmp/qrcli ]; then
    4
        osname=$(echo `uname` | tr '[:upper:]' '[:lower:]')
    5
        wget -qO /tmp/qrcli "https://github.com/zhanglianxin/qrc/releases/download/v0.2.0/qrc_${osname}_amd64"
  2. https://www.youtube.com/watch?v=94GK... https://www.youtube.com/watch?v=94GK6Ik-x98&t=210s
    1
    ## SSH - Port Forwarding - Local
    2
    
                  
    3
    Forward local service running on remote to local client in localhost.
    4
    
                  
    5
    ```shell
  3. Generate favicon.ico by self. Generate favicon.ico by self.
    1
    #!/usr/bin/bash
    2
    
                  
    3
    # https://unix.stackexchange.com/questions/89275/how-to-create-ico-file-with-more-than-one-image
    4
    # https://superuser.com/questions/491180/how-do-i-embed-multiple-sizes-in-an-ico-file
    5
    
                  
  4. Get latest release tag from repo rel... Get latest release tag from repo releases page.
    1
    #!/bin/bash
    2
    
                  
    3
    RELEASES=https://github.com/zhanglianxin/qrc/releases
    4
    FILENAME='qrc_linux_amd64"'
    5