Posted in Uncategorized on January 15th, 2012 by admin – Be the first to comment
On Friday, I had my first cup of coffee since March 15, 2004. Starbucks was giving away samples and so I succommed to trying all three – it was good! (I preferred the Blonde brew the best)
Posted in Uncategorized on January 12th, 2012 by admin – Be the first to comment
Most of my old printed transcriptions were done in SuperPaint, now a long defunct graphics program for the Mac. Every now and then I want one of those old charts and need SuperPaint to open them. Fortunately, I still have a Mac that can run it. Once open, I can save the file as a TIFF which I can then import into a more modern program to export as PDF. Meanwhile, all the photo copies I made and original laser prints still look fine – technology changes fast, paper not so much. So if you want a document to last, print it!
Posted in Uncategorized on January 9th, 2012 by admin – Be the first to comment
Not sure what's up with the noticeable drop in battery life for my iPhone 4S compared to my "old" iPhone 4, but I suspect it might have to do with Siri and the other Location Services. So I'm turning Location Services off to see if that makes any difference. I'll be heading over to the Apple Store soon to talk with them about it too.
Posted in Uncategorized on January 8th, 2012 by admin – Be the first to comment

OAKLAND
Saturday, February 4, 8:00 – 10:00 PM
Cosmo's Jazz Spot
4609 Shattuck Ave.
Oakland CA
Website: cosmosjazzspot.com
SANTA ROSA
Thursday, February 23, 7:30-9:30 PM
Gaia's Garden Vegetarian Restaurant
1899 Mendocino Ave
Santa Rosa CA
Website: gaiasgardenonline.com

Ricardo Peixoto, guitar
Jean-Michel Hure, guitar
Bob Afifi, flute
Kendrick Freeman, drums
Chuck Sher, bass
Website: shermusic.com/owb
Posted in Uncategorized on December 26th, 2011 by admin – Be the first to comment
The link for the iTunes Store (https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/buyLandingPage ) on http://www.apple.com/itunes/gifts/ doesn't work on the iPad and iPhone – just spits up code. Tried to make it work several times yesterday, but no luck. Finally gave up and went to Amazon. Still down today, so just showed the bug to a guy at the Apple Store and he said iTunes is its own department and there's nothing they can do. Perfect.

Posted in Uncategorized on December 24th, 2011 by admin – Be the first to comment
Thanks to the tip from konstruktors.com this is how I was able to remove the 'View all posts filed under' line which hovers over the link categories. It's not included on their page, but since it's a php file, you need to have start and close tags. Here's my mod:
<?php
add_filter('wp_list_categories', 'remove_category_link_prefix');
function remove_category_link_prefix($output) {
return str_replace('View all posts filed under ', ", $output);
}
?>
Posted in Uncategorized on December 24th, 2011 by admin – Be the first to comment
I wanted to put the category list in the sidebar, so here's my hack.
<?php
/**
* Template for category archives
*
* @package WordPress
* @subpackage Minimatica
* @since Minimatica 1.0
*/
get_header(); ?>
<?php if( ( 'gallery' == minimatica_get_option( 'category_view' ) ) && ( get_query_var( 'cat' ) != minimatica_get_option( 'blog_category' ) ) ) : ?>
<div id="slider">
<?php get_template_part( 'loop', 'slider' ); ?>
</div><!– #slider –>
<?php else : ?>
<div>
<h1><?php single_cat_title(); ?></h1>
</div><!– .title-container –>
<div id="container">
<?php get_template_part( 'loop', 'category' ); ?>
<?php
echo "Galleries";
wp_list_categories('title_li='); ?>
<?php get_sidebar(); ?>
<div></div>
</div><!– #container –>
<?php endif; ?>
<?php get_footer(); ?>
<*> Because it's in the sidebar the list shows with bullets. To remove the bullets, I added list-style: none; to the #container part of the style.css file.
#container {
width:940px;
margin:0 auto;
margin-bottom:20px;
border-bottom:#CCC 1px solid;
list-style: none;
}
Posted in Uncategorized on December 21st, 2011 by admin – Be the first to comment
Another thing I changed to make the Minimatica theme blog view more to my liking was simply to change the pages count so that more images would show before having to go to a new page. The default WordPress setting is 10. I changed it to 20.
Posted in Uncategorized on December 20th, 2011 by admin – Be the first to comment
I love the Minimatica theme by onedesigns.com (thanks Daniel!) . There were a few things I changed to suit my tastes better, one of which was to the loop.php file. For example, I didn't need the folded, author, time-date stamp biz which hovers over the thumbnails in the blog view – so here's my mod:
<?php
/**
* The Main Loop
*
* Used as fallback if no specific loop file found
*
* @package WordPress
* @subpackage Minimatica
* @since Minimatica 1.0
*/
?>
<?php if( have_posts() ) : ?>
<div id="content" role="main">
<?php while( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header>
<?php if( has_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">
<?php the_post_thumbnail( 'homepage-thumb' ); ?>
</a>
<?php endif; ?>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<!– .entry-meta –>
</header><!– .entry-header –>
<section>
<?php the_excerpt(); ?>
</section><!– .entry-summary –>
<footer>
</footer><!– entry-footer –>
</article><!– .post –>
<?php endwhile; ?>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div id="posts-nav">
<div><?php next_posts_link( '← ' . __( 'Older Posts', 'minimatica' ) ); ?></div>
<div><?php previous_posts_link( __( 'Newer Posts', 'minimatica' ) . ' →' ); ?></div>
<div></div>
</div><!– #nav-above –>
<?php endif; ?>
</div><!– #content –>
<?php else : ?>
<div id="content">
<div id="post-0" <?php post_class(); ?>>
<div>
<p><?php _e( 'The content you were looking for could not be found.', 'minimatica' ); ?></p>
<?php get_search_form(); ?>
</div><!– .entry-content –>
</div><!– .post –>
</div><!– #content –>
<?php endif; ?>
Posted in Uncategorized on December 12th, 2011 by admin – Be the first to comment
<script type="text/javascript"> var YWPParams = { theme: "silver", autoadvance: false }; </script>
<script type="text/javascript" src="http://webplayer.yahooapis.com/player.js"></script>