Agile Manifesto

http://agilemanifesto.org/ We are uncovering better ways of developingsoftware by doing it and helping others do it.Through this work we have come to value: Individuals and interactions over processes and toolsWorking software over comprehensive documentationCustomer collaboration over contract negotiationResponding to change over following a plan Principles behind the Agile Manifesto http://agilemanifesto.org/principles.html We follow these principles: Our highest priority is to... » read more

Prep Images for Web

If you upload very large images to your website, your website will slow down when those images are viewed by your visitors. The solution is to learn how to optimise (trim images down to size) before you upload them. Preparing images involves reducing the physical size and file size, while still leaving the images looking... » read more

Why Attitude Is More Important Than IQ

https://www.forbes.com/sites/travisbradberry/2016/01/19/why-attitude-is-more-important-than-iq/#563ce3b43bd0 People’s core attitudes fall into one of two categories: a fixed mindset or a growth mindset. With a fixed mindset, you believe you are who you are and you cannot change. This creates problems when you’re challenged because anything that appears to be more than you can handle is bound to make you feel... » read more

DYMO LabelWriter 450

Printer for printing labels and barcode. http://www.dymo.com/en-US/label-makers-and-label-printers/home-office-label-makers-and-label-printers/labelwriter-450-label-printer https://www.dymo.com/label-makers-printers/labelwriter-label-printers/dymo-labelwriter-450-direct-thermal-label-printer/SAP_1752264.html

DYMO.Label.Framework Reference Not Found

Problem: DYMO.Label.Framework reference not found. Solutions: Download and install latest DLS at http://developers.dymo.com/category/dymo-label-framework/ and re-link DYMO.Label.Framework to C:\Program Files (x86)\DYMO\DYMO Label Software\Framework.net4\DYMO.Label.Framework.dll Information: The latest release of DLS is now available for customers that have been experiencing issues with the previous 8.6 release. Issues fixed in 8.6.1 include: Print Quality issues with a variety of... » read more

Using AZCopy to Transfer Azure Blob Data

AzCopy is a command-line utility designed for copying data to/from Microsoft Azure Blob, File, and Table storage, using simple commands designed for optimal performance. You can copy data between a file system and a storage account, or between storage accounts. Download all blobs in a container AzCopy /Source:https://myaccount.blob.core.windows.net/mycontainer /Dest:C:\myfolder /SourceKey:key /S Download a file Download... » read more

C# MultiThreading and Lock

When working with a multithreading application it is very important for developers to handle multiple threads for a critical section of code. Monitor and lock is the way to provide thread safety in a multithreaded application in C#. Both provide a mechanism to ensure that only one thread is executing code at the same time... » read more