Web Debugging Tips

Web Debugging Tips

Web developers often struggle with the ability to debug their code and see what is causing elements to look out of place. In one of our previous articles we looked at the best browser for web development, and in this article we will look at how you can use one of...
Browsers to use for Web Development

Browsers to use for Web Development

One of the biggest challenges web developers have is making sure their website works on multiple different browsers, screen sizes and devices. You can ask yourself why are browsers so different and why do you sometimes need to open up Chrome when booking an...
What are Cloud Platforms

What are Cloud Platforms

Cloud platforms are quickly becoming extremely popular and great ways to host your brand new applications. A cloud platform refers to the combination of both software and infrastructure in an internet based data center. The most common platforms at the moment are AWS,...
C# string Vs StringBuilder

C# string Vs StringBuilder

In C# String builder is used to represent a mutable string of characters. Mutable means a string that can be changed. So string objects are immutable and String Builder objects are mutable.  In practice what this means is that when you make a change to a string object...