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

Highlights

  • Pro

Organizations

@0ne1ndex @mindur5tep @dattodigm @PKUAutomate @Bili-Helper @RumbleHime

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. dattodigm/DATT3700 dattodigm/DATT3700 Public

    An interactive kinetic flower installation that combines computer vision, emotion AI, and ESP32 hardware nodes to create embodied floral responses.

    C

  3. EECS4443-Demos EECS4443-Demos Public

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

    Java

  4. Bili-Helper/mnkSync Bili-Helper/mnkSync Public

    JNA+RocketMQ编写的网络键鼠同步器 喀拉壁球单刷

    Java

  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");