Alex Lunacharskii

Results 10 comments of Alex Lunacharskii

> Still not working for me: > > * Elementary Juno: Linux version 5.0.0-050000-generic (kernel@gloin) (gcc version 8.2.0 (Ubuntu 8.2.0-21ubuntu1)) > * VSCode: v1.32.3 + RLS 0.5.4 > * rustc...

> > SQLite is embedded database, there is no such thing as SQLite server. > > This is true, but something like git over ssh _might_ be possible. Could send...

@Amrutas I think you have several options: 1) Don't use conscript with cygwin. Use cmd instead. 2) Manage your conscript files (those in ~/bin and ~/.conscript) by hand using cygpath...

It definitely would be worthwhile to get some improvements here I'm comparing todo mvc example in yew https://todomvc.yew.rs/ and in seed which I build with `cargo make build` from `seed/examples/todomvc`....

I found it's relatively easy to do without this change: 1. Enable load extension in the connection properties like here https://github.com/xerial/sqlite-jdbc/blob/f948552fa06d475c4f1e72fdc2f72cbb18269217/src/test/java/org/sqlite/JDBCTest.java#L26 Also possible in DBeaver: 2. Use SQL to load...

@Andy-2639 cool, I see you point. I'd say those parts of a program calling load_extension stuff shouldn't be exposed to a non-authorised user's input data. And adding more native calls...

I'm seeing some relevant discussion here https://github.com/rust-lang/rustfmt/issues/3434 I looks like people suggest to add ``` // Skip formatting everything whose name is `html` #![rustfmt::skip(html)] // Or make it explicit that...

One nice (more or less) workaround I've found : format selection as html msvsc plugin https://marketplace.visualstudio.com/items?itemName=adrianwilczynski.format-selection-as-html

Having very similar problem two Ubuntus 20.04. One master one worker. `Kubernetes v1.23.3` `kubelet logs -n kube-system kube-flannel-ds-...` doesn't show any errors. Using VXLAN backends - `VXLAN config: VNI=1 Port=0...

A related thing to add that I'm facing is to derive `FromRow` on an imported struct. ``` use some_create::ThirdParty; #[derive(FromRow)] // for ThirdParty; ``` I'm looking for a reasonable solution...