Life Has 3 Guarantees - Death, Taxes And Change In The Tech World
I have been in this business since 1990 and have seen many changes. Among the most well known were the advent of Windows 95 and the dawn of the internet age. There have also been some other changes that have impacted on my business. Here I will highlight a few of them.
C#
Friday, January 31, 2014
Friday, October 25, 2013
Thursday, October 24, 2013
One Step Solution to Maximize Your Online Brand Presence
Developing and supporting your online presence involves many variables and let's read on to understand how could it be made simpler, easier yet sophisticated.
ONE POWERFUL TECHNOLOGY
ONE POWERFUL TECHNOLOGY
Friday, September 13, 2013
Great Opportunity For a Senior WPF/C# Developer
Gayle Manufacturing Company (GMC) is seeking a senior WPF/C# developer with 3+ years' of development experience to join the GMC IT Team that is developing a WPF application to replace our current Windows Forms material requirements planning (MRP) system. The MRP system manages all aspects of GMC's daily operations including but not limited to Project Management, Drawing Management, Material Procurement, Product Manufacturing, and Shippingwhose experience, creativity, and passion for WPF are demonstrated by their work product. Additionally, the candidate will have the ability to effectively interact and communicate with non-programmer company employees.
The candidate must have the following experience:
The candidate must have the following experience:
Great Opportunity For a Senior WPF/C# Developer
Gayle Manufacturing Company (GMC) is seeking a senior WPF/C# developer with 3+ years' of development experience to join the GMC IT Team that is developing a WPF application to replace our current Windows Forms material requirements planning (MRP) system. The MRP system manages all aspects of GMC's daily operations including but not limited to Project Management, Drawing Management, Material Procurement, Product Manufacturing, and Shippingwhose experience, creativity, and passion for WPF are demonstrated by their work product. Additionally, the candidate will have the ability to effectively interact and communicate with non-programmer company employees.
The candidate must have the following experience:
The candidate must have the following experience:
Saturday, July 6, 2013
Gray code incrementing
Hi, I am working on a program that uses an array of integers(1 and 0) to represent a gray code. For this to work I first have to take an integer and convert it to the binary, then convert the binary to gray code. The for loops i use to do this are shown below.
//Calculate Next State
my_timer_UI32++;
for(i = 0; i < SIZE; i ++){ //Decimal to binary conversion
graycode_I16[SIZE-1-i] = (int)((my_timer_UI32 >> i) & 1);
}
for(i = SIZE-1; i > 0; i --){ //binary to gray code
graycode_I16[i] = graycode_I16[i] ^ graycode_I16[i - 1];
}
My problem with this is that this graycode holds time in milliseconds so inorder to increment this I have to increment the decimal time in ms, then convert to binary, then convert to graycode again and this is taking far more time than I would like. So my question is, would it be possible to increment graycode_I16 to so that it would increment the ms by 1? Hopefully this is detailed enough, if you need more details let me know.
Thanks! - Full Post
//Calculate Next State
my_timer_UI32++;
for(i = 0; i < SIZE; i ++){ //Decimal to binary conversion
graycode_I16[SIZE-1-i] = (int)((my_timer_UI32 >> i) & 1);
}
for(i = SIZE-1; i > 0; i --){ //binary to gray code
graycode_I16[i] = graycode_I16[i] ^ graycode_I16[i - 1];
}
My problem with this is that this graycode holds time in milliseconds so inorder to increment this I have to increment the decimal time in ms, then convert to binary, then convert to graycode again and this is taking far more time than I would like. So my question is, would it be possible to increment graycode_I16 to so that it would increment the ms by 1? Hopefully this is detailed enough, if you need more details let me know.
Thanks! - Full Post
Subscribe to:
Posts (Atom)