Docker doesn’t have to be complicated to start playing with. Matter of fact you can play with it any Visual Studio project you have. I have this quick video to […]
Jibber Jabber
Be aware about SecurityProtocolType while creating request from code
If you are using code-behind to create a HttpWebRequest like var request = (HttpWebRequest)WebRequest.Create(Url); and then trying to use that request to get the WebResponse like var response = (HttpWebResponse)request.GetResponse(); […]
Want a cookie for you or foreach of you?
Ran into a weird cookie issue HttpWebRequest cookies are disabled for security by default. You need to enable it. Now if you want to add cookies from your current request, […]
Learn from failure. Fail quick and fail fast.
I know when I was learning to walk, I fell many times. So many times that it was ok to fall down and it was neither good or bad. It […]