<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>KomunitasWeb</title>
	
	<link>http://komunitasweb.com</link>
	<description>Gilang Chandrasa's personal website. Talking about Python, Django, PHP, jQuery, and everything else about the web.</description>
	<lastBuildDate>Mon, 31 Oct 2011 14:51:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Komunitasweb" /><feedburner:info uri="komunitasweb" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Android App, A Month Later</title>
		<link>http://feedproxy.google.com/~r/Komunitasweb/~3/SyYHAsFtU3Y/</link>
		<comments>http://komunitasweb.com/2011/10/android-app-a-month-later/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 14:51:21 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=1073</guid>
		<description><![CDATA[So far I have released 2 Android app (Freelance Jobs and Woot Explorer). Freelance Jobs The good news is Freelance Jobs rank number 1 if you search freelance in Android Market. I still have a few cards left for this application so I hope it will be useful for freelancer who look for any freelance [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2011/09/one-app-in-two-weeks/' rel='bookmark' title='One App In Two Weeks'>One App In Two Weeks</a></li>
<li><a href='http://komunitasweb.com/2011/10/android-app-freelance-jobs/' rel='bookmark' title='Android App : Freelance Jobs'>Android App : Freelance Jobs</a></li>
<li><a href='http://komunitasweb.com/2011/10/rounded-textview-in-android/' rel='bookmark' title='Rounded TextView in Android'>Rounded TextView in Android</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/10/android-app-a-month-later/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://komunitasweb.com/2011/10/android-app-a-month-later/</feedburner:origLink></item>
		<item>
		<title>Best Design Resources for Web and Mobile Developer</title>
		<link>http://feedproxy.google.com/~r/Komunitasweb/~3/irhPJs-YUEU/</link>
		<comments>http://komunitasweb.com/2011/10/best-design-resources-for-web-and-mobile-developer/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 05:59:23 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=1076</guid>
		<description><![CDATA[As developer, maybe we have excellent gift in programming, but we have to admit we are lack ability to design stuff. We can recognized good design but each time we create application it never look nice. Let me tell you this, no matter how powerful your application is, your average users will care about how [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2009/03/web-developer-resources-1-css-layout/' rel='bookmark' title='Web Developer Resources #1 &#8211; CSS Layout'>Web Developer Resources #1 &#8211; CSS Layout</a></li>
<li><a href='http://komunitasweb.com/2009/03/29-tutorials-to-help-you-build-your-mobile-site/' rel='bookmark' title='29 tutorials to help you build your mobile site'>29 tutorials to help you build your mobile site</a></li>
<li><a href='http://komunitasweb.com/2009/10/10-steps-to-becoming-a-great-web-developer/' rel='bookmark' title='10 Steps to Becoming a Great Web Developer'>10 Steps to Becoming a Great Web Developer</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/10/best-design-resources-for-web-and-mobile-developer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://komunitasweb.com/2011/10/best-design-resources-for-web-and-mobile-developer/</feedburner:origLink></item>
		<item>
		<title>Remove Shadow from ListView in Android</title>
		<link>http://feedproxy.google.com/~r/Komunitasweb/~3/wuMCf4lhlg8/</link>
		<comments>http://komunitasweb.com/2011/10/remove-shadow-from-listview-in-android/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 04:29:39 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[CodeLog]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=1069</guid>
		<description><![CDATA[If you need to remove shadow from top and bottom of your ListView, you can do the following : android:fadingEdge=&#34;none&#34; For example : 1 2 3 4 5 6 &#60;ListView android:fadingEdge=&#34;none&#34; android:id=&#34;@android:id/list&#34; android:layout_width=&#34;match_parent&#34; android:layout_height=&#34;match_parent&#34; /&#62; or if you want to do it programmatically, you can use : listView.setVerticalFadingEdgeEnabled(false); Related posts:Rounded TextView in Android How to [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2011/10/rounded-textview-in-android/' rel='bookmark' title='Rounded TextView in Android'>Rounded TextView in Android</a></li>
<li><a href='http://komunitasweb.com/2011/10/how-to-make-tiled-background-in-android/' rel='bookmark' title='How to Make Tiled Background in Android'>How to Make Tiled Background in Android</a></li>
<li><a href='http://komunitasweb.com/2011/10/android-app-a-month-later/' rel='bookmark' title='Android App, A Month Later'>Android App, A Month Later</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/10/remove-shadow-from-listview-in-android/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://komunitasweb.com/2011/10/remove-shadow-from-listview-in-android/</feedburner:origLink></item>
		<item>
		<title>Android App : Freelance Jobs</title>
		<link>http://feedproxy.google.com/~r/Komunitasweb/~3/VVt6LSQgjEE/</link>
		<comments>http://komunitasweb.com/2011/10/android-app-freelance-jobs/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 02:29:38 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=1054</guid>
		<description><![CDATA[As I posted earlier, I&#8217;m trying to catch up my skill with android development. Here the screenshot : It&#8217;s more difficult than I expected before, but I manage to make it work. For distribution I put the application in Android market, SlideMe and Amazon (still pending). It&#8217;s still early in feature-wise but I&#8217;m trying to [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2011/10/android-app-a-month-later/' rel='bookmark' title='Android App, A Month Later'>Android App, A Month Later</a></li>
<li><a href='http://komunitasweb.com/2011/09/one-app-in-two-weeks/' rel='bookmark' title='One App In Two Weeks'>One App In Two Weeks</a></li>
<li><a href='http://komunitasweb.com/2011/10/rounded-textview-in-android/' rel='bookmark' title='Rounded TextView in Android'>Rounded TextView in Android</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/10/android-app-freelance-jobs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://komunitasweb.com/2011/10/android-app-freelance-jobs/</feedburner:origLink></item>
		<item>
		<title>How to Make Tiled Background in Android</title>
		<link>http://feedproxy.google.com/~r/Komunitasweb/~3/A7VFS8WTWlQ/</link>
		<comments>http://komunitasweb.com/2011/10/how-to-make-tiled-background-in-android/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 02:35:09 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[CodeLog]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=1049</guid>
		<description><![CDATA[Assuming you have tile pattern name type.png, you need to create xml in drawable directory. background.xml 1 2 3 4 5 6 7 &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;bitmap xmlns:android=&#34;http://schemas.android.com/apk/res/android&#34; android:src=&#34;@drawable/type&#34; android:tileMode=&#34;repeat&#34; android:dither=&#34;true&#34; /&#62; In your layout, set the value of background to your xml background. 1 2 3 4 5 6 7 8 9 &#60;?xml version=&#34;1.0&#34; [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2011/10/rounded-textview-in-android/' rel='bookmark' title='Rounded TextView in Android'>Rounded TextView in Android</a></li>
<li><a href='http://komunitasweb.com/2011/10/remove-shadow-from-listview-in-android/' rel='bookmark' title='Remove Shadow from ListView in Android'>Remove Shadow from ListView in Android</a></li>
<li><a href='http://komunitasweb.com/2010/08/create-map-from-scratch-using-mapnik/' rel='bookmark' title='Create Map From Scratch Using Mapnik'>Create Map From Scratch Using Mapnik</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/10/how-to-make-tiled-background-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://komunitasweb.com/2011/10/how-to-make-tiled-background-in-android/</feedburner:origLink></item>
		<item>
		<title>Steve Jobs Has Passed Away</title>
		<link>http://feedproxy.google.com/~r/Komunitasweb/~3/4ujJccmX5sI/</link>
		<comments>http://komunitasweb.com/2011/10/steve-jobs-has-passed-away/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 00:22:02 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=1043</guid>
		<description><![CDATA[Steve Jobs has passed away.  How to live before you die &#8220;Remembering that I&#8217;ll be dead soon is the most important tool I&#8217;ve ever encountered to help me make the big choices in life. Because almost everything — all external expectations, all pride, all fear of embarrassment or failure &#8211; these things just fall [...]


No related posts.]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/10/steve-jobs-has-passed-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://komunitasweb.com/2011/10/steve-jobs-has-passed-away/</feedburner:origLink></item>
		<item>
		<title>Rounded TextView in Android</title>
		<link>http://feedproxy.google.com/~r/Komunitasweb/~3/j23ovYdffoo/</link>
		<comments>http://komunitasweb.com/2011/10/rounded-textview-in-android/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 08:59:18 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[CodeLog]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=1007</guid>
		<description><![CDATA[Create res/drawable/rounded.xml 1 2 3 4 5 6 &#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#62; &#60;shape xmlns:android=&#34;http://schemas.android.com/apk/res/android&#34;&#62; &#60;solid android:color=&#34;#ffffff&#34;/&#62; &#60;corners android:radius=&#34;5px&#34;/&#62; &#60;padding android:left=&#34;0dp&#34; android:top=&#34;0dp&#34; android:right=&#34;0dp&#34; android:bottom=&#34;0dp&#34; /&#62; &#60;/shape&#62; Set your TextView background value to rounded.xml 1 2 3 4 5 6 &#60;TextView android:layout_width=&#34;wrap_content&#34; android:layout_height=&#34;wrap_content&#34; android:text=&#34;Hello World&#34; android:background=&#34;@drawable/rounded&#34; /&#62; Related posts:How to Make Tiled Background in Android Remove Shadow from [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2011/10/how-to-make-tiled-background-in-android/' rel='bookmark' title='How to Make Tiled Background in Android'>How to Make Tiled Background in Android</a></li>
<li><a href='http://komunitasweb.com/2011/10/remove-shadow-from-listview-in-android/' rel='bookmark' title='Remove Shadow from ListView in Android'>Remove Shadow from ListView in Android</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/10/rounded-textview-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://komunitasweb.com/2011/10/rounded-textview-in-android/</feedburner:origLink></item>
		<item>
		<title>One App In Two Weeks</title>
		<link>http://feedproxy.google.com/~r/Komunitasweb/~3/mC9aQM7ImWA/</link>
		<comments>http://komunitasweb.com/2011/09/one-app-in-two-weeks/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 11:42:44 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=989</guid>
		<description><![CDATA[I really want to learn and improve my programming skill in Android, but never have a chance to do it. Like everybody else, I always find an excuse to get away from this. But after reading One App in Four Weeks, I start to encourage myself to do the same. I also like the idea [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2011/10/android-app-a-month-later/' rel='bookmark' title='Android App, A Month Later'>Android App, A Month Later</a></li>
<li><a href='http://komunitasweb.com/2011/10/android-app-freelance-jobs/' rel='bookmark' title='Android App : Freelance Jobs'>Android App : Freelance Jobs</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/09/one-app-in-two-weeks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://komunitasweb.com/2011/09/one-app-in-two-weeks/</feedburner:origLink></item>
		<item>
		<title>snippet : Generate n Length Random String using Python</title>
		<link>http://feedproxy.google.com/~r/Komunitasweb/~3/8yGJZ5_JhFo/</link>
		<comments>http://komunitasweb.com/2011/09/snippet-generate-n-length-random-string-using-python/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 06:25:51 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[CodeLog]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=980</guid>
		<description><![CDATA[I always forget stuff, so I&#8217;ll start to post my snippet here. Generate n length random string 1 2 3 4 5 6 import random &#160; def random_string&#40;n&#41;: &#34;&#34;&#34; Create n length random string &#34;&#34;&#34; code = ''.join&#40;&#91;random.choice&#40;'abcdefghijklmnoprstuvwyxzABCDEFGHIJKLMNOPRSTUVWXYZ0123456789'&#41; for i in range&#40;n&#41;&#93;&#41; return code Related posts:Django Tutorial &#8211; Simple Notes Application PHP Tips and Tricks [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/02/django-tutorial-simple-notes-application/' rel='bookmark' title='Django Tutorial &#8211; Simple Notes Application'>Django Tutorial &#8211; Simple Notes Application</a></li>
<li><a href='http://komunitasweb.com/2009/04/php-tips-and-trick/' rel='bookmark' title='PHP Tips and Tricks'>PHP Tips and Tricks</a></li>
<li><a href='http://komunitasweb.com/2011/06/handling-404-page-on-feincms/' rel='bookmark' title='Handling 404 Page on FeinCMS'>Handling 404 Page on FeinCMS</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/09/snippet-generate-n-length-random-string-using-python/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://komunitasweb.com/2011/09/snippet-generate-n-length-random-string-using-python/</feedburner:origLink></item>
		<item>
		<title>Me, East Ventures Alpha and FAQs</title>
		<link>http://feedproxy.google.com/~r/Komunitasweb/~3/O-xN-nkhhbM/</link>
		<comments>http://komunitasweb.com/2011/09/me-east-ventures-alpha-and-faqs/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 05:36:52 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=955</guid>
		<description><![CDATA[I am in East Ventures Alpha office right now, taking a break from my programming stuff. Some of you may already know what is East Ventures Alpha, but some won&#8217;t have any idea what it is. It&#8217;s an 100 days incubator program from East Ventures. Assuming the information is not confidential, here some of the [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2011/09/applying-for-east-ventures-alpha/' rel='bookmark' title='Applying for East Ventures Alpha'>Applying for East Ventures Alpha</a></li>
<li><a href='http://komunitasweb.com/2011/09/jack-the-sailor-alpha-release/' rel='bookmark' title='Jack the Sailor Alpha Release'>Jack the Sailor Alpha Release</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/09/me-east-ventures-alpha-and-faqs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://komunitasweb.com/2011/09/me-east-ventures-alpha-and-faqs/</feedburner:origLink></item>
	</channel>
</rss>

