Mura Li

Results 13 issues of Mura Li

After https://gitea.com/xorm/builder/pulls/59 we can do `Join(Select(...), ...)` It would be more useful if it can support aliases like the following SQLs (SQLite dialect): ``` WITH r AS ( SELECT *...

proposal

https://github.com/wallix/awless/blob/8c1a034197b873414f5f4733e14752ca6a7a7198/aws/doc/paramsdoc.go#L484 Should be "The type of task to **stop**"?

We have an application which will open multiple serial ports ('real' serial ports like RS232 or USB CDC/ACM ones) simultaneously. It waits for the first arrival byte to decide which...

I have used Tup successfully for a bare-metal, microcontroller-based project. I am trying to use Tup as the foundation to create a BSP (board support package) for an embedded Linux...

Now that vim has +channel as an IPC mechanism, is it possible to utilize the channels instead of X11? On some platforms, like Ubuntu, the default vim is built without...

enhancement

Upon cleaning up a bunch of my messy configs to make it work with the standalone kconfig tool, I found some unexpected behavior. Looking into https://github.com/gittup/tup/blob/master/src/tup/db.c#L7710-L7722, it appears that `ifdef...

If the length of the log exceeds the limit, drop the oldest lines to fill the new ones.

This seems to happen only when the caller of the trait, the trait definition and the impl definition are all in different modules. Here is a repro https://github.com/typeless/myr-bug/blob/main/c.myr#L12 ``` $...

A reproducer: ``` type foo = struct s : void ;; const bar = {a : foo;} const main = { var s : foo bar(s) } ``` Output: ```...