Car Price Prediction/Analysis – Machine learning

Problem A new car manufacturing company (name confidential) decided to enter the US car market. They needed to set up a car manufacturing unit in the US so vehicles could be produced locally and sold at a competitive price in the US market. They needed to understand the factors on Continue Reading

REST API with Azure function (serverless applications) – Part 1

Azure Functions is a serverless “Compute-on-demand” solution provided by Microsoft. Azure functions allow you to write a small code that can run on an Azure environment without worrying about infrastructure maintenance and saving you cost. Azure functions use trigger-based in a specific event. We will use a trigger event based Continue Reading

High-performance GP-GPU programming in C#

How to write hundreds of times faster programme using GPU? In 2007, Nvidia released CUDA (Compute Unified Device Architecture) and made GPU accessible for general and bi-direction computing. It allowed developers to access hundreds of GPU core’s substantial computational power and write a high-speed general-purpose program for specific tasks. CUDA Continue Reading

Write secure C# code as per OWASP recommendations?

Every year OWASP updates their top 10 recommendations. These are the top 10 recommendations from OWASP. If you want to read them in detail, please check their OWASP website. OWASP top 10 Injection Broken Authentication Sensitive Data Exposure XML External Entities (XXE) Broken Access Control Security Misconfiguration Cross-Site Scripting (XSS) Continue Reading

How to validate C# code against OWASP recommendations

How to analyse your code for OWASP vulnerability? Last year, a friend of mine asked how he can make sure that his team follows the OWASP recommendations. Is there a way to find out the code’s vulnerability before the code goes to production? Before I talk about achieving this, let’s Continue Reading