The Ultimate Nerd

InstilledBee's Programming Archive

Self-Hosting Azure Resources for Local Development

I have recently been getting involved into cloud app projects that require connecting into Azure resources. While it is very interesting to learn about Azure resources at work, there are also certain challenges during local development, such as:

Read more...

Working around ASP.NET MVC's Bundler ignoring file orders

I recently ran into an issue on a project, where ASP.NET MVC's bundler was failing to minify CSS files, showing this error message when navigating to the bundle's virtual path:

Read more...

Serialize a C# Object into an HTTP Query String

Sometimes you need to create a C# class that encapsulates a request parameter, say, for a REST API call.

Read more...