See also another me in GitLab: https://gitlab.com/Seungwoo-Yu
See also discontinued projects below:
See also another me in GitLab: https://gitlab.com/Seungwoo-Yu
See also discontinued projects below:
A utility library provides unique index for structs, handy comparison and conversion tools
Rust 3
An utility library covers (update-)alternative features on Linux
Rust 1
// Refer https://stackoverflow.com/a/62528760
#[cfg(target_family = "unix")]
pub fn is_root() -> bool {
use nix::unistd::Uid;
Uid::effective().is_root()
Test application for WebRTC implementation on Android Kotlin
Kotlin 3
Server application based on node.js for WebRTC signaling
TypeScript 1
package com.ysw2k.udptest
import io.ktor.network.selector.*
import io.ktor.network.sockets.*
import io.ktor.utils.io.*