Wednesday, November 09, 2011

Some Essential Chrome Extension

Chrome Extension
----------------------------------
Docs PDF/PowerPoint Viewer (by Google)
Personal Blocklist (by Google)
Screen Capture (by Google)
Weather Window by WeatherBug
Gantter Project
MindMapr
AdBlock
BugMeNot Lite
MegaSkipper

MegaSkipper

MegaSkipper allows you to watch Videos from Megavideo and VideoBB and VideoZer with out any time limits.  

Supports : MegaVideo | VideoBB | VideoZer |

Friday, October 28, 2011

Gmail: Keyboard shortcuts

Keyboard shortcuts help you save time by allowing you to never take your hands off the keyboard to use the mouse. You'll need a Standard 101/102-Key or Natural PS/2 Keyboard to use the shortcuts.

Webpage: https://mail.google.com/support/bin/answer.py?answer=6594

Changes to the look of Google Calendar



You might have noticed that Google Calendar looks a little bit different. This is the first in a series of changes to make our products more consistent and intuitive so your experience is more enjoyable and productive.

Webpage: http://www.google.com/support/calendar/bin/answer.py?answer=1351806
Video: http://www.youtube.com/watch?feature=player_embedded&v=WymQHKfrbqw

Tuesday, October 18, 2011

Designing Desktop Gadgets


Designing Desktop Gadgets

Interested in making your own gadgets for Google Desktop? Try Gadget Designer, a Windows application that can create new gadgets or modify existing ones.
Gadget Designer can create a gadget's interface, debug its behavior, and package it up for everyone to use. Submit your new gadget to the desktop directory, and bask in the praise from your users!

(From Google)

Monday, September 26, 2011

Google Fusion tables

Google Fusion tables is now available as one of the document type in Google Docs.
http://www.google.com/fusiontables/public/tour/index.html


Google Fusion Tables (or just Fusion Tables) is a Web service provided by Google for data management. Data is stored in multiple tables that Internet users can view and download. The Web site opened in the northern hemisphere summer of 2009 announced by Alon Halevy and Rebecca Shapley.

The Web service provides means for visualizing the data with pie charts, bar charts, lineplots, scatterplots, timelines as well as geographical maps. Data is exported in a comma-separated values file format.
The Web service was further described in a scientific paper in 2010
(From Wikipedia)



Monday, February 07, 2011

Google Updates its Doc interface

Google has recently updated its Google Documents interface. Now you can quickly view documents or images. You have 1 GB of file storage space other than Google doc files. For further details click here.



Look at this awesome image finding interface. more here.




Wednesday, January 12, 2011

Online interactive Learning tool for sql learning.

 If your learning basic sql statments, try this link - it will help you to get idea before install sql server in your system
http://sqlzoo.net/

Wednesday, October 06, 2010

The displayed value is not the actual value Google uses so it is only a rough guide

he Google Toolbar's PageRank feature displays a visited page's PageRank as a whole number between 0 and 10. The most popular websites have a PageRank of 10. The least have a PageRank of 0. Google has not disclosed the precise method for determining a Toolbar PageRank value. The displayed value is not the actual value Google uses so it is only a rough guide. 'Toolbar' PageRank is different than Google PageRank because the PageRank displayed in the toolbar is not 100% reflective of the way Google judges the value of a website.

http://en.wikipedia.org/wiki/PageRank

Monday, April 26, 2010

working with asp.net, IIS 7 in vista

Recently i creating the asp.net web application in IIS7 where it shows Error. When i digging it the some feature has to enable in IIS7, disabled by default. This Video show the clear idea 

source:

Tuesday, March 16, 2010

How to Underline Keyboard Shortcuts in Vista

he Alt + key shortcuts underlined in all of the Vista menus. This can
make it easier for you to use the keyboard shortcuts for these menu
options.

http://www.vistax64.com/tutorials/78066-keyboard-shortcuts-underline.html

Monday, February 15, 2010

.net form action with 2 button

In Asp.net, i have found difficulty to having 2 button when using
ASP.NET Validator Controls.
Finally i had found the solution and like to share.

CauseValidation="false" - this attribute must to set in button tag
which ignore the validation.

Example : Placing two button in a form namely 'submit' and 'clear'
where validate then send the event control the to submitting the form.
With the attribute CauseValidation="false" in clear button will
ignore the validation and allows to send the event control to function
for clear or reset the values of the form .

Note: By default CauseValidation="true" for all button available in
the asp.net form

Thursday, February 04, 2010

The ultimate Content management system, WYSIWYG editor in javascript

The ultimate content management system, replace <textarea> to a free
cross-browser WYSIWYG editor in javascript. Easy to immplement.


http://www.openwebware.com/

Tuesday, October 27, 2009

Excel : Various Methosd to find Duplicate Data In Lists

Excel's Conditional Formatting tool to highlight duplicate entries in a 
list.

Highlighting Duplicate Entries
Functions For Duplicates
Counting Distinct Entries In A Range
Extracting Unique Entries In A List


nice resource
http://www.cpearson.com/excel/Duplicates.aspx

Sunday, October 25, 2009

Randomly Reordering an Array

Randomly Reordering an Array,One quick and dirty way to do this is to
step through the array one element at a time, randomly picking a
number betweenthe upper and lower bounds of the array, and swap the
value of the element of the array at the current position with the
element of the array at the position of the randomly selected number.

<%
'****************************************
' This function randomly reorders the
' array aArray using a quick and dirty
' approach... It's fast!
'****************************************
Function ReOrderArrayQuickNDirty(ByVal aArray)

Dim iUpper, iLower, iLoop, iSwapPos, varTmp
iUpper = UBound(aArray)
iLower = LBound(aArray)

Randomize Timer

'Loop through the array, randomly swapping values
For iLoop = iLower to iUpper
'Get an array index to swap
iSwapPos = Int(Rnd * (iUpper + 1))

'Swap the current element with the element at iSwapPos
varTmp = aArray(iLoop)
aArray(iLoop) = aArray(iSwapPos)
aArray(iSwapPos) = varTmp
Next

ReOrderArrayQuickNDirty = aArray 'Return the jumbled array
End Function

Dim aSites
ReDim aSites(2)

aSites(0) = "4GuysFromRolla.com"
aSites(1) = "ASPMessageboard.com"
aSites(2) = "ASPFAQs.com"

'Display the array in-order
Dim iLoop
For iLoop = LBound(aSites) to UBound(aSites)
Response.Write aSites(iLoop) & "<BR>"
Next
response.write "<P>"

'Jumble up the array and display the new, random order!
aSites = ReOrderArrayQuickNDirty(aSites)
For iLoop = LBound(aSites) to UBound(aSites)
Response.Write aSites(iLoop) & "<BR>"
Next
%>


http://www.4guysfromrolla.com/webtech/110800-1.shtml