Telerik have are looking for users of Telerik’s Fiddler webproxy and debugging tool for beta testing of new features. To join their Insider Program and get early access to try and test their newest features click here.
SQL Server on Linux: A guide to re-platforming and modernizing your data workloads
The Physics of Productivity: Newton’s Laws of Getting Stuff Done
A nice segway if 3 easy things to improve your productivity. Objects in motion tend to stay in motion. Find a way to get started in less than 2 minutes. It’s not just about working hard, it’s also about working on the right things. You have a limited amount of force and where you apply […]
11 things I wish I could tell myself as a Junior Software Developer – Michael’s Coding Spot
I’d like to tell my junior self that in 10 years, there wasn’t a single bug I didn’t eventually solve one way or the other. Even bugs that seem extremely scary, are eventually conquered. — Read on michaelscodingspot.com/2019/01/10/11-things-i-wish-i-could-tell-myself-as-a-junior-software-developer/
So long Geeklog, and Thanks for All the Fish
Geeklog was a great CMS to start my professional blog with (many many many many years ago). Sadly Geeklog’s code doesn’t get enough love and updates to keep it modern, so the time has come to say So long Geeklog, and Thanks for All the Fish
Cannot install applications because the certificate for www.yyy.com is not valid
iOS 7.1 has changed the security requirements for installing over-the-air (OTA) / enterprise apps to require the .plist file to be delivered over https Cannot install applications because the certificate for www.example.com is not valid If you’re receiving the above error message when attempting to install your own iOS OTA / enterprise app, you’ll need […]
How to hide a property from a datasource when binding in ASP.Net design view
Creating your own custom classes for business objects and object datasources is a great way to provide and object model for databases. But some classes might contain properties that you don’t expect to show to end users when they are bound to a DataGrid, FormView or other databound control. Luckily there is an attribute that […]
Hadoop for .Net Developers
Just found a couple of great articles that lead you through the basics of using Hadoop in .Net. Understanding Hadoop Understanding Hadoop File System (HDFS) Programatically Loading Data into Hadoop File System (HDFS) Manually loading data into Hadoop File System (HDFS) Setting up a Hadoop development environment Here’s a full list of the articles […]
ASP.Net – Server operation is not available in this context – Using Server.MapPath in Global.asax
If you try to use the Server.MapPath() function in your global.asax file for ASP.Net you are likely to encounter this error: Server operation is not available in this context To use Server.MapPath() in global.asax instead use: System.Web.Hosting.HostingEnvironment.MapPath() More details about System.Web.Hosting.HostingEnvironment.MapPath() are available on MSDN
ASP.Net Tools to Test High CPU Load, High Memory and High Disk Usage
Often when testing the performance of a ASP.Net website you need to see how the site will perform under extreme conditions. This is easy to do in a virtual environment where you can reduce the number of CPUs or available RAM. But how do you test this on a physical box? Vijayshinva Karnure has written […]