Skip to content
View Seungwoo-Yu's full-sized avatar
๐Ÿ›Œ
I may be slow to respond.
๐Ÿ›Œ
I may be slow to respond.
  • 13:30 (UTC +09:00)

Block or report Seungwoo-Yu

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 Loading

  1. Struct-Indexer-Rust Struct-Indexer-Rust Public

    A utility library provides unique index for structs, handy comparison and conversion tools

    Rust 3

  2. Linux-Alternative-Resolver Linux-Alternative-Resolver Public

    An utility library covers (update-)alternative features on Linux

    Rust 1

  3. Cross-platform support function chec... Cross-platform support function checks root (administrator) privilege (Windows Vista+)
    1
    // Refer https://stackoverflow.com/a/62528760
    2
    #[cfg(target_family = "unix")]
    3
    pub fn is_root() -> bool {
    4
        use nix::unistd::Uid;
    5
        Uid::effective().is_root()
  4. Seungwoo-Yu-Projects-2021/WebRTC-Android-Client Seungwoo-Yu-Projects-2021/WebRTC-Android-Client Public

    Test application for WebRTC implementation on Android Kotlin

    Kotlin 3

  5. Seungwoo-Yu-Projects-2021/WebRTC-Signaling-Server Seungwoo-Yu-Projects-2021/WebRTC-Signaling-Server Public

    Server application based on node.js for WebRTC signaling

    TypeScript 1

  6. UDP Loopback test for transfer liabi... UDP Loopback test for transfer liability in Kotlin/JVM
    1
    package com.ysw2k.udptest
    2
    
                  
    3
    import io.ktor.network.selector.*
    4
    import io.ktor.network.sockets.*
    5
    import io.ktor.utils.io.*