Skip to content

Instantly share code, notes, and snippets.

View mustafa-colakoglu's full-sized avatar
🎯
Focusing

Mustafa Çolakoğlu mustafa-colakoglu

🎯
Focusing
  • Turkey
View GitHub Profile
bin,banka_kodu,banka_adi,type,sub_type,virtual,prepaid
413226,10,T.C. ZİRAAT BANKASI A.Ş.,VISA,PLATINUM
444676,10,T.C. ZİRAAT BANKASI A.Ş.,VISA,CLASSIC
444677,10,T.C. ZİRAAT BANKASI A.Ş.,VISA,GOLD
444678,10,T.C. ZİRAAT BANKASI A.Ş.,VISA,PLATINUM
453955,10,T.C. ZİRAAT BANKASI A.Ş.,VISA, CLASSIC
453956,10,T.C. ZİRAAT BANKASI A.Ş.,VISA, GOLD
454671,10,T.C. ZİRAAT BANKASI A.Ş.,VISA, CLASSIC
454672,10,T.C. ZİRAAT BANKASI A.Ş.,VISA, CLASSIC
454673,10,T.C. ZİRAAT BANKASI A.Ş.,VISA, BUSINESS
@mustafa-colakoglu
mustafa-colakoglu / websocket.js
Created February 9, 2018 12:07 — forked from alenstarx/websocket.js
websocket client for javascript (ES6)
const WsStateDisconnected = 0;
const WsStateDisconnecting = 1;
const WsStateConnected = 2;
const WsStateConnecting = 3;
class SimpleWSocket {
constructor(url) {
this.wsState = WsStateDisconnected;
this.timer = null;
this.url = url;
this.ws = null;