<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>m-eken</title>
	<atom:link href="http://m-eken.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://m-eken.com</link>
	<description>time time time...</description>
	<lastBuildDate>Sun, 07 Mar 2010 21:48:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Python Tkinter Treeview Get Values</title>
		<link>http://m-eken.com/2010/03/07/python-tkinter-treeview-get-values/</link>
		<comments>http://m-eken.com/2010/03/07/python-tkinter-treeview-get-values/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 21:40:41 +0000</pubDate>
		<dc:creator>Eken</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[getvalues]]></category>
		<category><![CDATA[tkinter]]></category>
		<category><![CDATA[treeview]]></category>

		<guid isPermaLink="false">http://m-eken.com/?p=643</guid>
		<description><![CDATA[
&#62;&#62;&#62;self.allrow.bind("",self.myFunc)
&#62;&#62;&#62;def myFunc(self,event):
allrow=allrow.mytreeview.item(self.mytreeview.selection())
print(allrow)
print(allrow["values"][0])
{'text': '8', 'image': '', 'values': ['KARDAN ADAM', 'http://www.m-eken.com'], 'open': 0, 'tags': ''}
Aruz
&#62;&#62;&#62;
]]></description>
			<content:encoded><![CDATA[<p><code><br />
&gt;&gt;&gt;self.allrow.bind("",self.myFunc)<br />
&gt;&gt;&gt;def myFunc(self,event):<br />
allrow=allrow.mytreeview.item(self.mytreeview.selection())<br />
print(allrow)<br />
print(allrow["values"][0])<br />
{'text': '8', 'image': '', 'values': ['KARDAN ADAM', 'http://www.m-eken.com'], 'open': 0, 'tags': ''}<br />
Aruz<br />
&gt;&gt;&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://m-eken.com/2010/03/07/python-tkinter-treeview-get-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Treeview in Python Tkinter</title>
		<link>http://m-eken.com/2010/03/02/treeview-in-python-tkinter/</link>
		<comments>http://m-eken.com/2010/03/02/treeview-in-python-tkinter/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 19:57:49 +0000</pubDate>
		<dc:creator>Eken</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[python 3]]></category>
		<category><![CDATA[tkinter]]></category>
		<category><![CDATA[treeview]]></category>

		<guid isPermaLink="false">http://m-eken.com/?p=640</guid>
		<description><![CDATA[import tkinter
from tkinter import *
from tkinter import ttk
p=tkinter.Tk()
t=ttk.Treeview(p)
t["columns"]=("first","second")
t.column("first",width=75,anchor="center" )
t.column("second",width=100)
t.heading("first",text="first column")
t.heading("second",text="second column")
t.insert("",0,"dir1",text="directory 1")
t.insert("dir1","end","dir 1",text="file 1 1",values=("file 1 A","file 1 B"))
id=t.insert("","end","dir2",text="directory 2")
t.insert("dir2","end",text="dir 2",values=("file 2 A","file 2 B"))
t.insert(id,"end",text="dir 3",values=("val 1 ","val 2"))
t.insert("",0,text="first line",values=("first line 1","first line 2"))
t.tag_configure("ttk")
t.pack(side=BOTTOM,fill=X)
p.mainloop()

]]></description>
			<content:encoded><![CDATA[<p><code>import tkinter<br />
from tkinter import *<br />
from tkinter import ttk<br />
p=tkinter.Tk()<br />
t=ttk.Treeview(p)<br />
t["columns"]=("first","second")<br />
t.column("first",width=75,anchor="center" )<br />
t.column("second",width=100)<br />
t.heading("first",text="first column")<br />
t.heading("second",text="second column")<br />
t.insert("",0,"dir1",text="directory 1")<br />
t.insert("dir1","end","dir 1",text="file 1 1",values=("file 1 A","file 1 B"))<br />
id=t.insert("","end","dir2",text="directory 2")<br />
t.insert("dir2","end",text="dir 2",values=("file 2 A","file 2 B"))<br />
t.insert(id,"end",text="dir 3",values=("val 1 ","val 2"))<br />
t.insert("",0,text="first line",values=("first line 1","first line 2"))<br />
t.tag_configure("ttk")<br />
t.pack(side=BOTTOM,fill=X)<br />
p.mainloop()<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://m-eken.com/2010/03/02/treeview-in-python-tkinter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Search with Python 3 and Tkinter</title>
		<link>http://m-eken.com/2010/02/08/google-search-with-python-3-and-tkinter/</link>
		<comments>http://m-eken.com/2010/02/08/google-search-with-python-3-and-tkinter/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 23:35:02 +0000</pubDate>
		<dc:creator>Eken</dc:creator>
				<category><![CDATA[The Others]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[python 3]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tkinter]]></category>
		<category><![CDATA[urllib]]></category>

		<guid isPermaLink="false">http://m-eken.com/?p=631</guid>
		<description><![CDATA[Google Search with Python and Tkinter;

# http://m-eken.com
# python 3
#google Searcher
import tkinter,urllib.request,urllib.parse,urllib.error
from tkinter import *
from tkinter import ttk

class window:
    def __init__(self,root):
        self.root=root
        self.root.title("Google Searcher")
        ttk.Frame(self.root, width=500,height=250).pack()
       [...]]]></description>
			<content:encoded><![CDATA[<p>Google Search with Python and Tkinter;</p>
<pre>
<code># http://m-eken.com
# python 3
#google Searcher
import tkinter,urllib.request,urllib.parse,urllib.error
from tkinter import *
from tkinter import ttk

class window:
    def __init__(self,root):
        self.root=root
        self.root.title("Google Searcher")
        ttk.Frame(self.root, width=500,height=250).pack()
        self.init_widgets()

    def init_widgets(self):
        ttk.Button(self.root, command=self.insert_text,text="Gooo",width="10").place(x=400,y=10)
        self.txt=tkinter.Text(self.root,width="52",height="10", font=12)
        self.txt.place(x=10,y=40)
        self.searchWord=tkinter.Text(self.root,width="42",height="1", font=12)
        self.searchWord.insert(tkinter.INSERT,"google search with python 3 tkinter")
        self.searchWord.place(x=10,y=15)

    def insert_text(self):
        GWord=self.searchWord.get(1.0,END)
        url="http://www.google.com/search?hl=en&#038;q="+"+".join(GWord.split())
        req=urllib.request.Request(url)
        req.add_header("User-Agent","Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/525.13 (KHTML, like Gecko) Chrome/0.2.149.29 Safari/525.13")
        GWord= urllib.request.urlopen(req).read()
        self.txt.insert(tkinter.INSERT,  GWord)

if __name__=="__main__":
    root=tkinter.Tk()
    window(root)
    root.mainloop()</code>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://m-eken.com/2010/02/08/google-search-with-python-3-and-tkinter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python 3 Google Search Sample</title>
		<link>http://m-eken.com/2010/02/03/python-3-google-search-sample/</link>
		<comments>http://m-eken.com/2010/02/03/python-3-google-search-sample/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 13:20:39 +0000</pubDate>
		<dc:creator>Eken</dc:creator>
				<category><![CDATA[The Others]]></category>
		<category><![CDATA[google search]]></category>
		<category><![CDATA[python 3]]></category>
		<category><![CDATA[urllib]]></category>

		<guid isPermaLink="false">http://m-eken.com/?p=620</guid>
		<description><![CDATA[Sample Google Search Python code
import urllib.request,urllib.parse,urllib.error
print("Google Searcher --- www.m-eken.com v.P5012")
while input("s: Search. q: Quit #: ")=="s":
GWord=input("#: ")
url="http://www.google.com/search?hl=en&#38;q="+"+".join(GWord.split())
print(GWord+"\nsearching... ")
req=urllib.request.Request(url)
req.add_header("User-Agent","Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/525.13 (KHTML,     like Gecko) Chrome/0.2.149.29 Safari/525.13")
print( urllib.request.urlopen(req).read())

]]></description>
			<content:encoded><![CDATA[<p>Sample Google Search Python code<br />
<code>import urllib.request,urllib.parse,urllib.error<br />
print("Google Searcher --- www.m-eken.com v.P5012")<br />
while input("s: Search. q: Quit #: ")=="s":<br />
GWord=input("#: ")<br />
url="http://www.google.com/search?hl=en&amp;q="+"+".join(GWord.split())<br />
print(GWord+"\nsearching... ")<br />
req=urllib.request.Request(url)<br />
req.add_header("User-Agent","Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/525.13 (KHTML,     like Gecko) Chrome/0.2.149.29 Safari/525.13")<br />
print( urllib.request.urlopen(req).read())<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://m-eken.com/2010/02/03/python-3-google-search-sample/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yonca Evcimik &#8211; Vurula Vurula</title>
		<link>http://m-eken.com/2010/02/03/yonca-evcimik-vurula-vurula/</link>
		<comments>http://m-eken.com/2010/02/03/yonca-evcimik-vurula-vurula/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 10:32:44 +0000</pubDate>
		<dc:creator>Eken</dc:creator>
				<category><![CDATA[The Others]]></category>

		<guid isPermaLink="false">http://m-eken.com/?p=614</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/mQlHLLrQZ2s&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/mQlHLLrQZ2s&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://m-eken.com/2010/02/03/yonca-evcimik-vurula-vurula/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cem Karaca &#8211; Herkes Gibisin</title>
		<link>http://m-eken.com/2010/02/02/cem-karaca-herkes-gibisin/</link>
		<comments>http://m-eken.com/2010/02/02/cem-karaca-herkes-gibisin/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 17:06:49 +0000</pubDate>
		<dc:creator>Eken</dc:creator>
				<category><![CDATA[The Others]]></category>

		<guid isPermaLink="false">http://m-eken.com/2010/02/02/cem-karaca-herkes-gibisin/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/J4vaKDPf3WY&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/J4vaKDPf3WY&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://m-eken.com/2010/02/02/cem-karaca-herkes-gibisin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tanju Okan &#8211; Koy Koy Koy</title>
		<link>http://m-eken.com/2010/02/01/tanju-okan-koy-koy-koy/</link>
		<comments>http://m-eken.com/2010/02/01/tanju-okan-koy-koy-koy/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 20:12:32 +0000</pubDate>
		<dc:creator>Eken</dc:creator>
				<category><![CDATA[The Others]]></category>

		<guid isPermaLink="false">http://m-eken.com/2010/02/01/tanju-okan-koy-koy-koy/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/WrVCkOBEGVI&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/WrVCkOBEGVI&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://m-eken.com/2010/02/01/tanju-okan-koy-koy-koy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Düş Sokağı Sakinleri &#8211; İstanbul Akşamlarım</title>
		<link>http://m-eken.com/2010/02/01/dus-sokagi-sakinleri-istanbul-aksamlarim/</link>
		<comments>http://m-eken.com/2010/02/01/dus-sokagi-sakinleri-istanbul-aksamlarim/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 19:52:25 +0000</pubDate>
		<dc:creator>Eken</dc:creator>
				<category><![CDATA[The Others]]></category>

		<guid isPermaLink="false">http://m-eken.com/2010/02/01/istanbul-aksamlarim/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/x4J7yyOVCC4&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/x4J7yyOVCC4&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://m-eken.com/2010/02/01/dus-sokagi-sakinleri-istanbul-aksamlarim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ölüm Tarihi: 2 Ocak</title>
		<link>http://m-eken.com/2010/01/25/olum-tarihi-2-ocak/</link>
		<comments>http://m-eken.com/2010/01/25/olum-tarihi-2-ocak/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 22:48:11 +0000</pubDate>
		<dc:creator>Eken</dc:creator>
				<category><![CDATA[The Others]]></category>

		<guid isPermaLink="false">http://m-eken.com/?p=605</guid>
		<description><![CDATA[2 ocak ölüm tarihim.
Trafik kazası geçirdim. Kimin aklına gelirdi ki bir gün benim de bir trafik kazası geçirebileceğim. Üstelik bir kaç takla atıp hurdaya dönen bir araçtan tek kırıkla sağ çıkacağım. Sadece tek kırıla atlattığım için şükredeceğim. Benim hiç aklıma gelmezdi doğrusu.
Ölümün gerçek olduğunu herkes bilir de hissetmek başka. &#8220;Verilmiş sadakan varmış&#8221; diyorlar. Verilmiş sadakam [...]]]></description>
			<content:encoded><![CDATA[<p>2 ocak ölüm tarihim.</p>
<p>Trafik kazası geçirdim. Kimin aklına gelirdi ki bir gün benim de bir trafik kazası geçirebileceğim. Üstelik bir kaç takla atıp hurdaya dönen bir araçtan tek kırıkla sağ çıkacağım. Sadece tek kırıla atlattığım için şükredeceğim. Benim hiç aklıma gelmezdi doğrusu.</p>
<p>Ölümün gerçek olduğunu herkes bilir de hissetmek başka. &#8220;Verilmiş sadakan varmış&#8221; diyorlar. Verilmiş sadakam vardı da ondan mı sağ çıktım, yoksa verilecek sadakam vardı da ondan mı kaza yaptım?</p>
<p>Bir film şeridi gibi geçmedi gözümün önünden tüm hayatım. O filmi izleyecek zamanım da olmadı zaten. Kaza anı hatırlanmaz derler ya &#8220;İnsan nasıl hatırlamaz öyle bir anı?&#8221; derdim. Aslında mantıklı bir açıklama arardım &#8220;hatırlamıyorum&#8221; dediklerinde. Buldum; Tüm olay 2-3 saniye içinde yaşanıyor. Ve bir kez göz kırptıysanız kaza anının yarısını kaçırdınız demektir. <img src='http://m-eken.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Kaç takla attığınızı olay yeri inceleme ekibi söyleyebilir.</p>
<p>Dünyaya bir kez geliniyor biliyor muydunuz? Bildiğinizden emin değilim. Yarına sağ çıkacağınızın garantisi yok. Bunu hissedebiliyor musunuz? &#8220;Her nefis ölümü tadacaktır.&#8221; Ne demek biliyor musunuz? Ben öğrendim. Ya da hissettim de öğrendiğimi sandım. Gerçek şu ki; Şu an hayatta olmayabilirdim. Ve hayattaysam aldığım her nefes Allah&#8217;ın bir lütfu. İyi değerlendirmek lazım. Çok şükür bunu anladığımda ölmüş değildim. Hamdetmek ve şükretmek aslında farklı kavramlar. Kendimce hamdederdim de şükretmeye de çalışıyorum.</p>
<p>&#8220;Darısı başınıza&#8221; mı desem, &#8220;Allah yaşatmasın&#8221; mı desem bilmem ki ne desem.</p>
<p>Bazen diğer tarafa gidersiniz de kapıdan geri gönderirler. Tadamazsınız ölümü, döner gelirsiniz badi badi. İkinci kez gelirsiniz dünyaya. Havasını atarsınız&#8230; Ya daha yumuşak ya daha sert olursunuz. Eskisi gibi olmaz hiç bir şey.</p>
]]></content:encoded>
			<wfw:commentRss>http://m-eken.com/2010/01/25/olum-tarihi-2-ocak/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Aylin Aslım &#8211; Senin Gibi</title>
		<link>http://m-eken.com/2010/01/15/aylin-aslim-senin-gibi/</link>
		<comments>http://m-eken.com/2010/01/15/aylin-aslim-senin-gibi/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 11:07:09 +0000</pubDate>
		<dc:creator>Eken</dc:creator>
				<category><![CDATA[The Others]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://m-eken.com/?p=600</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/3Y1tC3RQFbs&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/3Y1tC3RQFbs&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://m-eken.com/2010/01/15/aylin-aslim-senin-gibi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
