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

Seo Master present to you:
By Scott Knaster, Google Code Blog Editor

This week the Google Green Blog reported on Google’s use of energy in our buildings and data centers. All Google’s services combined use about as much energy per person in a month as a 60-watt light bulb burning for 3 hours, and the energy that is used is offset completely. You can read the details here, with a separate post describing our carbon offsets program.

Smart people at Tufts University used an infinitesimal amount of energy to power the smallest known electrical motor. The motor is a single molecule of butyl methyl sulphide, measuring a billionth of a meter across. Researchers are going to try to get a bunch of these molecules together to create super-tiny gears and see what cool things they can learn.

Bigger machines also made nerdy news this week. NASA released images that show evidence of human activity on the moon at the landing sites for Apollo 12, 14, and 17. The photos show where the lunar rover parked, tools used by the astronauts, and even astronaut footprints, all of which are intact 40 years after they were created. However, there is still no known photographic evidence of the Googlunaplex.

Fridaygram posts are just for fun. They're designed for your Friday afternoon and weekend enjoyment. Each Fridaygram item must pass only one test: it has to be interesting to us nerds.
2013, By: Seo Master
Seo Master present to you:
LESSON 01
                         BASIC OF HTML

This is our first lesson in html.Before start lesson i will tell you basic and important thing that if
you open any tag in html you need to close that otherwise your webpage do not complete.
Lets Start
<html>
<head>
<title>
write anything which you want to show in page title.then close title
</title>
</head>
<body>
write anything you want to show in your webpage body
suppose i type HELLO WORLD. Then close body.And then html
</body>
</html>

Now save this file as webpage.html
MMSHGZB7DX8G
html lesson
so you can make your first page.
THANK'S FOR READING

you can study more in HTML part 01 lesson 02
SEE YOU IN NEXT LESSON
****GOOD BYE****


                           -------------------------------------------------


                                                                                 

                                                                                                                                 NEXT LESSON>>>

2013, By: Seo Master
Seo Master present to you:
By Chirag Shah, Developer Programs Engineer

Today we are announcing a major milestone for another one of the Google APIs client libraries. The Google APIs Client Library for PHP has officially reached Beta.

This means we're comfortable enough with the stability and features of the library that we'd like you to start building real production applications on top of it and send us your feedback. The library now includes service-specific libraries and samples for several Google APIs, built on our new client library generation infrastructure.

The Google API PHP client supports the following Google APIs right now, with more on the way.
To grab the latest version of the library, simply run the following commands:
curl "http://google-api-php-client.googlecode.com/files/google-api-php-client-0.4.1.tar.gz" -O
tar -xvf google-api-php-client-0.4.1.tar.gz
cd google-api-php-client/examples/
Here is some sample code that demonstrates how to use the library and the Google Books API to search for and print the titles of free ebooks by Henry David Thoreau:
<?php
require_once 'path/to/src/apiClient.php';
require_once 'path/to/src/contrib/apiBooksService.php';

$client = new apiClient();
$client->setApplicationName("My_Books_API_Example");
$service = new apiBooksService($client);

$optParams = array('filter' => 'free-ebooks');
$results = $service->volumes->listVolumes('Henry David Thoreau', $optParams);

foreach ($results['items'] as $item) {
print($item['volumeInfo']['title'] . '<br>');
}
Let us know what you think. We would love to hear your feedback and are always happy to help you out on the forums.

Since Google I/O 2010, we've been developing APIs that can provide descriptions of themselves via metadata. This new technique makes it easier to create and maintain client libraries that support more languages, work with more APIs, and are easier to use than ever before. This post announces one of several recent major milestones for our client libraries.


Chirag Shah is a Developer Programs Engineer on the Google+ team.
In his spare time, he enjoys listening to music and contributing to open source projects.


Posted by Scott Knaster, Editor


2013, By: Seo Master
Powered by Blogger.