Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
6answers
11k views

How to make a char string from a C macro's value?

For example, how to avoid writing the 'func_name' twice? #ifndef TEST_FUN # define TEST_FUN func_name # define TEST_FUN_NAME "func_name" #endif I'd like to follow the Single Point of Truth rule. ...
4
votes
3answers
188 views

What sort of workloads would be appropriate for use on Amazon EC2 Spot Instances?

Amazon just announced "Spot Instances" for their EC2 based infrastructure. I was wondering what sort of workloads would be appropriate for such service? Spot Instances enable you to bid for ...
0
votes
1answer
54 views

EC2 volume: how do I set it so that it WILL delete on termination?

I have an EC2 instance that I'd like to take a snapshot of, to use as an AMI for future spot instances. Because of the way I created volume for this instance, it is currently set to not delete upon ...
0
votes
2answers
87 views

Find an empty spot on a 3x3 Silverlight Grid

Well, I have been trying to figure this one out for three days straight and I still haven't come up with a fix. Basically I am trying to swap out the clicked Ellipse with the only empty spot on a 3x3 ...
0
votes
1answer
103 views

Best way to reuse a dialog in WPF?

I have a WPF dialog with a couple user controls and some other standard controls. We have many uses for this dialog with specific tweaks. Right now this dialog manages all of the logic to tweak ...