Skip to content
View MarkZhangTW's full-sized avatar

Organizations

@NTUST-Coding-Club
Block or Report

Block or report MarkZhangTW

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

    Simple API for CloudFlare.

    Shell

  2. My VS Code keybindings My VS Code keybindings
    1
    [
    2
    // Clear terminal history buffer
    3
    { "key": "ctrl+l", "command": "workbench.action.terminal.clear", "when": "terminalFocus" },
    4
    // Change ctrl+m from toggle tab focus mode to send carrage return
    5
    { "key": "ctrl+m", "command": "workbench.action.terminal.sendSequence", "when": "terminalFocus", "args": {"text":"\r"} },
  3. tailf-Vim tailf-Vim Public

    Using tail -f in Vim.

    Vim Script 1

  4. VS Code key bindings for termianl op... VS Code key bindings for termianl operation.
    1
    // VS Code key bindings for termianl operation.
    2
    [
    3
      { "key": "ctrl+a", "command": "workbench.action.terminal.sendSequence", "when": "terminalFocus", "args": {"text":"\u0001"} },
    4
      { "key": "ctrl+b", "command": "workbench.action.terminal.sendSequence", "when": "terminalFocus", "args": {"text":"\u0002"} },
    5
      { "key": "ctrl+c", "command": "workbench.action.terminal.sendSequence", "when": "terminalFocus", "args": {"text":"\u0003"} },
  5. rc rc Public

    My rc files.

    Shell

  6. Curl format for displaying time info... Curl format for displaying time infomation.
    1
    #!/usr/bin/env bash
    2
    # Reference: https://stackoverflow.com/questions/18215389/how-do-i-measure-request-and-response-times-at-once-using-curl
    3
    curl_format="\
    4
    %{time_namelookup}:\
    5
    %{time_connect}:%{time_appconnect}:\