KLoning Spoon

You need to get to ~/Library/Preferences/, you can get there with the Go to Folder (Command+Shift+G) option, or by the instructions below:

  • Open your Home directory
  • Open the “Library” folder
  • Find and open the “Preferences” folder

Once you are in the proper folder:

  • Locate “com.apple.LaunchServices.plist”
  • Rename “com.apple.LaunchServices.plist” to “com.apple.LaunchServices-backup.plist” or just relocate it elsewhere (you can delete it completely if you aren’t worried about backups)

Now the next time you use the “Open With” menu it will only include current applications in the list. You may need to log in and out of your user account for changes to take effect.

and here the part 2 of css3 image styles.

We’ll focus on user specific data, so what we’ll see is:

  1. How to add extra registration fields
  2. How to add and remove profile fields
  3. Export the user data
  4. Bulk export users data
  5. Create a web history of the user

custom fields provide an excellent way to add flexible content to your posts and pages. By assigning various types of content to different custom fields, you gain complete control over when, where, and how to display the associated information. For example, sub-headings may be displayed in the sidebar, footnotes may be consolidated into a single region, post images may be displayed before the post title, and so on. In this follow-up article, we will review the basics of custom fields and then jump into a few custom-field tips and tricks.

Custom Fields are a form of meta-data that allows you to store arbitrary information with each WordPress post. While this does not sound so powerful, it is the single most powerful component of WordPress posts and content types (aka post types). This meta-data is handled with key/value pairs. The key is a “name” which identifies the specific field thus it is a constant and should stay the same for all posts however you can use the same key multiple times within one post. The value is the information that will be displayed for the field when you call it in your WordPress theme thus it can change with each post.

iframe {
    width:100%;
    height:400px;
    frameborder:0;
    scrolling:no;
    marginheight:0;
    marginwidth:0;

  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;

  -moz-box-shadow: 4px 4px 14px #000;
  -webkit-box-shadow: 4px 4px 14px #000;
  box-shadow: 4px 4px 14px #000;
}

source: webdesign

Since text-decoration:blink is not supported in IE, Chrome, or Safari then i use jQuery Blink.

<?php if (function_exists('related_posts')) {related_posts(); }?>

If you are serious about blogging and want to expand your reach as far as possible, error codes will not help you. Use the if (function_exists) call when adding plugins to your WordPress theme… you’ll thank yourself if you ever run into trouble.

<?php
$comments = get_comments('status=approve&number=5');

if ($comments) {
    echo '<ul id="recent_comments">';

    foreach ($comments as $comment) {
        echo '<li><a href="'. get_permalink($comment->comment_post_ID).'#comment-'.$comment->comment_ID .'" title="'.$comment->comment_author .' | '.get_the_title($comment->comment_post_ID).'">' . get_avatar( $comment->comment_author_email, $img_w);
        echo '<span class="recent_comment_name">' . $comment->comment_author . ': </span>';
		$comment_string = $comment->comment_content;
		$comment_excerpt = substr($comment_string,0,100);

		echo $comment_excerpt;

		if (strlen($comment_excerpt) > 99){
			echo ' ...';
		}
        echo '</a></li>';
    }
    echo '</ul>';
}
else{
	echo '<ul id="recent_comments">
	          <li>No Comments Yet</li>
	      </ul>';
}
?>

identify geographical location of visitors from IP address