What's the right way, on Visual Studio, to call an external web service, without WSDL, ASMX or adding a web reference? Solution: make a C# SOAP request!
This tutorial will guide you through the complete lifecycle of a Subversion branch, full of examples and screens, including how to resolve conflicts.
How to create your very first Play Framework application
A code example in C# to exchange images through the internet using an XML payload. Convert your byte[] image to a text representation like base64.
Code examples in C# about converting byte[] to base64 and SQL Server's varbinary. This allows you to save images to your DB and get them back again.
This tutorial explains how you can use VisualStudio's build configurations to compile differently for separate clients. Refactor your code using #if syntax.
If you deployed your app to heroku you probably ended up with a weird URL. You can rename your app, but it's even better to use your own custom domain.
We chose Cypress to automate our E2E tests. I've extracted the best bits of our test repository into this cypress template. No need to start from scratch.
Maybe your page under test that behaves differently based on a config. You can use JS inheritance to avoid duplicated code on PageObjects with Cypress.
I use Selenium for most of my automated checks and PageObjects is a must. With Cypress they recommend AppActions. This is a benchmark between both patterns.