The YouTube feature I mentioned a few days ago is publicly available: YouTube automatically generates pages that list the most recent videos embedded in a blog.
"By crawling web feeds of sites that have embedded videos, we've built dedicated pages that highlight your embedded videos. This means that there is now a place on YouTube to find videos mentioned on your favorite blogs & sites," explains YouTube's blog.
You can find pages for blogs like Engadget, Boing Boing, Google OS and the nice thing is that the URL is easy to guess. Unfortunately, the pages don't have feeds and you can't follow them.
For now, you'll find links to these pages next to some videos in a section called "as seen on". Instead of linking to a popular page that embeds the video, YouTube now links to a page with the most recent YouTube videos from the site.
Google Experiments with Removing URLs from Search Results Listings
Google tests a new feature that replaces the URL with the site's name in search results snippets. David, who noticed this change, says that he searched for [madvertise] and "most of the results looked normal, with the website title, snippet and URL. However, two search results displayed the website name instead of the URL. In the attached screenshot, the 6th and 7th results show 'LinkedIn' and 'Facebook' respectively, in the place where the URL should be."
Google has always tried to make search results listings more useful, but replacing the address with the site's name doesn't add value and draws unnecessary attention to the results from a list of hand-picked popular sites.
{ Thanks, David. }
Google has always tried to make search results listings more useful, but replacing the address with the site's name doesn't add value and draws unnecessary attention to the results from a list of hand-picked popular sites.
{ Thanks, David. }
Chrome Shifts Into a New Gear
Chrome 12 is now available in the stable channel and all the Chrome users can try the new features.
1. App search in the address bar.
2. Clear Flash cookies (or Local Shared Objects) using the "Clear browsing data" dialog, instead of visiting a webpage.
3. Chrome Sync no longer uses a modal dialog and it's now properly integrated with the tabbed settings page.
4. Safe Browsing borrowed a feature from Internet Explorer 8: checking downloaded files for malware. Right now, this feature only works for Windows executables and shows a small message in the download bar.
5. No more Gears in Google Chrome. You'll no longer be able to use any app that relies on Gears to provide features like offline storage or web workers. The only Google service that still used Gears was Gmail.
6. Hardware accelerated 3D CSS (or 3D transforms). Chrome's blog suggests to try "Shaun the Sheep", an experiment that uses WebM video and 3D CSS to create an immersive app.
7. Chrome for Mac asks for confirmation when using Cmd+Q to quit the application. "When you press Cmd+Q, it brings up the floaty panel telling you to hold the key combo. When you do, it quits after 1.5 seconds." That sounds annoying.
8. Print and Save buttons in the PDF viewer.
9. A better interface for adding start pages.
1. App search in the address bar.
2. Clear Flash cookies (or Local Shared Objects) using the "Clear browsing data" dialog, instead of visiting a webpage.
3. Chrome Sync no longer uses a modal dialog and it's now properly integrated with the tabbed settings page.
4. Safe Browsing borrowed a feature from Internet Explorer 8: checking downloaded files for malware. Right now, this feature only works for Windows executables and shows a small message in the download bar.
5. No more Gears in Google Chrome. You'll no longer be able to use any app that relies on Gears to provide features like offline storage or web workers. The only Google service that still used Gears was Gmail.
6. Hardware accelerated 3D CSS (or 3D transforms). Chrome's blog suggests to try "Shaun the Sheep", an experiment that uses WebM video and 3D CSS to create an immersive app.
7. Chrome for Mac asks for confirmation when using Cmd+Q to quit the application. "When you press Cmd+Q, it brings up the floaty panel telling you to hold the key combo. When you do, it quits after 1.5 seconds." That sounds annoying.
8. Print and Save buttons in the PDF viewer.
9. A better interface for adding start pages.
Checkboxes are Back in Google Docs
Google Docs tried to get rid of checkboxes in the new UI, but users complained and the feature is now back by popular demand.
"This is actually a hybrid of checkboxes and the more recent selection model. So you can use checkboxes, but you can also still use Ctrl or Cmd to select multiple items. Another one I like a lot, is to use Shift to select many consecutive items at once (click on the checkbox of the first file, scroll down and hold down Shift when you click on a checkbox further down the list, this will select everything in between)."
Checkboxes may seem unnecessary, especially considering that people rarely select multiple files, but they're a familiar interface element that's easy to use. Not many people know that holding down Ctrl lets you select multiple files, even though it's a standard feature in most operating systems.
{ Thanks, Cougar. }
"This is actually a hybrid of checkboxes and the more recent selection model. So you can use checkboxes, but you can also still use Ctrl or Cmd to select multiple items. Another one I like a lot, is to use Shift to select many consecutive items at once (click on the checkbox of the first file, scroll down and hold down Shift when you click on a checkbox further down the list, this will select everything in between)."
Checkboxes may seem unnecessary, especially considering that people rarely select multiple files, but they're a familiar interface element that's easy to use. Not many people know that holding down Ctrl lets you select multiple files, even though it's a standard feature in most operating systems.
{ Thanks, Cougar. }
Better Embedding Code for Google +1 Buttons
Google wants to see a +1 button on each Web page, but many people hate embedding widgets and buttons because they clutter pages and add hundreds of milliseconds to the page loading time.
Google is obsessed with speed and performance, but it didn't do a good job at optimizing the code for embedding +1 buttons. As Aaron Peters explains, Google's code blocks page loading if you place it inside the <head> tag, so it's better to place it before you close the <body> tag. An even better idea is to load the Google +1 script in a non-blocking way, just like Google did with Google Analytics, AdSense and Google Related Links.
Aaron also noticed that the JavaScript code is not minified, browsers can only cache the JavaScript file for 6 minutes and there's a mistake in the code from this page: "http" should be replaced with "https" to avoid an unnecessary redirect.
Here's a better embedding code suggested by Aaron:
Apparently, the code doesn't work in Blogger by default. There's a workaround, but you shouldn't use it if you aren't familiar with HTML and editing Blogger's template. Basically you can replace <b:include data='blog' name='all-head-content'/> with the code generated by Blogger ("view source" is your friend), then delete: <meta content='blogger' name='generator'/>.
As Google explains, "most browsers will load the code in parallel with other scripts on the page, thus reducing the web page load time".
Google is obsessed with speed and performance, but it didn't do a good job at optimizing the code for embedding +1 buttons. As Aaron Peters explains, Google's code blocks page loading if you place it inside the <head> tag, so it's better to place it before you close the <body> tag. An even better idea is to load the Google +1 script in a non-blocking way, just like Google did with Google Analytics, AdSense and Google Related Links.
Aaron also noticed that the JavaScript code is not minified, browsers can only cache the JavaScript file for 6 minutes and there's a mistake in the code from this page: "http" should be replaced with "https" to avoid an unnecessary redirect.
Here's a better embedding code suggested by Aaron:
<!-- Place this tag just before your close body tag -->
<script>
(function(d, t) {
var g = d.createElement(t),
s = d.getElementsByTagName(t)[0];
g.async = true;
g.src = 'https://apis.google.com/js/plusone.js';
s.parentNode.insertBefore(g, s);
})(document, 'script');
</script>
<!-- Place this tag where you want the +1 button to render -->
<g:plusone></g:plusone>
Apparently, the code doesn't work in Blogger by default. There's a workaround, but you shouldn't use it if you aren't familiar with HTML and editing Blogger's template. Basically you can replace <b:include data='blog' name='all-head-content'/> with the code generated by Blogger ("view source" is your friend), then delete: <meta content='blogger' name='generator'/>.
As Google explains, "most browsers will load the code in parallel with other scripts on the page, thus reducing the web page load time".
Google Discontinues Its First Specialized Search Engines
They're no longer popular, but they're the first specialized search engines offered by Google, long before Image Search, Google News or Blog Search. Some people might remember Google Linux, Google BSD, Google Mac, Google Microsoft, the search engines that offered results related to operating systems. Google also created custom search engines for universities and a special search engine for the US Government. All of these search engines are now gone. A Google employee confirmed the news:
You can still find Google Linux, Google BSD, Google Microsoft and Google Mac in the Web Archive. Here's a Google Advanced Search page from 2000 that linked to the "topic-specific" search engines and a newsletter from Larry and Sergey that announced Google Government Search in June 1999:
Back in 1998, Google's first homepage linked to Stanford Search and Linux Search.
Google has recently updated many of its corporate pages: from the About Google page to the list of products and the Web Search support site.
{ Thanks, Herin. }
We are no longer offering specialized search services at google.com/linux, google.com/microsoft, google.com/bsd, google.com/mac, google.com/about and google.com/unclesam. These services were established many years ago to offer search across a limited index of the web, which in the past was a better way to find this information. For example, google.com/linux was designed to help people find information from message boards and blogs about the Linux operating system. Today, search quality has advanced tremendously, and based on our analysis we’ve found that in most cases you're better off looking for this kind of specialized information using the regular Google search box, for example by typing [linux fedora upgrade]. We understand that some users were surprised by this change, so we apologize for not communicating more clearly in advance of redirecting these services to google.com. For more advanced search tips to restrict your search to particular sites and kinds of information, we recommend taking a look at our Help Center.
You can still find Google Linux, Google BSD, Google Microsoft and Google Mac in the Web Archive. Here's a Google Advanced Search page from 2000 that linked to the "topic-specific" search engines and a newsletter from Larry and Sergey that announced Google Government Search in June 1999:
This month you probably noticed that we had our "Uncle Sam" search off of our home page (It's the next best thing to the CIA) that is now housed on the "more Google" page under the title of "special searches." This search covers all the .mil and .gov domains. So if you are looking for something published by the government, this is the best place to start.
Back in 1998, Google's first homepage linked to Stanford Search and Linux Search.
Google has recently updated many of its corporate pages: from the About Google page to the list of products and the Web Search support site.
{ Thanks, Herin. }
Google's IPv6 Test
As promised in January, Google will test IPv6 on June 8. IPv6 is the new version of the Internet Protocol which allows a lot more devices to connect to the Internet.
"Google has been supporting IPv6 since early 2008, when we first began offering search over IPv6. Since then we've brought IPv6 support to YouTube and have been helping ISPs enable Google over IPv6 by default for their users. On World IPv6 Day, we'll be taking the next big step. Together with major web companies such as Facebook and Yahoo!, we will enable IPv6 on our main websites for 24 hours. This is a crucial phase in the transition, because while IPv6 is widely deployed in many networks, it's never been used at such a large scale before."
Google expects that less than 0.5% of the users will be affected by the test. There's even a page that tests your connection and detects IPv6 connectivity issues. Even if IPv6 will be enabled for 24 hours, IPv4 will continue to be available.
{ via Blogoscoped Forum }
"Google has been supporting IPv6 since early 2008, when we first began offering search over IPv6. Since then we've brought IPv6 support to YouTube and have been helping ISPs enable Google over IPv6 by default for their users. On World IPv6 Day, we'll be taking the next big step. Together with major web companies such as Facebook and Yahoo!, we will enable IPv6 on our main websites for 24 hours. This is a crucial phase in the transition, because while IPv6 is widely deployed in many networks, it's never been used at such a large scale before."
Google expects that less than 0.5% of the users will be affected by the test. There's even a page that tests your connection and detects IPv6 connectivity issues. Even if IPv6 will be enabled for 24 hours, IPv4 will continue to be available.
{ via Blogoscoped Forum }
YouTube's Pages for Blogs
Philippe Lagane spotted a new YouTube feature: a special page that lists the most recent videos embedded by a blog. The page includes short snippets from the blog posts and allows you to play all the videos and add them to a playlist.
A Google search for [site:youtube.com/social/blog] returns about 40 results, but it's likely that all the blogs indexed by Google will be included. The new pages could become an alternative to channels for blogs that embed content from other publishers.
YouTube already has a section titled "popular around the Web" that includes the most viewed videos embedded on other websites and shows messages like "As seen on: engadget.com" next to the videos.
{ Thanks, Philippe. }
A Google search for [site:youtube.com/social/blog] returns about 40 results, but it's likely that all the blogs indexed by Google will be included. The new pages could become an alternative to channels for blogs that embed content from other publishers.
YouTube already has a section titled "popular around the Web" that includes the most viewed videos embedded on other websites and shows messages like "As seen on: engadget.com" next to the videos.
{ Thanks, Philippe. }
Subscribe to:
Posts (Atom)
Labels
Web Search
Gmail
Google Docs
Mobile
YouTube
Google Maps
Google Chrome
User interface
Tips
iGoogle
Social
Google Reader
Traffic Making Devices
cpp programming
Ads
Image Search
Google Calendar
tips dan trik
Google Video
Google Translate
web programming
Picasa Web Albums
Blogger
Google News
Google Earth
Yahoo
Android
Google Talk
Google Plus
Greasemonkey
Security
software download
info
Firefox extensions
Google Toolbar
Software
OneBox
Google Apps
Google Suggest
SEO Traffic tips
Book Search
API
Acquisitions
InOut
Visualization
Web Design Method for Getting Ultimate Traffic
Webmasters
Google Desktop
How to Blogging
Music
Nostalgia
orkut
Google Chrome OS
Google Contacts
Google Notebook
SQL programming
Google Local
Make Money
Windows Live
GDrive
Google Gears
April Fools Day
Google Analytics
Google Co-op
visual basic
Knowledge
java programming
Google Checkout
Google Instant
Google Bookmarks
Google Phone
Google Trends
Web History
mp3 download
Easter Egg
Google Profiles
Blog Search
Google Buzz
Google Services
Site Map for Ur Site
game download
games trick
Google Pack
Spam
cerita hidup
Picasa
Product's Marketing
Universal Search
FeedBurner
Google Groups
Month in review
Twitter Traffic
AJAX Search
Google Dictionary
Google Sites
Google Update
Page Creator
Game
Google Finance
Google Goggles
Google Music
file download
Annoyances
Froogle
Google Base
Google Latitude
Google Voice
Google Wave
Google Health
Google Scholar
PlusBox
SearchMash
teknologi unik
video download
windows
Facebook Traffic
Social Media Marketing
Yahoo Pipes
Google Play
Google Promos
Google TV
SketchUp
WEB Domain
WWW World Wide Service
chord
Improve Adsence Earning
jurnalistik
sistem operasi
AdWords Traffic
App Designing
Tips and Tricks
WEB Hosting
linux
How to Get Hosting
Linux Kernel
WEB Errors
Writing Content
award
business communication
ubuntu
unik