Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~558 People Reached
About Me

30 years software projects development & management

Favorite Tags
c x 2
Member Avatar for ponedelnik

In one of my applications, I had to toggle the background of a box between two colors, say blue and red. As I like to store an information in only one place, I decided that this place would be the box itself and that I would check the current color …

Member Avatar for ponedelnik
0
161
Member Avatar for ponedelnik

I suppose I did what most of the people here did : looking for a good idea on the web and stepping into a community of nice people, which deserves a bit of my attention, and perhaps more... I live in France, where I was employed by an American computer …

Member Avatar for deceptikon
0
158
Member Avatar for ponedelnik

// Shortest function to convert an ascii hex digit to binary // (assumes a valid hex digit 0-9, A-F, a-f) char asciihex2bin(char ascii) { if (ascii > 0x40) ascii += 9; return (ascii & 0x0F); }

Member Avatar for ponedelnik
0
239