Friday, August 28, 2009
முன்னணி கல்வி நிறுவனங்களின் இலவச பாடசாலை.
http://www.academicearth.org/
Friday, July 31, 2009
Change Column from Varchar2 to CLOB
SQL>alter table test_table add clob_column CLOB;
Table altered.
SQL> update test_table set clob_column = current_varchar_column;
xx rows updated.
SQL> alter table test_table drop column current_varchar_column;
Table altered.
SQL> alter table test_table rename column clob_column to current_varchar_column;
Table altered.
Thursday, July 30, 2009
Monday, July 6, 2009
Product Intro - List2Shop - Manage your shopping checklist!
Tuesday, June 30, 2009
Monday, June 29, 2009
JavaScript - Higher-Order Functions - First Class Functions
Conversely, in functional code, the output value of a function depends only on the arguments that are input to the function, so calling a function f twice with the same value for an argument x will produce the same result f(x) both times.
Functions are higher-order when they can take other functions as arguments, and return them as results. (Operators in mathematics, such as the differential operator d / dx that produces the derivative in calculus when applied to a function f, are examples of this.)
Higher-order functions enable currying, a technique in which a function is applied to its arguments one at a time, with each application returning a new function that accepts the next argument.
Higher order functions in Java script.
sayHello = function(f1){
alert(f1('Power Of JS')('Easy Higher Order Functions!'));
};
sayHello(function(prefix){
getPrefix = function(){
return prefix;
};
return function(a){
return getPrefix()+' - ' +a;
}; } );