Dane Owens

Results 16 comments of Dane Owens

A lot of people are scared of assembly (maybe just the tediousness of it), but I find it to be quite fun. I found myself getting bogged down trying to...

It's been some months since I looked into this, but *I think* at one point I concluded that scrolling (of `.page-wrapper`) is blocked while hovering over the table of contents...

I don't know the heavy details here, but this error is thrown when `file[1]['a']` is of string type instead of a dictionary. The following change to the `find_path_descriptor` method (see...

> Hi @Achilles1515 as per our [contributing guide](https://github.com/mongodb/mongo-csharp-driver/blob/master/CONTRIBUTING.md), please open an issue at jira.mongodb.org in the CSHARP project and link it to the pull request. > > Thanks, > Jeff...

@NiyazNz This bug is due to your changes in https://github.com/angular/components/pull/19863 where you are returning an `SVGPoint` object whose x/y coordinates are no longer relative to other items on the page...

> I couldn't reproduce it against any of the examples [from the docs](https://material.angular.io/cdk/drag-drop/overview), but I'm not sure I understand the instructions. At step 2 am I supposed to move one...

Heh, interesting. The event listener callback order is changed between Ivy and View Engine, which is causing your problem. [Forked StackBlitz](https://stackblitz.com/edit/angular-eracir?file=src%2Fapp%2Fapp.component.ts) I added a console log during your `onMouseDown` method...

@crisbeto The `beforeStarted` subject currently emits nothing: ```ts beforeStarted: Subject ``` What are your thoughts on changing this subject to emit the triggering event to provide a little more context...

Reveal solution ```python def sol(): return [1, 1, 1, -2, 1, 1, 1] ```