Comment by danbord on Visual Studio 2017 - Git failed with a fatal error
After HOURS of struggling I finally found my solution here... Thanks a bunch! :D
View ArticleComment by danbord on How to prevent angular material mat-menu from closing?
doesn't seems to work well. Dates cannot be selected when you click on them
View ArticleComment by danbord on lodash implicit gives "_ is not a function" error
Thanks for commenting; but I'm trying to use lodash as in that article : mariusschulz.com/blog/implicit-function-chaining-in-lodash. I'll add the code in description then
View ArticleComment by danbord on How to add maxdate and mindate to mat-calendar in...
Thank you for that... much appreciated!
View ArticleComment by danbord on Cypress get element that a child contains
Thank you! I knew I was overthinking that :)
View ArticleComment by danbord on How to access nested store with dollar sign syntax
sad, would be a great addition in order to get organized
View ArticleComment by danbord on Using AudioBuffer as a source for a HTMLAudioElement?
Many thanks for that answer! Fixed my issue loading a OneDrive shared file into an HtmlAudioElement and bypass the CORS issue when using AudioContext on top of it
View ArticleComment by danbord on Svelte with rxjs Observable in object property
Well I'm using rxjs at some places because it's much more powerful than svelte stores for some operations. And rxjs is actually working fine with Svelte auto subscription. But the issue here is not...
View ArticleComment by danbord on Azure Functions Node.js typescript global variable
Yes but that doesn’t really help because I need to pass the context as a parameter. I’m looking for a way to access my token globally, without passing it along everywhere in my service layer and then...
View ArticleComment by danbord on Azure Functions Node.js typescript global variable
Thats not answering the question. The single jwt is stored on the client (like jwt is supposed to be). Then that code is in the backend side,I don't see where would be the security issue of storing the...
View ArticleComment by danbord on How to build a type from enum values in TypeScript?
really nice and clean, thanks
View ArticleComment by danbord on Azure Functions Node.js typescript global variable
Thanks, thats what my web digging ended up with too. Would've really liked to see a request scoped varible natively
View ArticleAzure Blob Metadata encoding
What is the correct way to encode the strings into the Azure Blob Metadata?When using Azure Storage Explorer, it seems to use a function close to C# UWPs WebUtiliy.UrlEncode. But unfortunately...
View ArticleOpacityMask missing in UWP
Any easy way to apply OpacityMask to a UI object in UWP XAML?I used to do that in WPF but appears to be missing in UWP.
View ArticleVS2017 opening .sln automatically opens same files
When I open my solution file with Visual Studio 2017 (ver 15.7.5) it always automatically opens the same 2 .cs files. How can I prevent that? Why does it opens those specific 2 files? No they're not...
View ArticleC# Object Initializer : Set Property from another one
I have the following object where in my constructor I add a new Guid as the Id.public class MyObject{ public MyObject() { Id = Guid.NewGuid().ToString(); } public String Id { get; set; } public String...
View ArticleAzure function multiple output binding Extensions error
I'm developing an Azure function through the portal,My function is an HttpTrigger with httpResponse.I add a TableStorage output binding and install its Extension (everything is fine).I add a SendGrid...
View Articlemat-menu sizing problem at 1033 pixels; truncates data
I'm in an Angular 7 project using Material Design and FlexLayoutI can't figure out why the mat-menu behaves like that : When my window is greater that 1032 pixel width the mat-menu does not size...
View ArticleAnswer by danbord for mat-menu sizing problem at 1033 pixels; truncates data
Finally found the problem. Its because my body had a fixed width of 980px and margin:0 auto (to make the website content centered).I ended up wrapping my inside a <div id="appContainer"> and...
View Article