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

Highlights

  • Pro

Organizations

@0ne1ndex @PKUAutomate @Bili-Helper

Block or report Sa1koro

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. webcam-color-picker webcam-color-picker Public

    Webcam Color Picker for Chromatic Ruins — A Next.js + React app with WebSocket-based communication to Unity3D, enabling real-time webcam color capture for immersive puzzle gameplay.

    JavaScript

  2. hyper-webinview hyper-webinview Public

    Forked from vercel/hyper

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

    TypeScript

  3. EECS4443-Demos EECS4443-Demos Public

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

    Java

  4. 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
    
                  
  5. 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");