Update: feeling adventurous? Clone or fork the xkcd clock! If you just want to see it in action or get a glimpse of how it works, keep reading.
The date in [xkcd's comic number 1340][1] [does not change][2].
Update: feeling adventurous? Clone or fork the xkcd clock! If you just want to see it in action or get a glimpse of how it works, keep reading.
The date in [xkcd's comic number 1340][1] [does not change][2].
| <!-- | |
| Rastgele TC Kimlik No Üreticisi | |
| Random Turkish Identification Number Generator | |
| https: //github.com/CanerBasaran | |
| --> | |
| <html><p id="tc"></p> | |
| <script type="text/javascript"> | |
| var tcno = "" + Math.floor(900000001 * Math.random() + 1e8), | |
| list = tcno.split("").map(function(t) { | |
| return parseInt(t, 10) |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Copyright 2011 Caner BASARAN | |
| # Licensed under the GNU General Public License, version 2. | |
| # See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt | |
| from random import randint | |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Turkce Vigenere Sifreleme | |
| # Copyright 2013 Caner BASARAN | |
| # Licensed under the GNU General Public License, version 2. | |
| # See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt | |
| HARFLER = u'ABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZ' |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Copyright 2012 Caner BASARAN | |
| # Licensed under the GNU General Public License, version 2. | |
| # See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt | |
| def turkish_id_no_check(tc_no): | |
| ''' turkish_id_no_check(long) -> bool |
| 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 |
#Script to extract to data from google cache This is a simple python script which retrieves content like your blog posts from googles cache, you can use this if your servers hard drive crashes or if a meteor hits your data center.
Remove the time.sleep code if you don't have more than 50 pages to retrieve.
##Original Source