Eastern Balboa Championships 2009
Hey everyone! EBC 2009 is coming up, and I just wanted to let you know, for the first time in the 5 year history of the event, my wife will be joining me on the trip, and I couldn’t be more excited. This will be her first time to North Carolina and EBC.
- Her first EBC
- Her first BBQ Monday
- and of course, the first time meeting the North Carolineans I have grown so fondly of in the past five years.
I know she’s gonna have a blast! I can’t wait myself. From what I have heard through the grapevine, the recession will not have an impact on all the fun that EBC is.
I’ll be there, of couse, DJing, giving my talk, and causing a general raucous.
We’ll see you there.
Custom Field Hacks For WordPress
Custom fields are a great little thing. They allow you to easily customize your blog with only a little bit of code. Below is a succinct explanation on how to do it, courtesy wprecipes.com
Open your single.php file (You can also modify your index.php file) and paste the following code anywhere within the loop:
$customField = get_post_custom_values("mood"); if (isset($customField[0])) { echo "Mood: ".$customField[0];Save the file. Now when you’ll write a new post, just create a custom field named mood and type your current mood as a value.
