New Cell Phone!

Tonight Joe and I upgraded our cell phones. We bought got LG Xenons (black) and we also upgraded to finally add a data plan.

It’s awesome! We last tried a data plan about 5 years ago. Wow, what a difference. Back then it took almost several minutes to connect to a website. It so wasn’t worth it. I can now browse the web anywhere!

The phones are really nice so far. They have touch screens and a pull-out keyboard. They were $50 each for upgrades, so not too pricey. I ordered a hot pink case (shell) for mine. I was torn between that color and lime green.

Draco Helping Me Take Photos

dracobook

New Domain

No matter how many domains I own, I still get a kick out of purchasing a new one and seeing my new URL.

Today I bought mythical-creatures.net. I keep saying that if I just had more content on mysticalcreatures.org, I could make a good bit of money off ads and things on there. But I just don’t have the energy for the type of content I want on there. I want to do it as if it were a textbook from a Harry Potter type world where mythical creatures are real and I want to use my own artwork. This is going to take awhile to do. I’ve had some ideas though for some other things I’d like to do with it and that’s where the new domain comes in. I’m still not sure what I’m going to do exactly, but I want to have a blog and reviews of books and things. And I’m hoping to make a little bit of money off it. It will be an experiment in monetization for me. Plus new domain = fun.

BTW, oceanbreeze.net was 10 years old in April. Wow. Wavesoflife will be 10 in October.

WordPress To-Do List Plugin

I didn’t write this plugin, only modified it to display correctly in WordPress 2.7+. I use it on most of my own WordPress-powered sites to keep track of things I want to do/need to fix on the site. Since the original is no longer available, I decided to post it here.

The plugin was originally from Abstract Dimensions (site no longer available) and I used the patch to display the list in the dashboard by WordPress by Example. They also have a modifed to-do list plugin that uses roles and has functions to display in the sidebar. I haven’t tried it since I don’t need those functions, but I’m assuming it also has some display issues in 2.7+.

Place the file admin_todo.php in the plugins directory (not in a subdirectory, as that may cause problems). It will display a widget on the dashboard and as a menu item under Tools.

** Updated 01/03/2010 with a few minor cosmetic changes **

** Updated 01/24/2010: I have moved the plugin to a new location and made some more changes **

Visit the new page to download the To-Do List Plugin

denying reality

I decided to use WordPress instead of Chyrp to run my online journal. The journal, denying reality, doesn’t have the content added yet. It’s members-only: you have to register and then I have to approve your account.

I used a different color verison of the last layout I had for there. I’m still working on getting it finished, then I have to import all of my old entries (by hand).

I wanted to get a structure for the archives similar to what I had on there before. This wasn’t easy, as the default archives look nothing like that. I found some code to get archives for a specific year, but I also wanted to get it for specific months too so I added a statement to do that (this goes into your functions.php file).

<?php
function getarchives_filter($where, $args) {
	if (isset($args['year'])) {
		$where .= ' AND YEAR(post_date) = ' . intval($args['year']);
	}
	if (isset($args['month'])) {
		$here .= ' AND MONTH(post_date) = ' . intval($args['month']);
	}
	return $where;
}

add_filter('getarchives_where', 'getarchives_filter', 10, 2);
?>

Then you use the template tag like this:

<?php wp_get_archives('type=daily&month='.get_the_time('m').'&year=' . get_the_time('Y')); ?>

My next problem was how to format the archives to look like I wanted them for the monthly archives. The solution was simple, but I didn’t realize it till I read it in the comments section on someone’s blog. To replace core functions, you can just copy that function to functions.php in your theme, change the function name, and call it in your template using it’s new name.

Strawberry-Banana Smoothie

I got this recipe from sparkpeople.com in a newsletter a few months ago. We finally got around to making it last night. I really really loved it. We went with the milk rather than the orange juice.

INGREDIENTS

  • 1 cup nonfat vanilla yogurt
  • 1/2 cup frozen strawberries
  • 1/2 cup orange juice or skim milk
  • 1 banana, sliced

DIRECTIONS
1. Place all ingredients in a blender and blend until smooth.

NUTRITION INFO
Calories: 221
Fat: 0.6 g
Carbohydrates: 34 g
Protein: 2 g