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

seo Cara Optimasi SEO Blog 2013

Seo Master present to you: Cara Optimasi SEO Blog - SEO adalah sebuah tehnik yang sebenarnya adalah bagian dari marketing, sebab dengan tehnik SEO blog bisa mendapatkan pengunjung atau visitor melalui search engine. SEO gampang-gampang susah, karena setiap waktu selalu ada update langsung dari google, itulah yang membuat dan mempengaruhi jika tehnik SEO selalu berubah-ubah.

Cara Optimasi SEO Blog


Berbicara soal SEO, akan lebih baik lagi jika membicarakan tehnik yang simpel namun banyak dilupakan oleh penguna blog. Cara Optimasi SEO Blog, perlu diperhatikan beberapa hal berikut ini:

1. Template

Template ibarat sebuah tampilan rumah, jika templatenya buruk, maka yang dilihat orang ketika mereka melewatinya justru pergi begitu saja. Pilihlah template yang ringan alias SEO friendly, artinya apa, yaitu pilih sebuah template yang jika diakses sangat cepat dan mudah. Dengan demikian, pengunjung akan krasan berada di blog Anda.

2. Pasang Meta Tag

Pasanglah meta tag yang lengkap. Khusus pada meta deskripsi, isilah deskripsi yang lumayan panjang, dan banyak kata kuncinya. Untuk meta keyword, gunakan kalimat yang berubah-ubah tetapi sama. Untuk tehnik lainnya, lengkapi kata kunci rendah dan ringan yang tidak ada saingannya, hal ini juga akan mengoptimasi blog Anda.

3. Nofollow Label

Jangan lupa menjadikan label blogger menjadi nofollow. Karena label tidak mempengaruhi dalam mesin pencari.

4. Backlink

Backlink sangat penting namun juga jangan sampai over untuk memberikan backlink untuk blog Anda. Backlink yang baik adalah backlink yang sesuai dengan niche Anda dan tidak terlalu mengandalkan backlink spam.

Demikianlah Cara Optimasi SEO Blog yang bisa saya tulis, semoga bermanfaat.2013, By: Seo Master

seo How we improved performance on Google Code 2013

Seo Master present to you:

If you're a frequent visitor to code.google.com for product updates and reference materials for Google APIs you're working with, you might have noticed that the page loading time (or page rendering time depending on how you see it) has reduced in varying degrees in the past several weeks.

As you'll see below, we've made several changes to help reduce user-perceived latency. This is not an exhaustive list of all improvements we've made recently, but these are the major ones we've made.

As Steve Souders emphasizes as the "Performance Golden Rule" in his book High Performance Web Sites, "only 10-20% of the end user response time is spent downloading the HTML document. The other 80-90% is spent downloading all the components in the page (p.5)".

We agree. That's why we focused our effort on reducing the number and size of downloads (HTTP requests) for the "components" throughout Google Code.
  • Combined and minimized JavaScript and CSS files used throughout the site
Downloading JavaScript and CSS files blocks rendering of the rest of the page. Thus, to reduce the number of HTTP requests made on the initial page load, we combined frequently-used JavaScript and CSS files into one file each. This technique has brought down 20 HTTP requests down to just 2. We also minimized the files by stripping out unnecessary whitespace and shortening function/variable names whenever possible.
  • Implemented CSS sprites for frequently-used images
There are 7 images prominently used throughout Google Code, including the Google Code logo, the googley balls at the bottom of every page, the plus and minus signs as well as the subscribe icon inside each blog gadget.

Although browsers usually download several images in parallel, we concatenated these images into one image so only one HTTP request would be made. Of course, concatenating several images into one required us to make several changes in HTML/CSS. For example, instead of having:

<img src="/images/plus.gif" />


We had to change it to:

<div style="background-image:url(/images/sprites.gif); background-position:-28px -246px; width:9px; height:9px">&amp;</div></span>


where sprites.gif is the concatenated image and background-position and width/height carefully calculated.
  • Implemented lazy loading of Google AJAX APIs loader module (google.load)
We like to eat our own dogfood. Among other APIs, we use our very own AJAX Feed API on product homepages inside the blog gadgets and the AJAX Search API on the search page. These Google AJAX APIs require the Google loader module (google.load) to be loaded first before any of the specific AJAX APIs (i.e. AJAX Feed API, AJAX Search API, Maps API) can be initialized and used. Traditionally, the Google AJAX APIs loader module would be loaded by including the following <script> tag in the <head> section:
    <script type="text/javascript" src="http://www.google.com/jsapi"></script>
This works well in most cases, but when optimizing for the display of static content, this blocks the browser from rendering the rest of the page until it's finished loading that script, thus impacting the user-perceived latency. So instead of loading the Google AJAX APIs loader module upfront, we are now loading it lazily only on the pages where it's required. This is made possible as follows (please note that this is a stripped-down version of what we have on Google Code):

First, in the <head> section, we load the Google AJAX APIs loader module via DOM scripting only on the pages where it's required:

if (needToLoadGoogleAjaxApisLoaderModule) {
// Load Google AJAX APIs loader module (google.load)
var script = document.createElement('script');
script.src = 'http://www.google.com/jsapi?callback=googleLoadCallback';
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
}
It's important to add the 'callback' parameter in the src attribute, 'callback=googleLoadCallback'. This callback handler will then be called whenever the Google loader module is finished loading.

Then, in the Google loader callback handler (googleLoadCallback()), we initialize the AJAX Feed API and provide the function name that utilizes the AJAX Feed API (startUsingAjaxFeedAPI):
function googleLoadCallback() {
// Initialize AJAX Feed API
google.load('feeds', '1', {callback: startUsingAjaxFeedAPI});
}

function startUsingAjaxFeedAPI() {
// Start using AJAX Feed API
var feed = new google.feeds.Feed(someFeedUrl);
...
}

In effect, we're loading the AJAX Feed API on-demand through the use of two consecutive callback handlers, first to load the Google AJAX APIs loader module (google.load) and then to initialize the AJAX Feed API before it's used. Similar technique can be used for the Maps API and the AJAX Search API.

By now you're probably wondering just how much of an impact did these changes have on Google Code anyways? According to our latency measurement stats, the user-perceived latency on Google Code dropped quite a bit, anywhere between 30% and 70% depending on the page. This is a huge return for relatively small investments we've made along the way, and we hope you'll find these techniques useful for your own web development as well.2013, By: Seo Master

seo iphone hack: bypass lock screen iOS 6.1 2013

Seo Master present to you:

iphone hack: bypass lock screen iOS 6.1

As Apple new iOS 6.1 improved so many features of security but still the glitch was discovered in its supreme security beside this the Google’sandroid mobile operating system has never face such kind of glitches.

                                    iphone hack: bypass lock screen iOS 6.1


The bug of iOS 6.1 is Microsoft exchange bug the device generate excessive communication with Microsoft exchange server this will increase activity of network and drain battery very fast. That is fixed by apple in new release of iOS 6.1.2 for ipad iphone 5 and all iOS 6.1 devices.

The hole in security of iOS 6.1 allow iphone hack by lock screen bypass through which any one can access voice mail, photos, message, and contact and can call. The process does not require any physical access to the hardware of iphone any one can unlock iphone,running iOS 6.1, with in a minute. The process requires only combination and series of button.

STEPS:

     (iphone hack can be done only when iphone is locked)
bypass lock screen iOS 6.1
  1. Unlock iphone by simple sliding.
  2. Press emergency call 
  3. Hold Power button until power down popup shows. Press cancel, the status bar will turn blue. Make emergency call and cancel it as soon as possible so the call does not through.
  4. Press the sleep button to sleep the device then press home button to turn it on.
  5. Unlock the device then press and hold the power button within 3 sec tap emergency call.
  6. Device is ready to use without knowing the password.


In previous iOS, apple faced same security issue that affect devices having iOS 4.1 and can be resolve in iOS 4.2. For now a day’s apple shown lack of urgency to fix the bugs but soon apple will fix the lock screenbypass bug but till then take your phone with you to save your personal data.          


2013, By: Seo Master

seo Add Facebook Alike Twitter Fan Box To Your Blog 2013

Seo Master present to you:
facebook alike twitter fan box
I had already posted on adding Twitter Follow Button to your blog, but Today in this post i am going to show you to add Twitter fan box to your blog which looks similar to Facebook Like Box. This is an third pary widget or application devloped by Mark Carey. This widget can help you to achieve more twitter followers and eventually results in greater traffic from twitter. This twitter fan box shows images or avatar of top 10 newest followers on you twitter account. This widget will let your blog visitors to easily follow you on twitter from within your blog. So lets add this great widget to your blog or website.

How to add ?

1. Go to blogger Dashboard and select Layout.
2. Then click on Add Gadget and select Html/Javascript
3. Now paste the code given below in it.

<script type="text/javascript"
src="http://s.moopz.com/fanbox_init.js"></script><div
id="twitterfanbox"></div><script
type="text/javascript">fanbox_init("mybloggersworld");</script> 
4. Make sure to replace mybloggersworld with your twitter username.
5. Save the widget and you are done.

You may also like to read: 


2013, By: Seo Master

seo Submitting you sitemap to Google 2013

Seo Master present to you:
Submitting your sitemap to Google ensures that your content is available for search engines. Most of the time it done automataically but submission of sitemap manually ensures that it is done in quick time and all of your links are indexed in search engines.  lets discuss the steps to submit your web blog's sitemap for faster indexing and better listing in search engines. 





  • Login to your Google's webmaster account.

  • Add your site to it if its not already added. 

  • In the left panel, you will have a optimization category. Select Sitemaps from it. 

  • Click on Add/Test Sitemap from the right upper corner of the page and feed the sitemap URL you have created in the first step. 

  • Submit your setup. Now your sitemap is submitted to Google and your articles will be Indexed shortly. Indexing ensures that your content is readily available to search engines for crawling your blog. 

I have submitted by sitemap to Google and the blue shows the total links submitted by me to Google and Red one shows the Indexed posts. The reason behind a smaller red graph than blue is that not instantly all the links are indexed.

mb.

Previous Post.>>
2013, By: Seo Master

seo Making auth easier: OAuth 2.0 for Google APIs 2013

Seo Master present to you: One of the most exciting things about the architecture of the web is how easily it supports mashups—URLs, IFRAMEs, XHR, and more make it easy to build great new services on top of building blocks from others. As more and more people use the web for non-public data, we need new techniques to secure those building blocks. That’s where OAuth comes in—an open, standard way for users to grant permission for an application to access part of their account.

Since we announced support for OAuth in 2008, we've seen tremendous usage growth in our APIs that require user authorization, like Calendar and Docs. While the spec isn't completely finalized, Google is pleased to announce our experimental support of an easier way for developers to obtain user authorization for our APIs: OAuth 2.0 with bearer tokens. Whether you use our updated client libraries or just write to the protocol, you should be able to do more with less code.

In addition to supporting a simplified protocol, we're also introducing a simpler, cleaner consent page for OAuth 2.0:


Google believes in open systems that give users value, transparency and control. We hope the OAuth 2.0 protocol helps developers deliver just that: powerful applications that make use of user data without compromising on safety or security. Check out our documentation to get started with OAuth 2.0.

2013, By: Seo Master

seo BigQuery gets big new features to make data analysis even easier 2013

Seo Master present to you: Author Photo
By Michael Manoochehri, Developer Programs Engineer, Cloud Platform

Google BigQuery is designed to make it easy to analyze large amounts of data quickly. Overwhelmingly, developers have asked us for features to help simplify their work even further. Today we are launching a collection of updates that gives BigQuery a greater range of query and data types, more flexibility with table structure, and better tools for collaborative analysis.

Big JOIN and Big Group Aggregations

Extracting insights from multiple datasets can be challenging and time-consuming. This is especially true when datasets become too large to query with a traditional database system. With traditional databases, SQL functions like joining and grouping are typically used to bring together data for analysis. What happens when your data is too large to fit into a conventional database? Working with multi-terabyte datasets often requires developing complicated MapReduce workflows, investing in expensive infrastructure, and great deal of time. Very often, it's a combination of all three.

In response to developer feedback, we're launching new features that enable analysts and developers to run fast SQL-like join and aggregate queries on datasets without the need for batch-based processing. Our new Big JOIN feature gives users the ability to produce a result set by merging data from two large tables by a common key. Big JOIN simplifies data analysis that would otherwise require a data transformation step, by allowing users to specify JOIN operations using SQL.

Popular web applications produce user activity logs that can grow by billions of rows each week. Dividing users into smaller groups is a key step for analysis. However, each group of users can number in the millions. To handle this for such large volumes, we've enabled Big Group Aggregations, which significantly increases the number of distinct values that can be grouped in a result set.

To use these new features, simply add the EACH modifier to JOIN or GROUP BY clauses.


/* JOIN EACH example
* Selects the top 10 most edited Wikipedia pages
* of words that appear in works of Shakespeare.
*/

SELECT
 TOP(wiki.title, 10), COUNT(*)
FROM
 [publicdata:samples.wikipedia] AS wiki
JOIN EACH
 [publicdata:samples.shakespeare] AS shakespeare
ON
 shakespeare.word = wiki.title;


For more information, including best practices, when using JOIN EACH and GROUP EACH BY, visit the BigQuery query reference.

Native support for TIMESTAMP data type

We are also adding a new TIMESTAMP data type, in response to one of our most frequent requests from developers. This new data type lets you import date and time values in formats familiar to users of databases such as MySQL, while preserving timezone offset information.

Along with the new data type come new functions for converting TIMESTAMP fields into other formats, calculating intervals, and extracting components such as the hour, day of week, and quarter.


/* TIMESTAMP example
* Which hours in the day are the most popular for GitHub actions?
* This query converts github_timeline "created_at" date time   
* strings to BigQuery TIMESTAMP, and extracts the hour from each.
*/

SELECT
 HOUR(TIMESTAMP(created_at)) AS event_create_hour,
 COUNT(*) AS event_count
FROM
 [publicdata:samples.github_timeline]
GROUP BY
 event_create_hour
ORDER BY
 event_count DESC;


Read more about the available TIMESTAMP functions in our query reference guide.

Add columns to existing BigQuery tables

When working with large amounts of fast moving data, it's not uncommon to find out that you need to add additional fields to your tables. In response to developer feedback, we have added the ability to add new columns to existing BigQuery tables.

To take advantage of this feature, simply provide a new schema with additional columns using either the "Tables: update" or "Tables: patch" BigQuery API methods.

For more information on this feature, visit the BigQuery API reference.

BigQuery Web UI: Dataset links and dataset sharing notifications

BigQuery has always provided project owners with very fine-grained control of how their datasets are shared. To make it easier for teams to work on collaborative data analysis, we've added direct links to individual datasets in the BigQuery Web UI. This provides a convenient way for authorized users to quickly access a dataset, and allows for bookmarking and sharing.

In addition, we've also added email notifications to inform users when they've been given dataset access privileges. When a dataset has been shared with another user via the sharing control panel, BigQuery sends a notification email containing a direct link to the dataset.


The BigQuery UI features a collection of public datasets for you to use when trying out these new features. To get started, visit our sign up page and Quick Start guide. You should take a look at our API docs, and ask questions about BigQuery development on Stack Overflow. Finally, don't forget to give us feedback and join the discussion on our Cloud Platform Developers Google+ page.


Michael Manoochehri is a Developer Programs Engineer supporting the Google Cloud Platform. His goal is to help make cloud computing and data analysis universally accessible and useful.

Posted by Scott Knaster, Editor
2013, By: Seo Master

seo Keeping Personal Data Safe: Mistakes You Should Avoid 2013

Seo Master present to you:
Theft of personal data is a rising phenomenon and seems to be growing as technology further progresses. What’s more, businesses and organizations are equally affected by this menace. Despite having in place data security measures, individuals and organizations can still fall victim to data thieves. So why is your data so important to these e-criminals? The answer is simple; your data can be used clear-out your bank account, or worse, steal your identity to commit fraud and other criminal activities.

There are many mistakes organizations and individuals can make which can lead to theft of their data. Taking simple measures can certainly safeguard your data from potential theft. The following is a list of things you need to be aware of in-order to protect yourself.

Shred your paper work:

            If you decide to discard any documents, such as credit statements, bank statements, utility bills and other related information, then you need to make it a habit to shred such documents every time you decide to throw them out.  More than often, Dumpster-divers will often go through your pile of garbage seeking out un-shredded statements containing bits of your personal information. Once these so called “Dumpster-divers” get a hold of your information, it’s only a matter of time before they use your information to max out your credit card, or perhaps transfer your life savings from your savings account, to an offshore account.

To effectively shred such documents, make sure you make use a cross-shredder instead of a traditional shredder. Cross-shredders can shred such documents much more effectively than traditional shredders.

Smash your old hard-drive into pieces:

           This step may seem a bit on the extreme side, but that’s what you have to do in order to keep your personal data safe. Even if you had previously stored personal data on your hard-drive and then happened to delete that data -- thinking it was permanently wiped-out of your hard-drive; chances are your deleted data could still be retrieved. Data recovery software can easily recover most permanently deleted data.

           When you empty your recycle bin, it may appear that the data stored in your recycle bin is gone forever. However, bits of data are always present on your hard-drive, and basic data recovery software can easily retrieve such deleted data. Thus, when you send in your old desktop or laptop for recycling, chances are that someone may try to retrieve your personal data on your laptop or desktop.  Therefore, this is the reason why you need to smash your hard-drive, before you recycle your machine.

Use anti-data theft software and antivirus software:

           If you, for some reason, need to store confidential data on your personal computer, you can do so securely with the help software that can lock folders. Moreover, investing in good anti-virus software will help you keep your identity safe on the internet.

Stay away from Phishing email:

           Phishing is the practice of recording your personal user-names and passwords so that some kind of fraud can be conducted using your log-in credentials. The scam works something like this: you receive an email from Facebook, or perhaps your bank, prompting you to log-in, so that your identity can be confirmed. Most people don’t think twice about such emails, and will log-in to confirm their accounts and to prove their identities. Little do you know, in the background, your credentials are being recorded by key-logging software!

Follow my blog with Bloglovin
2013, By: Seo Master

seo Keyword analytics to benefits your website 2013

Seo Master present to you:
  1. Trend to inside the minds of searchers

    Often we as marketers think we know a lot about how people search. The truth is, there are a lot of different ways to search and it varies by industry and from one individual to another. By analyzing the keywords and phrases that are driving traffic and sales to your website, you can find out how your customers search to find your site. What adjectives or other modifiers do potential customers search on? What order do they search?


     

  2. Which keyword are working for organic search

    If your site is showing up on the first page for some of those keywords, how much traffic are you getting from those organic listings? More importantly, how many leads or sales are you getting from those keywords? You will sometimes be surprised at which keywords drive the most traffic. Often it's not the keywords you think will be best, and that's why you have to watch your keyword referral reports to see which keywords are working.


     

  3. Calculate which keywords are not driving users

    If you're on the first page of Google and you get zero clicks, it's time to find some new keywords. Stick with the keywords that drive sales and ditch the keywords that don't work. There is a huge difference in click through rates depending on the position your site is listed in, but if your site is anywhere on the first page of Google, you should expect some level of traffic, or you're not targeting the right keyword.


     

  4. Searching keywords which works in PPC that can be used for SEO

    The nice thing about PPC search advertising is that you can choose exactly which keywords your ad shows up for. The thing that sucks about PPC is that you have to pay for every click. So why not take what you've learned from your PPC campaign and make sure you're focusing your SEO efforts on the right keywords? You'll usually find that a first page organic listing for the same keyword will send a lot more traffic than a paid listing for the same phrase, and the price per click is way better.


     

  5. Searching keywords which works for SEO that can be used for PPC lunching


     

    The same idea for taking PPC keywords into your SEO campaign works the other way, too. Organic search listings will bring people to your site for all kinds of different keywords–including tons of keyword combinations that you never would have thought to include in your PPC campaign. If you notice a particular phrase that drives a lot of sales from a unique organic search keyword, you should try it out in your PPC ads. You'll usually see a similar conversion rate, or maybe even better conversion from PPC on the same keyword!

  6. Select keywords to insert as negative matches

    Negative matching with PPC campaigns is when you tell the search engines to not show your ad when certain words are included in the search query. This can come in handy when you're doing broad matching on keywords that have multiple meanings or connotations. They can also help you eliminate keywords that are driving a lot of traffic without resulting in sales. By watching your conversion metrics on a keyword level, you can identify keywords that drive traffic without sales and add those keywords to your campaigns as negative matches. You can even save yourself some money by looking at irrelevant, under-performing keywords from your organic search that should be excluded from your PPC campaigns before you even spend a penny on PPC ads.


     

  7. More ideas to get for new content and products


     

    You'll start to notice that people find your site for all kinds of different, sometimes strange, keywords. Watch the keyword list for new ideas for topics you can write about on your blog or even a new product you can add to meet the needs of your customers. If you're getting significant traffic on keywords that you don't have content about, it's a good indicator that traffic would flow to your site if you create content to match what people are looking for.


     


     

 

2013, By: Seo Master

seo Business Can Benefit From Social Media 2013

Seo Master present to you:

 Get to Know Your Audience
Social media is full of groups, fan pages, and other things that make it relatively easy to find an audience that is already interested in your topic or industry.
But with all of the different social media sites, how do you find out where your audience is hanging out? Here are a couple of resources you can use:
·         Use search.twitter.com to see what people are talking about that relates to your topic/industry. See what they’re linking to and mentioning. This can lead you in the right direction.
·         Get a Facebook account if you don’t have one already and look for relevant groups and fan pages. Watch for multiple groups/fan pages for the same topic, and also watch to see how engaged the members are.
·         Forums are more old school, but they can be great for finding other sites that people are using to hang out. In the end it may be the forum itself is the hangout, or they may direct you to other places.
Managing Your Reputation
Here some tools you can use to monitor your reputation online so you can take any appropriate action:
·         Once again, you can use search.twitter.com to keep an eye on any conversations going on in the world of Twitter that relate to your brand.
·         For general monitoring of sites, news, and blogs you can always set up Google Alerts for your brand and main keywords to see what is happening online.
·         For monitoring blogs specifically, you can use Technorati or Google Blog Search. Both can help you monitor what bloggers are saying about your brand or industry.
·         If you’re really serious about tracking your reputation you could get an account at Trackur. Their pricing isn’t bad and it can be a great solution for companies looking to check in on the conversations happening online in a quick and easy way.

Promotions
Promotion is nothing new to the internet, but it hits new levels with social media. If you push the right message through the right channels you can reach a lot of people.

The key here is that you have to already have a lot of connections, especially with people that are willing to push the information to their followers as well. Twitter’s Retweet (RT) feature is very useful for this. If someone finds a story, blog post, or promotion interesting, they can just pass it on by doing a simple Retweet.

To be successful in promoting things through social media you have to have a plan and connections. Just sending out a tweet to your 30 followers won’t cut it.

SEO and Traffic Benefits
Being that we’re an SEO company, I naturally have to talk about the SEO and traffic benefits of being involved in social media. Social media can be a great traffic generator. Admittedly, it doesn’t always generate the kind of traffic that will convert into a lot of sales but it does increase buzz, recognition, and authority for your site.
Social media is also a great way to have a lot of links built to your site. As a page is promoted on different networks people are going to be linking to it. These links will include tweets, bookmarks, and even blogs. All of these links can help improve the authority of your site and lead to higher rankings in the search results.

2013, By: Seo Master
Powered by Blogger.