This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE E_TRANSACTION(EMP VARCHAR2(20), ACCT VARCHAR2(20), TSTAMP DATE, TRX_TYPE VARCHAR(5)); | |
INSERT INTO E_TRANSACTION VALUES('EMP1', 'ACCT1', '01-DEC-11', 'WTD'); | |
INSERT INTO E_TRANSACTION VALUES('EMP1', 'ACCT1', '02-DEC-11', 'XXX'); | |
INSERT INTO E_TRANSACTION VALUES('EMP1', 'ACCT1', '03-DEC-11', 'DEP'); | |
INSERT INTO E_TRANSACTION VALUES('EMP1', 'ACCT1', '04-DEC-11', 'WTD'); | |
INSERT INTO E_TRANSACTION VALUES('EMP2', 'ACCT1', '05-DEC-11', 'WTD'); | |
INSERT INTO E_TRANSACTION VALUES('EMP2', 'ACCT1', '06-DEC-11', 'DEP'); | |
INSERT INTO E_TRANSACTION VALUES('EMP3', 'ACCT1', '07-DEC-11', 'XXX'); | |
INSERT INTO E_TRANSACTION VALUES('EMP3', 'ACCT1', '08-DEC-11', 'XXX'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
// uygulama kodu | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function myFunction($) { | |
// kod | |
}; | |
myFunction(jQuery); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
// kod | |
})(jQuery); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery.fn.myPlugin = function() { | |
// plugin kodu | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(a).click(function(event){ | |
alert('Linke tiklandigini bu sekilde anlayabilirsiniz...') | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scala> val emptyListOfString:List[String] = List[Nothing]() | |
emptyListOfString: List[String] = List() | |
scala> val emptyListOfInt:List[Int] = List[Nothing]() | |
emptyListOfInt: List[Int] = List() | |
scala> val nonEmptyIntListCannotBeDefinedThisWay:List[Int] = List[Nothing](1) | |
:7: error: type mismatch; | |
found : Int(1) | |
required: Nothing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object Nil extends List[Nothing] with Product with Serializable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dup("yusuf", 2) -> "yusuf" :: dup("yusuf", 1) | |
dup("yusuf", 1) -> "yusuf" :: "yusuf" :: dup("yusuf", 0) | |
dup("yusuf", 0) -> "yusuf" :: "yusuf" :: Nil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scala> dup("yusuf", 2) | |
res31: List[java.lang.String] = List(yusuf, yusuf) |
NewerOlder