Adsense

Translate it to ur language

Monday, May 10, 2010

10 sites developers should have in their bookmarks

 
 

Sent to you by Tamo, TJ, Tom, Bose via Google Reader:

 
 

via CatsWhoCode.com by Jean-Baptiste Jung on 5/8/10

Mysql Format Date

MySQL Format Date helps you to format your dates using the MySQL DATE_FORMAT function. Just select a common date format and then change it to your suit your needs. The MySQL DATE_FORMAT code will be generated at the bottom of the page which you can then copy into your query.
Visit site: http://www.mysqlformatdate.com

Script Src

Are you tired of hunting the Internet in order to find the script tag for the latest version of the Javascript library of your choice? ScriptSrc.net has compiled all the latest versions of jQuery, Mootools, Prototype and more in a single page which lets you copy it in your browser clipboard with a single click.

Visit site: http://scriptsrc.net

Em Chart

I never been a fan of ems in CSS files, but sometimes you have to deal with it. In that case, Em chart will translate ems to pixels so you'll save time and hassle.

Visit site: http://aloestudios.com/tools/emchart

Twitter API Explorer

If you're using the Twitter API in the site you build, you'll for sure enjoy this very handy website which allow you to search through the Twitter API. Even better, the website can generate ready-to-use code snippets. A real time gain for you and your clients!

Visit site: http://twitapi.com/explore

Browser Sandbox

Cross browser compatibility is definitely one of the biggest problems a web developer has to face in his daily job. The browser sandbox lets you run any Windows browser from the web. The only bad thing is that you must run a Windows machine: The app does not work on Macs and GNU/Linux.

Visit site: http://spoon.net/browsers

PHP Forms

Web forms are one of the most important part of a website, but creating them is also very time-consuming. So, what about using a website that can speed up your form development for free?
PHP forms allows you to create advanced forms that can fit the needs of most websites.

Visit site: http://www.phpform.org

.htaccess editor

A .htaccess file is a must have for any website. Don't know how to write one? No problem, just visit this site to create your .htaccess file using a wizard. It doesn't allow very advanced stuff, but the results are great for 95% of the websites you'll make.

Visit site: http://www.htaccesseditor.com/en.shtml

Smush it!

Images may be worth a thousand words, they're also well known to use a lot of bandwidth. Images can be optimized for the web using programs like Photoshop; but if you don't own a copy of this software or simply don't have a clue how to do it, smush.it is what you need.
Brought to you by Yahoo developers network, Smush.it is an online tool that will reduce your image size without reducing their quality. For WordPress users, a very handy plugin for your favorite blogging engine is available here.

Visit site: http://developer.yahoo.com/yslow/smushit/

CSS Compressor

Especially on site with many different page layouts, CSS files can become huge and use a lot of server bandwidth. This tool, named CSS Compressor, can consequently reduce the size of any CSS file by removing comments, indentation and more.
Even better, compression level can be configured to fit your needs.

Visit site: http://www.csscompressor.com

Test everything

This site is a definitive must-have for your bookmarks: As the name says, Test everything allows you to test lot of things such as XHTML and CSS markup, PageRank, back-links, and a lot more.

Visit site: http://tester.jonasjohn.de

Like CatsWhoCode? If yes, don't hesitate to check my other blog CatsWhoBlog: It's all about blogging!

10 sites developers should have in their bookmarks


 
 

Things you can do from here:

 
 

Sunday, April 18, 2010

Executing PHP

$today = date("F j, Y, g:i a");
echo $today;
?>

A simple date function in PHP. PHP exec helps in writing php code in page or post. The above date is dynamic one and written in PHP.

Optimized the Database

Your Wordpress blog is performing slow. Might be the time for its optimization has reached. I did it. I found post revisions occupies a lots of space(provided single user blog).
http://www.problogdesign.com/wordpress/how-to-optimize-a-wordpress-database/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+ProBlogDesign+(Pro+Blog+Design)

Apology

Most of the previous post statement may now turn to be not there because just now I have upgraded a new theme. So most of the design related posts may not result now.

Thematic Framework

Hey wordpress child theme. Working on Thematic Framework for creating child theme on wordpress. Its nice it already configured with about 13 widget ready positions. Ready made drop down menus and many more.

Wednesday, March 17, 2010

Nice hideout


Nice hideout, originally uploaded by Tamojyotihttp://www.flickr.com/people/tamojyoti/.

At Jorabat

Flickr

This is a test post from flickr, a fancy photo sharing thing.

Monday, March 1, 2010

Saturday, February 27, 2010

How to execute SQL queries

How to execute SQL queries

For those who don't know yet, SQL queries have to be executed within the MySQL command line interpreter or a web interface such as the popular PhpMyAdmin. Since we're going to work on WordPress, you should note that the SQL Executionner plugin provides an easy-to-use interface that allows you to run SQL queries directly on your WordPress blog dashboard.

Although all the queries from this article have been tested, don't forget that you shouldn't test any of those on a production blog. Also, make sure that you always have a working database backup.

Manually change your password

It may sound like the thing that only happens to others but forgetting a password can happen to any of us. In case you lost your blog admin password, the only solution is to create a new one directly in your MySQL database.
The following query will do it. Notice that we use the MD5() MySQL function to turn our password into an MD5 hash.

1.UPDATE 'wp_users' SET 'user_pass' = MD5('PASSWORD') WHERE 'user_login' ='admin' LIMIT 1;

Source : http://www.wprecipes.com/how-to-manually-reset-your-wordpress-password

Transfer posts from one user to another

Most WordPress newcomers tend to use the good old "admin" account instead of creating an account with their real name. If you made that mistake and created another account later, you can easily transfer your old "admin" posts to your new account with the SQL query below.
You'll need the user id of both your old and new accounts.

1.UPDATE wp_posts SET post_author=NEW_AUTHOR_ID WHERE post_author=OLD_AUTHOR_ID;

Source : http://www.wprecipes.com/how-to-change-author-attribution-on-all-posts-at-once

Delete post revisions and meta associated to those revisions

Post revisions are very useful, especially in the case of a multi author blog. However, the problem of post revisions is definitely the number of database records it creates. For exemple, if your blog has 100 posts, which has 10 revisions each, you'll end up with 1000 records in the wp_posts tables, while only 100 of them are necessary.
Executing this query will delete all post revisions as well as all meta info (custom fields, etc) associated to it. The whole process will result in a consequent gain of database space.

1.DELETE a,b,c FROM wp_posts a WHERE a.post_type = 'revision' LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id) LEFT JOIN wp_postmeta c ON (a.ID = c.post_id);

Source : http://www.onextrapixel.com/2010/01/30/13-useful-wordpress-sql-queries-you-wish-you-knew-earlier/

Batch delete spam comments

Imagine that you're coming back from holidays, where you haven't had any access to the Internet. If you haven't installed Akismet and depending on your blog popularity, you may end up with 1000, 2000 or even 10,000 comments to moderate.
You can spend a whole day to moderate the lot, or you can use this life-saving query to delete all unapproved comments. And for your next holidays, don't forget to install Akismet!

1.DELETE from wp_comments WHERE comment_approved = '0';

Source : http://www.wprecipes.com/mark-asked-how-to-batch-deleting-spam-comments-on-a-wordpress-blog

Find unused tags

Tags are recorded on the wp_terms table. If for some reason a tag has been created but is not used anymore, it stays in the table. This query will let you know which tags are on the wp_terms table without being used anywhere on your blog. You can delete those safely.

1.SELECT * From wp_terms wt INNER JOIN wp_term_taxonomy wtt ON wt.term_id=wtt.term_id WHERE wtt.taxonomy='post_tag' AND wtt.count=0;

Source : http://www.onextrapixel.com/2010/01/30/13-useful-wordpress-sql-queries-you-wish-you-knew-earlier/

Find and replace data

This tip isn't specific to WordPress and is a must know for anyone who's working with MySQL databases. The MySQL function replace() lets you specify a field name, a string to find, and a replacement string. Once the query is executed, all occurrences of the string to replace will be replaced by the replacement string.
In case of a WordPress blog, this can be useful to batch replace a typo (For example people who repeatedly call the software Wordpress…) or an email address.

1.UPDATE table_name SET field_name = replace( field_name, 'string_to_find', 'string_to_replace' ) ;

Source : http://perishablepress.com/press/2007/07/25/mysql-magic-find-and-replace-data/

Get a list of your commentators emails

Have you ever received unsolicited emails from blogs you previously commented? I'm sure you did, just like me. The fact is that getting a list of emails from your commentators is extremely easy using the following query. The DISTINCT parameter will make sure that we'll only get each email once, even if the user commented more than once.
Please note that this is only a proof of concept: Don't send your users unwanted emails.

1.SELECT DISTINCT comment_author_email FROM wp_comments;

Source : http://www.onextrapixel.com/2010/01/30/13-useful-wordpress-sql-queries-you-wish-you-knew-earlier/

Disable all your plugins at once

When things go wrong, especially on a production site, you have to be quick. Considering the fact that plugins are often the source of problems, disabling all your plugins in a second can prevent lots of problems.
Just run the following query:

1.UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';

Source : http://www.wprecipes.com/how-to-disable-all-your-plugins-in-a-second

Delete all tags

In WordPress, tags are recorded in the wp_terms tables, along with categories and taxonomies. If you wish to remove all tags, you can't simply empty or delete the wp_terms as you'll destroy categories at the same time!
If you want to get rid of your tags, run this query. It will remove all tags and relationships between tags and posts, while leaving categories and taxonomies intact.

01.DELETE a,b,c
02.FROM
03.    database.prefix_terms AS a
04.    LEFT JOIN database.prefix_term_taxonomy AS c ON a.term_id = c.term_id
05.    LEFT JOIN database.prefix_term_relationships AS b ON b.term_taxonomy_id = c.term_taxonomy_id
06.WHERE (
07.    c.taxonomy = 'post_tag' AND
08.    c.count = 0
09.    );

Source : http://wordpress.org/support/topic/311665

List unused post meta

Post meta is created by plugins and custom fields. They are extremely useful, but they can quickly make your database grow in size. The following query will show you all the records in the postmeta table that doesn't have corresponding records in the post table.

1.SELECT * FROM wp_postmeta pm LEFT JOIN wp_posts wp ON wp.ID = pm.post_id WHERE wp.ID IS NULL;

Source : http://wordpress.org/support/topic/337412

Disable comments on older posts

Everyone who has been in blogging for more than one year will know: Even after some months, your old posts still receive interest from the public and lots of comments, mostly because they are indexed by search engines. This is a good thing of course, but the problem is for people like me who own technical blogs and have to answer lots of questions related to their old (and sometimes obsolete) posts.
The solution to this problem is to automatically close comments on posts which are too old. This SQL query will close comments on all posts published before January 1, 2009.

1.UPDATE wp_posts SET comment_status = 'closed' WHERE post_date < '2009-01-01' AND post_status = 'publish';

Source : http://perishablepress.com/press/2008/02/20/wordpress-discussion-management-enable-or-disable-comments-and-pingbacks-via-sql/

Replace commentator url

Previously in this article, I talked about the very useful replace() MySQL function. Here is a good example of how useful it is : Let's say you previously own a site and used its url in your comments to generate backlinks to this site.
If you sell the site, you can easily replace the old url by your new site url. Simply run this query and you'll be done!

1.UPDATE wp_comments SET comment_author_url = REPLACE( comment_author_url, 'http://oldurl.com', 'http://newurl.com' );

Source : http://perishablepress.com/press/2008/07/14/wordpress-link-author-comments-home-page/

Replace commentator email adress

Another good example of the replace() function. This query will replace the email adress provided in the comments field, by a new one.

1.UPDATE wp_comments SET comment_author_email = REPLACE( comment_author_email, 'old-email@address.com', 'new-email@address.com' );

Source : http://perishablepress.com/press/2008/05/18/wordpress-tip-update-email-address-in-the-wordpress-database

Delete all comments with a specific url

Lately, I've noticied that some clever spammers left some quite relevant comments, but with a link pointing to a viagra site. Unfortunely, when I noticied it the commentator already left lots of comments. The following query will delete all comments with a specific url. The "%" signs means that any url containing the string within the % signs will be deleted.

1.DELETE from wp_comments WHERE comment_author_url LIKE "%wpbeginner%" ;

Source : http://perishablepress.com/press/2007/07/25/mysql-magic-find-and-replace-data/

Creating Automatic Zen Subthemes with Zenophile

Friday, January 22, 2010

New call out

My comment section has got new call out

Friday, January 1, 2010

JQUERY in Wordpress

jQuery is ideal because it can create impressive animations and interactions while being simple to understand and easy to use. WordPress awesomeness lies in its fact that it can be customized to power any type of site you like! But what happens when you combine the power of jQuery with WordPress, the possibilities are infinite.

This article will share some best practices, examples & Plugins for using the most popular Javascript framework to create unobtrusive, accessible DOM scripting effects for your WordPress site.

Let's take a look at 25 26 useful, yet rather unknown WordPress Plugins and tutorials using jQuery to its fullest potential.

Don't Forget to…

subscribe to our RSS-Feed and visit my twitter page : nourayehia get notified when our next post is here.

1. Infinite Scroll

Wp-jquery17 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


Infinite scroll has been called autopagerize, unpaginate, endless pages. But essentially it is pre-fetching content from a subsequent page and adding it directly to the user's current page. There is a little known feature in the .load() method that lets you specify the CSS selector of the html you want to include. jQuery will load in any local URL, then parse the html and grab only the elements you've defined with your selector.

Check Out a live demo here

2. jQuery Lightbox

Wp-jquery1 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


This is the Wordpress's version of the jQuery Lightbox Plugin Used to overlay images on the current page, perfectly working with Wordpress 2.2 or up, and fully compatible with K2!

Download Plugin from here

3. WordPress post information plugin

Wp-jquery2 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


If real estate is a priority in your theme then this plugin can help by showing post meta information on demand by using a JavaScript toggle function.

Download Plugin from here

4. Snazzy Archives

Wp-jquery7 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


Snazzy Archives is a visualization plugin for your WordPress site featuring an unique way to display all your posts. You can select different layouts and special effects. Main features of Snazzy Archives are: Unique visual presentation of blog posts, Will work out of the box with all features, Posts are scanned for images and youtube videos and shown together with number of comments, Different editable layouts (HTML and CSS), Special effects using jQuery and more.

Download Plugin from here

5. J Post Slider

Wp-jquery3 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


Show your post in fancy jQuery box, rotating images, with show-up text box with post description. Mousover stop the animation, and user can click on post link anytime.

Download Plugin from here

6. WP-Imagefit

Rather than relying on a CSS or HTML-driven approach to resize large or wide images, WP-Imagefit relies on Javascript to proportionately resize images based on the width of the containing column.

Download Plugin from here

7. WP Wall

Wp-jquery5 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


WP Wall is a "Wall" widget that appears in your blog's side bar. Readers can add a quick comment about the blog as a whole, and the comment will appear in the sidebar immediately, without reloading the page.
All comments are internally handled by WordPress so that means you have normal comment moderation, SPAM protection and new comment notification.

Download Plugin from here

8. jQuery Comment Preview

Wp-jquery15 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


Live comment preview without page reboot using a simple HTML-editor.

Download Plugin from here

9. Insights

Wp-jquery6 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


Insights brings a powerful new way to write your blog posts. It increases productivity and at the same time quality of your posts by using dynamic AJAX interface which loads the relevant information to your post in just a few seconds. Insights performs following functions in real-time: Interlink your posts, Insert Flickr images, Insert Youtube videos, Search Wikipedia, Search Google, Insert a Google Map and more.

Download Plugin from here

10. µAudio Player

Wp-jquery9 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


µAudio is a slim (450 Bytes!), fast plugin to create a flash mp3 player when mp3 links are clicked. In order to reduce clutter and file transfer, the links are unmodified until they are clicked, at which point a div with the player is faded in after the link. A second click on the link fades the player back out.

Download Plugin from here

11. SimpleModal Contact Form

Wp-jquery12 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


SimpleModal Contact Form (SMCF) is an Ajax powered modal contact form. It utilizes the jQuery JavaScript library and the SimpleModal jQuery plugin. SMCF has options to include certain contact form elements, like a Subject field and "Send me a copy" option for the sender.

Download Plugin from here

12. Events Calendar

Wp-jquery11 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


Events-Calendar is a diverse replacement for the original calendar included with WordPress adding many useful functions to keep track of your events.

Download Plugin from here

13. µMint Plugin

Wp-jquery14 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


µMint is a slim plugin to integrate statistics from Shaun Inman's Mint statistics package into Wordpress.

Download Plugin from here

14. Shockingly Big IE6 Warning

Wp-jquery10 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


The Shockingly Big IE6 Warning is a plugin that shows a warning message alerting the user why is bad to use IE6, the security risk and the bad compatibility of Web Standards.

Download Plugin from here

15. WP-Slimbox2 Plugin

Wp-jquery8 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


A WordPress implementation of the stellar Slimbox2 script by Christophe Beyls (an enhanced clone of the Lightbox script) which utilizes the jQuery library to create an impressive image overlay with slide-out effects. Almost all options are configurable from the administration panel.

Download Plugin from here

16. Live Blogroll

Wp-jquery16 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


Live Blogroll will make your blogroll livelier. It will show a number of 'recent posts' for each link in your Blogroll using Ajax. When the user hovers the mouse above the link, RSS feed from the site is automatically discovered and a number of recent posts is shown dynamically in a box.

Download Plugin from here

17. PhotoXhibit

Wp-jquery4 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


This plugin uses photos from your Flickr, Picasa, and/or SmugMug accounts as well as allows you to upload and build Albums to help you build inviting Photo Galleries on your site using the most popular JavaScript based gallery plugins. This plugin is not yet compatible with WordPress2.7

Download Plugin from here

18. Wordpress Sidebar Turned Apple-Flashy Using jQuery UI

Wp-jquery17 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


A tutorial to show you how to create Accordion plugin in jQuery UI to get the sidebar on the Apple Startpage and be able to show and hide it at your pleasure as well.

Check Out the demo here

19. How To Create WordPress Tabs Using jQuery

Tabbed sidebar elements makes users simply click a tab to quickly access various parts of your site. This tutorial will teach you how to do this in your WordPress blog using jQuery.

Check Out the demo here

  1. <div class="tabbed">  
  2.     <!-- The tabs -->  
  3.     <ul class="tabs">  
  4.     <li class="t1"><a class="t1 tab" title="<?php _e('Tab 1'); ?>"><?php _e('Tab 1'); ?></a></li>  
  5.     <li class="t2"><a class="t2 tab" title="<?php _e('Tab 2'); ?>"><?php _e('Tab 2'); ?></a></li>  
  6.     <li class="t3"><a class="t3 tab" title="<?php _e('Tab 3'); ?>"><?php _e('Tab 3'); ?></a></li>  
  7.     <li class="t4"><a class="t4 tab" title="<?php _e('Tab 4'); ?>"><?php _e('Tab 4'); ?></a></li>  
  8.     </ul>  
  9.   
  10.     <!-- tab 1 -->  
  11.     <div class="t1">  
  12.     <!-- Put what you want in here.  For the sake of this tutorial, we'll make a list.  -->  
  13.     <ul>  
  14.         <li>List item</li>  
  15.         <li>List item</li>  
  16.         <li>List item</li>  
  17.         <li>List item</li>  
  18.         <li>List item</li>  
  19.     </ul>  
  20.     </div>  
  21.   
  22.     <!-- tab 2 -->  
  23.     <div class="t2">  
  24.     <!-- Or, we could put a paragraph -->  
  25.         <p>This is a paragraph about the jQuery tabs tutorial.</p>  
  26.     </div>  
  27.   
  28.     <!-- tab 3 -->  
  29.     <div class="t3">  
  30.     <!-- Or, we could add a div -->  
  31.         <div>Something needs to go in here!</div>  
  32.     </div>  
  33.   
  34.     <!-- tab 4 -->  
  35.     <div class="t4">  
  36.     <!-- Why not put a few images in here? -->  
  37.         <p>  
  38.             <img src="image.gif" alt="Sample" />  
  39.             <img src="image.gif" alt="Sample" />  
  40.             <img src="image.gif" alt="Sample" />  
  41.         </p>  
  42.     </div>  
  43.   
  44. </div><!-- tabbed -->  

Wp-jquery18-2 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


Another great tutorial by Nettuts teaching us how to Create A Tabbed Interface Using jQuery.

Check Out a live demo here

20. jQuery Reply to Comment

Add "reply" and "quote" features on each comment list. If you have jQuery installed on you blog, this Plugin add two link in each comments list (on single page). This plugin can auto include jQuery from Google Ajax API repository.

Download Plugin from here

21. My Page Order

My Page Order allows you to set the order of pages through a drag and drop interface. The default method of setting the order page by page is extremely clumsy, especially with a large number of pages. jQuery is used a smooth for drag and drop effect.

Download Plugin from here

22. Wordpress Featured Post Slideshow

Wp-jquery22 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


Learn how to create an animated featured posts section in WordPress

Download Plugin from here

23. GD Star Rating plugin

Wp-jquery23 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


GD Star Rating plugin allows you to set up rating system for posts, pages and comments in your blog. You can set many options for displaying the rating stars, and also add widgets into the sidebars for displaying top ratings and other statistics generated by the plugin.

Download Plugin from here

24. Create a featured posts slider in Wordpress using jFlow

Wp-jquery24 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


Many premium themes feature cool featured content sliding areas, where the latest posts appear. There is one such plugin, built around the Mootools library, but in this tutorial you will learn how to do this using jFlow jQuery plugin. It will also automatically scroll. Of course, this can easily be modified to use the navigation buttons as well.

Demo of the jFlow plugin can be seen here

25. Adding Form Validation to WordPress Comments using jQuery

Wp-jquery25 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


When it comes to simpler user experience, having your form validation happen instantly on the same page is a lot cleaner than reloading pages and possibly losing some form content. In this tutorial you will learn how to use jQuery to do some instant checking on an example comment form.

Demo can be seen here

26. Using jQuery to liven up your WordPress login

Wp-jquery26 in The Power of WordPress and jQuery: 25+ Useful Plugins & Tutorials


A quick method of simplifying the clients login process using jQuery lightbox.

Demo can be seen here

 

HAPPY NEW YEAR 2010

WISH YOU A VERY VERY NEW HAPPY YEAR 2010

New Contact Form

A plugin Contact Form 7 which i found to be very useful in making contact forms.. I used it and I made my own form

Sunday, December 27, 2009

Fetch all the post related to a particular tag in a page of wordpress

If you want to fetch all the post in a particular page having same tag or category keeping the basic layout same as of general blog post. We need to make a template file with the following code and upload it as tag-tagname.php (eg tag-wordpress.php)

// Declaration help in navigation in admin panel
/**
* @package WordPress
* @subpackage Default_Theme
*/
/*
Template Name: Tag Wordpress
*/
?>

// Fetch the header template


//Main content area


// query_post will fetch all the post having wordpress as tag. Change as per ur requirement



//this is same as of main index template where general post as usually shown





id="post-">





by -»





















Not Found


Sorry, but you are looking for something that isn't here.








//Footer Area

Wordpress category/tag style

If you want your category or tags to be presented in different style simple stylesheet can be added with customized classes:

.tag-tagname{} (For example i made .tag-wordpress{color:#00FF00; background-color:#000000;})
The above changes in my blog put my all the post under 'wordpress' tag to a new color and background amongst all the post of the general post page

.category-categoryname{}
The same can be adopted for category also

Saturday, December 26, 2009

3 idiots

Excellent movie just rocked my heart..................a nice movie after a long time planning to see it second time.

Friday, December 25, 2009

Merry Christmas

Wishing you all a merry christmas. May this christmas bring happiness in everyone's life.

[caption id="attachment_120" align="aligncenter" width="150" caption="Enjoy Christmas"]Enjoy Christmas[/caption]

Updated the Background

My blogs got a new look with the background behind the head ...

Monday, December 14, 2009

Inkscape Works

[caption id="attachment_114" align="aligncenter" width="150" caption="Inkscape Practice"]Inkscape Practice[/caption]

Friday, December 11, 2009

CAPTCHA

Till today I was using captcha from different third party. Then I came to know about the official portal of CAPTCHA www.captcha.net and used it in this blog in comments form. Its a nice one. Learning more about CAPTCHA. Much concerned about spam postings earlier also did lots of Client side and server side validations. Lets see how it helps.

Thursday, December 10, 2009


Inspiration Taken from this blog:
http://ryanler.wordpress.com/2007/05/23/inkscape-sticker-with-folded-edge-tutorial/

But i make it by my own method using mostly circle tool of Inkscape.

Sunday, December 6, 2009

Testing it through mail

Header by Inkscape

Friends,

The header you are seeing at my blog is done by Inkscape an open source illustration tool. Exploring more to add something more on this blog.