Google Chrome, like FireFox, has special commands, the about: commands, to show relevant information about the browser.
Here are some of them:
about:cache - Every single url that you visited.
about:dns - A list of used DNSs and response times.
about:histograms - Some text histograms with performance measures.
about:internets - Shows the tube screensaver of windows in the tab. The title shows: “Don’t Clog the Tubes!”.
about:network - shows url information about the current request(s) you are making.
about:memory shows how much memory google chrome and each tab that is open is using. If you have other browsers open it also shows their memory consumption.
about:plugins - a list of all plugins currently installed.
about:stats - a list of statists of the browser. Just a bunch of counter and timers. In the top you can read: “Shhh! This page is secret!”. Google guys have a sense of humour.
about:version - current version information featuring a big google logo (like we didn’t knew that chrome belonged to google).
And finally the “piece of resistence” and my personal favorite,
about:crash - crashes the current tab and shows the sad smile:


Before i start, let me just say that the only browsers i use are firefox (THE Browser) and IE (just to check if the pages that i develop appear correctly and work). So, in advance, i’m sorry if i point some feature in google Chrome that already exists natively in other browser.
Yesterday i finally got access to Google Chrome Download Page, some time after the anouncement made on google’s official blog. The expectation was high and Google didn’t disappoint.
First, the installation is very quick. I went to http://www.google.com/chrome, Clicked the big blue button, downloaded a setup file, and chrome was installed in no time. Simple, quick, straight to the point.
First thing i noticed: The speed!!! The browser loads in a flash (not like firefox that, at least in my computer, takes a little time to load). When i started to browse some pages, i was astonished with the load speed.
Like google explained in the google chrome presentation comic book, chrome uses one process for each tab. This has several advantages. The ones that i best remember are:
Download Google Chrome at http://www.google.com/chrome

This something that was being expected by (almost) all the internet community for some time now. Google has finally decided to release it’s browser.
It’s name is Google Chrome and, by what i could read in the comic book that was made to introduce the browser, it’s an open source browser that promises to take internet browsing to the next generation.
According to Google’s Blog, the first beta should be released today in more than 100 countries.
While you wait for the beta, i suggest you read the 39 pages comic book to be aware of the improvements Chrome is supposed to bring.
Here is a picture of the browser look and feel:

Download Google Chrome at http://www.google.com/chrome

The alpha of Wikia Search website was launched yesterday.
Let’s see how Wikia Search will distinguish itself from Google. One thing is positive: it’s 4 four Organizational principals:
- Transparency - Openness in how the systems and algorithms operate, both in the form of open source licenses and open content + APIs.
- Community - Everyone is able to contribute in some way (as individuals or entire organizations), strong social and community focus.
- Quality - Significantly improve the relevancy and accuracy of search results and the searching experience.
- Privacy - Must be protected, do not store or transmit any identifying data.
quote from: http://search.wikia.com/wiki/Search_Wikia

Today I was reviewing my adsense and I was wandering if i could improve more the results that I show. So I started looking the web and found in Daily Blog Tips some useful suggestions:
I only posted here 4 of the 8 tips that Daily Blog Tips shared. Click here to the the full original post.
One other thing that I found is that you can improve crawler information gathering with a thing called “section targeting”. Section targeting is two Html tags that you put in your page:
<!– google_ad_section_start –>
<!– google_ad_section_end –>
Inside these Html tags should be the most relevant information of your site. For example, in a blog these tags should be placed around the posts. This way the crawler will only index the most relevant information of you site.
Of course this isn’t perfect. Google alerts:
However, please be aware that we can’t guarantee results, and that it may take up to 2 weeks before our crawlers take into account any changes you’ve made to your site.
You can more information in the Adsense help center, here.
In Conclusion, there is no perfect way to improve Adsense. You only can follow some guidelines that may or may not improve your incoming. Of course that your incoming will always depend of your site visitors. If you have a lot of visitors and 1% of them find some relevant information then your incoming can be relevant.
In my case, if 1% of the people click in my adsense, what I would receive would be almost irrelevant, but in sites like Problogger ou Daily Blog Tips, if 1% of the user clicks in the adsense, then the incoming can be relevant. So the Adsense success also depends of how much people visits you site.

Google has a tool for companies that consists in a server that craws all the information in the company and indexes it.
Today i passed all the afternoon playing (user perspective) with that little powerful thing.
The usage is simple. The machine is configure to have several types of indexes. So, when you request the information, the machine only returns the information about the specific thing you are searching for.
The Request is simple. Is a Http Request to the specified url were you pass, via query string, the information about your search (search key and several configuration parameters).
My implementation was very simple. A class, that i called it GSA (stands for Google Search Appliance
), with a method called Search. This method receives 3 parameters: the string to search, the start item and a filter parameter.
The filter is the more strange parameter here. It is used to return or the most relevant information, or all the results. The start item is the index of the first element that GSA must return( ie. Give me the elements starting at index 10). Finally the string to search… obvious…
When the Search method is called, i make an Http Request to the server, obtain the information (in a XML format), parse the information using Xpath, return the array of results to the class that invoked GSA (in my case a ASP.NET page) and render all the information.
Simple right?
Well, that is not necessarily right. The initial idea of the manager of my project was to copy a code of someone that already implemented a similar thing. Let’s just say that the boy that implemented it didn’t know how to program. Mixed all the fundamentals of programming (divide the application in Layers for instance). The boy inserted all the code in the Load event of the page, in a single method… no comments…
Unfortunately, in Portugal at least, the programming companies only want what we usually call a Code Monkey and, for that reason, the clients spend millions of euros trying to fix something that could be made correctly at first time.