Ads 468x60px

freak2code is the blog about latest geek news,software reviews ,trends in technology and more informative stuff......

Sunday 16 September 2012

Following The Trend: Mozscape Gets Faster and Cleaner


Following The Trend: Mozscape Gets Faster and Cleaner

by vianay gautam

Posted by AndrewDumont
There's a trend emerging with Mozscape, and it's a good one. Updates are getting more regular and indexes are increasing in size (with exception to a few bumps in the road). Today, we're happy to announce a few more awesome features to add to that list!
A few weeks back, Rand announced the Mozscape API beta, and the Moz community came by the dozens to try it out. Thanks to that passionate group of beta testers, we nailed down some bugs and battle-tested the new API.
Now, it's ready for primetime.
Starting today, Mozscape just got a whole lot faster. It now supports 200 requests per second for everyone on paid levels -- that's a 20x increase from the current paid levels! This rate limit increase will allow users to pull Mozscape data as they please, with a lot less wait time in between requests. Even better, you don't need to change a thing on your end to utilize latest update as a paid Mozscape user - just keep calling. No new keys, no new code.
Free Mozscape users, we didn't forget about you! We've got a small rate limit increase coming your way in the coming weeks.
We're also rolling out a fresh update to the Mozscape API documentation. We've heard time and time again that the old documentation caused headaches for folks who have tried to integrate Mozscape data. That's a bummer, so we completely refreshed the structure of our API documentation to remove some of the pain that came with navigating through the docs. This update is also live as of today.
All of these updates tie directly back to the theme of progression with Mozscape. We've got some of our best people on the job, and some 18 million resources behind improving our data (if you know what I mean). Much more to come!
PS. If you've built something awesome with Mozscape, drop me a line or let us know in the comments. We may be sending some love your way soon.

How To: Advanced rel="canonical" HTTP Headers


How To: Advanced rel="canonical" HTTP Headers

by vinay gautam

Posted by Kevin Graves
This post was originally in YouMoz, and was promoted to the main blog because it provides great value and interest to our community. The author's views are entirely his or her own and may not reflect the views of SEOmoz, Inc.
On February 12th, 2009, Google began to support the link rel="canonical" tag, which was later adopted by Bing and Yahoo, for specifying a preferred version of a URL. It wasnt until June 17th of 2011 that Google announced the support for rel=canonical in the form of an HTTP Header, giving webmasters yet another avenue to provide a preferred URL for non-text/html content-types such as PDF files, that were otherwise unable to have a specified URL using the link tag. In retrospect, this was relatively important news for SEOs, helping to minimize potential duplicate content issues, especially in wake of content penalties waged against site owners in recent years. This nontraditional method to this day is underutilized, and I believe that, now more than ever, SEOs should start leveraging and considering the power of this method for non-text/html content-types.
There are a lot of reasons that the link HTTP header has not had a ton of traction in the SEO industry:
  • SEOs are heavily focused on traditional URL consolidation for text/html content-types
  • Canonical HTTP headers are more difficult to implement dynamically than the link HTML tag.
  • Implementation may require additional access where privileges may be limited.
  • Implementation may require additional server modules to be enabled or installed.
  • Implementation can easily create server errors, if not handled correctly.
For the most part, these non-text/html content-types, specifically PDF files, add content and value to sites. They can be crawled, indexed, contain links which when shared across the web act as natural link building, and pass PageRank. Link HTTP Headers should be added to these content-types when applicable.
I recently was digging into the Apache documentation and surfing different articles for information about a more advanced implementation. I was surprised to see that there were not many advanced methods or tutorials on how to dynamically add in the HTTP header, and so I am bringing this to the community.

HTTP Headers Using PHP (Text/HTML Types):

The rel="canonical" HTTP Header can easily be added to a text/html content type that supports PHP using the header() function. Using the proper syntax shown in Google's documentation coupled with PHP will allow us to accomplish this.
 HTTP Header Response using PHP
Adding this header() function before any HTML is output will append a link rel="canonical" HTTP header to the headers before they get sent.
This minics the rel="canonical" link tag. The only difference is sending the preferred canonical URI using an HTTP header versus a <link> tag. Traditionally the <link> tag has been by far the most popular choice of implementation. This function, however, will be used in the advanced section of this article.

HTTP Headers Using .htaccess (non-Text/HTML Types):

The HTTP Header can modified relatively easily using .htaccess for all content-types, such as PDF files. This solution works great for sites that have a relatively small amount of files which you need the header added to. In this example I'm showcasing an application/pdf content-type.
Apache Files Directive
This snippet of code when implemented will add a HTTP Header to the PDF file pointing to an HTML page with the URL of /page.html.
The filename argument should include a filename, or a wild-card string, where ? matches any single character, and * matches any sequences of characters.
Regular expressions can also be used, with the addition of the ~ character.

Advanced Dynamic HTTP Header Implementation (non-Text/HTML Types):

The dynamic implementation of the HTTP Header for application/pdf content-types i'm about to show you is more advanced and does require knowledge with .htaccess and PHP, although I will provide the examples.
The first step is to create php file to control the output of the PDF. This can most easily be done by rewriting a URL.
PDF URL Rewrite
This RewriteRule, when added to an .htaccess file, simply allows us to control the PDF file from a php file named "pdf.php". Anytime a user or search engine tries to access a URL that contains the file extension ".pdf", the pdf.php file will be referenced for instructions on how to display the file. This gives us the ability to perform conditional logic to add a canonical HTTP header.
Adding a link  in PHP
This snippet of code when added to pdf.php, will check if the URL of the PDF file exists. If it does, we can then perform logic to add in the canonical HTTP header, otherwise, we want to return the file as a 404.
As you can see, the conditional logic has been commented and does not currently function although this is where I leave you in good hands to create your own logic based on your needs.
For example, you may have a csv or txt file you would like to read from. Those files could contain a list of pdf files and corresponding URLs that you would want to have the HTTP header added to. You may also have table(s) or column(s) of useful information in a database that you need to reference to find the corresponding URL to point to the preferred URL. There are many possibilities.
It is also important to note the other two additional headers added for the content-type and content-length. These are necessary for proper output. If we do not set the content-type to application/pdf, the file will be treated as a text/html file.

Check Your Headers

How do you know if the HTTP Headers have been sent? Verify them using a tool. The Web Developer Toolbar for Firefox is a great tool not for just implementing HTTP Headers. Another tool that can be used is Live HTTP Headers. You can also use a third party web-based tool for development sites that are generally not hosted locally.
Example of HTTP Headers Sent

Caution

I highly recommend testing any dynamic HTTP Headers using .htaccess on a development or local site before pushing changes live. There are potential errors that can occur, and it also gives us the chance to QA the implementation as well.

What I Used

  • PHP
  • Apache
  • mod_rewrite enabled
  • mod_headers enabled
Note: These script examples are very minimalistic on purpose to showcase the fundamental code necessary to perform the method. There are many different ways to add the canonical tag in the form of an HTTP Header. This simply showcases examples for users running the most widely used server and framework. Windows running IIS does not use .htaccess files unless third party extensions are enabled. They also are different with regards to case sensitivity using file_exists( ) with PHP.

How To Use Google+ And Rel=author To Start Building Your AuthorRank


How To Use Google+ And Rel=author To Start Building Your AuthorRank

by vinay gautam
Google+ AuthorRank
As Google continues its quest to provide its users with the most authoritative and relevant search results, the folks over at Mountain View have devised a strategy for connecting authors with their content.
Their technique is called AuthorRank, and it's shaping up to change how quality content is pushed through the SERP's.

What is AuthorRank?

AuthorRank is a quality score or online reputation measured by the quality of content that an author has published. Here's the specific language from Google's Agent Rank patent:
The identity of individual agents responsible for content can be used to influence search ratings.
Assuming that a given agent has a high reputational score, representing an established reputation for authoring valuable content, then additional content authored and signed by that agent will be promoted relative to unsigned content or content from less reputable agents in search results.
This means that when an author publishes content on a certain subject, their AuthorRank will increase and they will be considered more authoritative for that subject. For example if I publish 2-3 articles a week about Search Engine Optimization, my AuthorRank will begin to increase in the category of SEO. Now the same reputation points do not carry over if I publish an article on, say, knitting. This is because although I have a high reputation for SEO, that does not relate to me having any knowledge about knitting. This means that your AuthorRank is split up into the various categories you produce content for.

How does AuthorRank Affect the SERP's?

As it stands today, AuthorRank has no direct effect on PageRank, however I foresee it having a strong impact in the future. As Google tirelessly tries to update their algorithm with the purpose in mind of serving up only quality content for its users, it only makes sense that it starts awarding content publishers for producing said quality content.
Even though today there is no direct impact on PageRank, giving yourself authorship of an article can be leveraged to affect your click through rate in the SERP's. When you give yourself authorship of an article, information about you is pulled from your Google+ profile and displayed next to your article in the SERP's.

This is what Google calls a "Rich Snippet". This is a great way of getting your articles to stand out in the SERP's. Notice that your Google+ profile picture, your name and how many circles you are in is displayed directly next to your article in the SERP's. This is the biggest benefit today, of giving yourself authorship of an article, as your AuthorRank is currently just a stored value for Google's future use.
How do you give yourself authorship of an article you may ask? With the rel="author" attribute of course!

How to leverage rel="author" and start building AuthorRank

You've seen it countless times – the section at the bottom of a blog post that talks about the author and links to all their related social networks. Most people don't take the time to read these so they are often neglected by the author. However with AuthorRank this "About the Author" section becomes very important.

Including this section in your articles alone will not give you authorship of an article in Google's eyes. To tell Google that you are the author of the content you must include the rel="author" attribute in either the <a> tag or the URL when linking to your Google+ profile.
Adding rel="author" to the tag:
<a href="https://plus.google.com/u/0/118293635348546493797" rel="author">My Google+ Profile</a>
Adding ?rel=author to the URL:
<a href="https://plus.google.com/u/0/118293635348546493797?rel=author">My Google+ Profile</a>
Now what your blog is properly configured you need to make sure your Google+ profile is as well.
Login to your Google+ account and make sure your profile is set to public.

Next, add yourself as a "contributor" to the sites you publish content for.

That's it! You are now set up to start building your AuthorRank.
I myself am very excited to see what Google decides to do with AuthorRank, but it seems clear to me that with the combination of Google+ (an identity platform) and rel="author" (a digital signature), Google will begin to use AuthorRank as a way to help deal with the massive amount of content that currently exists on the web. My advice is to start building your AuthorRank by publishing quality content on your blog as soon as possible, because if Google does decide to influence search results based on AuthorRank, that update could come as a huge hit to those who currently outsource and produce low quality content for their blogs.
Leave a comment below and let me know how you think Google could use AuthorRank to affect PageRank and what it may means for SEO's in the future.

Make Your Site Even More Mobile Friendly with Responsive Design


Make Your Site Even More Mobile Friendly with Responsive Design

by vinay gautam

Times have changed and so have our ways of accessing information via internet browsers. The Internet is no longer accessible on desktops/laptop browsers alone. It is evolving rapidly and now your website needs to accommodate mobile browsers accessible within mobile devices, such as smartphones and tablets. While desktop browsing still far exceeds by 2015, more U.S. Internet users will access the Internet through mobile devices than through PCs or other wireline devices. (More Mobile Internet Users Than Wireline Users in the U.S. by 2015, IDC, September 2011). Consequently, if you have a website, traffic to it will come increasingly from mobile browsers than from web browsers.
Is your website optimized for mobile devices, and how flexible is it to adapt to the many different resolutions of the various smartphones and tablets on the market today? In other words, do you know how the experience will be for users viewing your website on Sony Ericsson T715 or iPad mini rumored to release in October of this year?
Experience Responsive Web Design
A quality mobile user experience requires a different design than whats needed to satisfy desktop users especially given the fact that user attention span on mobile devices are quite short compared to that on desktop browsers. With the rapid proliferation of mobile phones, tablets, and other mobile devices, it would require multiple sites or massive style sheets and scripting to cover every possible situation a user might encounter. One can do so but there is an easier alternative " Responsive Web Design. Websites built using Responsive Web Design automatically adapt the content and/or the layout of the website to match the size and shape of the screen of the mobile device the end user is viewing. Responsive Web Design has gained so much popularity lately that if a user views a site on a phone and it does not dynamically adapt, its annoying.
Debt Relief Attorneys, Los Angeles, CA on iPhoneHere is a simple way to experience Responsive Web Design (yes on your desktop!). Visit this website and then re-size the window. Notice how the graphics on the page change in simple but elegant animation. The desktop screen morphs into a laptop screen, then a tablet, and finally a smartphone as the browser window gets smaller. Whether accessing this site via an iPhone with a Safari browser or a small tablet (480×640 px) or on an iPad (landscape or portrait layout), you will experience a different layout, but a comparable user experience.
Notice there is no horizontal scroll bar as the layout has morphed itself to fit the device screen.
How is this done? One can use liquid layouts (a.k.a. flexible grid) where instead of fixed absolute pixel dimensions we use relative units (em or ex). In other words, the actual size of an element is computed in relation to the size of its parent element. This will convert designs pixel-based dimensions into percentages, and keep the proportions of grid intact as it resizes. In conjunction with liquid layouts, one can use CSS media querieswhere different breakpoints or thresholds are used depending on how your site flows and looks on various devices. It basically means that depending on the resolution of the device you are using, a different layout and/or content may be used.
The biggest benefit to responsive design is the ability to adjust the layout of your content and perhaps the content itself to fit your user in their environment. Another one to note is by using the same URL for both mobile and desktop version means single destination for link building. This will facilitate social sharing of pages via mobile phones meant for desktop consumption. Google recently spoke openly about recommending use of responsive design for mobile strategy.
Check Out More Examples
I invite you to experience an example of Responsive Web Design website we created -Immigration Attorneys, Philadelphia, PA. Some other sites for you to experience responsive design concept are Boston GlobeSony,Starbucks, and food sense. I hope seeing these examples and reading this post, you will be convinced that Mobile Responsive Design is The Future of The Web.

Enterprise SEO, the logical question


Enterprise SEO, the logical question


jump-ship
Google's Penguin and Panda updates have created a sea of turmoil. But before you jump ship, or jump to conclusions, let's look at the current paradox of Enterprise SEO. Specifically, should Search Marketing Strategies turn towards content marketing and social media by copywriters rather than utilizing SEOs, who are often oversimplified as link builders? This blog will provide a matrix for Web Marketing Managers to analyze Enterprise SEO and the fundamental causes resulting in change. Additionally, we will discuss how you can apply this tool to your Search Marketing Strategy.
Panda and Penguin Defined
Panda is "designed to reduce rankings for low-quality sites-sites which are low-value add for users, copy content from other websites or sites that are just not very useful. At the same time, it will provide better rankings for high-quality sites-sites with original content and information."
Penguin is increasingly targeting inbound links, demoting sites/pages that appear to have unnatural inbound links.
Is SEO Changing?
Perhaps this SEO mutiny began at SXSW, where Google's Matt Cutts commented on the purpose of the recent updates, saying:
'So all those people who have sort of been doing, for lack of a better word, "over optimization" or "overly" doing their SEO, compared to the people who are just making great content and trying to make a fantastic site, we want to sort of make that playing field a little bit more level.' Matt Cutts went on to say, "we try to make our relevance more adaptive so that people don't do SEO."
This statement conceivably introduces the logical question of things that grow. Is SEO changing? The response to this proposition is bound to create a dichotomy between web marketing professionals who believe SEO remains viable and people who feel SEO is no longer the same.
Google's Panda update contributes largely to this rising dichotomy between Web Marketing Managers. Specifically, Panda's ranking of sites by original content and information. You can also see an increased value of social media in Google Analytics' Social Reports and cutting-edge platforms like BrightEdge who have partnered with Facebook and Twitter. If original content and social media are burgeoning forms of in-bound link strategy, perhaps it is time to introduce social and copywriter teams? For SEOs, this obviously opens the door to some philosophical debates.
Before responding to this schism of opinion, I want to frame our question, is SEO changing, by borrowing from two men who have yet to receive the credit they deserve from the SEO world: Plutarch and Aristotle. Today, we are going to take a look at how ancient Greek philosophical systems can be used to determine change in the field of Enterprise SEO. Particularly, we will review the Ship of Theseus paradox. And then we'll modernize the paradox, borrowing the name of another famous ship, The Enterprise.
Plutarch's Lives
The paradox was first raised by Plutarch:
"The ship wherein Theseus and the youth of Athens returned [from Crete] had thirty oars, and was preserved by the Athenians ., for they took away the old planks as they decayed, putting in new and stronger timber in their place, insomuch that this ship became a standing example among the philosophers, for the logical question of things that grow; one side holding that the ship remained the same, and the other contending that it was not the same." -Plutarch, Theseus
The Ship of Theseus aka The SEO Enterprise
According to the philosophical system of Aristotle, there are four causes used to understand how fundamental causes result in change. These causes have been used by Managers in different fields of business, sports and even music to determine if change has occurred. {ex. What causes to the Rolling Stones would result in a change, i.e. How would they cease to be the Rolling Stones? Replacing Mick Jagger? Or, why have they remained constant despite exchanging 6 past members?}
First, we will identify the "four causes" using the Ship of Theseus paradox. Next, we will apply these causes to the SEO Enterprise paradox.
  • The formal cause or form is the design of a thing. The "what-it-is" of a thing, but not to be confused with the matter used to construct it.
  • The material cause is the matter that the thing is made of, i.e. the planks.
  • The efficient cause is how and by whom a thing is made, for example, the methods artisans used to fabricate and assemble the Ship of Theseus, the workers who built the ship.
  • The final cause is the intended purpose of a thing. In this case, The Ship of Theseus' purpose was transporting Theseus.
Ship of Theseus

For Enterprise SEOs, these causes can be applied for your own solution to the paradox.
  • Has the design of SEO changed? Is the formal cause the same? It still explores how search engines work, people's search queries, and the actual search terms.
  • The material cause refers to the planks: keywords, meta data, image tags, anchor text, urls, backlinks. In this sense, are SEO planks the same? How do Google Updates affect your planks? If you were using Black Hat tactics, then you will need to replace planks. Panda and Penguin updates reiterate link relevancy. So your planks should remain, if you were using White Hat tactics.
  • The efficient cause may or may not be changing, this depends on the strategy. Do you incorporate a new fabricator? Link builder vs. Copywriter? Or is there a synthesis?
  • The final cause remains: SEO's purpose is to improve the visibility on search engine results pages (SERP).
The idea behind the SEO Enterprise paradox is for you to determine if Google's updates (or future updates) have created a need for YOU to change YOUR Search Marketing Strategies. It is an opportunity to identify the fundamental cause behind your Enterprise SEO. By associating your own causes you can decide how to best move forward. Therefore, the SEO Enterprise is a standing example among the Web Marketing Managers "for the logical question of things that grow; one side holding that the ship remained the same, and the other contending that it was not the same."
Is it time to jump ship?
Remember that for the SEO Enterprise, similar to the Ship of Theseus, the replacing of the planks takes place while the ship is at sea. Therefore, it is a constant process. But how do we navigate through Google's tumultuous peaks and troughs? Our North Star is Domain Authority. And yes, The SEO Enterprise's future is belayed by new tools and techniques, recently: original content, social media, and link relevancy. But, it is healthy for Web Marketing Managers to debate whether it is still the same ship.
Furthermore, SEOs should welcome the copywriters onboard. Not to avoid SEO Enterprise's commandeering, but because in this increasingly competitive world of search marketing we need all hands on deck. The efficient cause should involve a synthesis. I would implore you to adapt this approach to the challenges of Search Engine Optimization. And, explore the idea of creating a dynamic response that combines the intuitive approach of both copywriters and SEOs. Algorithms may alter the course, but it isn't time to jump ship.

How To Get Your Startup Featured By Giants


How To Get Your Startup Featured By Giants


Get Your Startup Featured By Giants
Let's face it, the only way to really get your startup off the ground is through tireless, frustrating work. Anyone who has begun the process knows well the long hours, the neat constant struggle and the process of moving through each new stage and milestone with the emotional ups and downs that come along with it. It is just all a part of the journey.
But that doesn't mean we aren't all looking for a leg up. Especially when it comes to being featured by one of the well respected media giants on the web. Mashable, Endadget, Gizmodo and Tech Crunch are the most commonly cited dream features from most startups on the web. Given their massive user base and popularity, that isn't a surprise.
So, how do you get them to take notice? That question was asked on Quora and there have been absolutely awesome answers. Here are my takeaways:
Get Your Startup Featured By Giants
  • Provide an exclusive. No matter what the blog, it will be looking for exclusives. But TechCrunch and Mashable are especially interested in being the first to see a story go out. Which means they will actively kill stories if they find out that someone released or leaked it first. If someone else is planning on publishing a feature, you have no chance of getting a post on either of these blogs.
  • Make sure the appeal of the story is a broad one. Both blogs are syndicated, and with big name media sources like CNN, Forbes and USA Today. So you can't have a startup that only appeals to a small, niche audience. It has to have a broader appeal that can be picked up by any of these publications for a followup. Even if your company is very specific in their target user base, if you can find a way to make it interesting for almost anybody, you have a shot.
  • Be direct in your pitch. A lot of people make the mistake of droning on and on in their email pitches. Which none of the reporters or editors appreciate. Because they all get hundreds of emails per day, all with requests for features, you have to get and hold their attention. Which means being direct, succinct and offering all of the details within a couple of sentences. Tell them what your product or business does, when it was started or is launching, give a link to whatever video or page you think is relevant and leave it at that.
  • Get someone trusted in the industry to vouch for your startup. One of the fastest ways into a feature is by being endorsed by someone in the industry that is trusted and well known within the behind-the-scenes circle of people at one of these blogs.
  • Make sure you improve your product prior to release. Let's say you manage to catch someone's attention, get an endorsement and you are given a post on an exclusive review. That's great! What isn't so great is that you didn't pre-release some kind of beta that allowed people to try it out first. This led to bugs, and so the product you launch doesn't work properly. Now, you have your feature. But it is a brutal post essentially tearing apart your startup for making something that isn't up to scratch. No one wants that. Contact them early, long before release. Make sure it works properly and improve it before the final product is reviewed.
  • Know who you are asking. It is better to already have some level of a relationship with the press before you start asking them to do things for you. This is a basic of business PR; you don't want to come off as a media leech, after all. Take some time to get acquainted with writers, editors, reporters and their work. Try commenting on blog posts, corresponding via email and just becoming a regular face instead of someone in the endless crowd.
  • Use the proper media. I have heard of blogs cutting features because they didn't have the proper media to go forward with it. No joke; they won't waste their time if they don't have visuals to go along with it that are easily shared and avoid potential copyright issues. Have prepared thumbnails, images, embedded videos and various other media in a press pack, ready to go out.

Recent Posts