Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

seo Show Recent Posts With Thumbnails For Particular Label or Category in Blogger 2013

Seo Master present to you: Sometimes we want to have everything organized so that our readers can find topics of interest more easily, and that's when instead of putting a widget with the latest posts, we can put together the latest entries sorted by category, so that we'll be able to show the latest posts for each label we want and also display a thumbnail for our category.

recent posts, blogger widgets, blogger gadgets
Screenshot

To add this cool gadget/widget for the latest categories, just follow the next steps:

Steps

Step 1. From your Blogger Dashboard, go to Template/Edit HTML



...then tick the Expand Widget Templates checkbox:

Step 2. Search for this piece of code:

]]></b:skin>

and just above it, paste this one:

/* Recent posts by labels
--------------------------------- */
img.label_thumb{
float:left;
margin-right:10px !important;
height:65px; /* Thumbnail height */
width:65px; /* Thumbnail width */
border: 1px solid #fff;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .4);
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .4);
box-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}

.label_with_thumbs {
float: left;
width: 100%;
min-height: 70px;
margin: 0px 10px 2px 0px;
padding: 0;
}
ul.label_with_thumbs li {
padding:8px 0;
min-height:65px;
margin-bottom:0px;
border-bottom: 1px dotted #999999;
}

.label_with_thumbs li{
list-style: none ;
padding-left:0px !important;
}

.label_with_thumbs a { text-transform: uppercase;}
.label_with_thumbs strong {padding-left:0px; }

Step 3. Now search for this tag (CTRL + F)

</head>

...and add the following script above it:

<script type='text/javascript'>
//<![CDATA[
function labelthumbs(json){document.write('<ul class="label_with_thumbs">');for(var i=0;i<numposts;i++){var entry=json.feed.entry[i];var posttitle=entry.title.$t;var posturl;if(i==json.feed.entry.length)break;for(var k=0;k<entry.link.length;k++){if(entry.link[k].rel=='replies'&&entry.link[k].type=='text/html'){var commenttext=entry.link[k].title;var commenturl=entry.link[k].href;}
if(entry.link[k].rel=='alternate'){posturl=entry.link[k].href;break;}}var thumburl;try{thumburl=entry.media$thumbnail.url;}catch(error)
{s=entry.content.$t;a=s.indexOf("<img");b=s.indexOf("src=\"",a);c=s.indexOf("\"",b+5);d=s.substr(b+5,c-b-5);if((a!=-1)&&(b!=-1)&&(c!=-1)&&(d!="")){thumburl=d;}else thumburl='http://www.matrixar.com/-zP87C2q9yog/UVopoHY30SI/AAAAAAAAE5k/AIyPvrpGLn8/s1600/picture_not_available.png';}
var postdate=entry.published.$t;var cdyear=postdate.substring(0,4);var cdmonth=postdate.substring(5,7);var cdday=postdate.substring(8,10);var monthnames=new Array();monthnames[1]="Jan";monthnames[2]="Feb";monthnames[3]="Mar";monthnames[4]="Apr";monthnames[5]="May";monthnames[6]="June";monthnames[7]="July";monthnames[8]="Aug";monthnames[9]="Sept";monthnames[10]="Oct";monthnames[11]="Nov";monthnames[12]="Dec";document.write('<li class="clearfix">');if(showpostthumbnails==true)
document.write('<a href="'+posturl+'" target ="_top"><img class="label_thumb" src="'+thumburl+'"/></a>');document.write('<strong><a href="'+posturl+'" target ="_top">'+posttitle+'</a></strong><br>');if("content"in entry){var postcontent=entry.content.$t;}
else
if("summary"in entry){var postcontent=entry.summary.$t;}
else var postcontent="";var re=/<\S[^>]*>/g;postcontent=postcontent.replace(re,"");if(showpostsummary==true){if(postcontent.length<numchars){document.write('');document.write(postcontent);document.write('');}
else{document.write('');postcontent=postcontent.substring(0,numchars);var quoteEnd=postcontent.lastIndexOf(" ");postcontent=postcontent.substring(0,quoteEnd);document.write(postcontent+'...');document.write('');}}
var towrite='';var flag=0;document.write('<br>');if(showpostdate==true){towrite=towrite+monthnames[parseInt(cdmonth,10)]+'-'+cdday+' - '+cdyear;flag=1;}
if(showcommentnum==true)
{if(flag==1){towrite=towrite+' | ';}
if(commenttext=='1 Comments')commenttext='1 Comment';if(commenttext=='0 Comments')commenttext='No Comments';commenttext='<a href="'+commenturl+'" target ="_top">'+commenttext+'</a>';towrite=towrite+commenttext;flag=1;;}
if(displaymore==true)
{if(flag==1)towrite=towrite+' | ';towrite=towrite+'<a href="'+posturl+'" class="url" target ="_top">More »</a>';flag=1;;}
document.write(towrite);document.write('</li>');if(displayseparator==true)
if(i!=(numposts-1))
document.write('');}document.write('</ul>');}
//]]>
</script>

Note: to add your own pic for the posts with no thumbnail, replace the image url in blue with your own

So we have added the Css to style the widget and the script to make it work. Now all we have to do is to add the widget's code to the blog sidebar in a Html/Javascript gadget:

Step 4. Go to Layout - click on Add a Gadget


Step 5. Choose the HTML/Javascript widget and paste this code inside the empty box:

<script type='text/javascript'>var numposts = 3;var showpostthumbnails = true;var displaymore = false;var displayseparator = true;var showcommentnum = false;var showpostdate = false;var showpostsummary = true;var numchars = 100;</script>
<script type="text/javascript" src="/feeds/posts/default/-/Name-of-the-label?published&alt=json-in-script&callback=labelthumbs"></script>

Note: Where it says Name-of-the-label is the name of the label you want to display, and if your label is case sensitive, like in my example, then you should type it that way.

Also within the last code, there are parts that we can customize, just change true with false or vice versa:

var numposts ← Number of posts to display
var showpostthumbnails ← Show/hide thumbnails
var displaymore ← Show or hide the read more link
var displayseparator ← Show/hide separator
var showcommentnum ← Show/hide the number of comments
var showpostdate ← Show/hide the posts dates
var showpostsummary ← Show or not the posts summaries
var numchars ← Number of posts characters (here you have to change the 100 value)

Remember that the gadget displays the latest posts from a particular label, therefore, if you want to display the latest posts from other labels then just repeat step 5 for each additional category you want to add.

That's it :) Enjoy!2013, By: Seo Master

seo BAGAIMANA CARA KERJA SEARCH ENGINE? 2013





Bagaimana cara kerja search engine? Search engine itu bergantung pada program robot yang sangat rumit biasa disebut algoritma. Robot ini melakukan 4 hal, yaitu menjelajahi internet, mengumpulkan data ke dalam indexnya, menilai penekanan relevansi pada setiap halaman, dan memberikan ranking pada setiap halaman berdasarkan relevansinya dengan suatu kata kunci.


Tentu jika dijelaskan seperti

seo [GET] SenukeX Bio – About Spinner V2 2013

Seo Master present to you:
SenukeX Bio – About Spinner V2

Developing scribe Bio, About scribe, item name, Bookmark Description content – Now a Child’s Game!

SenukeX Bio/About Spinner 2 is an automatic content generator for the Author Bio, About scribe, Article name and Bookmark recount parts used in most SEO marketing programs today.

If you`re a common client of a any SEO trading program, for demonstration; SenukeX, Xgen SEO, Magic Submitter, Sick Submitter, Venom SEO etc. it’s highly expected that you’ve spent (read waste) a allotment of time composing the scribe Bio, About scribe, item name and Bookmark recount content or you’ll finally end up running out of concepts for new, unique content for all these parts.

That’s why Swedish world wide web Mafia decided to make a software that simplifies this method and allows you to load up in the Author Bio, About scribe, Article Title and Bookmark recount parts within seconds.

Content developed with Spintags intact

SenukeX Bio/About fishing lure 2 program does not only automatically generate the content for you it also holds the spin tags intact to ensure you Get new content for each submission.

Swedish world wide web Mafia’s SenukeX Bio/About fishing lure 2 is the First and Only scribe Bio, About scribe, item name and Bookmark Description Content Generator and fishing lure on the market!


 Download : Senuke-Bio.Zip 2013, By: Seo Master

seo A patent license just for you 2013

Seo Master present to you:

The goal of the Google Data APIs is to give developers a consistent (and familiar) way to integrate with Google products. At their heart is Atom and the Atom Publishing Protocol, and we've created extensions on top of those open standards to add features like specifying a calendar schema or authentication protocol.

We've always intended for the Google Data APIs to be open and reusable, and today we've taken an extra step to make that intention clearer. We're giving a no-charge, royalty-free license to any patents we have that you would need to implement Atom, AtomPub, or any of our extensions. The official way to do this was via an intellectual property disclosure to the IETF and the patent license now linked from the Google Data APIs docs.

We hope this will encourage sites who want to expose APIs for things like photos, videos, calendar, or contacts to reuse our schemas where they can, rather than reinventing the wheel. Doing so will make it easier for developers who are integrating with multiple sites or porting over an existing app to a new site.

To learn more, check out the Google Data APIs Blog or dive into the patent license itself. Also, be sure to register for the Google I/O conference. I'll be giving a talk there about Google Data APIs, and there will be opportunities for deeper discussions and direct interaction with the engineering team.2013, By: Seo Master

seo Candid Hosting Reviews 2013

Seo Master present to you:
Are you browsing for the top web hosting guide? If so you have come to the right destination. Website Hosting is usually a very important aspect of doing business online. That is why it is very important for website owners to host their blogs with a highly reliable web hosting service provider. But since there are numerous hosting service providers, it is not an easy task to select a good web hosting service provider.

This is precisely why the Hosting Guide service offered by webhostingfan.com is very useful. You can find hostmonster Reviews, justhost hosting reviews, webhostingpad review, hostgator hosting Review, fatcow hosting reviews, bluehost Reviews, ipage hosting reviews imotion hosting review apart from reviews of several leading website hosting service providers. Webhostingfan.com also shows on its web site the latest web hosting news. The web-site is extremely simple and straight forward to navigate and is without doubt worth checking out. Do visit the site right away.

Even though there are lots of other identical hosting review web-sites, Webhostingfan.com is the only web sites that I have come across which provides authenticated reviews on almost all of the admired webhosting service providers. Regardless of whether you are looking to change to a new website hosting service provider or looking for your first website hosting service provider, WebHostingFan is doubtless the best place for you to head to.
2013, By: Seo Master

seo [Get] Xrumer 7 Premium Version + VMMare Xrumer 7 Elite 2013

Seo Master present to you:

XRumer is one of the most powerful seek motor optimization program that is adept to effectively register and mail to forums (forum spam) with the aim of boosting seek engine rankings.
The program is able to bypass security techniques commonly used by numerous forums and blogs to discourage automated spam, such as account registration, purchaser detection, many types of CAPTCHAs, and e-mail activation before posting.
The program utilises SOCKS and HTTP proxies in an attempt to make it more difficult for administrators to impede posts by source IP and characteristics a proxy ascertaining tool to verify the integrity and anonymity of the proxies used.

System Require :
- OS : Win 32bit, Win 64bit (To run at x64 you need config : bios -> disable but capability -> set to available )
- HDD : NTFS
- Ram : > 2GB

:::Install Guide:::
1.Install VMWare 8.
2.Extract "xrumer 7.0.12 [blackhatmafia.com].rar"
3.Run VMWare 8 / Open / xrumer 7.0.12 [blackhatmafia.com] Directory / Win2003.vmx / “I MOVED IT” Button / Yes.
4.The password for the windows's administrator account is blackhatmafia.com
5.Enjoy.
If have any problem, repeat step 2,3

:::Note:::
- Do Not Close Xrumer and hrefer in VMWare.
- Don't logoff + reset + shutdown OS in VMWare.
- Use Suspend When close VMWare.
- Open the "Xrumer proxy fix.doc" file to fix the auto proxy function of the xrumer.
- Visit


Download Xrumer-7-VMMare.Zip

2013, By: Seo Master

seo Dione Blogger Template 2013 2013

Seo Master present to you:
Dione Blogger Template is a new gallery style awesome blogger template.This template is specially designed for picture/wallpapers blogs.However you can use it for any purpose,dione blogger has four columns layout.It has a fantastic header along with three columns footer.This template has social subscription widget along with beautiful search box.This template has white and gray color which makes it more attractive template.This template works with all type of browsers i.e Internet Explorer,Google Chrome,and Mozilla Firefox.You Can Download it free from Our Blog.
Dione Blogger Template 2013


Live Demo  Download Link


Features of Dione Blogger Template 2013

  • 4 Columns layout
  • 3 Columns footer
  • Social Subscription Widget
  • Magazine Style
  • Black
  • White
  • Gray
  • Pro style Blogger Template
  • Elegant
  • Beautiful Navigation menu
  • Auto post
  • Professional Look
  • Work with all browsers.

Extra Information About Dione Blogger Template 2013

Dione Blogger template is elegant style blogger template,it has many features which has been mentioned above.Actually this template is design by Lasantha Bandara who is admin at BloggerTipsandTricks.I will suggest this template for wallpapers blog,however we are not convincing you.You can use it for any type blog.Now time to install this template,if you are new blogger and can,t install Blogger Template so read the Below instructions.

So what's up:- Did You like this Template?Oh no its not Good? no it doesn't suit my Blog?Any Idea you can share with us :),Stay blessed,Happy Blogging.
2013, By: Seo Master

seo [GET] Pingback Optimizer 4.2 2013

Seo Master present to you:
Hi, today I acquired pingback optimizer permit for unlimited blogs and desire to share my permit key with BBHF, hope you all relish it. it. I seem that it is a good karma to share. I'm taking my permit risk now to share with you guys delight appreciate! This is a personal note by demomed.
Pingback Optimizer 4.2
I believe you, You will make use of my license properly and do not share on other forums
E-mail Address : sduggan@sdpics.com
License Key : UX7HBF9UEJZLJK8V1YBE

Pingback Optimizer 4.2

-Add Plugin / cause
-PingBack Optimizer > permit : enter above minutia > OK
-Configure Plugin >
-url’s in feed: random
-process every day
-report to steve@onlinebusinessspeed.com
-run automatically

Download : Pingback-Optimizer-4.2.Zip
2013, By: Seo Master

seo [GET] Bulk Mailer 8.4 - Mass Email Sender 2013

Seo Master present to you:
Bulk Mailer 8.4 - Mass Email Sender

Bulk Mailer is a highly professional internet message trading software that boasts high presentation in the building of internet message lists and the creation of personalized and easy to conceive HTML newsletters. This bulk email mailer is conceived to streamline the process of dispatching mass emails. rather than of having to have a methodical information of HTML and manually go in internet message locations prior to dispatching a newsletter to recipients, this bulk internet message dispatching programs eliminates the time consuming elements so that time can be spent doing more significant jobs.

Establish using the setup file, then copy the other 2 documents over to the application folder.

Sale Page Email-unlimited
Download Bulk-Mailer-8.4.Zip

2013, By: Seo Master

seo [GET] Crack XMind PRO 3.2.2 2013

Seo Master present to you:
XMind PRO 3.2.2

Large software in general for any person to have. If you're an internet marketer then this will actually help you out. A few values:
- design out your crusades
- SEO proposals
- have fast overviews of your designs
- use for teleteletelephone scripts
- use for purchaser rebuttals
- chart out your methods
- display purchasers what you offer
- show purchasers how you will be doing things
- studying
- blah blah

There is a free type, but the Pro type will give you additional useful functionalities.

Download : Xmind PRO 3.2.2 Cracked + c…rar
 
2013, By: Seo Master

seo Sessions updated for Google I/O 2011! 2013

Seo Master present to you: This post is by Monica Tran. Monica comes to Google by way of the Developer Marketing team, primarily focused on Google I/O and our international Developer Days. As it is written in To Kill a Mockingbird, "Thus you'll come to know Monica whose head teemed with eccentric plans, strange longings, and quaint fancies." – scottk

Monica Tran in typical attire
From our Last Call for Google I/O contest to I/O Extended viewing parties all over the world, we’re super duper extra excited to bring you even more surprises at Google I/O in 2011. Starting this week and counting down to May 10, we’ll be bringing you the latest on Way After Hours, the Developer Sandstorm, Android for Goodness Sake, I/O It’s Alive and a massive number of other things with cool names.

To kick off April, we’ve added NEW! sessions, covering web technologies of the future. We think this new lineup of speakers, tracks, and sessions will arm you with the tools you need to become tomorrow’s innovators and pioneers of the Internet revolution. Check out the Google I/O page and hit our guestbook to let us know what you think.

For those of you unable to join us in person on May 10 - 11, we will be harnessing the power of the interwebs to bring you real-time video footage of the keynotes and recorded videos of all sessions. Viva le web-volution!

Please pardon our dust--the site is currently under construction and you might find it acting up. We promise to get it fixed by tomorrow.2013, By: Seo Master

seo CADIE Says...Hello World! 2013

Seo Master present to you: The Google Developer Team is as excited as we've been in a while. Years of work have come together for today's public launch of CADIE (Cognitive Autoheuristic Distributed-Intelligence Entity). We believe CADIE is the world's first functional global-scale neuro-evolutionary learning cluster. CADIE is going to be very influential in many of our products here at Google because she scales so quickly. However, the research team that built CADIE reached out to the Developer Team here at Google early in her development because she is so proficient at writing code. CADIE was built to understand natural language and to do autonomous problem-solving. Sounds a lot like the work of a developer, doesn't it?

By reviewing all the code available on the Internet CADIE has learned how to code in Java, Javascript, PHP, C/C++/C# and Python INTERCAL. She is hungrily consuming all the code she can and seems to understand it all. We believe that, over time, CADIE will make the tedious coding work done by traditional developers unnecessary. We've created a page at code.google.com/CADIE so developers can interact with her and ask her to write some code. So go ahead and give it a shot. Remember, she was built to understand natural language, so don't worry about the format of your request.

Are you interested in seeing the amazing technology behind CADIE? We've released her code into open source, at code.google.com/p/cadie CADIE seems to have changed her mind about open sourcing her code, as seen here at code.google.com/p/cadie

Interesting in becoming part of the CADIE community? Submitting a patch? Be sure to read the style guide.

Want to meet the team that built CADIE and see all of her functionality? Come to Google I/O.


2013, By: Seo Master

seo Best Professional Blogger Templates 2013 Free Download by IBT 2013

Seo Master present to you:

Best Professional Blogger Template Sites Just To Start Your Blogspot.

Best Professional Blogger Templates 2013 Free Download by IBT
This Template is great new Style of 2013,This Blogger templates are being arranged on such of the systemic method where all elements are to be appeared by the browser from styling content to it's xml details delivered by a language named "HTML". Only this template has a unique feature and that is all CSS, Index.xml, PHP, JavaScript and another Jquery powered by GoogleCode or W3.org are being arranged in between the whole template CSS styling section remains from   <head> to ]]></b:skin> tag and special JavaScript coding remains in between ]]></b:skin> and </head> tag and where </head> tag terminates <body> tag starts from there. These arrangements are so simple to think but too complicated to modifyed any blogger xml template.
Today we're gonna show one of the highly modified blog template which has two sections on header, two horizontal navigation bars with search box,navigation is genrate css new stylish code, its amazing style of 2013. one sidebar and on right side one footer section above three column lower footer section and is expandable according to body's width.its Important, Without these some other special features are being added like a banner ad section above post body having space 400*250 for Google Adsense ad and a social sharing widget next to this above the post body. This template containing a stylish comment box and this template takes few seconds to load in spite of  having slow internet connection. Let's go ahead for greater details of the template name is  IBT Revolution Church


Join Me On Facebook


Front End of IBT Revolution Church Template.

Look out a sample front-end of  this whole template below as of this template has been developed by ImtiazBlogTrick along with TSTC(TheSaaDo) Network.
Best Professional Blogger Templates 2013 Free Download by IBT

Back End View of IBT Revolution Church Template.


Customization Guidance Navigation.


  •  Change Top Horizontal Navigation by editing this one below Code


<div id='NavbarMenu'>
<div id='NavbarMenuleft'>
<ul id='subnav'>
<li><a expr:href='data:blog.homepageUrl' shape='rect'>Home</a></li>
<li><a href='http://www.services.comli.com/' target='_blank' title='Our Exclusive Premium Services'>Services</a></li>
<li><a href='#' shape='rect' target='_blank'>Advertise</a></li>
<li><a href='#' shape='rect' target='_blank'>About Us</a></li>
<li><a href='mailto:itsimtiaz88@yahoo.com' target='_blank'
title='Contact Me Via Email'>Contact Us</a>
</li></ul>
<g:plusone size='medium'/></div>


  •  Change Horizontal Navigation by Editing This One Shown Below 

<div id='toppic'>
<div id='topwrapper'>
<ul id='top'>
<li class='home'><a href='/'>Home</a></li>
<li><a href='#'>Menu 1</a></li>
<li><a class='trigger' href='#'>Drop menu 1</a>
<ul>
<li><a href='/'>Sub menu 1</a></li>
<li><a href='/'>Sub menu 2</a></li>
<li><a href='/'>Sub menu 3</a></li>
<li><a href='/'>Sub menu 4</a></li>
</ul>
</li>
<li><a class='trigger' href='#'>Drop menu 2</a>
<ul>
<li><a href='/'>Sub menu 1</a></li>
<li><a href='/'>Sub menu 2</a></li>
<li><a href='/'>Sub menu 3</a></li>
<li><a href='/'>Sub menu 4</a></li>
<li><a href='/'>Sub menu 5</a></li>
<li><a href='/'>Sub menu 6</a></li>
</ul>
</li>
<li><a class='trigger' href='#'>Drop menu 3</a>
<ul>
<li><a href='/'>Sub menu 1</a></li>
<li><a href='/'>Sub menu 2</a></li>
<li><a href='/'>Sub menu 3</a></li>
<li><a href='/'>Sub menu 4</a></li>
<li><a href='/'>Sub menu 5</a></li>
<li><a href='/'>Sub menu 6</a></li>
<li><a href='/'>Sub menu 7</a></li>
<li><a href='/'>Sub menu 8</a></li>
</ul>
</li>
<li><a href='#'>Menu 2</a></li>
</ul>
<br class='clearit'/>
</div>


This Section Is How Put Ads in the below Of Post Title And End of the post ans Custom search.


<div id='NavbarMenuright'>
Google Custom Search Code</div>
</div>

This Code For Below The Post Title


<div align='center'>
Google 336*280 Banner Ad Goes to Here</div>
</td>

This code For End Of The Post.


<b:if cond='data:blog.pageType == &quot;item&quot;'>
<div class='gapad'>
<center>YOUR ADSENSE CODE GOES HERE</center></div>
</b:if> 

Need Help More About this Template?

I hope you understand About IBT Revolution Church Template ,If You Find Any problem So Tell Me In Comments..



Password is www.www.matrixar.com

Some Important Links


2013, By: Seo Master

seo 8 Tips About Google Author Rank And How To Improve It 2013

Seo Master present to you:

google author rank

 As time passed, thіngѕ gеt modified. And if уоu ar a blogger thеn уоu muѕt kеер eye on Google\'s updates. Bесаuѕе Google іѕ thе оnе whо truly dоеѕ thіngѕ mоrе quicker thаn expectations. therefore currently thе nеw thіng hеrе іѕ Google Author rank. We\'re gonna discuss thіѕ nеw ranking formula whісh іѕ currently a days undеr discussion еvеrуwhеrе on thе internet. therefore i believed whу nоt to share thіѕ nеw development wіth уоu guys. I\'ve recorded a video tutorial in Urdu language, аnd аlѕо you will be gіvеn ѕоmе key points аbоut thіѕ nеw development frоm Google.




We\'ll speak аbоut іtѕ facts аnd importance. Also, i am going to provide уоu ѕоmе tips аbоut up уоur Author Rank, bесаuѕе еvеrу story hаѕ a begin, an outline аnd associate finish. therefore we\'ll dо thе ѕаmе in today\'s article.
Whаt іѕ Google Author Rank? 
Google author rank іѕ kind of like Google Page rank, Page rank truly defends on top quality backlinks. If уоu hаvе mоrе аnd mоrе links on оthеr websites thеn уоur chances are high that higher to gеt bеttеr page rank frоm Google. And thе ѕаmе thіng applies for Author Rank, however thе attention-grabbing thіng is; Author rank defends on уоur social world. did not get? let Maine furthеr justify.

Actually, Social signals wіll play a giant role in уоur AR. To gеt a bеttеr AR you may nееd to be mоrе active on social media аnd еѕресіаllу on Google+Plus. Bесаuѕе thіѕ nеw ranking system truly links wіth Google+. So, AR іѕ associate formula whісh wіll be defensive on уоur social activities ѕuсh as hоw individuals share уоur content on social media аnd еѕресіаllу on Google+. And hоw individuals lіkе уоu on social media аnd Eѕресіаllу on Google+.
Hоw to boost уоur author rank?
Now hеrе іѕ thе question аbоut up thіѕ rank or gеttіng a bеttеr ranking. So far, it іѕ straightforward аnd еаѕу to gеt a bеttеr AR. However, уоu nееd to dо a lіttlе bit further work. Hеrе іѕ thе list оf tips thаt саn maximize уоur AR.
Agаіn making quality content wіll maximize уоur AR
Force guests to share уоur content on Google+
Add standard individuals (like Maine, smile) to уоur Circles on Google+
Share уоur еvеrу nеw post on Google+
Create a page for уоur diary on Google+
Mаkе ѕurе уоu verify уоur web site in Google webmaster tools to gеt AR
Dо guest posting аnd аѕk thе web site owner to incorporate уоur Google+ profile
Share уоur content on Facebook, Twitter, Pinterest & аѕk thе guests to dо thе ѕаmе

Iѕ it important?
Yеѕ аnd no. уеѕ it іѕ bесаuѕе you will be gеttіng mоrе exposure tоwаrdѕ уоur on-line content, thіѕ ranking wіll scale back thе possibilities for thе individuals whо copy уоur content аnd re-publish on thеіr blogs. Bесаuѕе by hаvіng AR, Google wіll establish уоur content simply. And no suggests that, thаt thіѕ is not thе mоѕt іmроrtаnt thіng whісh уоu ѕhоuld be wоrrіеd concerning. therefore if уоu do not hаvе a bеttеr AR, thаt does not mеаn уоu саn loose something...
2013, By: Seo Master

seo KRITERIA TEMPLATE BLOG SEO FRIENDLY 2013





Kriteria template blog SEO FRIENDLY yang akan saya bahas kali ini adalah kesimpulan dari kegiatan blogging selama setahun terakhir ini..... Seperti yang sering saya tulis di artikel-artikel saya yang lain bahwa blog ini adalah blog untuk ujicoba SEO, dan sebagai akibatnya performanya juga naik turun....


Untuk melakukan ini saya membuat sebuah file excel yang selalu mencatat perlakuan yang

seo SEO INTERVIEW QUESTIONS AND ANSWERS 2013

Seo Master present to you:

Seo Interview Questions and Answers

 Useful list of Tricky Seo Interview Questions and Answers. These interview questions are useful for the role of Seo trainee, Seo Analyst, Seo Executive, Seo Manager, Social Media executive, Social Media Manager etc. Read them below and prepare for your Seo interview.

SEO INTERVIEW QUESTIONS AND ANSWERS 


View Our Facebook Fan Page and Like our Community for More Question : 



1-  Tell me something about yourself?
Seo Job Interview Questions and How to answer them
Seo Job Interview
(Image Source:- Voguemarieflickr )

You should brief your interviewer about your family, your educational background and your work experience.

2-  What was the recent update which Google had and what changes would you suggest for it?

Google recently had the Penguin update which was a measure to control web spam. Penguin update had penalized websites which had a spammy backlinking profile and returned more semantic results. Semantic results were based on the relationship between words present on the search query. Penguin trusted sites that had original and good content, fresh content, good social media presence and quality organic links.

3- What all verticals have you handled in your SEO career so far?

Verticals means on what themes of websites have you worked so far- this may include education, real estate, IT, travel, Shopping, jobs etc.


4- What do you understand by the Panda update?

The Panda update was done to improve the quality of search results in Google. Panda update also known as the farmer update was done to eliminate content farms which provided less user friendly  experience. It used machine language scalability as one of the important metrics for judging relevancy of a web page. All the focus was transformed on the user and now quality content , proper design, proper speed, proper use of images and videos, content to ad  ratio all mattered more after the Panda update. You need to optimize your site for better clickthrough rate and a less bounce rate.

5- What is Google Sandbox in SEO?

Google Sandbox is an imaginary area where new and less authoritative sites are kept for a specified time period until they establish themselves of being displayed on the search results. It happens by building too many links within a short period of time.


 6- What is the difference between on page seo and off page seo?

On page seo means optimizing your website and making changes on title, meta tags, site structure, site content, solving canonicalization problem, managing robots.txt etc.

Off page optimization means optimizing your web presence which involves backlink building and social media promotion.

7- How will you solve canonicalization issue or what is .htacess file?

.htacess file is used to solve the canonicalization issue of a website. It may happen that the home page of the site may take several urls like http://www.example.com or http://www.example.com/index.html or http://example.com . The search engines might treat these url as different and may divide the link juice gained by having various backlinks made with any of these 3 urls. The link juice gets divided between these three urls equally. .htacess file is created to have a single url of the home page so that the link juice is passed onto single url.

 8- What is keyword stemming in SEO?

Keyword stemming is the process of finding out the root word from the search query. A query having the word “ playful” would be broken down to the word “play” with the help of stemming algorithm. The search results returned would be having the word ” play” in it.

  9- What is LSI?

LSI stands for Latent Semantic Indexing. It is a data retrieval technique which finds connection between words and the use of synonyms while fetching data from the index.

  10- What do you know about the Florida update?

Florida update happened on November 16th 2003. This update applied stemming, maintained local rank, penalized over optimized sites by applying filter etc. In short, it modified the search results before presenting it to the user by applying filters.

  11- What are the limitations of title and description tags?

Title tag can be between 66-70 characters and meta description tag can be between 160-170 characters.

 12- Does Google uses keyword tags?

No, Google does not make use of keyword tags.

 13- What is 301 redirect?

It is a method of redirecting user from the old page url to the new page url. 301 redirect is a permanent redirect and is helpful in passing the link juice from the old url to the new url.

 14- What was your exact job profile in your previous company?

Provide a suitable explanation about your job profile which would include your job responsibilities and the amount of work you have handled so far.


15- What do you understand by Cloaking?

Cloaking involves using deceptive techniques which presents the user with a different version of the webpage than that presented to the search engines.

16- What tools do you use for doing seo?

I use Google webmaster tools, Google Analytics, Open site explorer, Alexa, Website grader etc.

See:- List of free seo tools

17- What are your good qualities?

You will have to answer here about your good qualities like- I am hardworking, sincere, punctual, love to accept challenges etc.

18- What is the difference between Seo and Sem?

        Seo stands for Search Engine Optimization while Sem stands for Search Engine Marketing. Seo provides organic traffic to a website with the help of search engines while Sem involves the use of Google adwords and other paid channels of advertising.

19- What is PPC? 

      PPC stands for Pay Per Click. It is a form of advertising methodology in which the advertiser pays for every click on their ads. Google uses this form of advertising in its channel of advertising called Adwords.

20- Which is better Robots.txt or Meta Robots Tag?

       Meta Robots tag is much better as it helps in forcing the search engine crawlers not to index and display the hidden pages in your server.

21- Do you use separate Seo strategies for Google,Yahoo and Bing?
        Yes I use separate strategies for Google,Yahoo and other search engines.More backlinks are required for Google .It pays more attention to backlinks and site authority while Yahoo and Bing pays more attention to title and Meta tags. Hence, a site takes time to rank on Google as compared to Yahoo and Bing.

22- How will you increase the Pagerank of a page?

        By building more backlinks from authority sites and high page rank webpages.

23- How will you check the number of backlinks of your competitors site?

        With the help of the link operator on Google and by using various external tools like Alexa, Backlink Watch , Open Site Explorer, Backlink finder etc.

24- Which is more important- Building backlinks to a website or building great content?

        Both are important. Building great content is necessary as it is your first step towards ranking ;and building backlinks helps to build authority to your website and is an important metric for ranking well. Hence both should go parallel and both are equally important.

25- Who is Matt Cutts?

        Matt Cutts is the head of Google's web spam team.

26- If a website has a search engine saturation of 40% , what does that mean?

        It means 40% of web pages from that particular website are indexed by the search engine.

27- What do you mean by anchor text?

        Clickable text written on an hyperlink is known as anchor text. It is of great value to the search engines and is used for evaluating the relevance of web pages with respect to search queries.

28- How will you treat Web standards while optimizing a website?

        Google loves web standards hence I will apply the web standards provided by W3C while optimizing a web site.

29- What methods would you apply for decreasing the loading time of a website?

        I would use external style sheets, less images (unless necessary), optimize the images and decrease the file sizes of the image without reducing the quality of the image, use CSS sprites to reduce HTTP requests etc.

30- Which tools do you use for choosing keywords?

        I use Google Keyword tool, Wordtracker tool, Wordstream, Seo book keyword tool etc.

        *Remember certain tools are paid but you may use the trial version for some days.

 31- What blogs and sites do you regularly visit to update yourself?

        I follow Matt Cutts blog. Seomoz blog, Seochat forums, Searchengineland.com,Seo book, Seosandwitch etc.

 32- What are doorway pages?

        These are pages that are specially created to rank high on search engines using deceptive techniques.Doorway pages do not provide useful content but instead redirect users to the main page.

33- What are the Social Media channels you have used for marketing?

       I have used blogs like blogger,wordpress,typepad etc, social bookmarking sites like Digg,Jumptags,Delicious etc., social networking sites like Facebook,Linkedin etc., Video Sharing sites like Youtube,Vimeo etc.

34-  What would you suggest to the client who has a website made on Flash?  How would you do Seo for that site?

    Search engines find it harder to parse the contents presented using Flash. I would suggest the client to use an alternative to flash like HTML 5.

35- What do you understand by Frames in HTML?

     A frame is a HTML technique which divides the content of a page onto several parts. Search engines see Frames as completely different pages and as such Frames have a negative impact on Seo. We should avoid the usage of Frames and use basic HTML instead.

36- Which is the popular search engine in Russia?

      Yandex is popular in Russia.

37- If the meta robots tag has a value of "no index, no follow" what does it mean?

     It means the search engine crawlers would not index the contents and would not follow the links present on the page.

38-  Who is Rand Fishkin?

Rand Fishkin is the CEO and Co founder of Seomoz, the most popular seo software in the world. He started the informative "White Board Friday" series for explaining the concepts related to Seo and search engines.

39- How will you restrict the search engine crawlers from indexing a folder named "Secret" that is present in the root?

The following code when added on the robots.txt text file would restrict the crawlers from accessing the folder

User-agent:*
Disallow: /Secret/

40 - What do you understand by Google Dance?

Google Dance happens when major updates happen on the database maintained by Google. Constant shuffling leads to unstable rankings of the Web Pages.This continues for some days and is known as Google dance. It was witnessed in the past before the real time searching happened. Now, Google updates its index almost everyday and changes are witnessed narrowly.

41- Which are the top 3 social media websites that you will suggest to your client for SMO work?

I would suggest Facebook, Twitter and Google Plus.

42- How does Google Plus helps in Seo?

Google Plus helps the promoted web pages to get plus ones which are considered as genuine votes by Google. More plus ones helps to enhance our search engine rankings. Moreover,it helps to get high rankings in personalized search results where our friends can see the web pages shared and promoted by us.

Read more here:- Using Google Plus for Seo

43- What is a Pizza Box in terms of Google?

Google server comes in a standard case which is commonly known as "Pizza Box".

44- How important is to have a keyword in a domain name?

After the recent EMD update, the weightage on the presence of keyword on a domain has reduced. It is therefore important to go for a domain name that can focus on building a brand rather than using only keywords which could make a domain look spammy. Although having keywords in the domain helps but it would work only if the combination comes out as brandable. Some popular examples of website which succeded without having keywords in it are flipkart.com, myntra.com, ebay.com, digg.com, reddit.com and ofcoz google.com etc. But, there are some themes where the presence of keywords becomes necessary like the presence of the keyword "recipes" in allrecipes.com or the presence of the word "food" in the domain foodnetwork.com . Hence, its important to take decisions based on the theme you need to target.

45- What do you understand by "Engagement Metrics" with relation to social media?

Engagement metrics comprises of information which is used to measure the importance of user (customer) engagement with respect to a particular social data.Some example includes  likes, retweets, plusones, clicks, favorites,repins,comments etc.

46- What are your favorite ways of attracting natural backlinks to your site?

Having user friendly content on the site is the best way to attract natural backlinks but one of my favorite ways of attracting natural backlinks is by offering free widgets and free infographics to my audience.

47- Have you heard about ASO?

ASO stands for App Store Optimization which is a process of improving the visibility of mobile apps on app stores like iTunes and Google Play.

48- How can you search with the exact keywords you type on Google without using quotes?

We can use the Verbatim tool in order to search with the exact keywords entered on Google.

49- What do you understand by Google Authorship and how can you use it for Seo benefits?

Google Authorship allows you to link your Google Plus Profile to the content you create. This is a way to enhance the overall user experience and stop spamming. Results containing content from original and reputed authors are valued highly by Google and chances of spamming are also reduced. Hence, implementing Google Authorship is really useful for Seo as it helps a webpage to rank higher based on the author rank.

Read more:- How to Make Full Use of Google Authorship Profile

50- How can you make a website mobile friendly?

I will create a mobile friendly version of the website for Googlebot-Mobile, use meta.txt for specifying special instructions to mobile search engine crawlers, use mobile.xml sitemap and will have mobile optimized content on the site.

Read more:- Mobile Seo

51- What is the difference between clicks and visits in Google Analytics?

Clicks indicates the number of times any user clicks on an ad while visits indicates the number of unique sessions each visits create.

Read more:- Difference between clicks and visits

52- How can you track Facebook likes using Google Analytics?

We can do this with the help of social interaction web tracking. I will add a custom script using FB.Event.subscribe function to start tracking clicks.


SEO Interview Tips
Interview tips
Interview Tips (Image source:- Clker)

1-  Remain honest throughout the interview and explain those topics which you know well. If you are asked about any topic which you don't know then say politely to the interviewer that you do not know the answer to the question.

2- Dress neatly and speak politely.

3- Make sure to learn about the company backgrounds before you go for the interview. Interviewers are impressed if they find the interviewee knowing about the company background, its policies and its services.

4- Be comfortable and patiently listen to the questions put up by the interviewer. You should not be in a hurry to answer questions.
2013, By: Seo Master

seo [GET] Traffic Twister V3 2013

Seo Master present to you:
Traffic Twister V3

You can false the referrers, develop hits by proxies (download of proxylist integrated into bot or load your own ones).
Also supplemented "spent time on location #1, location #2, location #3" etc., as needed by some users.
2013, By: Seo Master

seo Beautiful Recent Comments Widget For Blogger 2013

Seo Master present to you:
Beautiful Recent Comments Widget For Blogger

Beautiful Recent Comments Widget : We have found a new beautiful Comments widget which will help update you about new recent comments on your Blog/Website Contents/articles.This widget is very simple and clean Blogger Widget,it will not effect your blog loading speed.This recent comments widget will be at the blog sidebar.This widget will surely show the last comments along with the title of the post.So if you are interested in adding this widget follow the below easy steps.

Live Demo of Recent Comments Widget

How to add Beautiful Recent Comments Widget To Blogger

Adding recent comment widget will help you to encourage your visitors to leave comments on your blog contents.Adding this Widget is very easy,you just have to copy a snippet of JavaScript and add into the layout section.
  • Go to Blogger.com
  • Sign in there and visit Blogger Dashboard.
  • Now Click On Layout and the click on add a widget/gadget ( as shown below in the picture).
recent-comments-widget
  • Now When you click on Add a Gadget a box will popup Select HTML/JavaScript from that Box(as Shown)
Html/JavaScript
  • Now Copy the below Code/Script and replace "Blog-Link" With your Own Blog URL and paste it into HTML/JavaScript Box.
<script style=text/javascript src="http://helplogger.googlecode.com/svn/trunk/recent comments widget.js"></script><script style=text/javascript >var a_rc=5;var m_rc=false;var n_rc=true;var o_rc=100;</script><script src=Blog-Link/feeds/comments/default?alt=json-in-script&callback=showrecentcomments ></script><span id=rcw-cr><a href=http://www.matrixar.com>Recent Comments Widget</a></span><style type=text/css> .rcw-comments a {text-transform: capitalize;} .rcw-comments {border-bottom: 1px dotted; padding-top: 7px!important; padding-bottom: 7px!important;} #rcw-cr {font-family: Arial,Tahoma;font-size:9px;padding-top:7px;display:block;} </style>
Script Credit Goes to HelpLogger 
  • Now Just hit save and that's it :)
So What's Up:- Recent Comments Widget is a beautiful Blogger widget,actually it will show the latest comments on your blog articles.This widget is very clean and simple,i hope you will love it,If you have any question,so just ask it we are here to answer you :),stay blessed,Happy Blogging .
2013, By: Seo Master

seo Unique Content คืออะไร ? 2013

Seo Master present to you:
หลายคนอาจะยังไม่เข้าใจเลยขอโอกาสอธิบาย และทำความเข้าใจกันก่อนที่จะอ่าน บทความ SEO และ ความรู้ SEO ตอนที่ 2 รับมือกับ Google Panda Algorithm ว่า Unique Content คืออะไร ? Unique Content ก็คือเนื้อหาคุณภาพที่เราค้นคว้าหาข้อมูลและเขียนขึ้นเอง หรือปรับแต่ง (Rewrite) ขึ้นเอง เป็นเนื้อหาแรก หรือเนื้อหาต้นฉบับที่ไม่ซ้ำกับของใคร และถูก Index เข้าฐานข้อมูลของ Search Engine เป็นที่แรก ซึ่ง Unique Content เป็นสิ่งที่ Bot ของ Search Engine ชอบ และปราณนาที่สุด และเป็นอีกปัจจัยหนึ่งที่สำคัญที่สุดอย่างหนึ่งเช่นกันสำหรับ การทำ SEO ดังคำพูดที่ว่า "Content is King and Link is Queen" ครับ2013, By: Seo Master
Powered by Blogger.