Skip to content

Instantly share code, notes, and snippets.

1- Breaking Bad (2008-2013) / AMC
5 sezonu da Netflix'ten veya DVD'lerden izleyebilirsiniz.
2- Game of Thrones (2011-) / HBO
7. sezonu yolda olan dizinin tüm sezonlarını Digiturklüler bein connect ile izleyebilir, abonesi değilseniz bile bütün sezonlar için DVD satışta
3- Dexter (2006-2013) / SHOWTIME
8 sezonun hepsi Netflix'te izlenebilir.
4- The Walking Dead (2010-) / AMC
Son 7. sezonunu ancak FX tekrar yayınlarsa veya Tivibu Go'dan yayın kaydı varsa izlersiniz, önceki sezonlar için dvd bile yok
5- House of Cards (2013-) / NETFLIX
Yeni 5. sezonu sadece Digiturk'te (beIN Connect hepsini, beIN Series kanalı teker teker akşamları veriyor), 4. sezonu da ordan veya Netflix'ten izleyebilirsiniz, diğer sezonlar sadece Netflix'te, 2. 3. 4. sezonların DVD'si var
@EmreKp
EmreKp / gist:69a201d70f6d250fb7ebe090ff0b26d5
Created June 8, 2017 22:39
Rotten tomatoes Certified Fresh TV
The Good Fight: Season 1 - yayın yok - CBS All Access
American Crime: Season 3 - Digiturk - ABC
The Missing: Season 2 - yayın yok - STARZ
Speechless: Season 1 - yayın yok - ABC
The Americans: Season 5 - FX Original
A Series of Unfortunate Events: Season 1 - NETFLIX Original
Harlots: Season 1 -
The Godfather - Netflix, Digiturk Play, Prime Video, Google Play, iTunes
Casablanca - Netflix, Google Play
Boyhood - iTunes
Three Colors: Red - blutv, iTunes
Moonlight - iTunes
Hoop Dreams - Netflix
My Left Foot
Gone with The Wind - Google Play, iTunes
4 Months 3 Weeks 2 Days
12 Years a Slave - blutv
13 Reasons Why - NETFLIX
American Gods - Prime Video
The Flash - Digiturk
Game of Thrones - Digiturk
The Handmaid's Tale - blutv
The Big Bang Theory - Digiturk
Master of None - NETFLIX
Supernatural - Digiturk
Grey's Anatomy - Digiturk
Sense8 - NETFLIX
@EmreKp
EmreKp / pp18.py
Created January 6, 2016 20:45
PP ex 18 - little hard
import random
def bulcow(n):
b=0
c=0
r=random.randint(1000,9999)
y="e"
while y=="e":
if n%1000==r%1000:
c+=1
else:
@EmreKp
EmreKp / pp17.py
Created January 5, 2016 22:30
PP ex 17
import requests
from bs4 import BeautifulSoup
al=requests.get("http://www.nytimes.com")
alt=BeautifulSoup(al.text)
for h2 in alt.find_all(attrs={"class":"story-heading"}):
print h2.get_text()
# class_ calismadi
@EmreKp
EmreKp / pp16.py
Created January 5, 2016 13:16
PP ex 16
import random
buyk="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
kuck="abcdefghijklmnopqrstuvwxyz"
s=""
son=int(input("Length of password: "))
for i in range(1,son+1):
a=str(random.randrange(10))
rasb=random.choice(buyk)
kucb=random.choice(kuck)
L=[a,rasb,kucb]
@EmreKp
EmreKp / pp15.py
Created January 5, 2016 12:51
PP ex 15
def revword(s):
ayr=s.split(" ")
ters=ayr[::-1]
ters=" ".join(ters)
return ters
print revword(raw_input("string: "))
@EmreKp
EmreKp / pp14.py
Created January 5, 2016 12:45
PP ex 14
def escikar(li):
li=set(li)
li=list(li)
return li
liste=[]
for i in range(1,6):
liste.append(int(input(str(i)+". eleman: ")))
print escikar(liste)
@EmreKp
EmreKp / pp13.py
Created January 5, 2016 12:32
PP ex 13
def fibo(n):
if n==1 or n==2:
return 1
else:
return fibo(n-1)+fibo(n-2)
print fibo(int(input("n: ")))