How to Make a Good and Strong Passwords

Today we often use passwords for various applications such as email, blogs, social websites (facebook, twitter), or perhaps also to our cell phones. So how good or strong password that you use? The easiest way to find out is to calculate the likelihood we can guess passwords or in other words the possibility of which can be produced from a long string of characters or letters that you use in your password. More and more combinations that may be generated, it will be increasingly difficult to guess your password or hacked.

A simple example like this. If you use a cell phone using a password that is a 4 digit number, then chances are your phone password can be guessed is about 1 in 10,000 (figures 0000 up to 9999). If you use 8 characters for your email password, then it is likely to guess your password is 26 x 26 x 26 x 26 x 26 x 26 26 x 26 = 208 827 064 576 or more than 208.8 billion possibilities! but if you use your name … like “putriayu” or “ekoparto” it can increase the likelihood of predictable only in a matter of dozens of possibilities!

Therefore, if you want to create a good password you should not use the name (either your name, parents, relatives, siblings, people close to you), date (either date of birth, celebration, or special days), the words that you usually fave or enjoy, a commonly used word, or word that is predictable people (because they know the inherent vice of your choice).

There are a few tips for creating passwords:

* Use digit combination of numbers and letters
* Use characters like “@#$_%%^&*(” or the other if possible.
For example, use words that you will remember but hard to guess people, for example: “7an & / gi”.
* If possible, use a variety of characters or more letters. For example, if the letter “A” and “a” are considered different, then use these variations. For example: “7AN & / gi”. The possibility to guess it: more than 44.23 trillion!

The essence of making a good password is actually your confidentiality. How far / strong you are holding your password to not be notified to the other person, or convenience of others to guess your password. Therefore, if you’ve finished using an application, be it email, facebook, or anything else, immediately do the “sign-out” or “logout”.
Also, if possible change the passwords on a regular basis, say once a month or when a high risk to change the password once a week.

But if you are a forgetful, then to try to make it easier to make a password passwords pattern known only to you. for example, use and remember simple words like “maju2x”, “2 + TWO = four ‘, and so forth. But remember, that words are only you and God alone knows

How To Create Tables in WordPress Blog

When displaying the data in our blog, sometimes we need to show them in table form so that data can be read more clearly and certainly. By default, making tables are generally not provided by the CMS that we use, even on blogs like wordpress or blogger. Fortunately, to create tables in wordpress you can use plugins, which is one of the advantages of wordpress. We can directly install plugins in wordpress blog to help us create a table. One of the plugins to create these tables is easy table creator .

As an example we will create a table of wages to workers who must be as follows:

No Name Hours Wages
1 Abdi 10 $100
2 Saya 17 $170
3 Aku 14 $140
Total 41 $410

Actually, the way of making these tables is easy. First, verify that the editing in visual mode. Then click the button to create a table in the top editor (see figure below).

How to create tables in wordpress blog using easy-table-creator plugin

After clicking the button, you will see a dialog form to create a table. Fill in the header, the contents of the table, and footers to fit your needs. When you have finished making the table, click the insert button to insert a table in your own article.

Example of charging and making a table with a quick way to create tables in wordpress blog using easy-table-creator

Do you want to immediately try quick way to create tables in wordpress blog with easy-table-creator? You can donwload easy-table-creator plugin here .

.

One Word is Better Than a Million Pictures

A picture can not be expressed with words. This applies if you’re writing a thesis or scientific works. Because by looking at pictures, people will be able to immediately understand what it means instead of reading many pages or papers. A simple example, can you write about a beautiful landscape when the sun rises from behind the mountain with completely? This will require hundreds or thousands of words to describe every detail about it. And of course can be faster, easier and simpler if you use a drawing or photograph of it.

So when one word is worth more than a million images? Easy, when you write it in a blog! The word “rise” will be more valuable than a million photos with the name “img000001.jpg” to “img1000000.jpg”. Because the word “rise” will more likely be included and founded in the search engine database like google. So, it is more valueable than one million images. Therefore, use images only to clarify or explain the intent of your writing.

The solution, if you want your images indexed as well, you should give your images with a more humane image filename (“sun-terbit.jpg” better than “img000001.jpg”), you also need to include / use the option “ALT” and ” Caption “in the HTML code to display the image. Thus, your writing will be more Search Engine Friendly and has a greater chance to appear at the top position in search engine results (SERP)..

examples of the use of additional options when displaying the images can be viewed as follows:

<IMG SRC=”http://aimyaya.com/images/aimyayacom.gif” ALT=”aimyaya” TITLE=”aimyaya picture” />

aimyaya

One of the advantages of using such an option is if there is an error such as lack of image files, then the readers will know that at these locations should have a picture …

what picture is this?

The Easiest And Fastest Way To Create Tables In Our Blog (Blogger, WordPress, Or Other)

Sometimes we need to display the data on our blog by using the table because we can present the data and information more concise and accurate. But the biggest problem facing us is the text editor provided by wordpress.com, blogger.com or another CMS does not provide facilities for creating tables. So we must make our own table and thus we must also learn to create a table using html code.

I will immediately give an example to you how to create a table with the most simple and easy way.

The following format is the most simple and easy ways to make your table on the blog WordPress.com, Blogger.com or Other Blog by 100% guaranteed compatible with any browser too:)

<table>
<tbody>
<tr> <td> Number 1 </td>    <td> Zahra </td> </tr>
<tr> <td> Number 2 </td>    <td> Ella </td> </tr>
<tr> <td> Number 3 </td>    <td> Lita </td> </tr>
<tr> <td> Number 4 </td>    <td> Irma </td> </tr>
</tbody>
</table
>

HTML  code above will display the table as follows:

Number 1 Zahra
Number 2 Ella
Number 3 Lita
Number 4 Irma

If you want better table view you can change the properties of that table, like the appearance of a border, column width, row height, background color, and others.

<table id=”FormattedTable” style=”border-collapse: collapse” border=”2″ width=”350″ bordercolor=”#966432″>
<tbody>
<tr>
<td align=”center” bgcolor=”#92c783″><strong>champions</strong></td>
<td width=”175″ align=”center” bgcolor=”#92c783″><strong>Name</strong></td>
</tr>
<tr>
<td align=”center”>Number 1.</td>
<td width=”175″ align=”center”>Zahra</td>
</tr>
<tr>
<td align=”center”>Number 2</td>
<td width=”175″ height=”24″ align=”center”>Ella</td>
</tr>
<tr>
<td align=”center”>Number 3</td>
<td width=”175″ height=”24″ align=”center”>Lita</td>
</tr>
<tr>
<td align=”center”>Number 4</td>
<td width=”175″ align=”center”>Irma</td>
</tr>
</tbody></table>

HTML code above will display the table as follows:

champions Name
Number 1. Zahra
Number 2 Ella
Number 3 Lita
Number 4 Irma

.

Blog Title That Will Quickly Get the Clicks From Visitors

After selecting a good topic posts, the next step is to determine an interesting title. Why? Generally, the blog visitors get a brief information about an article / blog post from the search results search engine like google. Getting the top position of a Search Engine Results Page (SERP) is not a guarantee that your blog will be visited, although the possibility was greater.

Search engine results for happy…

As you can see in the picture above, the findings for the “happy birthday” to reach more than 65 million (fig. 1), while for the “Happy B’Day” just as much as 6 million (figure 2).

View examples of search result from google. Show only the title of an article that accompanied a brief description, and finally addresses or links to such articles. Therefore, the title of the blog postings are critical for a person to see or visit the blog. Furthermore, a page of garbage can beat the pages that have better content because it has a more interesting title. Thus the title selection is very important for an article. There are many ways to determine the title of the posting of good and true but I think it contains at least the following things:

1. Easy to understand
Use the title with a common language and terminology commonly used and easily understood by prospective visitors.

2. Interesting for the clicks.
Use language that attract potential visitors to visit. This can be analogue as well as sales that are selling a product. :)

3. Same with content.
Title MUST be in accordance with article content. Do not deceive prospective visitors. If they felt cheated, they will not come back or see another page, or even worst, they simply close the browser.

4. Not too much crap
Related to number one. If easy to understand, it might be easy to remember, then maybe they will come to revisit. Visitors will get bored if they read the article pushes too much and even more when it is too confusing.

5. Using the raw words
The Internet is not a formal thing. But you will more easily and more to find the search with the keyword “happy birthday” than the “met birthday.” Do not believe? Try to prove yourself! :)

6. Use popular words
Use the most popular words people used in search engines. But if you feel that your rival is too heavy, use alternative words that are not too popular. Sometimes it’s better is rarely used but there will be a visiting, rather than using a word frequently used but never have visitors because your articles are not able to compete.

..

How to Easily Select the Best Ideas for Your Blog

There are many ways to get ideas for your blog. Easy or hard is relatively different for each person. But if your brain is very muddy and you really need a new idea for your blog then I have simple ways that I think the easiest thing to do. The trick? Easy, just use google search engines like google, yahoo, or whatever!

Search through the search engine by using the words most frequently used in writings such as an “and”, “or”, “that”, and so forth.

As an example, you can try it with google search engine as you can see in the image below:

 
example: using google search engine

After run that query, search engine will give you more than 8.5 billion search results. You just simply pick one from that list and use it as your starting point for your blog (See this figure below).

 
example google search results

But remember, do not using copy – paste (exactly same from the source articles). Use your imagination, creation and your own story for your articles. In other words, what you copy from is only the ideas, not the article. If you were using google search engine, you also can try the google advanced search mode and google blog search. So, do you want to try to get some ideas for your blog? You can type it here…

Basics of Good Blogging

After one week I always outside the city, finally I can continue to create articles for my blog. Before continuing to write more articles, I thought that I must define about the basics of writing articles and blogs development first. After several days, I finally conclusion that there are 4 important things:

1. Title
After selecting a topic articles will be made, choose a title that attracts the visitors to read our articles. In addition, also gave a short description of the contents of the article by using meta data.

2. Promotions
Why in this point is not the content? After the articles are made, do promote for it. If you don’t do so, other people will don’t know about it. So what happened if there is no one knew about it? Exactly, no one will read. ;)

3. Content
Create a good content that accordance with the title of the article. When someone find the title and the the article was doesn’t match, visitors tend to be dissapointed and will ignore our other articles.

4. Study
Always learning and not selfish. Assuming we are just learning about everything including research, persistence, blog development, networking and friendship, also the most important is to learn to always try and never despair.

Blogging: Another Hard Work …

Blogging? Blogging need more than an idea, article with quality, display, and a long series of required list, even for most of people: money!

Sometimes when an idea arise, we had a few problem to writing it down into a blog, because we are don’t know where we must start from, or it is possible we lost the “soul” of an idea in the middle of article creating process or even possibly turns into a new idea.

Occasionally, while making an article sometime we must look for or collects data for our article. Besides we also claimed to ensure that article is a “clean article”. This is important because a “clean article” will lead our visitor or our reader to takes a quick or short access time to access and display the article.

After thus, although not be compulsion but display will draw visitor or reader to read furthermore, even we must insert pictures like scheme, diagrams and or other picture so our reader can earns more comprehendingly and or imagines from article which we are create.

With such “rules” to write an article at blog, of course it will consume time, energy and sure of money to pay for expense of internet connection, hosting and/or domain, just like mine :) . So a few blogger putting advertisement at their blog to take a chance of lighten their finance burden, even not a few among them which then make it living. Even though, also many blogger making blogging as hobby, place collects friend, adds knowledge and having kinds of other reason besides money.