Kevin Doyon

Results 10 comments of Kevin Doyon

The regex seems pretty restrictive in what it allows :( `http://localhost:11795/` for example is not considered a valid URL, neither would `http://machinename/` be. `telnet://whatever.com/` wouldn't be considered a valid URL...

As a workaround, checking out the v0.6.4 tag in my `\.oh-my-zsh\custom\plugins\zsh-autosuggestions` folder fixes the issue

You can use this: ``` cd ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions git checkout tags/v0.6.4 -b v0.6.4-branch ```

@mayuki Awesome, thanks! Are you sure it doesn't dispose? The [documentation](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection?view=aspnetcore-2.1#disposal-of-services) says it does in most situations. If you add a service like this: `services.AddSingleton();` The container will create the...

Yeah I thought the same thing, websockets might keep the `dotnet` process alive, but it happens even I don't have any browser window opened to `/rin` or any MVC view...

This is because JSBin is loaded through HTTP, so if you're visiting the site through HTTPS (e.g.: https://xgrommx.github.io/rx-book/content/observable/observable_instance_methods/every.html) then the examples don't work: `plugin.js:42 Mixed Content: The page at 'https://xgrommx.github.io/rx-book/content/observable/observable_instance_methods/every.html'...

For me, the problem was that the icon comes from the network and its size is not known until it is loaded. So when the form field is rendered initially,...

That's what I did, along with other changes to haste buffs to fix all the errors like `Cooldown error - Blade of Justice ID=184575 was used while SpellUsable's tracker thought...

Taken from this video: https://www.youtube.com/watch?v=r8sD7vczIsw, using this log https://www.warcraftlogs.com/reports/tkJ9QK8y6nFZCLXw where I only press Judgment and auto-attack, and then once in a while I press Final Verdict to trigger Blessing of...

I don't use formly, just angular material directly, but see the same issue. I think the problem is because the value is being set this way: https://github.com/JsDaddy/ngx-mask/blob/5acb93b9a44be2a7e28b536363cfd2ec6b1b95fc/projects/ngx-mask-lib/src/lib/ngx-mask.service.ts#L405 It's done in...