Luka Zakrajšek
Luka Zakrajšek
@9SMTM6 this `pub type` solution is really nice. Now it is possible to have full Typescript integration using [tsify](https://github.com/madonoharu/tsify). I've created an [example repo](https://github.com/bancek/serde-wasm-bindgen-typescript-example) that demonstrates `serde-wasm-bindgen` and `tsify` integration....
I've [forked this repo](https://github.com/bancek/rs-async-zip-futures) (it looks like just a few days before #82) to add support for `futures-rs` without `tokio` for generating streaming ZIP files in WASM (only writing as...
Introduced in #6336
At [Koofr](https://koofr.eu/) we use a custom `React` component and i18n extraction scripts to handle more complex translations mixed with other potentially nested React components. Example: ```jsx {el}} accountName={accountName} /> ```...
@dwelle we use a custom Interpolate component but still use i18next, because old versions of i18next did not support what we needed years ago.
@ad1992 @dwelle I've added a PoC PR https://github.com/excalidraw/excalidraw/pull/6534
I got the same error (`swap contol extrensions are not supported`) while trying to run my app inside VirtualBox (Windows 10). I've switched the renderer to `wgpu` and it works...
I've tried `eframe 0.22.0` which depends on `glutin 0.30.8`. ```rust use eframe::egui; fn main() -> Result { env_logger::init(); eframe::run_simple_native("Hello world", Default::default(), move |ctx, _frame| { egui::CentralPanel::default().show(ctx, |ui| { ui.heading("Hello world");...
No, it does not. ``` Picked a config with 0 samples Running on GDI Generic OpenGL Version 1.1.0 thread 'main' panicked at 'gles2 function was not loaded', C:\Users\User\Downloads\glutin-master\glutin-master\target\debug\build\glutin_examples-4b2ca402a8c68ecf\out/gl_bindings.rs:779:13 note: run...
You could access API root like this: ``` python api.__getattr__('').get() ``` or even better like this: ``` python getattr(api, '').get() ``` First way is also useful if your API URL...