Apple is so stupid

So I jailbreak my new iPhone 4 so I can install the netflix iPad app on it; and what do you know the very next day; netflix releases their iPhone app..

Blah… What’s up Netflix? I thought you’d have the iPad and iPhone app out the same day.. Is it an ATT issue? Probably…

WordPress Ping List

http://api.moreover.com/RPC2
http://bblog.com/ping.php
http://blogsearch.google.com/ping/RPC2
http://ping.weblogalot.com/rpc.php
http://ping.feedburner.com
http://ping.syndic8.com/xmlrpc.php
http://ping.bloggers.jp/rpc/
http://rpc.pingomatic.com/
http://rpc.weblogs.com/RPC2
http://rpc.technorati.com/rpc/ping
http://topicexchange.com/RPC2
http://www.blogpeople.net/servlet/weblogUpdates
http://xping.pubsub.com/ping
…just drop this in the writing section and you’re good to go.  Thanks Vladimir!!

List posts from the same category on single sidebar

Seems people actually read this blog; so thought I’d pass this along – How to list posts that are in the same category when you are on a single.php page…

<?php if ( is_category() ) {
global $wp_query;
$current_cat_id = $wp_query->get_queried_object_id(); ?>
<div id="category-posts-<?php echo $current_cat_id; ?>" class="widget widget_recent_entries">
<div class="widget-title"><h3><?php single_cat_title('Recently in '); ?>:</h3></div>
<div class="widget-content">
<ul>
<?php global $post; $cat_posts = get_posts('numberposts=10&category='.$current_cat_id);
foreach($cat_posts as $post) : ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
</div>
<?php } ?>

This blog’s turning out to be a quick reference wiki for code – wow…

flash…

so I’m using a user uploadable flash animation … either sequence or random order. ..  you can use this on your twentyten theme as a flash animation…  just the same as the header image; only flash .. we lost individual page interactivity; but it’ll be back soon

drop me a note; I’ll help you set it up.