Sort of like "Being John Malkovich," but for my own head.
Freecell used to be hard. At least I *think* it used to be hard. I installed a Windows Vista box the other day and ecided to give the classic game a whirl. 14 straight wins, no losses. Did they intorduce a heuristic to make the boards easier or something? ![]()
So, in the words of Willow: "Bored now."

public class xkcdTest {
public int[] costs = {215, 275, 335, 355, 420, 580};
public String[] descriptions = {"mixed fruit","french fries","side salad","hot wings","mozzarella sticks","sampler plate"};
public static class costContainer {
int cost = 0;
String costs = "";
public String toString () {
return (cost +":"+ costs);
}
}
public void findCost (costContainer currentCost) {
//test for goal state
if (currentCost.cost == 1505) {
System.out.println(currentCost);
}
//terminate this branch
if (currentCost.cost > 1505) {
return;
}
//iterate and try next
for (int i = 0; i < costs.length ; i++) {
costContainer tmp = new costContainer();
tmp.cost = currentCost.cost + costs[i];
tmp.costs = currentCost.costs + ", " + descriptions[i];
findCost(tmp);
}
}
public static void main (String[] strings) {
System.out.println("foo");
costContainer c = new costContainer();
xkcdTest xTest = new xkcdTest();
xTest.findCost(c);
}
}
The problem is that there are all kinds of Gurus and books out there which claim to make somebody a better "whatever" without ever once touching on what makes a better human being in the first place.
What makes a better human being? Well the lessons are not new and have been written down thousands of years ago.
Be less selfish, be more humble, help others, be kind, share more, take care of others etc. The golden rule more or less.
Large companies instead of sending their staff to certification classes or management seminars should send their employees to become better human beings. This may mean yoga classes, budhist seminars, philosophy classes or something.