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

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. 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. 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");