<?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>Murat ŞİŞMAN</title>
	<atom:link href="http://www.muratsisman.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.muratsisman.com</link>
	<description>3D Specialist</description>
	<lastBuildDate>Thu, 10 May 2012 18:23:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Push Notification How To?</title>
		<link>http://www.muratsisman.com/push-notification-how-to/</link>
		<comments>http://www.muratsisman.com/push-notification-how-to/#comments</comments>
		<pubDate>Thu, 10 May 2012 18:05:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://www.muratsisman.com/?p=1204</guid>
		<description><![CDATA[Apple Push Notification Service (APNS) an service user by apple to notify application. The notification can be of various Text Alert with or without sound, Baggage number update on icon etc.Below are the steps to construct an simple application that receives notification form APNS. The steps are for development testing on sandbox APNS service from Apple [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Apple Push Notification Service (APNS) an service user by apple to notify application. The notification can be of various Text Alert with or without sound, Baggage number update on icon etc.Below are the steps to construct an simple application that receives notification form APNS. The steps are for development testing on sandbox APNS service from Apple</p></blockquote>
<p><span id="more-1204"></span><br />
<strong>Getting Ready with Certificate and key.</strong></p>
<p>1- Generate a certificate signing request from your Mac’s keychain and save to disk.(Steps same as creating certificate for development but don’t submit not).<br />
2- Please store this certificate in a safe location as it might be re-required to invoke APNS.<br />
3- Login into your development account and visit iPhone Developer Program Portal.<br />
4- Click App IDs on left. Create an new id without wild charter (com.mydomain.applicationName). This name will be used while setting up your application to be signed with development certificate. 5- If you use wild character like ‘*’ the iPhone Developer Program Portal will not allow the App ID to be used for notification.<br />
6- After submitting the new App ID you will be guided to the list page. Click configure to edit setting. Check ‘Enable for Apple Push Notification service’ to enable APNS , and click Configure next to ‘Development Push SSL Certificate’<br />
7- Upload your request certificate generated in step 1 and download the certificate (aps_developer_identity.cer) from the Program Portal</p>
<p>8- Double click on this certificate to save it your key chain. Export this key by clicking on this newly installed certificate. The exported key is saved as Certificate.p12 file on your system. Please store it other files uploaded or downloaded from portal program. This .p12 file is used in later steps for signing your Provider server.</p>
<p><img style="border: 0px initial initial;" src="http://www.macoscoders.com/images/apns_development_certificate_request.jpg" border="0" alt="" width="280" height="255" /><img style="border: 0px initial initial;" src="http://www.macoscoders.com/images/Request_Certificate_From_Keychain_Access.jpg" border="0" alt="" width="416" height="183" /></p>
<p>9- Click on Provisioning in left bar and create a new provisioning profile. Use the new created App Id and select the device you want to use for development. Download the new provisioning profile save with other files. Close XCode if open and drag drop new provisioning profile on your XCode in your Doc bar.Your ready with certificate and key.<br />
<strong> Getting ready with the application<br />
Create an simple view based application.<br />
Paste these line of code in your application.</strong><br />
<span style="color: #800000;">- (void)applicationDidFinishLaunching:(UIApplication *)app {<br />
// other setup tasks here….<br />
[window addSubview:viewController.view];<br />
[self alertNotice:@"" withMSG:@"Initiating Remote Noticationss Are Active" cancleButtonTitle:@"Ok" otherButtonTitle:@""];<br />
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge |UIRemoteNotificationTypeSound)];<br />
}<br />
- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {<br />
//NSLog(@”devToken=%@”,deviceToken);<br />
[self alertNotice:@"" withMSG:[NSString stringWithFormat:@"devToken=%@",deviceToken] cancleButtonTitle:@”Ok” otherButtonTitle:@”&#8221;];<br />
}<br />
- (void)application:(UIApplication *)app didFailToRegisterForRemoteNotificationsWithError:(NSError *)err {<br />
NSLog(@”Error in registration. Error: %@”, err);<br />
[self alertNotice:@"" withMSG:[NSString stringWithFormat:@"Error in registration. Error: %@", err] cancleButtonTitle:@”Ok” otherButtonTitle:@”&#8221;];<br />
}<br />
-(void)alertNotice:(NSString *)title withMSG:(NSString *)msg cancleButtonTitle:(NSString *)cancleTitle otherButtonTitle:(NSString *)otherTitle{<br />
UIAlertView *alert;<br />
if([otherTitle isEqualToString:@""])<br />
alert = [[UIAlertView alloc] initWithTitle:title message:msg delegate:self cancelButtonTitle:cancleTitle otherButtonTitles:nil,nil];<br />
else<br />
alert = [[UIAlertView alloc] initWithTitle:title message:msg delegate:self cancelButtonTitle:cancleTitle otherButtonTitles:otherTitle,nil];<br />
[alert show];<br />
[alert release];<br />
}</span><br />
- Please be careful with the error reporting part in the code as error tell a lot about the development state.<br />
- Right click on the application in target in the left and click Get Info to configure the application. &#8211; - Click on property tab and paste your App ID in the identifier text-field.<br />
- Click build tab, select debug and select your new provisioning profile.<br />
- Click Device 3.0 and Build Go to distribute binary to your connected device.<br />
- Starting the application it should first alert and message that it registering for notification.</p>
<p>-Followed by and alert the application is registering for notification allow or deny. Followed by an alert that displays the device token ID. Note this token as this will be used by your server code to communicate with your device. If the second message is error then either something has gone wrong with the certificate and your application cannot register your certificate start over again.</p>
<p><strong> Getting ready with Notification service provider.</strong><br />
Download an stand alone MAC application (<a href="http://stefan.hafeneger.name/download/PushMeBabySource.zip">PushMeBaby</a><a href="http://stefan.hafeneger.name/download/PushMeBabySource.zip">http://stefan.hafeneger.name/download/PushMeBabySource.zip</a>) to test. There are two modification in the application to get started.<br />
Place an copy of the aps_developer_identity.p12 file in the application folder. Import the file in the application by right clicking and Add &gt; Existing File.<br />
Set the following in the application’s delegate file as shown below<br />
<span style="color: #800000;">self.deviceToken = @”XXXXX XXXXX XXXXX XXXXXX XXXXXX”;<br />
//First your device id token.<br />
self.payload = @”{\”aps\” : { \”alert\” : \”You got your emails.\”,\”badge\” : 9,\”sound\” : \”bingbong.aiff\”},\”acme1\” : \”bar\”,\”acme2\” : 42}”;<br />
//The pay load<br />
self.certificate = [[NSBundle mainBundle] pathForResource:@”aps_developer_identity” ofType:@”cer”]; //The certificate file.</span><br />
Don’t depend on the application’s text-field as it doesn’t work.<br />
Start the application and you will get a message the application is trying to access your key , click ‘Allow’. Click Push in the application window. Wait for a 20 seconds and you should immediately get an notification on your iPhone / iTouch.<br />
Getting ready with test code for actual provider sever (PHP).<br />
For server on linux environment you will require different kind of certificate. Following are the steps to create it. Use MAC console to fire the following commands.<br />
openssl pkcs12 -clcerts -nokeys -out cert.pem -in Certificate.p12<br />
provide new password if asked.<br />
openssl pkcs12 -nocerts -out key.pem -in Certificate.p12<br />
provide new password if asked.<br />
<span style="font-family: monospace;">cat cert.pem key.unencrypted.pem &gt; ck.pem</span><br />
Create an PHP file provide.php<br />
<span style="color: #800000;">$message);<br />
if ($badge)<br />
$body['aps']['badge'] = $badge;<br />
if ($sound)<br />
$body['aps']['sound'] = $sound;<br />
/* End of Configurable Items */<br />
$ctx = stream_context_create();<br />
stream_context_set_option($ctx, ‘ssl’, ‘local_cert’, ‘ck.pem’);<br />
// assume the private key passphase was removed.<br />
// stream_context_set_option($ctx, ‘ssl’, ‘passphrase’, $pass);<br />
$fp = stream_socket_client(‘ssl://gateway.sandbox.push.apple.com:2195′, $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);<br />
if (!$fp) {<br />
print “Failed to connect $err $errstrn”;<br />
return;<br />
}<br />
else {<br />
print “Connection OKn”;<br />
}<br />
$payload = json_encode($body);<br />
$msg = chr(0) . pack(“n”,32) . pack(‘H*’, str_replace(‘ ‘, ”, $deviceToken)) . pack(“n”,strlen($payload)) . $payload;<br />
print “sending message :” . $payload . “n”;<br />
fwrite($fp, $msg);<br />
fclose($fp);<br />
?&gt;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.muratsisman.com/push-notification-how-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Push Notification Kullanımı</title>
		<link>http://www.muratsisman.com/push-notification-kullanimi/</link>
		<comments>http://www.muratsisman.com/push-notification-kullanimi/#comments</comments>
		<pubDate>Thu, 10 May 2012 17:36:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://www.muratsisman.com/?p=1171</guid>
		<description><![CDATA[iOS uygulamalarının en önemli özelliklerinden birisi olan Push Notification&#8217;ın nasıl kullanıldığını aşağıdaki örnekte inceleyebilirsiniz. Push Notification Nedir? iOS cihazlar (iPhone ve iPad) Apple&#8217;ın Push sunucuları ile sürekli bağlantılı halde bulunurlar. Bu sayede Apple Push Sunucuları kullanılarak size text mesajları gönderilebilir, çalınan veya kaybolan telefonunuzun yeri tespit edilebilir hatta telefonunuz sizin isteğiniz ile kullanım dışı olabilir. [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>iOS uygulamalarının en önemli özelliklerinden birisi olan Push Notification&#8217;ın nasıl kullanıldığını aşağıdaki örnekte inceleyebilirsiniz.</p></blockquote>
<p><strong>Push Notification Nedir?</strong><br />
iOS cihazlar (iPhone ve iPad) Apple&#8217;ın Push sunucuları ile sürekli bağlantılı halde bulunurlar. Bu sayede Apple Push Sunucuları kullanılarak size text mesajları gönderilebilir, çalınan veya kaybolan telefonunuzun yeri tespit edilebilir hatta telefonunuz sizin isteğiniz ile kullanım dışı olabilir.</p>
<p><strong><span id="more-1171"></span>Nasıl Çalışır?</strong><br />
İlk yapmamız gereken hazırladığımız uygulamaya PUSH özelliği eklememizdir. Bunun için developer.apple.com adresinde bulunan Provision profile bölümünü kullanarak yeni bir Push sertifikası yaratmamız gerekir.<br />
Uygulamayı yüklemiş olup aynı zamanda &#8220;Push Mesaj Göndermeyi Kabul&#8221; etmiş kullanıcılara mesaj göndermek için o kullanıcının UDID&#8217;i (User Device Id) gerekmektedir. UDID her iOS cihazına özel bir numaradır ve cihazını tanımlayan şey işte budur.<br />
Mesaj göndermek istediğiniz kullanıcının veya kullanıcıların UDID&#8217;lerini belirli bir kodlama ile Apple Push ve Sandbox sunucularına sock bağlantı ile göndermeniz gerekmektedir. Öncelikle Apple&#8217;a gönderilen text mesajları daha sonra belirlemiş olduğunuz kullanıcılara Apple tarafından iletilmektedir.</p>
<p><strong>Adım Adım Push Notification</strong><br />
1. Uygulamanıza Push Notification eklemek için öncelikle Push Sertifikasına ihtiyacınız var. Keychains yardımı ile request sertifikamızı oluşturuyoruz.</p>
<p><a rel="attachment wp-att-1173" href="http://www.muratsisman.com/push-notification-kullanimi/request_certificate_from_keychain_access/"><img class="alignnone size-medium wp-image-1173" title="Request_Certificate_From_Keychain_Access" src="http://www.muratsisman.com/wp-content/uploads/2012/05/Request_Certificate_From_Keychain_Access-300x131.jpg" alt="" width="300" height="131" /></a></p>
<p><a rel="attachment wp-att-1178" href="http://www.muratsisman.com/push-notification-kullanimi/sertifikailk/"><img class="alignnone size-medium wp-image-1178" title="sertifikailk" src="http://www.muratsisman.com/wp-content/uploads/2012/05/sertifikailk-300x210.png" alt="" width="300" height="210" /></a></p>
<p>2. Yukarıda oluşturduğumuz bu dosyayı developer.apple.com  / ProvisionPortal&#8217;ı ile Push Sertifikasına çeviriyoruz. Bunun için hesabımıza giriş yaptıktan sonra APP-ID sekmesini kullanacağız. Daha önce yaratmış olduğumuz uygulamanın sağ tarafında bulunan <em>Configure</em> bağlantısına tıklayarak PUSH ayarlarımızı yapıyoruz.</p>
<p><a rel="attachment wp-att-1175" href="http://www.muratsisman.com/push-notification-kullanimi/appid/"><img class="alignnone size-medium wp-image-1175" title="appid" src="http://www.muratsisman.com/wp-content/uploads/2012/05/appid-300x20.png" alt="" width="300" height="20" /></a></p>
<p><a rel="attachment wp-att-1176" href="http://www.muratsisman.com/push-notification-kullanimi/pushsertifika/"><img class="alignnone size-medium wp-image-1176" title="pushsertifika" src="http://www.muratsisman.com/wp-content/uploads/2012/05/pushsertifika-300x168.png" alt="" width="300" height="168" /></a></p>
<p>Configure bağlantısına girdiğimizde bizden ilk adımda hazırlamış olduğumuz sertifika dosyamızı isteyecektir. Bu bölümde bilgisayarımızda hazırladığımız sertifikamızı seçip işlemlere devam ediyoruz.</p>
<p><a rel="attachment wp-att-1177" href="http://www.muratsisman.com/push-notification-kullanimi/pushsertifika2/"><img class="alignnone size-medium wp-image-1177" title="pushsertifika2" src="http://www.muratsisman.com/wp-content/uploads/2012/05/pushsertifika2-300x271.png" alt="" width="300" height="271" /></a></p>
<p><a rel="attachment wp-att-1179" href="http://www.muratsisman.com/push-notification-kullanimi/sertifikaiki/"><img class="alignnone size-medium wp-image-1179" title="sertifikaiki" src="http://www.muratsisman.com/wp-content/uploads/2012/05/sertifikaiki-300x274.png" alt="" width="300" height="274" /></a></p>
<p><a rel="attachment wp-att-1180" href="http://www.muratsisman.com/push-notification-kullanimi/sertifikadone/"><img class="alignnone size-medium wp-image-1180" title="sertifikadone" src="http://www.muratsisman.com/wp-content/uploads/2012/05/sertifikadone-300x274.png" alt="" width="300" height="274" /></a></p>
<p>Tüm bu işlemlerden sonra Hazırlanan Push sertifikamızı download edip çift tıklayarak çalıştırıyoruz ve sisteme eklenemsini sağlamış oluyoruz.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.muratsisman.com/push-notification-kullanimi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ikea ev elektronigine el atti</title>
		<link>http://www.muratsisman.com/ikea-ev-elektronigine-el-atti/</link>
		<comments>http://www.muratsisman.com/ikea-ev-elektronigine-el-atti/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 14:40:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.muratsisman.com/?p=1169</guid>
		<description><![CDATA[IKEA Ev Elektroniğine giriş yaptı, artık daha kalitesiz malzeme ama daha az kablo ve daha şirin tasarımlar karşımıza çıkacak gibi.]]></description>
			<content:encoded><![CDATA[<p><iframe width="560" height="315" src="http://www.youtube.com/embed/0Nm7-EuctOs" frameborder="0" allowfullscreen></iframe></p>
<p>IKEA Ev Elektroniğine giriş yaptı, artık daha kalitesiz malzeme ama daha az kablo ve daha şirin tasarımlar karşımıza çıkacak gibi.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.muratsisman.com/ikea-ev-elektronigine-el-atti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple&#8217;ın Nakiti 110Milyar Dolar&#8217;ı geçti</title>
		<link>http://www.muratsisman.com/applein-nakiti-110milyar-dolari-gecti/</link>
		<comments>http://www.muratsisman.com/applein-nakiti-110milyar-dolari-gecti/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 22:50:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.muratsisman.com/?p=1164</guid>
		<description><![CDATA[2012 yılı 2. çeyreği satış oranları hesaplanınca Apple&#8217;ın kasasındaki nakit para 110 Milyar Dolar&#8217;ı geçti. Bilindiği üzere ketum Steve Jobs  yıllardır kar payı dağıttırmıyordu ve bu yıl hisse başı 2.6$ dağıtma kararı almıştı. Apple halen dünyanın en değerli şirketi&#8230;]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1165" title="apple" src="http://www.muratsisman.com/wp-content/uploads/2012/04/apple.jpg" alt="" width="259" height="287" /></p>
<p>2012 yılı 2. çeyreği satış oranları hesaplanınca Apple&#8217;ın kasasındaki nakit para 110 Milyar Dolar&#8217;ı geçti. Bilindiği üzere ketum Steve Jobs  yıllardır kar payı dağıttırmıyordu ve bu yıl hisse başı 2.6$ dağıtma kararı almıştı.</p>
<p>Apple halen dünyanın en değerli şirketi&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.muratsisman.com/applein-nakiti-110milyar-dolari-gecti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Jobs, Gates ve Zuckerberg</title>
		<link>http://www.muratsisman.com/steve-jobs-gates-ve-zuckerberg/</link>
		<comments>http://www.muratsisman.com/steve-jobs-gates-ve-zuckerberg/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 22:44:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.muratsisman.com/?p=1159</guid>
		<description><![CDATA[Milyar dolarlar için şart mı? bilinmez ama Zuckerberg&#8217;te ataları olan Steve Jobs ve Bill Gates gibi şort ve terlikleri bir kenara bırakıp takım elbiseye geçmiş.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1160" title="zuck" src="http://www.muratsisman.com/wp-content/uploads/2012/04/zuck.png" alt="" width="288" height="185" /></p>
<p>Milyar dolarlar için şart mı? bilinmez ama Zuckerberg&#8217;te ataları olan Steve Jobs ve Bill Gates gibi şort ve terlikleri bir kenara bırakıp takım elbiseye geçmiş.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.muratsisman.com/steve-jobs-gates-ve-zuckerberg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple ikinci çeyrekte kar&#8217;ı ikiye katladı!</title>
		<link>http://www.muratsisman.com/apple-ikinci-ceyrekte-kari-ikiye-katladi/</link>
		<comments>http://www.muratsisman.com/apple-ikinci-ceyrekte-kari-ikiye-katladi/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 22:33:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.muratsisman.com/?p=1147</guid>
		<description><![CDATA[Apple&#8217;ın 2012 yılı ikinci Çeyrekte olan bitenleri: 11.6 Milyar Dolar Kar 39.2Milyar Dolar Gelir 35.1 Milyon Adet iPhone Satışı Geçen yıla göre satışlardaki oranlar; iPad %151 artış Mac %7 artış iPod %15 düşüş]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1149" title="appleq2" src="http://www.muratsisman.com/wp-content/uploads/2012/04/appleq21.png" alt="" width="640" height="300" /></p>
<p>Apple&#8217;ın 2012 yılı ikinci Çeyrekte olan bitenleri:</p>
<p>11.6 Milyar Dolar Kar</p>
<p>39.2Milyar Dolar Gelir</p>
<p>35.1 Milyon Adet iPhone Satışı</p>
<p>Geçen yıla göre satışlardaki oranlar;</p>
<p>iPad %151 artış</p>
<p>Mac %7 artış</p>
<p>iPod %15 düşüş</p>
]]></content:encoded>
			<wfw:commentRss>http://www.muratsisman.com/apple-ikinci-ceyrekte-kari-ikiye-katladi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now i live in Istanbul</title>
		<link>http://www.muratsisman.com/now-i-live-in-istanbul/</link>
		<comments>http://www.muratsisman.com/now-i-live-in-istanbul/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 20:03:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[About Me]]></category>

		<guid isPermaLink="false">http://www.muratsisman.com/?p=1043</guid>
		<description><![CDATA[My Dreams City / Istanbul&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1044" href="http://www.muratsisman.com/now-i-live-in-istanbul/istanbul-4/"><img class="alignnone size-full wp-image-1044" title="IST" src="http://www.muratsisman.com/wp-content/uploads/2012/04/istanbul3.jpg" alt="" width="218" height="299" /></a></p>
<p>My Dreams City / Istanbul<span style="color: #ffffff;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.muratsisman.com/now-i-live-in-istanbul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>University</title>
		<link>http://www.muratsisman.com/university/</link>
		<comments>http://www.muratsisman.com/university/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 20:02:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[About Me]]></category>

		<guid isPermaLink="false">http://www.muratsisman.com/?p=1038</guid>
		<description><![CDATA[Bilkent University / Ankara (1999-2002)]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1039" href="http://www.muratsisman.com/university/bilkent/"><img class="alignnone size-full wp-image-1039" title="Un" src="http://www.muratsisman.com/wp-content/uploads/2012/04/bilkent.jpg" alt="" width="218" height="299" /></a></p>
<p>Bilkent University / Ankara (1999-2002)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.muratsisman.com/university/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High School</title>
		<link>http://www.muratsisman.com/high-school/</link>
		<comments>http://www.muratsisman.com/high-school/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 20:01:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[About Me]]></category>

		<guid isPermaLink="false">http://www.muratsisman.com/?p=1034</guid>
		<description><![CDATA[Trabzon Lisesi / Trabzon (1995-1998)&#8212;&#8212;&#8211;]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1035" href="http://www.muratsisman.com/high-school/trabzonlisesi/"><img class="alignnone size-full wp-image-1035" title="Hs" src="http://www.muratsisman.com/wp-content/uploads/2012/04/trabzonlisesi.jpg" alt="" width="218" height="299" /></a></p>
<p>Trabzon Lisesi / Trabzon (1995-1998)<span style="color: #ffffff;">&#8212;&#8212;&#8211;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.muratsisman.com/high-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First School</title>
		<link>http://www.muratsisman.com/first-school/</link>
		<comments>http://www.muratsisman.com/first-school/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 20:00:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[About Me]]></category>

		<guid isPermaLink="false">http://www.muratsisman.com/?p=1030</guid>
		<description><![CDATA[Dumlupınar İlköğretim Okulu / Eskişehir (1988 &#8211; 1992)]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1031" href="http://www.muratsisman.com/first-school/dumlupinar/"><img class="alignnone size-full wp-image-1031" title="Fs" src="http://www.muratsisman.com/wp-content/uploads/2012/04/dumlupinar.jpg" alt="" width="218" height="299" /></a></p>
<p>Dumlupınar İlköğretim Okulu / Eskişehir (1988 &#8211; 1992)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.muratsisman.com/first-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

