Jonathan

Results 160 comments of Jonathan

Yes, but when you use an SPA such as [React](https://reactjs.org/docs/handling-events.html) you would use event handlers such as `onClick`, `onBlur`, `onChange`, etc, or with [Vue](https://vuejs.org/guide/essentials/event-handling.html) `@click`, `@blur`, `@change`, or with [Angular](https://angular.io/guide/event-binding)...

Thanks, it would nice with information on how to ensure it is properly setup and actually working though. And if this can be verified in testing environment too or only...

Yes, but how and what to do to `Startup.cs`, `Global.asax`, etc. How to register it globally, or on all /api/\* routes.

How is this going? Has any documentation been written yet?

With GoogleAnalyticsTracker.WebAPI2 I use the following code to setup a global action tracking filter for all controllers in the /api/ path. ```cs public static class WebApiConfig { public static void...

Yes, add brown noise. Lex Fridman listens to brown noise when programming https://www.youtube.com/watch?v=EyYlqDLK4WA [![Watch the video](https://img.youtube.com/vi/EyYlqDLK4WA/maxresdefault.jpg)](https://youtu.be/EyYlqDLK4WA)

With a grid option, there could also be a "snap to grid" option, so it would be easy to draw from 10, 10 to 90, 90 without accidentally drawing from...

A [Snap](https://snapcraft.io/) package might also be of interest.

Maybe something like this: ```php $lines = explode("\n", $commit_message); $subject = $lines[0]; ``` Can also be written as: ```php $subject = explode("\n", $commit_message)[0]; ```

This could use the CSS prefers-color-scheme media query to automatically apply the dark and light colors according that. https://caniuse.com/prefers-color-scheme