Wednesday, November 09, 2011
Some Essential Chrome Extension
MegaSkipper
Supports : MegaVideo | VideoBB | VideoZer |
Friday, October 28, 2011
Gmail: Keyboard 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
Monday, September 26, 2011
Google Fusion tables
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
Look at this awesome image finding interface. more here.
Wednesday, January 12, 2011
Online interactive Learning tool for sql learning.
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.
Monday, April 26, 2010
working with asp.net, IIS 7 in vista
Tuesday, March 16, 2010
How to Underline Keyboard Shortcuts in Vista
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
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
cross-browser WYSIWYG editor in javascript. Easy to immplement.
Thursday, January 28, 2010
SEO base converting Asp website to PHP website
http://sebastians-pamphlets.com/how-to-migrate-a-website-from-iis-asp-to-apache-php/
Tuesday, October 27, 2009
Excel : Various Methosd to find Duplicate Data In Lists
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
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
%>


