This blog post continues the previous blog on the ODP (Optimizely Data Platform) implementation. ODP by default provides a lot of tracking events. You can explore these by going to Settings -> Objects & Fields However, you can create your…
If you are like me and have a hard time wrapping your head around arrays in C, let me be your guide. Let’s discuss Arrays in C#. What are Arrays in C#? An Array is a way of storing values…
In C#, string formatting is like combining different things such as strings, values, and expressions to create a cool formatted string. It’s like setting up a template with placeholders that will be replaced with actual values when your code runs….
While working on your projects, you will often find many ignore files and directories (like .env or any other local environment secrets, .vscode or any different IDE configurations, .DS_store MacOS related, .eslintrc, .csslintrc, node_modules/ and the list goes on )…
If you’re a developer working with ASP.NET, you’ve likely heard the term “middleware” thrown around quite a bit. But what exactly is it, and why is it so important? Put simply, middleware in ASP.NET is a crucial software component that…
In C#, the Switch statement is the type of control flow statement to compare a single expression with multiple values. If a value matches the test expression, then the specific block of code is executed. If the case does not…
Sometimes you need to use a module before you are ready to publish a new version of it or you are working around different files of different repositories that are dependent on each other to see the actual change made….
A lot of times you come across an error “Server Error in ‘/’ Application” while working on an ASP.NET application. This is a generic error and it occurs when code throws an unhandled exception occurs in an ASP.NET application. Resolution…
Azure blob storage is Microsoft’s offering to store unstructured object data. This data can be files, images, videos or documents etc. Azure blob storage can serve these images and documents directly through the browser which makes Azure Blob storage a…
In NPM projects you have seen the package.json file. This file is an NPM Configuration file. This file function is similar to package.config where you have a list of all NuGet packages to restore. Similarly, this file contains the list…