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

seo Google Buzz API adds Track and some improvements 2013

Seo Master present to you:
Let's say you're really interested in coffee and tea and would like to know every time someone talks about them. You've been able to do that for the web with Google Alerts. Now you will be able to do the same thing for Google Buzz with our latest feature: Track. Plus, you can restrict your search to a specific geographic area! This API will allow you to enter a search query and from then on receive any new public Google Buzz posts—in real time—that match that query. It uses PubSubHubbub, which is the same open standard used by our fire and garden hoses.

To start receiving updates, you only need to send a query to the track endpoint, subscribe to the returned link, and then start receiving updates. If you'd like to take it for a quick spin, simply subscribe to a track endpoint via Google Reader (which happens to support PubSubHubbub). For example, if you’d like to receive all the new public Google Buzz posts about coffee or tea, simply open Google Reader, click "Add a subscription," and paste in the following URL:

https://www.googleapis.com/buzz/v1/activities/track?q=coffee+OR+tea

Two of our firehose partners, Gnip and SuperFeedr are already using this feature. Gnip was able to add the feature into their API aggregation service with only a couple hours of work; their service update should be live early next week.

We’re excited to see what you develop with this cool new feature. Please note that it’s experimental and we may make changes in response to its use.

Additionally, we’ve been looking for ways to make the development experience with the Google Buzz API easier. One of the things we think we can improve upon are error messages. So, over the next couple weeks we’ll be rolling out significantly improved error messaging.

For example, if you tried to read an activity without including the activity id before today, you’d receive an HTTP error code and nothing else. Starting today, you’d also get a detailed error message returned in the body of the response:


<errors xmlns="http://schemas.google.com/g/2005">
<error>
<domain>GData</domain>
<code>required</code>
<location type="parameter">postId</location>
<internalReason>Post ID is required.</internalReason>
</error>
</errors>

The count API we announced back in mid-July has been returning the the number of times a specified link was shared on Google Buzz. We have started including short links (e.g. tinyurl.com/runningwithfins) in the count as well. Now you can specify the long link or any corresponding short link to get the total available count. This will give developers a much more complete count of links to a certain URL, however indirect.

Please visit the Google Buzz API documentation site for more details on these updates and swing by the Developer Forum if you have any questions.

2013, By: Seo Master

seo Final Results for our Fifth Google Summer of Code 2013

Seo Master present to you: We've just finished collecting final evaluations for our fifth Google Summer of Code, our flagship program to introduce college and university students to Open Source development practices. With nearly 3,000 mentor and student participants this year alone, this global initiative has brought together thousands of developers worldwide for the past five years, all for the love of code. For more details about the final results of Google Summer of Code 2009 and information on when to find the source code produced by this year's crop of students, check out the Google Open Source Blog.

2013, By: Seo Master

seo Demystifying the app ranking criteria in orkut 2013

Seo Master present to you:
Over the months, we’ve had many requests to explain the way we rank applications in the orkut directory. Developers often wonder why one of their very popular apps doesn’t appear as high up in the directory as they believe it should. Well, it’s not exactly magic but simple math, and we wanted to share with you how our algorithm works out the rankings.

As you’d expect, we rely heavily on stats that tell us not only the number of users who have installed your app but also the number of users who actively use it. The number of installations is further broken down into the number of weekly as well as total installs. We hope you’ll agree that counting the number of users who uninstall your app is also crucial, since that is an indication of which apps didn’t live up to user expectations in some way and could be improved, and we lower the ranking score by a few points to account for the weekly uninstalls.

However, it’s not enough to judge the popularity of an application by the number of its installations alone – how often it actually gets rendered is a definite index of how addictive, useful and well-designed it is, and you can surely expect us to feed those numbers back into the formula, too!

Besides these, we think apps that users find good enough to put up on their home page should be given some weight, thus the number of weekly renders of those apps in profile view figures into our calculations too. We then add one last parameter to this equation: a popularity index that is a function of the weekly renders of each app over the number of it’s total installations.

In short, the formula looks something like this:

Total Score = Base Score + Popularity Score

where
Base Score = Score (total installs) + Score (weekly installs, adjusted for weekly uninstalls) + Score (weekly renders in canvas and profile views)

and
Popularity Score = Score(weekly renders / total installs)

We hope this gives you a clue to the “mystery”. We look forward to hearing your comments and feedback on the forum!
2013, By: Seo Master

seo Table Formatters make Visualization tables even nicer 2013

Seo Master present to you: By Hillel Maoz, Google Visualization Team

We often forget, but the simple table is a visualization too. In fact, all of our visualizations are based on the DataTable structure - a table itself.

In order to make this most basic visualization more appealing and useful, we added formatters to our JS table. Take a look at this arrow-format example, great for visualizing stock quotes or anything else that goes up and down. :-)

For example, to produce this result:



Use this code:

  <script type='text/javascript' src='http://www.google.com/jsapi'></script>

<script type='text/javascript'>
google.load('visualization', '1.0', {'packages': ['table']});
google.setOnLoadCallback(draw);
function draw() {
// Create a datatable with your data.
var dataTable = new google.visualization.DataTable();
dataTable.addColumn('string', 'Equity / Index');
dataTable.addColumn('number', '% Change');
dataTable.addRows(5);
var r = 0;
dataTable.setCell(r, 0, 'Acme.com');
dataTable.setCell(r, 1, 3.1, '3.1%');
r++;
dataTable.setCell(r, 0, 'Brick & Mortar Groceries Inc');
dataTable.setCell(r, 1, -2.43, '-2.43%');
r++;
dataTable.setCell(r, 0, 'S&P 500');
dataTable.setCell(r, 1, 0.94, '0.94%');
r++;
dataTable.setCell(r, 0, 'Dow Jones');
dataTable.setCell(r, 1, 1.2, '1.2%');
r++;
dataTable.setCell(r, 0, 'Nikkei');
dataTable.setCell(r, 1, -0.23, '-0.23%');
// Create a table visualization.
var container = document.getElementById('table');
table = new google.visualization.Table(container);
// Apply a number formatter to the 2nd column.
var options = {'allowHtml' : true};
var formatter = new google.visualization.TableArrowFormat();
formatter.format(dataTable, 1);
// Draw the table visualization with the applied formatting.
table.draw(dataTable, options);
}
</script>

Or this example of Number Formatters, good for accountants and whoever likes numbers:



Which can be generated by this code:

  <script type='text/javascript' src='http://www.google.com/jsapi'></script>

<script type='text/javascript'>
google.load('visualization', '1.0', {'packages': ['table']});
google.setOnLoadCallback(draw);
function draw() {
// Create a datatable with your data.
var dataTable = new google.visualization.DataTable();
dataTable.addColumn('string', 'Account', 'account');
dataTable.addColumn('number', 'Balance', 'balance');
dataTable.addRows(5);
var r = 0;
dataTable.setCell(r, 0, 'Electronics');
dataTable.setCell(r, 1, 12000);
r++;
dataTable.setCell(r, 0, 'Appliances');
dataTable.setCell(r, 1, -1000);
r++;
dataTable.setCell(r, 0, 'Gadgets');
dataTable.setCell(r, 1, -21000);
r++;
dataTable.setCell(r, 0, 'Accessories');
dataTable.setCell(r, 1, 5560);
r++;
dataTable.setCell(r, 0, 'Casings');
dataTable.setCell(r, 1, 13092);
// Create a table visualization.
var container = document.getElementById('table');
table = new google.visualization.Table(container);
// Apply an number formatter to the 2nd column.
var options = {'allowHtml' : true};
var formatter = new google.visualization.TableNumberFormat(
{prefix: '$', negativeColor: 'red', negativeParens: true});
formatter.format(dataTable, 1);
// Draw the table visualization with the applied formatting.
table.draw(dataTable, options);
}
</script>

And, lastly, this example of a bar-formatter, which can be used to visually show relative distances from an anchor-point:



Using this code:

  <script type='text/javascript' src='http://www.google.com/jsapi'></script>

<script type='text/javascript'>
google.load('visualization', '1.0', {'packages': ['table']});
google.setOnLoadCallback(draw);
function draw() {
// Create a datatable with your data.
var dataTable = new google.visualization.DataTable();
dataTable.addColumn('string', 'Place', 'place');
dataTable.addColumn('number', 'Altitude', 'altitude');
dataTable.addRows(5);
var r = 0;
dataTable.setCell(r, 0, 'Dead Sea');
dataTable.setCell(r, 1, -420);
r++;
dataTable.setCell(r, 0, 'Death Valley');
dataTable.setCell(r, 1, -86);
r++;
dataTable.setCell(r, 0, 'Mt. Everest');
dataTable.setCell(r, 1, 8848);
r++;
dataTable.setCell(r, 0, 'Mt. Kilimangaro');
dataTable.setCell(r, 1, 5895);
r++;
dataTable.setCell(r, 0, 'Marianas Trench');
dataTable.setCell(r, 1, -10924);
// Create a table visualization.
var container = document.getElementById('table');
table = new google.visualization.Table(container);
// Apply an arrow formatter to the 2nd column.
var options = {'allowHtml' : true};
var formatter = new google.visualization.TableBarFormat(
{base: 0, showValue: true, min: 12000, max: 12000});
formatter.format(dataTable, 1);
// Draw the table visualization with the applied formatting.
table.draw(dataTable, options);
}
</script>

For the complete list of currently available formatters, see our Table documentation with included examples. We're working on more formatters, which we will announce on our discussion group when we make them available.

For more info on using and creating visualizations, visit our documentation pages.2013, By: Seo Master

seo Tips Meningkatkan Trafik Blog 2013

Seo Master present to you: Dengan senang hati belajar seo kali ini akan berbagi Tips Meningkatkan Trafik kunjungan ke Blog. Saya yakin tips ini akan membantu Anda, jika Anda terus dan konsisten melakukannya. Berikut tips meningkatkan trafik:

  • Berkomentar di blog lain: Telah terbukti bahwa komentar di blog lain bisa meningkatkan trafik ke blog Anda. Tinggalkan komentar yang baik hiasi dengan humor, karena orang suka humor.
  • Submit artikel Anda ke Situs Media Sosial: situs media sosial adalah tempat terbaik di mana Anda bisa mengirimkan artikel dan mendapatkan trafik ke blog Anda secara instan. Cobalah kirim artikel anda ke Digg, atau Propeller. Atau bisa juga ke sosial media lokal seperti infogue atau lintas berita.
  • Komentar pada komunitas online: Bergabung dan ambil bagian dalam forum online dan komunitas. Jangan lupa untuk menambahkan tanda tangan dengan URL blog Anda, untuk menjaring trafik ke blog anda
  • Bookmarking Artikel: Mintalah pengunjung Anda untuk menandai artikel. Situs seperti StumbleUpon, del.icio.us, Google Bookmarks dan del.irio.us bisa memberi Anda banyak lalu lintas.
  • Berinteraksi dengan pemberi komentar: Buatlah hubungan persahabatan dengan pemberi komentar blog anda. Selalu berusaha untuk membantu commenter dalam memecahkan masalah mereka, jika itu tidak mungkin, berikanlah link kepada mereka ke suatu tempat yang akan memecahkan masalah mereka, jangan khawatir tentang mereka meninggalkan situs Anda, jika mereka butuh bantuan Anda mereka akan kembali.
  • Menulis dengan Konsisten: Tulis setidaknya 3-5 artikel akal seminggu. Melakukan hal ini akan membuat pengunjung Anda mengerti bahwa Anda blogger yang berdedikasi, yang peduli untuk membantu. Jika Anda tidak cukup konsisten untuk menulis maka mengapa pembaca Anda akan konsisten untuk mengunjungi blog Anda.
  • Submit blog Anda di Blog Direktori: Kirimkan blog Anda ke Technorati, TechMeme, blogcatalog dan direktori blog lain. Blog direktori juga merupakan tempat di mana Anda bisa mendaftarkan blog Anda dan dapat meningkatkan trafik khususnya pada saat blog anda baru dibuat.
  • Buat link ke artikel lain: ini sangat banyak membantu pengunjung, juga termasuk tips meningkatkan trafik secara mudah, diharapkan mereka akan betah berlama-lama di blog anda.
  • Bersabarlah: Tips meningkatkan trafik yang terakhir ini adalah yang paling penting, ini memberitahu Anda untuk bersabar. Apa pun yang Anda lakukan, baik itu membangun rumah besar atau membuat satu juta dolar, semuanya butuh waktu, begitu pula usaha online. Pertimbangkan hal ini, jika Anda telah melangkah untuk Pemasaran Internet, maka Anda tidak terlibat secara kebetulan. Jika Anda cukup sabar untuk melewati periode awal kegagalan maka masa depan Anda akan penuh dengan warna keberhasilan.
Mudah mudahan tips meningkatkan trafik blog ini cukup membantu anda!
2013, By: Seo Master

seo Cara ganti template di blogger 2013

Seo Master present to you:
Artikel ini di khususkan untuk para pemula, yang dah jago jangan di hina yah! tulisan bertujuan untuk berbagi pengalaman kepada para blogger pemula saja. Yaitu tentang cara ganti template di blogger atau yang biasa di sebut layout. Berikut cara-caranya:

Sebelum proses mengganti template anda perseiapkan terlebih dahulu template yang ingin anda gunakan selanjutnya, nah untuku itu silahkan anda download dan klik di sini kumpulan template untuk blogger gratis dan keren untuk blog anda.

Langkah alternatif pertama:

Setelah selesai download, silahkan extrack file zip tersebut dan buka dengan program notepad.

1. Masuk ke blogger > klik tab TATA LETAK > Edit HTML
2. Kemudian akan ada code HTML yang banyak n rumit :)
3. Klik EXPAND TEMPLATE WIDGET
4. Hapus code HTML tersebut lalu paste hasil copy dari file wordpad di atas!
5. Simpan template anda

Langkah alternatif ke dua

1. Masuk ke blogger > klik tab TATA LETAK > Edit HTML
2. Kemudian akan ada code HTML yang banyak n rumit :)
3. Klik EXPAND TEMPLATE WIDGET
4. Diatas tulisan expan template widget ada tulisan BROWSE dan UPLOAD
5. Silahkan klik browse dan cari file bola2.xml yang sudah anda download dan extract tadi.
6. Kemudian klik upload
7. Lalu simplan template anda

Nah saya kira itu saja tutorial ganti layout blog di blogger kali ini, lebih dan kurang silahkan ditambahkan si komentar. Goodluck!
2013, By: Seo Master

seo Make Your Pc To Talk What You Type 2013

Seo Master present to you:
In this session i am going to show you a cool trick to make your pc to talk whatever you type by copying the below code and pasting it in notepad.

Steps to follow:

1.) Open Notepad
2.) Paste the following code

Dim Message, Speak
Message=InputBox("Enter Text to Talk o","Speak")
Set Speak=CreateObject("sapi.spvoice")
Speak.Speak Message


3.) Save the file, give it any name, but make sure you also type .VBS after the name. Also, for the Save as type: box, choose All files instead of the default Text Documents.


4. Now double click the .vbs file and you should see the window as show below





5.) Type what ever you want and click on OK . That’s it , your computer will speak what ever you typed in the default voice

If you want to make your computer repeat the words then add a loop. Here is the code :

Dim message, sapi
message=InputBox("Enter the text you want spoken","speak this")
set sapi=CreateObject("sapi.spvoice")
For i=1 to 10
sapi. Speak message
Next

It will repeat the same word a ten times.

That's It!

Feel free to hit Like, Share or Comment if you like this post.

2013, By: Seo Master
Powered by Blogger.