My Mind..
13 years ago
General
Know that I don't always know what I'm going to say. Games, Entertainment, Self, Weather, Politics, Events, History, Philosophy, all are fair game and any are free without the waring eyes of family or work.
main()
{
int factorA, factorB, factorC;
bool factorD;
int decision;
<!-- What am I doing *RIGHT NOW* and how much attention can I take away from it? -->
factorA = whatsgoingonrightnow();
<!-- Is something happening that is putting me, or another, or a group, off task? Why? How far should we be? Does it really matter? -->
factorB = whereshouldwebe();
<!-- Who's all being impacted and in what ways? What's really going to happen if something changes, or doesn't change? -->
factorC = whosallimpacted();
<!--Some times factorD is a false positive, I feel I must act but in truth it is premature or I simply missed some details. Other times I'm delt a card that causes me into action! -->
factorD = mustIactnow();
if(factorD == false)
{
decision = 4;
}else{
if(factorA >= factorB)
decision = 1;
else if(factorA >= factorC)
decision = 2;
else if(factorC >= factorB)
decision = 3;
else
decision = 0;
}
switch(decision)
{
1: print("Blah");
2: print("Blah");
3: print("Blah");
4: print("Sill Thinking, Act Later.");
else: die("Don't give a shit.");
}
}
<!--A simplified version of how my mind works, subconsciously I take in all the variables I can and process them in order of importance. I see anything from the best case scenario to the worst case scenario. I list out my options and what I'm prepared to execute if necessary, all before most people comprehend what's happening.-->
{
int factorA, factorB, factorC;
bool factorD;
int decision;
<!-- What am I doing *RIGHT NOW* and how much attention can I take away from it? -->
factorA = whatsgoingonrightnow();
<!-- Is something happening that is putting me, or another, or a group, off task? Why? How far should we be? Does it really matter? -->
factorB = whereshouldwebe();
<!-- Who's all being impacted and in what ways? What's really going to happen if something changes, or doesn't change? -->
factorC = whosallimpacted();
<!--Some times factorD is a false positive, I feel I must act but in truth it is premature or I simply missed some details. Other times I'm delt a card that causes me into action! -->
factorD = mustIactnow();
if(factorD == false)
{
decision = 4;
}else{
if(factorA >= factorB)
decision = 1;
else if(factorA >= factorC)
decision = 2;
else if(factorC >= factorB)
decision = 3;
else
decision = 0;
}
switch(decision)
{
1: print("Blah");
2: print("Blah");
3: print("Blah");
4: print("Sill Thinking, Act Later.");
else: die("Don't give a shit.");
}
}
<!--A simplified version of how my mind works, subconsciously I take in all the variables I can and process them in order of importance. I see anything from the best case scenario to the worst case scenario. I list out my options and what I'm prepared to execute if necessary, all before most people comprehend what's happening.-->
FA+
