Skip to content
View kjxbyz's full-sized avatar
👨‍💻
I may be slow to respond.
👨‍💻
I may be slow to respond.

Block or report kjxbyz

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. flutter/flutter flutter/flutter Public

    Flutter makes it easy and fast to build beautiful apps for mobile and beyond

    Dart 165k 27.2k

  2. vercel/next.js vercel/next.js Public

    The React Framework

    JavaScript 125k 26.7k

  3. nestjs/nest nestjs/nest Public

    A progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications with TypeScript/JavaScript 🚀

    TypeScript 66.9k 7.6k

  4. 一个Shell脚本,脚本的第一个参数是脚本中的函数的名字,脚本剩余参数,... 一个Shell脚本,脚本的第一个参数是脚本中的函数的名字,脚本剩余参数,为函数的参数。
    1
    #!/bin/zsh
    2
    
                  
    3
    function fun1() {
    4
        echo "Test..., args: $*"
    5
    }
  5. 一个PowerShell脚本,脚本的第一个参数是脚本中的函数的名字,脚本... 一个PowerShell脚本,脚本的第一个参数是脚本中的函数的名字,脚本剩余参数,为函数的参数。
    1
    # Define some example functions
    2
    function Get-Greeting {
    3
        param (
    4
            [string]$Name
    5
        )