uuhan
uuhan
Nodejs Napi Addon ```js const {sled} = require('./sled.node') let db = new sled({ path: "./index.db", use_compression: false, }) let key = new TextEncoder().encode("hello").buffer let value = new TextEncoder().encode("world").buffer db.insert(key, value)...
Just for code show, not for merge. Feel free to close it.
Hi, I love this crate for plotting. But after reading all codes under examples directory, I wonder how I can draw two sepreted and not overlaped time range into one...
Well, It seems not easy to make a shared library without -dynamic option in Haskell world. I test it on macOS, and comment out the line: `-- Ghc-Options: -dynamic` Failed...
I want to check if a type is a large const sized array, ```rust fn big_array_p(ty: &Type) -> bool { match ty { Type::Array(n) => match &n.len { Expr::Lit(lit) =>...
Seems `b` is not a valid literal prefix: ```rust struct S { pub a: u32, } let ident = format_ident!("something"); quote! { match #ident { b stringify!(#ident) => {} //...
I wonder if it is posible to trigger the eraser like supernote does:  If you also need this feature, you can also submit a request to the official wish...
The installation of [toltec](https://toltec-dev.org/) may destroy this plugin. It'd better add the environment in the systemd service file. ```systemd [Service] Environment="QT_QPA_GENERIC_PLUGINS=evdevlamy" ```
 我重新做了一个 librime-api 的绑定, 把 librime 的源代码通过 cmake 包直接封装到 crate 中了,这样编译起来就方便了,而且全是静态链接,可以直接放编译好的二进制包给大家用,也可以直接通过: cargo install rime-ls 安装,目前只测试了 macos 和 linux 下的,再测测晚点发布到 crates.io 上去。😁