Michael Bryan

Results 303 comments of Michael Bryan

I feel like it's frowned upon to use operator overloads for an operation which doesn't match the symbol you normally use it for (e.g. `*` would be good for matrix...

> Taking into account that it could be used with any user-provided impls of Write, that is fairly possible to encounter panics. Hehe, I was kinda lazy and didn't make...

Looking at the resolution in Michael-F-Bryan/thin-trait-objects#2, @Mart-Bogdan what do you think the best way to address exception safety (and my solution, poisoning) would be? Should I update the original article,...

My problem was there's no programmable way to find an attachment by name if you don't already know its attachment ID. Sure, you can use `lpass show` but that's intended...

@dtolnay I was thinking of doing a write-up on `cxx` and would be keen to get your input! I've started wrapping the `bz2` library (because that's the example [the bindgen...

Note to self: I think I'll give up on writing bindings for `libtorrent` and look for something which builds more reliably (maybe llvm?) I spent a good 2 evenings trying...

How I've implemented grids in the past is to have some sort of `Grid` object which keeps track of things like the current grid spacing and maybe object snap settings....

@NicholasSterling, would you be able to put together some benchmarks? I'm happy to make changes if they'll provide easy performance gains, but I'd like to see some numbers before making...

Well *technically* the library is able to start render things to a canvas (see [the example program](https://github.com/Michael-F-Bryan/arcs/blob/master/arcs/examples/render_to_image.rs)'s output below). ![rendered](https://user-images.githubusercontent.com/17380079/71667398-e5ff8680-2d9f-11ea-8320-6d1ae941625f.png) At the moment, the `wasm-demo` is meant to draw a...

It looks like the demo [published to GitHub Pages](https://michael-f-bryan.github.io/arcs/demo/index.html) uses the wrong import paths. I'll see if I can fix it up after work, then it should be okay to...