The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
37 views

Monkey testing a SmartCard library

My definition of monkey testing is basically playing with a program in as if I was a monkey (press every button, unplug things, go in the wrong order..etc etc) So I made a rather simple SmartCard ...
1
vote
0answers
58 views

android save different state

i have an issue regarding saving different state for the same configuration. to be more explicit see my code below: 1) MainActivity public class MainActivity extends Activity { @Override ...
5
votes
0answers
177 views

Usage of state machine to model lifetime of an IP address

I need to model an IP address and thought using a state machine (the state_machine gem) would be a good idea. An IP has the following characteristics: It is assigned to a server. It can be in ...
2
votes
2answers
157 views

Using Booleans to Manage State

I'm in the middle of writing my own little bullet shooter game much in the style of Touhou. Everything works fine so far but I'm disliking certain aspects of my code. Take this function for showing ...