Jihyun Yu
Jihyun Yu
I failed to compile source tree with 5.1 installed build from Epic Games Launcher. All of errors are related to compilation unit scope, so I suspect that those errors are...
I changed design slightly, focused on some parts that makes me annoying. I hope you like this. - Change scroolbar design: Now scrollbar looks more natural - Change ChatBox VerticalScrollBarVisibility...
I tuned some function in critical path. - Change fmt.Sprintf to bytes.Buffer - Change string operations to byte operations - Change default buffer size to handle small-sized request better These...
While trying to monitor traffic on OpenBSD router box with `darkstat`, I observed that `darkstat` cannot account traffic accurately when there's a large traffic, because of packet `pcap` packet drop....
Here's example code which causes deadlock without unsafe code. ```rust extern crate futures; extern crate qutex; use qutex::*; use futures::prelude::*; fn main() { let lock = QrwLock::from(0i32); let f =...
While tracking down rendering errors, I found that color rendering is broken with cpu rendering (`cpu_fix`). Here's a code snippet to render ColorTest. ```rs use egui_skia::rasterize; use skia_safe::{EncodedImageFormat, Paint, Point};...