kapsiR
kapsiR
[The [New] State of CSS in Angular](https://blog.angular.io/the-new-state-of-css-in-angular-bec011715ee6) has a section about [Future of overriding styles](https://blog.angular.io/the-new-state-of-css-in-angular-bec011715ee6#12af): > CSS Variables open the door to well-supported APIs for component customization, allowing developers to...
What's the use case of your scenario? Why does it even have to be async? The queue can process the items synchronous on a dedicated thread. As [stated here](https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/blob/master/AsyncGuidance.md#avoid-using-taskrun-for-long-running-work-that-blocks-the-thread), it's...
@mihirdilip Generally speaking, you should avoid `sync over async` wherever possible. The section [Avoid using `Task.Result` and `Task.Wait`](https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/blob/master/AsyncGuidance.md#avoid-using-taskresult-and-taskwait) has more details, why you should avoid it. (thread-pool starvation, deadlocks, ...)...
@jecaestevez I really recommend to read the cookbook from VS, as mentioned from WiredUK. There is also a [short answer](https://github.com/Microsoft/vs-threading/blob/master/doc/cookbook_vs.md#short-answer) available. (@davidfowl Maybe we can copy/paste this section into the...
There is a [very good article](https://devblogs.microsoft.com/dotnet/configureawait-faq/) from @stephentoub available. He also [mentions some proposals](https://devblogs.microsoft.com/dotnet/configureawait-faq/#could-the-language-help-me-avoid-needing-to-use-configureawaitfalse-explicitly-in-my-library) how this whole thing could be addressed: - [Proposal: Extension await operator to address scoped ConfigureAwait](https://github.com/dotnet/csharplang/issues/2649)...
@ocombe Would be cool if this gets merged 😉
@erikdarlingdata Thanks for assigning me here, but I'm not sure, if @bakirp would be a better fit here because of the work that is already done with PR https://github.com/amachanic/sp_whoisactive/pull/36? If...
Sure: `ﮫ` Have a great time!
For my use case (Windows Terminal), I have no problem with changing my characters to another code point. That might be different for others of course, but I think including...
I took a quick look at it: [It seems that the internal minutes array gets filled in 5 minute steps](https://github.com/kuhnroyal/mat-datetimepicker/blob/a1d5c4b917e50292dc7b415da5f7ffded4a19308/projects/core/src/datetimepicker/clock.ts#L262-L292) (`i += 5`)