Skip to content
View Chaslee4's full-sized avatar
:octocat:
Focusing
:octocat:
Focusing

Block or report Chaslee4

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. Passing code to Codepen and create a... Passing code to Codepen and create a new codepen with current code
    1
    let html = "<p>some html code</p>";
    2
    let js = "console.log('js codes here')";
    3
    let config = {
    4
        title: "",
    5
        description: "",
  2. dependencies version rules in packag... dependencies version rules in package.json file or any other node based config file
    1
    指定版本:比如1.2.2,遵循“大版本.次要版本.小版本”的格式规定,安装时只安装指定版本。
    2
    波浪号(tilde)+指定版本:比如~1.2.2,表示安装1.2.x的最新版本(不低于1.2.2),但是不安装1.3.x,也就是说安装时不改变大版本号和次要版本号。
    3
    插入号(caret)+指定版本:比如ˆ1.2.2,表示安装1.x.x的最新版本(不低于1.2.2),但是不安装2.x.x,也就是说安装时不改变大版本号。
    4
                           需要注意的是,如果大版本号为0,则插入号的行为与波浪号相同,这是因为此时处于开发阶段,即使是次要版本号变动,
    5
                           也可能带来程序的不兼容。
  3. Keep running task in linux when exit... Keep running task in linux when exit or unconnect
    1
    //Run task
    2
    nohup [command task]
    3
    
                  
    4
    //To kill task
    5
    //List thread usidng command