Skip to content
View Sa1koro's full-sized avatar
👩‍💻
Exhausted
👩‍💻
Exhausted

Highlights

  • Pro

Organizations

@0ne1ndex @mindur5tep @EECS4461 @PKUAutomate @Bili-Helper

Block or report Sa1koro

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 250 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. EECS4443-Demos EECS4443-Demos Public

    EECS4443 - Mobile User Interface - Android Development Demos and Lab Tasks

    Java

  2. PKUAutomate/splayerx-sync PKUAutomate/splayerx-sync Public

    Forked from chiflix/splayerx

    Enhanced SPlayerX with sync-play function

    Vue

  3. webcam-color-picker webcam-color-picker Public

    4700 Project NodeJS Server Pages

    JavaScript

  4. hyper-webinview hyper-webinview Public

    Forked from vercel/hyper

    A terminal built on web technologies supported side-by-side web preview in

    TypeScript

  5. GeoIP for Synology Download Station GeoIP for Synology Download Station
    1
    // 全局变量存储IP范围数据
    2
    let gIpRanges = [];
    3
    let gIsInitialized = false;
    4
    let gOriginalReload = null; // 存储原始reload函数
    5
    
                  
  6. Export AList file list Export AList file list
    1
    // Function to export data to CSV
    2
    function exportToCSV(data, filename) {
    3
        const csvContent = data.map(e => e.join(",")).join("\n");
    4
        const blob = new Blob([csvContent], { type: 'text/csv;charset=utf-8;' });
    5
        const link = document.createElement("a");