Some Inspirational Thoughts From Some Genious Persons
Hello Friends !!
Today i will show you some Inspirational Thoughts From Some Genious Persons of world.
When your mind have negative thinking, then please revise these thoughts in your mind :
“Man often becomes what he believes himself to be. If I keep on saying to myself that I cannot do a certain thing, it is possible that I may end by really becoming incapable of doing it. On the contrary, if I have the belief that I can do it, I shall surely acquire the capacity to do it even if I may not have it at the beginning.â€
- Mahatma Gandhi
“You can never cross the ocean unless you have the courage to lose sight of the shore.â€
- Christopher Columbus
“To a brave man, good and bad luck are like his left and right hand. He uses both.â€
- St Catherine of Siena
“When one door of happiness closes, another opens, but often we took so long at the closed door that we do not see the one that has been opened up for usâ€
- Helen Keller
“We don’t see the things the way they are. We see things the way WE are.â€
- Talmund
“Formal education will make you a living. Self education will make you a fortune.â€
- Jim Rohn
“It isn’t what the book costs. It’s what it will cost you if you don’t read it.â€
- Jim Rohn
“You must be the change you want to see in the world.â€
- Mahatma Gandhi
“The future has several names. For the weak, it is the impossible. For the fainthearted, it is the unknown. For the thoughtful and valiant, it is the ideal.â€
- Victor Hugo
“There is nothing more genuine than breaking away from the chorus to learn the sound of your own voice.â€
- Po Bronson
“Do not go where the path may lead, go instead where there is no path and leave a trail.â€
- Waldo Emerson
“Use what talents you possess, the woods will be very silent if no birds sang there except those that sang best.â€
- Henry van Dyke
“Do not fear to be eccentric in opinion, for every opinion now accepted was once eccentric.â€
- Bertrand Russell
Useful SEO tips for WordPress Blog users – 2
Hello Friends !!
This post contains some more tips for SEO.
1. Permalinks
First of all you have to change your permalinks SEO friendly. Go to Settings -> Permalinks and after that select date and name based. See image displayed :
2. Submit your blog search engines
Do not forget to submit your blog to Google, Yahoo and Microsoft Live search engines. You can use the sitemap created in previous tip (if you already did that) in all submissions.
- Google: go to Webmaster Tools in your Google account and add your blog URL; follow steps to add blog sitemap and verify ownership of blog.
JavaScriptMVC 1.5 Released
Do you know MVC ?
MVC is a framework named Model-View-Controller.
A design pattern used in services architectures. MVC expresses the separation of a software architecture into three distinct elements. The ‘Model’ is how the underlying data is structured. The ‘View’ is what is presented to the user or consumer. The ‘Controller’ is the element that performs the processing.
For javascript users, JavaScriptMVC 1.5 Released and version 1.5 is offically available for download.
Continue reading »
Useful SEO tips for WordPress Blog users
Hello friends !!!
I am not a master of SEO but yesterday i found some SEO tips. So I want to share with you.
First of all SEO means Search Engine Optimazation.
If you want that your site become top in google search engine, then you have to do SEO of your site or blog.
I read some tips and i want to share with you.
1 – Optimize your title tag
In terms of SEO, the title tag is one of the most important things: In fact, the title appears as a link in search engines results and social bookmarking sites. Unfortunely, most WordPress themes displays the title tag in a non-optimized way. I had recently written a tutorial here at Cats Who Code to obtain a reallySEO-friendly title tag.
2 – Use the correct H tag structure (h1, h2, h3..)
When I download free WordPress themes, I’m often scared to see how badly the H structure is used: h2 are everywhere. In order to get the best SEO results possible, you should use the correct structure:
- h1 for the post title
- h2 for inside titles
- h3 for inside subtitles
- and so on…
3 – Install the “ALL In One SEO Pack” plugin
In my opinion, All In One SEO Pack is one of the best ever WordPress plugins: It allows you to enable meta descriptions and keywords, avoid duplicate content by noindexing pages as such as categories or tags, and tweak titles.
Continue reading »
Username Availability Chacker in AJAX and PHP using jQuery
Hello Friend !
Yesterday when i was searching, i was found some new thing.
In this post i will show yuo that how to make afancy Username availability checker using AJAX and PHP wiyh jQuery.
If you are looking for such kind of effect for checking username availability then defenately this post helps you.
Now let’s see hoe to check username using AJAX and PHP with jQyery.
First of all, write this code in your html code:
<div > Â User Name : <input name="username" type="text" id="username" value="" maxlength="15" /> Â <span id="msgbox" style="display:none"></span> </div>
In this code, “span” with id “msgbox” shows the username availability message from ajax.
Continue reading »
Latest News – Microsoft Excel 2007 Fails Maths Test
Hello Friend !
I found latest news from market.
The title of this post says all the things. Are you Confused ? Let me Explain….
Microsoft Corp.’s Excel 2007 spreadsheet program is going to have to relearn part of its multiplication table.
As i read in another blog, Microsoft employee David Gainer said that when computer users tried to get Excel 2007 to multiply some pairs of numbers and the result was 65,535, Excel would incorrectly display 100,000 as the answer.
Continue reading »
Check One Check All – Javascript
Hello Friends …..
You have seen in Yahoo,Gmail or in any Mail Service that they provide you to select all mail facility by check only one checkbox or click on link as Select All/Deselect All.
When you click on that lick or check that checkbox , your all mails on that page will be selected.
You think that how it does ?
This is done by Javascript .
In this Post, iwill give you that javascript which is used for select all purpose.
Continue reading »
URL Rewriting using .htaccess in PHP
Hello friends .Do you know what is URL rewriting in PHP ?
This post will help you about URL rewriting.
Static URLs are known to be better than Dynamic URLs because of a number of reasons
1. Static URLs typically Rank better in Search Engines.
2. Search Engines are known to index the content of dynamic pages a lot slower compared to static pages.
3. Static URLs are always more friendlier looking to the End Users.
What is the benefits of rewriting URL?
When a search engine visits the dynamic url like product.php?id=5 it does not give much importance to that URL as search engine sees “ ? †sign treat it as a url which keeps on changing. so we’re converting the dynamic URL like the product.php?id=5 to static url format like product-5.html. We’ll rewrite the url in such a way that in browser’s address bar it will display as a product-5.html but it actually calls the file product.php?id=5. So that why these kind of URL also named as SEO friendly URL.
PHP 5 Magic – __autoload() method
Hello Friends.Next in Magic methods is __autoload().
This Post will teach you how and when to use the magic method __autoload().
The magic method __autoload() function is a convenience that allows you to use classes without having to explicitly write code to include them.
The magic method __autoload() is not included in your class definition as this is to be called once in a script. The best place to put the autoload() file is in your configuration file which is loaded in all your other scripts.
Many people debate that the magic method __autoload() causes a performance overhead. Well, that is not the case. There is no performance penalty to pay. In fact, there may be performance improvements if not all classes are used all the time. This is explained below.
Using the magic method __autoload has the beneficial side effect of requiring strict naming conventions for files that hold class definitions.
Continue reading »
PHP 5 Magic – __sleep() and __wakeup() methods
Hello Friends,
The magic method _sleep() and _wakeup() is called when an object is serialized. The magic method _sleep() and _wakeup() provides a method to clean up and restore objects before being serialized.
Working with _sleep()
_sleep() magic method is called when the object of a class is about to be serialized. This magic method _sleep() does not accept any parameter and returns an array. The array should contain a list of class members that should be serialized. This means that if you don’t wish to serialize a particular class member, you should not include it in the array. Look at the example below: Continue reading »






