Archives for Software Dev - Page 41
Web.Config connection strings in production environment
When you are ready to deploy your app to production, you want to ensure that your connection string does not contain plain text (this should be true for both INTRANET…
A restricted backswing–the key to consistency
How many times have you had a spectacular round of golf followed by a ‘not so spectacular’ one? Or a birdie hole followed by a double bogey? Most beginners share…
Windows Server–Adding Roles and Features Hangs
This seems to be a common occurrence. The workaround I have found invovles Powershell . Simply Export the Configuration Settings – into say c:\ Run the following command in a…
PC cleanup
Iolo System Mechanic – Comprehensive, License fee required – $39 SlimWare Utilities SlimCleaner Run Geekbench Score to check if performance truly improved after running these tools.
How to handle an unresponsive IIS web application
SYMPTOMS – IIS is using up a lot of memory – resulting in a slowing down of request processing. Both – single request processing - as well as throughput (number…
GoDaddy Removes Ticketing and Email Support
GoDaddy’s media representatives and asked why the options were removed and why they weren’t more forthcoming about the changes. Nick Fuller, a GoDaddy representative explained that email consistently finished last…
GoDaddy Removes Ticketing and Email Support
GoDaddy’s media representatives and asked why the options were removed and why they weren’t more forthcoming about the changes. Nick Fuller, a GoDaddy representative explained that email consistently finished last…
Using Git with Visual Studio 2013
All I wanted to do was look at some sample source code within a GIT ; For this, the repository exposes a Git URL . This URL is all that…
Multiple FROM statements in a LINQ expression
Multiple "from" statements are like nested foreach statements. MSDN example: var scoreQuery = from student in students from score in ; where score > 90 select new {…
FindAsync with non-primary key value
var foos = await (x => == userId).ToListAsync();
