Ken Reed

Results 42 comments of Ken Reed

would love this! I use dominant-baseline support to center labels in graph/plotting related svg files. as a workaround I think people could use the dx and dy css position attributes...

This is the problem I am experiencing on android. If you minimize your app, and then come back to it, android may have destroyed the context. It is not guaranteed...

Yes I would like to know as well. When I minimize the app and re open it, I just have a blank screen. Does the display need to be rebuilt...

I noticed that the mangled symbol is similar to one I found here: [https://github.com/alexcrichton/rustc-demangle/blob/master/src/lib.rs](https://github.com/alexcrichton/rustc-demangle/blob/master/src/lib.rs) #[test] fn demangle_osx() { t!("__ZN5alloc9allocator6Layout9for_value17h02a996811f781011E", "alloc::allocator::Layout::for_value::h02a996811f781011"); t!("__ZN38_$LT$core..option..Option$LT$T$GT$$GT$6unwrap18_MSG_FILE_LINE_COL17haf7cb8d5824ee659E", "::unwrap::_MSG_FILE_LINE_COL::haf7cb8d5824ee659"); t!("__ZN4core5slice89_$LT$impl$u20$core..iter..traits..IntoIterator$u20$for$u20$$RF$$u27$a$u20$$u5b$T$u5d$$GT$9into_iter17h450e234d27262170E", "core::slice::

I think this might be related to this code change: [https://fossies.org/diffs/rustc/1.21.0-src_vs_1.22.1-src/src/libcore/macros.rs-diff.html](https://fossies.org/diffs/rustc/1.21.0-src_vs_1.22.1-src/src/libcore/macros.rs-diff.html)

@WaDelma if I am understanding you this luckily is already in there. check out `broccoli::container::TreeOwned` and `broccoli::container::TreeIndOwned`

@WaDelma that is a great idea to accept another tree, but I'm not sure exactly how to do it. My notes in the source: ```rust pub fn intersect_with_mut( &mut self,...

That said the naive implementation that's in there right now is not ideal, but its not that slow in that its just linear time, unlike a naive for_ever_colliding_pair which is...

As a workaround, I added this and it let me call performance.now() inside of webworker: ```rust #[wasm_bindgen] extern "C" { #[no_mangle] #[used] static performance:web_sys::Performance; } ```

@RazrFalcon I tried this out and it works great! I noticed that when used as an attribute it works, but doesn't appear to work through css style. Is that expected?...