Wednesday, March 19, 2014

Do you have an oDesk account? Are you new to oDesk? Are you looking for job? If all answers are yes, then this post is for you.
Today I’m going to give some tips for the beginners in oDesk. Mostly the newbies don’t get jobs. Here I’ll give some tips how to get jobs easily for the first time. The tips are give bellow as points.
  • ·         Make your profile 100%. It is the most important thing that, clients always like a 100% completed profile.
  • ·         Now find jobs. When you’ll get a job post, read out it clearly.
  • ·         If you’ll have confidence, now try to know about the poster.
  • ·         Then Look at Client's Work History and Feedback. If you find, there are only a few works and feedback also good, apply for this job.
  • ·         Bid in low rate. But don’t in lowest. For example, if the client’s budget is 50USD (in fixed price jobs), you propose him 27-30USD.
  • ·         There is an option in fixed price jobs, upfront payment. Fill this box as 0%.
  • ·         Now submit your cover letter, optional question’s answer. That’s all.


Is this article so short? But I got my first job on oDesk from my first bid applying these steps. Hope you’ll get too. 

Tuesday, March 18, 2014

Use copied code on Turbo C

I've posted a code of C programming for beginners. Did you practice that? Did you get success to use copied code directly on your compiler?
If you use Turbo C compiler you’ll not be able to paste directly on your project editor copied from anywhere. There is a trick for you. I’m now going to tell you the secret.
If you use Turbo C compiler, just copy the code from anywhere. Now create a text file. It’ll appear to you as New Text Document.txt. Now rename it as New Text Document.CPP . Here you've to change the extension. After that, paste your copied code in this file. Now copy the file and go to your drive where you installed the compiler. Search a folder named “BIN”. Open the folder and paste the New Text Document.CPP file.

Completed! Now run your Turbo C compiler. Go to file menu, Click on open, search the file New Text Document.CPP and open it. You’ll get the code you copied from other side. Now compile it, run and enjoy. 

Create Custom fields in WordPress

Are you using a website created by WordPress? Do you want to add custom fields on your posts? So this article is only for you.
It’s easy to add custom fields on WordPress and use on your posts and pages. You've to use a Plugin to do this that’s name “Advanced Custom Fields”. Go to your Dashboard > Plugins > Add new > Search in WordPress Plugins directory and install.
After completing the installation, you’ll find a menu in your dashboard named “Custom Fields”. Click on Custom Fields > Add New. A page will open where you’ll add the fields. After adding the fields, see bellow where is Location. Here you can select the option where you want to use the custom fields. Then publish the page. All done.

Now try to do it yourself. If you face any problem, put a comment on this post. Thank you. 

Have you a blog on blogger.com? Do you want to create a sitemap of your blog and submit it to webmaster tools? So this post is for you.
It’s not similar to create a sitemap.xml on blogger like other self hosted site. So you need a trick! Let’s start.
I’m giving you a code bellow. You can use it on your blogger.com blog.

User-agent: *
Disallow: /search
Allow: /
Sitemap: http://plans-in-action.blogspot.com/atom.xml?redirect=false&start-index=1&max-results=500

Copy this code and write your blog’s link in the place of ‘plans-in-action’. Go to your blog’s dashboard. Click on Settings >> Search preferences. Find out the option “Crawlers and indexing >> Custom robots.txt”. Are you seeing Enable custom robots.txt content? Then click on Yes checkbox. An editor will open. Paste the code there. Click on Save changes.
Now if you want to submit your sitemap on google, bing and other webmaster tools, you can use this link http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=1&max-results=500

Complete this task and enjoy. Thanks to all. 

Which WordPress SEO Plug-in is best?

 Have you any website created with WordPress? You need a plug-in for SEO. There are many free and paid plug-ins in WordPress directory. But I like two of them. Now I’ll tell you about WordPress SEO plug-ins.
The two plug-ins I like are WordPress SEO by Yoast and All in One SEO Pack. But two of them, I like WordPress SEO by Yoast most.
If you use the WordPress SEO by Yoast plug-in, you’ll get more functionality than All in One SEO Pack. You can use a Focus keyword in Yoast SEO. You can also get the SEO status (red, green, yellow). Sometimes site owners suffer with thumbnail image when sharing on facebook. I found the only solution is WordPress SEO by Yoast.
Anyone can also use All in SEO Pack. No problem which plug-in you are using, the main issue is to set it up properly.

No more in this post. Coming with my next post. Thank you so much. 

Monday, March 17, 2014

Some SEO tips for beginners

I’m now working for one of my clients. The job is SEO. Now a days, it’s so important to optimize your site. So I’m going to tell you about something on SEO.
You know SEO means Search Engine Optimization. If you want to optimize your site, I’ll give you a master plan which I use always especially. I’m giving the plans step by step.

Do you know about the learning management WordPress theme “Academy”? Once one of my clients bought this theme from themeforest. He gives it to me to customize like the demo version of themeforest. I started my work. All are okay.
Got only problem. I install the WooCommerce plug-in. That was an updated version of the plug-in. But the checkout page didn’t work. I was searching here and there to fix the problem. But I didn’t get any solution. At last, I uninstalled and delete the plug-in file. Then upload the backdated version “woocommerce.2.0.20”. It worked properly on the theme.
So, if you want to use the “Academy” theme, you need you use the “woocommerce.2.0.20”, a backdated version of woocommerce plug-in.

Thanks to all. 

Create PDF files using MS Word 2007

Are you searching any option to create PDF files using Microsoft Office Word 2007? I’m here to give you the solution. Hope you’ll enjoy this.
It’s easy to create PDF files from Microsoft Office Word 2007. If you don’t have a add-in, you have to download the add-in named “2007 Microsoft Office Add-in: Microsoft Save as PDF or XPS”. http://www.microsoft.com/en-us/download/details.aspx?id=7 (copy and paste the link on your browser’s address bar).
It allows you to export and save to the PDF and XPS formats in eight 2007 Microsoft Office programs. It also allows you to send as e-mail attachment in the PDF and XPS formats in a subset of these programs.
After completing the download, install the add-in. Open MS Word 2007. Write down as you want. Click on Office button. Place your cursor on Save As. Click on PDF or XPS. All done. You can see now your PDF file created by Microsoft Office Word 2007. Thanks everybody. 

Summation of two numbers in C

Hello everybody. How’s your day? Great I think. Now I’m going to tell you about C programming.
You know, C is a powerful system programming language. Today I’m going to solve a problem in C. It’s a very basic problem I think. The problem is to summation of two numbers.
The code is given below:
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
printf("Enter the value of a:");
scanf("%d",&a);
printf("Enter the value of b:");
scanf("%d",&b);
c=a+b;
printf("c=%d",c);
getch();
}

Thanks everybody for joining me. Visit this blog to get regular updates. 

Hello readers, how’s everything? Hope all is well. Now I’m going to tell you “How to create table of contents” in “Microsoft office 2007”. Let’s start.
At first write down the full body of your topic which you want to create a table of content. After completing total, now select the headlines of articles of your topic. Now click on Heading 1 from your Styles of MS word Home.
Then click on References menu. It has a sub menu named Table of contents. Click on that. A drop down will open. Now select a style from there.

Are you looking for any instructions? No more. Your Table of Contents has created. Now practice yourself. Thanks to all. 

XAMPP - Download, Install and Start

Hello everybody. How are you all? Hope you are fine and fresh by the grace of Almighty Creator.
Today I’m going to tell you about XAMPP. How to install and use it. Do you know what is XAMPP?
XAMPP is a free and open source cross-platform web server solution stack package, consisting mainly of the Apache HTTP Server, MySQL database and interpreters for scripts written in the PHP and Perl programming languages.
Download XAMPP:
At first, you have to download the XAMPP from http://www.apachefriends.org/download.html (copy and paste the link on your browser’s address bar).
Install XAMPP:
After completing the download, install it like other applications.
Start XAMPP:
After completing the installation, go to XAMPP control panel. Click on Start button for Apache and MySQL. Wait for a while. When you see the background of Apache and MySQL are going to blue, then your XAMPP has started. Now go to your browser. Write localhost/ on your browser’s address bar. You will see the first page of XAMPP where you have to select language. After selecting a language, your XAMPP will work properly.
Thanks all for joining here. Best wishes for you. Hope you will return to visit my blog to read out my next post.