Time Flies: Track When You Last Did Something

Time Flies iPhone App

Time Flies is a iPhone app used to keep track of how long it has been since you did something. Use it to keep track of the things you need to remember, the things you do too often, and all those things that you just don’t do often enough. I just installed this app and [...]

Ternary Operators Anyone?

While reading through the WordPress Coding Standards, I read some good advice to follow when using ternary operators. To keep things from getting confusing when using ternary operators, always have the statements test for true instead of false. // (if statement is true) ? (do this) : (if false, do this); $basketballteam = ( ‘lakers’ [...]

Do more faster: Escape the “one more thing” mentality

Matt Mullenweg recently posted an essay titled, 1.0 Is the Loneliest Number. If I were asked to sum the essay up in one sentence it would be, “Stop being such a perfectionist and show others what you have to offer already.” Or maybe “Break the ‘one more thing’ mentality and get the product out the [...]

Genesis Framework: List of Theme and Location Constants

Here is a partial list of Theme Name/Version Constants, Directory Location Constants, and URL Location Constants that are defined by the Genesis Framework by StudioPress. This list should be useful for child theme developers and can be used by simply echoing the constant, e.g. <?php echo CHILD_URL; ?> would output http://www.joshstauffer.com/wp-content/themes/prose. For a complete list [...]