High quality fonts collection: 18 Manga and comic dialog fonts

Fonts
comments

manga and cartoon fontsThe fonts used in the comics and animation is completely different with other document types. Manga and comic fonts can show characters's emotions , sounds, actions ... We have now discovered 18 unique and refreshing cartoon and comic fonts for you to give your artwork and design that extra. Here are a few for sneak preview and the full list is right after the jump. Use an all-caps font for your main text, a handwritten font for small text, and a variety of different fonts for sound effects. One last word of advice: avoid Comic Sans at all costs (die-hard manga fans hate it above all else.)

Beautiful WordPress Themes for Female Blogs

Wordpress
3 comments

The concept of aesthetic sophistication of women than men so much, that's their privilege. For women, in my opinion, the design does not require too important to their blogs, what they concern is the color and layout content feminine or not? They do not care much to new technology, design style and new trend ....

Pinky Kupy

Pink Kupy 1.0. A 2 column, fixed width theme, widgets not supported unfortunately. Download Pinky Kupy

Pink Kupy

Pink Kupy

How to List most recent comments and recent post on your wordpress themes

PHP, Wordpress
26 comments

Installing too many plugins will make the wordpress blog work slowly and unstable, use code built in your theme will reduce the system resources.

Most recent post and comments

Most recent post and comments

I've known a ton of plugins and widgets that allows me to list recent comments and recent post on my WordPress blog but I'm not using it. Because I've integrated some useful code below then I get results similar to those extensions which I've known.

List most recent comments

<?php
  global $wpdb;
  $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type,comment_author_url, SUBSTRING(comment_content,1,30) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT 10";

  $comments = $wpdb->get_results($sql);
  $output = $pre_HTML;
  $output .= "\n<ul>";
  foreach ($comments as $comment) {
    $output .= "\n<li>".strip_tags($comment->comment_author) .":" . "<a href=\"" . get_permalink($comment->ID)."#comment-" . $comment->comment_ID . "\" title=\"on ".$comment->post_title . "\">" . strip_tags($comment->com_excerpt)."</a></li>";
  }
  $output .= "\n</ul>";
  $output .= $post_HTML;
  echo $output;
?>

Keyboard shortcut for Photoshop CS3 and CS4 Toolbox

Digest, How-to
8 comments

Keyboard shortcuts are typically an alternate means for invoking one or more commands that would otherwise be accessible only through a menu, a pointing device, different levels of a user interface, or via a command console. Keyboard shortcuts generally expedite common operations by reducing input sequences to a few keystrokes, hence the term "shortcut".

Photoshop Keyboard Shortcut Stickers

Photoshop Keyboard Shortcut Stickers

Adobe Photoshop CS3 is a huge program full of buttons and options that can be used for many different purposes. Keyboard shortcuts can improve your efficiency, and in some cases, they can even invoke commands that might not otherwise be available (e.g., zooming while a dialog box is open, or inserting a Select forward layer command into an action). Knowing keyboard shortcuts help you to be more efficient and work faster!

YUI – The Yahoo! User Interface Library

Javascript
1 comment

YUI Library

YUI Library

The YUI Library is a set of utilities and controls, written with JavaScript and CSS, for building richly interactive web applications using techniques such as DOM scripting, DHTML and AJAX. YUI is available under a BSD license and is free for all uses.
Development on YUI began in 2005 and Yahoo! properties such as My Yahoo! and the Yahoo! front page began using YUI in the summer of that year. In February 2006 YUI was released for public use under BSD. It is actively developed by a core team of Yahoo! engineers.
YUI is proven, scalable, fast, and robust. Built by frontend engineers at Yahoo! and contributors from around the world, it's an industrial-strength JavaScript library for professionals who love JavaScript.

There are currently two versions of YUI: YUI2 and YUI3. Both are proven, scalable, fast, and robust. The version of YUI that is best for you depends entirely on your needs and project requirements. The following provides some guidance on choosing between the versions of YUI.

Mastering Worpress [gallery] shortcode

How-to, Wordpress
1 comment

From WordPress 2.5, the Gallery feature allows the option to add an image gallery to a Post or Page on your WordPress blog.
Upload all your photos and simply type the shortcode [gallery in a post or page to display a thumbnail gallery of images attached to that post or page. Clicking on a thumbnail image will open either the original image or a larger image in a separate Attachment page.