I hereby claim:
- I am korayal on github.
- I am koray (https://keybase.io/koray) on keybase.
- I have a public key whose fingerprint is 0BB6 AE33 80ED 701A AEE0 A6AC 4E6C 4600 9F45 4264
To claim this, I am signing this object:
#! /usr/bin/env python3 | |
import sys | |
import requests | |
from bs4 import BeautifulSoup | |
from random import randint | |
# USAGE: ./dpdl.py 'http://altyazi.org/sub/s/380146/Doctor-Who.html' | |
def dl_divxplanet(dl_url): | |
s = requests.Session() |
I hereby claim:
To claim this, I am signing this object:
import urllib2 | |
import json | |
# Update values from here : https://friendfeed.com/account/api | |
username = "korayal" | |
remotekey = "" | |
index = 10000 | |
mainurl = "http://friendfeed-api.com/v2/feed/%s" % username |
import mechanize | |
import cookielib | |
import subprocess | |
import sched | |
import time | |
TCKimlikNo = "1234567890" | |
aranacakSelect = "Select$7" | |
kontrolSikligi = 60 |
import socket | |
import sys | |
UDP_IP = "192.168.1.254" | |
UDP_PORT = 5000 | |
MESSAGE = "AT+D" + sys.argv[1] + "," + chr(0xFE) + chr(int(sys.argv[2])) + chr(0xFE) + chr(0xFF) | |
sock = socket.socket(socket.AF_INET, | |
socket.SOCK_DGRAM) |
var net = require("net"); | |
var request = require('request'); | |
var xml2js = require('xml2js'); | |
// fill in here with your api key from http://www.notifymyandroid.com/account.jsp | |
var apikey = ""; | |
// creating states | |
var HOTstate = 2, NORMALstate = 1, COLDstate = 0; | |
// setting the state to normal |
// install these before (via 'npm install') | |
// https://github.com/Leonidas-from-XIV/node-xml2js | |
var xml2js = require('xml2js'); | |
// https://github.com/mikeal/request | |
var request = require('request'); | |
// fill in here with your api key from http://www.notifymyandroid.com/account.jsp | |
var apikey = ""; |
// TCP Kütüphanesi Yükleniyor | |
net = require('net'); | |
var clients = []; | |
// TCP Sunucusu Başlatılıyor | |
net.createServer(function (socket) { | |
// Bağlanan kullanıcının adı IP adresi ve Portundan oluşturuluyor | |
socket.name = socket.remoteAddress + ":" + socket.remotePort | |
// Kullanıcı client listesine ekleniyor |
void setup() { | |
Serial.begin(9600); | |
//buradan sonrası sadece Mega'lar için geçerli | |
Serial1.begin(19200); | |
Serial2.begin(38400); | |
Serial3.begin(4800); | |
} | |
void loop() { | |
while(Serial.available()) Serial.print(Serial.read()); |
void setup() { | |
Serial.begin(9600); | |
//buradan sonrası sadece Mega'lar için geçerli | |
//Serial1.begin(19200); | |
//Serial2.begin(38400); | |
//Serial3.begin(4800); | |
} | |
void loop() { |