This file contains 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
<!DOCTYPE html> | |
<html lang="tr"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Target Resetter</title> | |
<script language="JavaScript" src="target_resetter.js"></script> | |
</head> | |
<body> | |
<div id="theTarget"> | |
Select box:<select id="s1"> |
This file contains 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
Sub simpleXlsMerger() | |
Dim bookList As Workbook | |
Dim mergeObj As Object, dirObj As Object, filesObj As Object, everyObj As Object | |
Dim lastRow | |
Application.ScreenUpdating = False | |
Set mergeObj = CreateObject("Scripting.FileSystemObject") | |
'Main folder which includes just excel files | |
Set dirObj = mergeObj.Getfolder("C:\main") |
This file contains 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
var liste=[]; | |
var isbnListesi =document.getElementsByClassName('title'); | |
for(xcv=0; xcv<isbnListesi.length-1; xcv++){ | |
liste.push(isbnListesi[xcv].innerHTML); | |
}; | |
console.log(liste); |
This file contains 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 LinkedList(){ | |
this.head=null; | |
this.tail=null; | |
} | |
function Node(value,next,prev){ | |
this.value=value; | |
this.next=next; | |
this.prev=prev; | |
} |
This file contains 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 LinkedList() { | |
this.head = null; | |
this.tail = null; | |
} | |
function Node(value, next, prev) { | |
this.value = value; | |
this.next = next; | |
this.prev = prev; | |
} |
This file contains 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 BST(value){ | |
this.value = value; | |
this.left =null; | |
this.right=null; | |
} | |
BST.prototype.insert = function(value){ | |
if(value<= this.value){ | |
if(!this.left) this.left = new BST(value); |
This file contains 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 BST(value){ | |
this.value = value; | |
this.left =null; | |
this.right=null; | |
} | |
BST.prototype.insert = function(value){ | |
if(value<= this.value){ | |
if(!this.left) this.left = new BST(value); |
This file contains 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 HashTable(size){ | |
this.buckets = Array(size); | |
this.numBuckets = this.buckets.length; | |
} | |
function HashNode(key, value, next){ | |
this.key = key; | |
this.value = value; | |
this.next = next || null; | |
} |
This file contains 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 bubleSort(array){ | |
var sArr = array; | |
var sArrLength = sArr.length; | |
for(var sayac=0; sayac<sArrLength-1; sayac++){ | |
for(var i=0; i<sArrLength-1-sayac; i++){ | |
var s= parseInt(i+1); | |
if(sArr[i]>sArr[s]){ | |
var first = sArr[i]; | |
var second = sArr[s]; | |
sArr[i]=second; sArr[s]=first; |
This file contains 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
cURL = InputBox("Write a full url of file to be downloaded!") | |
If cURL<>"" Then | |
Dim strDIR | |
strDIR = WScript.ScriptFullName | |
strDIR = Left(strDIR,InStrRev(strDIR,"\")) | |
Dim strFIL | |
strFIL = Mid(cURL,InStrRev(cURL,"/")+1) | |
Dim objADO | |
Set objADO = CreateObject("ADODB.Stream") | |
Dim objXML |
OlderNewer