Tips and Tricks in Google Image Search

Google Image Search can be used in several ways.

imagegoogle
1. If you want to know if a person is a man or a woman and the name does not help, do a search for the image with the name.

2. If you don’t understand the meaning of a word, the pics may help you.

3. A better search for Flicker would be Google search which uses information from other sites that link to Flicker photos, so you may find Google search better.

4. Find what’s interesting about a site, by looking at the pictures included. For example: wired.com

5. Find new wallpaper for your desktop by restricting your search to large images where you can automate this using an application in Google search.

6. You can find random personal pics by using standard file names from digital cameras.

7. When you type the name of a painter and you can take an art class with out much ado.

8. By installing a Grease monkey script you can view the original version of the image directly by clicking on the thumbnail options.

9. Find the color of a word through Word Color, which is a windows program that uses Google Image Search to determine the color of a word or string of words. Word Color, retrieves the top 9 images and loops through all pixels, calculating the average hue, which is later converted to a color.

10. If you also want to grab search results, GoogleGrab is a tool that downloads images from Google Image Search which even supports batch search.

Wallpaper Search

1. Firstly, go to Google Image Search and click on Advanced Image Search.

2. Enter your related query in the first input box, for example: flower.

3. Select Photo Content from the list of content types that are made available.

4. Click on Use my desktop size to find images that are appropriate for your desktop.

5. Perform the search.

6. If you have a favorite color, click on All colors and pick any one of the 12 options according to your preferences.

Find Images with a Specific Size

Google Image Search has an undocumented parameter that lets you specify the exact dimension of the results that could be useful if you need to find wallpapers for your computer, logos and illustrations for a school project or any other images that have standard sizes.

imagesize:WIDTHxHEIGHT [640x480 pixel]

Link

http://www.googleguide.com/images/imageGoogleFounders.jpg

How to Add and Create Extensions and Themes in Chrome Browser

Themes have been gradually getting simpler to activate in the Chrome browser, but they became enabled by default in the newest developer releases this week, version 3.0.195.3 and a hasty bug-fix release Wednesday night, version 3.0.195.4. No longer must you mess with pesky “–enable-extensions” command-line switches or other nitty-gritty options.

If you’re using the new Chrome developer release, there are two sample themes available, “camo” and “Snowflake”. To activate them, click the link then agree to save the CRX file. Chrome will then switch themes and give you a yellow alert it did so.

Google is working on making this easier. In the tools menu, clicking “Options” and then “Personal Stuff,” there’s a “Themes” section with a “Get Themes” button. So far the Web site it links to is empty, but presumably it will be populated with some themes soon enough.

The options dialog box also includes an option to reset the theme to Chrome’s default. However, it appears there’s not much in the way of theme management at present; to switch themes, you’ll have to reinstall them from the Web or your hard drive.

Not every Chrome user can try themes so easily yet. Google typically introduces these changes with the developer release before spreading them to the slower-moving, better tested beta and stable versions.

chrome_theme_default

Chrome Default Theme

chrome_snowflake_theme Chrome Snow Flake Theme

chrome_camo_theme Chrome Camo Theme

Creating an Extension

The following is the procedure for creating an extension that adds a button to your tool bar along the bottpm of the browser window.

First of all, you will need to be using either the developer channel of Chromium or else a recent trunk build. Once you’re using one of those, follow these instructions to create and add a basic extension.

1.Create a folder somewhere on your computer to contain your work. For this discussion, we’ll assume the folder is located at c:myextension, but it can be anywhere.

2. Inside this folder, create a text file called manifest.json and put this in it:

{
“name”: “My First Extension”,
“version”: “1.0″,
“description”: “The first extension that I made.”,
“toolstrips”: [
"my_toolstrip.html"
]
}

3.  Add a text file to the folder called my_toolstrip.html, and put the following code in it:

<div class=”toolstrip-button”>
<span>Hello, World!</span>
</div>

4.Find your chrome shortcut (for example, right-click the Chrome icon on your desktop and choose Properties) and add the –load-extension flag to it:

chrome.exe –load-extension=”c:myextension”

  1. Restart Chrome. You should see your button in a new toolbar along the bottom of the browser window.
  2. Perhaps you would like it better if the button did something? Ok, create a new text file in the same place called hello_world.html, and put this code in it.
  3. Now change the code in my_toolstrip.html so that it looks like this:

    <div class=”toolstrip-button” onclick=”window.open(‘hello_world.html’)”>
    <span>Hello, World!</span>
    </div>

  4. Restart Chrome and click the button.

Notes

  1. –enable-extensions is only needed while the extensions system is in development and will be removed.

Creating a Theme

Themes are packaged as extensions – you can follow the procedure given above for how to create and sign a CRX file.

Below is an example manifest.json file:

{

“version”: “2.6″,

“name”: “camo theme”,

“theme”: {

“images” : {

“theme_frame” : “images/theme_frame_camo.png”,

“theme_frame_overlay” : “images/theme_frame_stripe.png”,

“theme_toolbar” : “images/theme_toolbar_camo.png”,

“theme_ntp_background” : “images/theme_ntp_background_norepeat.png”,

“theme_ntp_attribution” : “images/attribution.png”

},

“colors” : {

“frame” : [71, 105, 91],

“toolbar” : [207, 221, 192],

“ntp_text” : [20, 40, 0],

“ntp_link” : [36, 70, 0],

“ntp_section” : [207, 221, 192],

“button_background” : [255, 255, 255]

},

“tints” : {

“buttons” : [0.33, 0.5, 0.47]

},

“properties” : {

“ntp_background_alignment” : “bottom”

}

}

}

Images

Image resources use paths relative to the root of the extension. You may override any IDR_THEME_* image specified in theme_resources.grd

Colors

Colors are specified in RGB. The full range of colors that can be specified can be read in browser_theme_provider.cc

Tints

Rather than letting you override buttons with images (which doesn’t work across platforms, and is brittle in the case where we add new buttons. The full range of tints that can be specified can be read in browser_theme_provider.cc.

Tints are specified in HSL in floating-point numbers in the range 0-1.

Hue is an absolute value, with 0 and 1 being red.

Saturation is relative to the currently provided image – 0.5 is no change, 0 is ‘totally desaturated’ and 1 is ‘full saturation’.

Lightness is also relative, with 0.5 being no change, 0 as ‘all pixels black’ and 1 as ‘all pixels white’.

You may alternatively use ‘-1.0′ for any of the HSL values to specify ‘no change’.

Implementation

Themes are installed and packaged as extensions – once installed, the theme specification is copied into your browser preferences, allowing users to override individual theme choices. This theme data is loaded and managed by browser_theme_provider.cc (which also handles telling everyone to repaint when a theme is applied).

Theme provider

The theme provider has the following interface:

GetBitmapNamed(int id)

This wraps ResourceBundle::GetBitmapNamed and provides themed images if they exist, falling back to the default ResourceBundle images otherwise.

GetColor(int id)

Returns an SkColor with the specified ID (see the list of ids in browser_theme_provider.h)

Views Implementation

All views have access to a theme provider through their GetThemeProvider() method – this returns the root widget’s theme provider. In browser-ui land, the theme provider hangs off the profile, and the root widget is profile aware.

In some cases, the root widget is not profile aware, and so you will have to inject the theme provider into the view. An example of this is tab_renderer.cc, which doesn’t have access to the profile while in its dragged state.

Link

http://dev.chromium.org/

Free Windows Tweaker Upgrades Support Windows 7

The Ultimate Windows Tweaker is a freeware portable application that adds new features to an already excellent tool for tweaking all of the hidden Windows 7 settings you normally can not access at all. It can make your system run faster, more stable and more secure with just a few mouse clicks. The tweaker detects whether you have Windows 7 installed and accordingly offers you the relevant tweaks only. The tweaker is a 345KB executable file that is loaded with over 150 tweaks and settings. This utility doesn’t require installation, so you can simply download the zip file, extract its contents and run Ultimate Windows Tweaker. The latest release adds even more useful tweaks including, disabling Aero Shake, Snap or Preview in Windows 7. It also customizes the items on Jump Lists and automatically removes tweaks that are unavailable for the operating system you are running.

tweaks

The new Ultimate Windows Tweaker contains the following upgraded tweaks that supports Windows 7:

1. Revamped UI similar to Windows 7 or Vista UI controls

2. Improved: Optimizes services, enable or disable services including, start and stop as well instantly

3. Added on System Information page

  • Version with build no
  • System Rating
  • Computer description

4. Added on Personalization page

  • Disable Aero shake
  • Disable Aero Snap
  • Enable Jump lists and numbers of jump list items
  • Sorted Start menu with all Windows 7 items
  • Bing Search replaced Live Search in Custom Start Search
  • Use large icons on Taskbar
  • Disable Aero Peek preview
  • Group when Taskbar full is added

5. Added in User Accounts & UAC

  • Welcome screen text and buttons’ effects
  • Set custom background on Welcome screen (OEM Background)

6. Added in System Performance page

  • The Track bars and Tool tip shows actual value in milliseconds
  • Improved “Menu action”
  • Improved “Enable support for 4GB of RAM on 32bit Windows”
  • Disable Windows Security Center service

7. Added in Security Settings

  • Disable System Restore settings
  • Disable Change Color and Appearance
  • Disable to skip starting programs by pressing Shift key

8. Added on Internet Explorer page

  • Reset IE to factory default button added

9. Additional Tweaks

  • Disable Windows Startup sound
  • Disable page file (Virtual Memory)
  • Enable Large System cache
  • Delete page file during shutdown process

10 Minor bugs fixed

Windows 7 Features: How to turn them On Or Off

The theme of “choice and control” has been applied in several aspects of how Microsoft has designed Windows 7. They have received several positive for the features that should be even more customizable including, Explorer or the logon screen, PDF format reader, security tools or disk utilities and that some users might prefer to run Windows7 without certain features. This post is about choice and control in the Windows 7 control panel called “Windows Features” where you can choose to turn various features of Windows on or off. There is a long history in ‘Turning Windows Features On or off’ going back to the earliest days of the 32-bit code base. Windows 7 has been engineered with a more significant list of features to balance the needs of the broad Windows platform as well.

win7f

The user might take an end-user approach and identify a feature based on a window or start menu shortcut. The engineers at Microsoft know that no software system can be decomposed into an arbitrary set of layers or parts and any decomposition is likely to change over time. They have extended the control panel called “Windows Features” when you click on “Turn Windows Features on or off” (or just typing “Windows features” in the start menu). For example, when you select some options including, Windows Media Player and Windows Media Center which share a lot of code, turning one off might introduce a pretty complex situation for the average end-user. They chose to focus this feature on the post-setup experience for Windows 7.

This article will update you on how you can change the state of the Windows 7 features that are listed to enable it or disable it. The Windows 7 beta control panel lists a wide range of Windows 7 features including, IIS, MSMQ, RSM, SNMP, Telnet, Games, Fax and Scan, Tablet PC components etc. Windows 7 has expanded the number of features you can have control by giving customers more control, flexibility and choice in managing the features available in this version of Windows 7. They also continue to support the APIs available for features where these APIs are necessary to the functionality of Windows.

I have added the following features to the list in Windows 7:

  • Windows Media Player
  • Windows Media Center
  • Windows DVD Maker
  • Internet Explorer 8
  • Windows Search
  • Handwriting Recognition (through the Tablet PC Components option)
  • Windows Gadget Platform
  • Fax and Scan
  • XPS Viewer and Services (including the Virtual Print Driver)

Bing SEO: Not To Be Taken Lightly At All

Ever since Microsoft launched Bing it has lived up to its predictions to be a Google Killer. The Hundred Million dollars invested on its advertisement has never hurt them and Bing has generated some significant consumer interest to carve out a niche for itself on the World Wide Web. If you happen to be a website owner, you will also notice that in effect, Bing is beginning to notice you considerably.

Lately, there have been more and more SEO related blogs that have been focusing on Bing optimization and it has crossed my mind, should we be optimizing our sites for Bing as well as Google? It is in fact true that Bing has only been going strong for a short while, but it is definitely going to accentuate full speed ahead and will eventually take over Yahoo.

bing

The following tips are for those users who take Bing optimization seriously:

  • Bing favors older domains more: which means that for example there are two domains A and B. If domain A is older than B and both are targeting the same keywords, automatically A will be given higher ranking.
  • The titles are the key to higher ranking on Bing: Bing is similar to most other search engines has affinity to keyword rich titles. This means you should really concentrate on SEO when writing blog posts or creating content on them. You must not only ensure that the title to be keyword rich, but it should be related to the content as well.
  • Bing mostly favors longer forms of writing: When the content of your blog post, article, or web page has more than 300 words, then you are likely to be ranked higher in Bing.
  • You must also ensure that you are letting in the MSNBot to your site: which is nothing but the spider that crawls on your site looking for the keywords and text.
  • Linking out App.: In Google your rank is affected by linking out, but in Bing it is not so and so feel free to do so on Bing. You must ensure not to do too much as it may affect your Google Rank. I tend not to worry about that because linking is a natural app of the World Wide Web.

Google chrome: Install or update with latest flash player

Google chrome browser is now one of those largely used browsers and the 4th largest browser to be used till now. But it has many problems with some content which requires new flash players up to date, say it video or some flash game or anything.

Actually this problem may be due to the fact that google is trying to take on ADOBE now by getting some flash alternative to serve with videos of youtube. Though google is ready to launch in youtube, many other sites are very well established with flash as the main server-end software for converting mpeg or any other raw codecs to a light version that can be broadcasted even through those low bandwidths.

Since it is heavily asked questions on many of the websites and forums online, i want to explain you how to install a latest version of flash player on to your Google Chrome Browser.!! -

At First, Download the latest version of flash player for windows xpi file.

Rename this downloaded xpi file to .zip as it can directly interact with your web browser and changes itself with the extension.
(For your convience, i have attached a working version of the file here to download. Note: This download site may not work properly for NON. US citizens) google-chrome

Now, extract the downloaded file to a new folder where You will find a couple of files namely NPSWF32.dll flashplayer.xpt and make a copy of them, as we are going to use them.

Now, go to the following folder as seen below.
C /Documentts and setings/Local Settings/,Application Data/Google/Chrome/Appliccation/Plugins/

Now copy paste the above mentioned two files into the plugins folder you just opened.

Now we are done with the installation. :) You can also check if your installation is done correctly by going to the any of those websites that are designed in flash or watch some videos on youtube etc.