Vincent Esche

Results 209 comments of Vincent Esche

@Hypercubesoft are you gonna merge this or should I just close the PR?

I've been pondering with the same issue a week ago. While an automated approach would obviously be the preferred way, I'd consider an optional label a worthy workaround. I am...

For the lazy among us: https://github.com/dtolnay/syn > Parse Rust source code without a Syntex dependency, intended for use with Macros 1.1. https://github.com/dtolnay/quote > Quasi-quoting without a Syntex dependency, intended for...

To some degree (i.e. sans visibility constraint) could easily do this with [apply_attr](https://github.com/regexident/apply_attr) like this: ```rust #![cfg_attr(feature = "flame_it", apply_attr(to(fns, impls(fns)), as_default(flame)))] ``` … will apply `#[flame]` to every directly...

Looks good, thanks! Could you please [squash the last four commits](https://ariejan.net/2011/07/05/git-squash-your-latests-commits-into-one/) (5067039 .. aefe87b) into a single one?

Hi xilin, thanks for the bug report! This should be a `NSStringDrawingContext` being leaked, which is allocated [here](https://github.com/regexident/DLAlertView/blob/master/DLAlertView/Classes/DLAVAlertView.m#L1284). Unfortunately I won't have time to fix this myself anytime soon (~2...

> Beyond that, did you have anything particular in mind? I basically stumbled upon the announcement and thought "wait a second, lots of these have open issues on rulinalg, maybe...

FYI: Implementing matrix decompositions (Cholesky, LQ, sym eigen) as differentiable operators: https://arxiv.org/abs/1710.08717 Abstract: > Development systems for deep learning, such as Theano, Torch, TensorFlow, or MXNet, are easy-to-use tools for...

Thanks for the prompt response, AtheMathmo! Yeah, that's what I came up with, too. What tripped me up with though was the `z`-vector: ```rust (v: Matrix) * (z: Vector) *...

In its current state you need to call `document.remove(child: heading)` in order to detach `heading` from the document, turning it into an independent managed node. Or `let children = node.removeChildren()`...