if ("post".equals(args[0])) {
DateTime now = new DateTime();
log.debug(String.format("Posting twit at ...", now));
twitsDao.postTwit(args[1], now, args[2]);
Twit t = twitsDao.getTwit(args[1], now);
usersDao.incTweetCount(args[1]);
System.out.println("Successfully posted " + t);
}
if ("list".equals(args[0])) {
List<Twit> twits = twitsDao.list(args[1]);