Skip to content
View LianSheng197's full-sized avatar
🎉
支持有意義的事 / Support meaningful things.
🎉
支持有意義的事 / Support meaningful things.
  • Home
  • 05:47 (UTC +08:00)

Organizations

@CCO-Project
Block or Report

Block or report LianSheng197

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. Explanation of a confusing line of b... Explanation of a confusing line of bash code / ANSI escape sequences.
    1
    ```bash
    2
    echo "\[\033[${2:-37};60m\]${1}\[\033[0m\]"
    3
    ```
    4
    
                  
    5
    Echo is the program echo that you can run from the terminal.
  2. 一個僅支持 HTML 的 <html>, <head>, <body>,... 一個僅支持 HTML 的 <html>, <head>, <body>, <title>, <h1>, <p> 六種標籤的極簡語法分析範例,不含屬性、自閉合標籤、錯誤恢復等常見 HTML 功能。以 JavaScript 編寫。
    1
    function lexer(input) {
    2
        const regex = /<\/?(title|h1|html|head|body|p)>|[^<]+/g;
    3
        let result, tokens = [];
    4
        while ((result = regex.exec(input)) !== null) {
    5
            tokens.push(result[0]);
  3. CCO-Project/userscripts CCO-Project/userscripts Public archive

    在 CCO 裡的一些使用者腳本

    JavaScript 3 2

  4. cloudflare-workers-sample cloudflare-workers-sample Public

    能直接在 CloudFlare Workers 上執行的一些範例程式

    JavaScript 1

  5. droneQDB droneQDB Public

    遙控無人機學科測驗題庫(普通+專業) 簡易模擬試驗系統

    JavaScript

  6. CNSOnlineDownloader CNSOnlineDownloader Public

    國家標準網路服務系統 (www.cnsonline.com.tw) 預覽版文件下載器

    JavaScript