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

C# Multi-dimension Array

// Two-dimensional array. int[,] array2D = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } }; // A similar array with string elements. string[,] array2Db = new string[3, 2] { { "one", "two" }, { "three", "four" }, { "five", "six" } }; // Three-dimensional... » read more