Yamakaky

Results 254 comments of Yamakaky

It's in rust, shouldn't be a problem.

It could be use to display more warning or use `-fdiagnostics-color`, for example. Any plan on that? Ideally, you could use the standard CFLAGS and such.

As an example, in the pgx connection pool golang library, they allow the user to define hooks that can modify the credentials used. BeforeConnect can modify the configuration for new...

Additional info: if I only select `entity_id`, I get an index-only `SkipScan` no matter the pattern. I also tried with `create index on ltest(entity_id, time desc) include (friendly_name)`: ``` Subquery...

Alternatively, jack channels could be managed via rpc (Ice?)

Additional faulty case: ```rust tracing_subscriber::fmt() .with_env_filter(tracing_subscriber::EnvFilter::new("[{x}]=debug")) .init(); tracing::debug!(x="a", "test"); ``` shows the `DEBUG` log line, but the following doesn't print anything: ```rust tracing_subscriber::fmt() .with_env_filter(tracing_subscriber::EnvFilter::new("[{x=a}]=debug")) .init(); tracing::debug!(x="a", "test"); ``` I tried...

https://github.com/brson/error-chain/pull/55/files#diff-dbc69594b369f8b47dc0bf4b8af35b4f

Looking from http://llvm.org/docs/tutorial/BuildingAJIT1.html, writing a JIT compiler seems manageable. I'll have to write some C++ I think, though. The more difficult part would be to convert SPIR-V to LLVM IT,...