Skip to content

Instantly share code, notes, and snippets.

View caglarorhan's full-sized avatar
🤿
diving to the codes :)

Çağlar ORHAN caglarorhan

🤿
diving to the codes :)
View GitHub Profile
@caglarorhan
caglarorhan / target_resetter.html
Created March 8, 2017 19:42
A Javascript Function - Reset and Unselect Values of Selectable or Fillable HTML Elements
<!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">
@caglarorhan
caglarorhan / SimpleXlsMerger
Created May 1, 2017 11:02
Merge Multiple Same Structered Excel Files Into One Files Worksheets - This is a VBA Sub Routine
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")
@caglarorhan
caglarorhan / googleISBNSerachResultExtractor
Created September 2, 2017 01:05
Google ISBN Search Result Extractor
var liste=[];
var isbnListesi =document.getElementsByClassName('title');
for(xcv=0; xcv<isbnListesi.length-1; xcv++){
liste.push(isbnListesi[xcv].innerHTML);
};
console.log(liste);
@caglarorhan
caglarorhan / LinkedList.js
Created October 17, 2017 04:07
JavaScript Data Structures - Linked List
function LinkedList(){
this.head=null;
this.tail=null;
}
function Node(value,next,prev){
this.value=value;
this.next=next;
this.prev=prev;
}
@caglarorhan
caglarorhan / LinkList-with-Reversed.js
Created October 17, 2017 04:34
JavaScript Data Structers - Linked List with reversed method
@caglarorhan
caglarorhan / BinarySearchTree.js
Created October 17, 2017 04:35
JavaScript Data Structures - Binary Search Tree
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);
@caglarorhan
caglarorhan / BinarySearchTree-with-min_max
Created October 17, 2017 04:37
Javascript Data Structures- Binary Seach Tree, find min and max values
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);
@caglarorhan
caglarorhan / HashTables.js
Created October 17, 2017 04:38
Javascript Data Structures - Hash Tables
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;
}
@caglarorhan
caglarorhan / bubbleSortAlgorithm.js
Created October 20, 2017 07:28
Bubble Sort Algorithm
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;
@caglarorhan
caglarorhan / VBS_downloader
Created January 25, 2018 18:17
Downloading a file from url with XMLHTTP and ADODB.Stream in VBScript
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