<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Nuha&#039;s knowledge : I want you to believe that living is wonderful...</title>
	<atom:link href="http://hilalnuha.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hilalnuha.wordpress.com</link>
	<description>Islam, Inspirations, Science, and Entertainment</description>
	<lastBuildDate>Wed, 28 Dec 2011 13:23:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='hilalnuha.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/f09606d9ec9f6c085658ace0add5b852?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Nuha&#039;s knowledge : I want you to believe that living is wonderful...</title>
		<link>http://hilalnuha.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://hilalnuha.wordpress.com/osd.xml" title="Nuha&#039;s knowledge : I want you to believe that living is wonderful..." />
	<atom:link rel='hub' href='http://hilalnuha.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Android Service Example</title>
		<link>http://hilalnuha.wordpress.com/2011/08/10/android-service-example/</link>
		<comments>http://hilalnuha.wordpress.com/2011/08/10/android-service-example/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 09:50:24 +0000</pubDate>
		<dc:creator>hilalnuha</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hilalnuha.wordpress.com/?p=516</guid>
		<description><![CDATA[The steps to create a self-contained service associated with a single component are 1. Create a class to extend Service. (In Eclipse, this can be done by right-clicking the project, choosing New → Class and specifying android.app.Service as the super class.) import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; public class SimpleActivity extends [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=516&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The steps to create a self-contained service associated with a single component are<br />
1. Create a class to extend Service. (In Eclipse, this can be done by right-clicking<br />
the project, choosing New → Class and specifying android.app.Service as the<br />
super class.)</p>
<blockquote><p>import android.app.Activity;<br />
import android.content.Intent;<br />
import android.os.Bundle;<br />
import android.view.View;<br />
import android.widget.Button;<br />
public class SimpleActivity extends Activity {<br />
@Override<br />
protected void onCreate(Bundle savedInstanceState) {<br />
super.onCreate(savedInstanceState);<br />
setContentView(R.layout.main);<br />
Button startButton = (Button) findViewById(R.id.Button01);<br />
startButton.setOnClickListener(new View.OnClickListener() {<br />
public void onClick(View view){<br />
startService(new Intent(SimpleActivity.this,<br />
SimpleService.class));<br />
}<br />
});<br />
Button stopButton = (Button)findViewById(R.id.Button02);<br />
stopButton.setOnClickListener(new View.OnClickListener() {<br />
public void onClick(View v){<br />
stopService(new Intent(SimpleActivity.this,<br />
SimpleService.class));<br />
}<br />
});<br />
}<br />
}</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hilalnuha.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hilalnuha.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hilalnuha.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hilalnuha.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hilalnuha.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hilalnuha.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hilalnuha.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hilalnuha.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hilalnuha.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hilalnuha.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hilalnuha.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hilalnuha.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hilalnuha.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hilalnuha.wordpress.com/516/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=516&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hilalnuha.wordpress.com/2011/08/10/android-service-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67201630c5b524cda1e2a36b31c814ce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hilalnuha</media:title>
		</media:content>
	</item>
		<item>
		<title>What is a server</title>
		<link>http://hilalnuha.wordpress.com/2011/08/10/what-is-a-server/</link>
		<comments>http://hilalnuha.wordpress.com/2011/08/10/what-is-a-server/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 09:36:53 +0000</pubDate>
		<dc:creator>hilalnuha</dc:creator>
				<category><![CDATA[computer network]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[what is a server]]></category>

		<guid isPermaLink="false">http://hilalnuha.wordpress.com/?p=514</guid>
		<description><![CDATA[what is a server? a server is a computer program running to serve the needs or requests of other programs (referred to in this context as &#8220;clients&#8221;) which may or may not be running on the same computer. a server is a physical computer dedicated to running one or more such services, to serve the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=514&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://hilalnuha.blogspot.com/2011/08/tes.html" title="sponsored link" target="_blank">what is a server?<br />
a server is a computer program running to serve the needs or requests of other programs (referred to in this context as &#8220;clients&#8221;) which may or may not be running on the same computer.</p>
<p>a server is a physical computer dedicated to running one or more such services, to serve the needs of programs running on other computers on the same network.</p>
<p>a server is a software/hardware system (i.e. a software service running on a dedicated computer) such as a database server, file server, mail server, or print server.</a><br />
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Rack001.jpg/450px-Rack001.jpg" alt="A server" /><br />
<span id="more-514"></span><br />
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/38/Inside_and_Rear_of_Webserver.jpg/800px-Inside_and_Rear_of_Webserver.jpg" alt="A server component" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hilalnuha.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hilalnuha.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hilalnuha.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hilalnuha.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hilalnuha.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hilalnuha.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hilalnuha.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hilalnuha.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hilalnuha.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hilalnuha.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hilalnuha.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hilalnuha.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hilalnuha.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hilalnuha.wordpress.com/514/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=514&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hilalnuha.wordpress.com/2011/08/10/what-is-a-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67201630c5b524cda1e2a36b31c814ce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hilalnuha</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Rack001.jpg/450px-Rack001.jpg" medium="image">
			<media:title type="html">A server</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/thumb/3/38/Inside_and_Rear_of_Webserver.jpg/800px-Inside_and_Rear_of_Webserver.jpg" medium="image">
			<media:title type="html">A server component</media:title>
		</media:content>
	</item>
		<item>
		<title>What is twitter</title>
		<link>http://hilalnuha.wordpress.com/2011/08/10/what-is-twitter/</link>
		<comments>http://hilalnuha.wordpress.com/2011/08/10/what-is-twitter/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 09:23:49 +0000</pubDate>
		<dc:creator>hilalnuha</dc:creator>
				<category><![CDATA[computer network]]></category>
		<category><![CDATA[definition]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[what is]]></category>
		<category><![CDATA[what is twitter]]></category>

		<guid isPermaLink="false">http://hilalnuha.wordpress.com/?p=512</guid>
		<description><![CDATA[Twitter is a Social networking and microblogging service utilising instant messaging, SMS or a web interface. Twitter is also an online social networking and microblogging service that enables its users to send and read text-based posts of up to 140 characters, informally known as &#8220;tweets.&#8221; this is twitter first sketch<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=512&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://hilalnuha.blogspot.com/2011/08/tes.html" title="sponsored link">Twitter is a Social networking and microblogging service utilising instant messaging, SMS or a web interface.<br />
Twitter is also an online social networking and microblogging service that enables its users to send and read text-based posts of up to 140 characters, informally known as &#8220;tweets.&#8221;</a><br />
<img src="http://upload.wikimedia.org/wikipedia/en/8/85/TwitterHomepage.PNG" alt="Twitter home" /><br />
<span id="more-512"></span><br />
<img src="http://http://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Twttr_sketch-Dorsey-2006.jpg/450px-Twttr_sketch-Dorsey-2006.jpg" alt="Twitter Sketch" /><br />
this is twitter first sketch</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hilalnuha.wordpress.com/512/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hilalnuha.wordpress.com/512/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hilalnuha.wordpress.com/512/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hilalnuha.wordpress.com/512/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hilalnuha.wordpress.com/512/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hilalnuha.wordpress.com/512/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hilalnuha.wordpress.com/512/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hilalnuha.wordpress.com/512/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hilalnuha.wordpress.com/512/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hilalnuha.wordpress.com/512/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hilalnuha.wordpress.com/512/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hilalnuha.wordpress.com/512/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hilalnuha.wordpress.com/512/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hilalnuha.wordpress.com/512/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=512&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hilalnuha.wordpress.com/2011/08/10/what-is-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67201630c5b524cda1e2a36b31c814ce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hilalnuha</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/en/8/85/TwitterHomepage.PNG" medium="image">
			<media:title type="html">Twitter home</media:title>
		</media:content>

		<media:content url="http://http://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Twttr_sketch-Dorsey-2006.jpg/450px-Twttr_sketch-Dorsey-2006.jpg" medium="image">
			<media:title type="html">Twitter Sketch</media:title>
		</media:content>
	</item>
		<item>
		<title>nasi goreng cumi</title>
		<link>http://hilalnuha.wordpress.com/2011/07/01/nasi-goreng-cumi/</link>
		<comments>http://hilalnuha.wordpress.com/2011/07/01/nasi-goreng-cumi/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 23:57:08 +0000</pubDate>
		<dc:creator>hilalnuha</dc:creator>
				<category><![CDATA[Slice Of Life]]></category>

		<guid isPermaLink="false">https://hilalnuha.wordpress.com/2011/07/01/nasi-goreng-cumi/</guid>
		<description><![CDATA[cumi2 sawi bertemu di penggorengan ditambah teh hangat plus rosela<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=511&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://hilalnuha.files.wordpress.com/2011/07/wpid-1309564519050.jpg?w=418" /></p>
<p>cumi2 sawi bertemu di penggorengan <br />
ditambah teh hangat plus rosela</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hilalnuha.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hilalnuha.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hilalnuha.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hilalnuha.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hilalnuha.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hilalnuha.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hilalnuha.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hilalnuha.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hilalnuha.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hilalnuha.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hilalnuha.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hilalnuha.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hilalnuha.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hilalnuha.wordpress.com/511/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=511&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hilalnuha.wordpress.com/2011/07/01/nasi-goreng-cumi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67201630c5b524cda1e2a36b31c814ce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hilalnuha</media:title>
		</media:content>

		<media:content url="http://hilalnuha.files.wordpress.com/2011/07/wpid-1309564519050.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Filet Kakap</title>
		<link>http://hilalnuha.wordpress.com/2011/06/26/filet-kakap/</link>
		<comments>http://hilalnuha.wordpress.com/2011/06/26/filet-kakap/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 11:14:23 +0000</pubDate>
		<dc:creator>hilalnuha</dc:creator>
				<category><![CDATA[Slice Of Life]]></category>

		<guid isPermaLink="false">https://hilalnuha.wordpress.com/2011/06/26/filet-kakap/</guid>
		<description><![CDATA[filet kakap&#8230; delicioso&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=509&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://hilalnuha.files.wordpress.com/2011/06/wpid-1309086817881.jpg?w=418" /></p>
<p>filet kakap&#8230; delicioso&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hilalnuha.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hilalnuha.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hilalnuha.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hilalnuha.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hilalnuha.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hilalnuha.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hilalnuha.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hilalnuha.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hilalnuha.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hilalnuha.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hilalnuha.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hilalnuha.wordpress.com/509/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hilalnuha.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hilalnuha.wordpress.com/509/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=509&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hilalnuha.wordpress.com/2011/06/26/filet-kakap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67201630c5b524cda1e2a36b31c814ce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hilalnuha</media:title>
		</media:content>

		<media:content url="http://hilalnuha.files.wordpress.com/2011/06/wpid-1309086817881.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>kakao goreng</title>
		<link>http://hilalnuha.wordpress.com/2011/06/26/kakao-goreng/</link>
		<comments>http://hilalnuha.wordpress.com/2011/06/26/kakao-goreng/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 05:03:55 +0000</pubDate>
		<dc:creator>hilalnuha</dc:creator>
				<category><![CDATA[Slice Of Life]]></category>

		<guid isPermaLink="false">https://hilalnuha.wordpress.com/2011/06/26/kakao-goreng/</guid>
		<description><![CDATA[nikmatnya kakao goreng sayur asam kangkung<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=507&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://hilalnuha.files.wordpress.com/2011/06/wpid-1309064570796.jpg?w=418" /></p>
<p>nikmatnya kakao goreng sayur asam kangkung</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hilalnuha.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hilalnuha.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hilalnuha.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hilalnuha.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hilalnuha.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hilalnuha.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hilalnuha.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hilalnuha.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hilalnuha.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hilalnuha.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hilalnuha.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hilalnuha.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hilalnuha.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hilalnuha.wordpress.com/507/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=507&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hilalnuha.wordpress.com/2011/06/26/kakao-goreng/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67201630c5b524cda1e2a36b31c814ce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hilalnuha</media:title>
		</media:content>

		<media:content url="http://hilalnuha.files.wordpress.com/2011/06/wpid-1309064570796.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>homemade crackers</title>
		<link>http://hilalnuha.wordpress.com/2011/06/26/homemade-crackers/</link>
		<comments>http://hilalnuha.wordpress.com/2011/06/26/homemade-crackers/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 04:33:23 +0000</pubDate>
		<dc:creator>hilalnuha</dc:creator>
				<category><![CDATA[Slice Of Life]]></category>

		<guid isPermaLink="false">https://hilalnuha.wordpress.com/2011/06/26/homemade-crackers/</guid>
		<description><![CDATA[ngiler&#8230; coding sambil makan cracker bikinan istri&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=505&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://hilalnuha.files.wordpress.com/2011/06/wpid-1309062753726.jpg?w=418" /></p>
<p>ngiler&#8230; coding sambil makan cracker bikinan istri&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hilalnuha.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hilalnuha.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hilalnuha.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hilalnuha.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hilalnuha.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hilalnuha.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hilalnuha.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hilalnuha.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hilalnuha.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hilalnuha.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hilalnuha.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hilalnuha.wordpress.com/505/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hilalnuha.wordpress.com/505/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hilalnuha.wordpress.com/505/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=505&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hilalnuha.wordpress.com/2011/06/26/homemade-crackers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67201630c5b524cda1e2a36b31c814ce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hilalnuha</media:title>
		</media:content>

		<media:content url="http://hilalnuha.files.wordpress.com/2011/06/wpid-1309062753726.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>homemade macaroni</title>
		<link>http://hilalnuha.wordpress.com/2011/06/25/homemade-macaroni/</link>
		<comments>http://hilalnuha.wordpress.com/2011/06/25/homemade-macaroni/#comments</comments>
		<pubDate>Sat, 25 Jun 2011 23:24:04 +0000</pubDate>
		<dc:creator>hilalnuha</dc:creator>
				<category><![CDATA[Slice Of Life]]></category>

		<guid isPermaLink="false">https://hilalnuha.wordpress.com/2011/06/25/homemade-macaroni/</guid>
		<description><![CDATA[yummy.. dengan kuah susu<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=503&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://hilalnuha.files.wordpress.com/2011/06/wpid-1309044180310.jpg?w=418" /></p>
<p>yummy..<br />
dengan kuah susu</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hilalnuha.wordpress.com/503/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hilalnuha.wordpress.com/503/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hilalnuha.wordpress.com/503/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hilalnuha.wordpress.com/503/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hilalnuha.wordpress.com/503/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hilalnuha.wordpress.com/503/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hilalnuha.wordpress.com/503/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hilalnuha.wordpress.com/503/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hilalnuha.wordpress.com/503/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hilalnuha.wordpress.com/503/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hilalnuha.wordpress.com/503/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hilalnuha.wordpress.com/503/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hilalnuha.wordpress.com/503/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hilalnuha.wordpress.com/503/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=503&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hilalnuha.wordpress.com/2011/06/25/homemade-macaroni/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67201630c5b524cda1e2a36b31c814ce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hilalnuha</media:title>
		</media:content>

		<media:content url="http://hilalnuha.files.wordpress.com/2011/06/wpid-1309044180310.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Night class</title>
		<link>http://hilalnuha.wordpress.com/2011/06/16/night-class/</link>
		<comments>http://hilalnuha.wordpress.com/2011/06/16/night-class/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 11:30:56 +0000</pubDate>
		<dc:creator>hilalnuha</dc:creator>
				<category><![CDATA[Information Technology]]></category>

		<guid isPermaLink="false">https://hilalnuha.wordpress.com/2011/06/16/night-class/</guid>
		<description><![CDATA[Selain mengajar di ittelkom, saya juga mengajar di unibba kelas karyawan.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=501&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://hilalnuha.files.wordpress.com/2011/06/wpid-1308223778642.jpg?w=418" /></p>
<p>Selain mengajar di ittelkom, saya juga mengajar di unibba kelas karyawan.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hilalnuha.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hilalnuha.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hilalnuha.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hilalnuha.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hilalnuha.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hilalnuha.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hilalnuha.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hilalnuha.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hilalnuha.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hilalnuha.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hilalnuha.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hilalnuha.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hilalnuha.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hilalnuha.wordpress.com/501/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=501&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hilalnuha.wordpress.com/2011/06/16/night-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67201630c5b524cda1e2a36b31c814ce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hilalnuha</media:title>
		</media:content>

		<media:content url="http://hilalnuha.files.wordpress.com/2011/06/wpid-1308223778642.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Old notebook for coding</title>
		<link>http://hilalnuha.wordpress.com/2011/06/16/old-notebook-for-coding/</link>
		<comments>http://hilalnuha.wordpress.com/2011/06/16/old-notebook-for-coding/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 05:33:08 +0000</pubDate>
		<dc:creator>hilalnuha</dc:creator>
				<category><![CDATA[computer network]]></category>

		<guid isPermaLink="false">https://hilalnuha.wordpress.com/2011/06/16/old-notebook-for-coding/</guid>
		<description><![CDATA[Old axio<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=499&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://hilalnuha.files.wordpress.com/2011/06/wpid-1308202264543.jpg?w=418" /></p>
<p>Old axio</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hilalnuha.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hilalnuha.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hilalnuha.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hilalnuha.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hilalnuha.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hilalnuha.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hilalnuha.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hilalnuha.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hilalnuha.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hilalnuha.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hilalnuha.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hilalnuha.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hilalnuha.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hilalnuha.wordpress.com/499/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hilalnuha.wordpress.com&amp;blog=13893716&amp;post=499&amp;subd=hilalnuha&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hilalnuha.wordpress.com/2011/06/16/old-notebook-for-coding/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/67201630c5b524cda1e2a36b31c814ce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hilalnuha</media:title>
		</media:content>

		<media:content url="http://hilalnuha.files.wordpress.com/2011/06/wpid-1308202264543.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
	</channel>
</rss>
