<?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>simple blog</title>
	<atom:link href="http://asantoso.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://asantoso.wordpress.com</link>
	<description>design patterns, mobile, technology, philosophy.</description>
	<lastBuildDate>Sun, 27 Sep 2009 06:47:15 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='asantoso.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/ed8fccdd9442132a3490db1bc4238ad4?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>simple blog</title>
		<link>http://asantoso.wordpress.com</link>
	</image>
			<item>
		<title>Using jdb (java debugger) with adb (android debug bridge) to debug Android app on a handset (without ADT plugin).</title>
		<link>http://asantoso.wordpress.com/2009/09/26/using-jdb-with-adb-to-debugging-of-android-app-on-a-real-device/</link>
		<comments>http://asantoso.wordpress.com/2009/09/26/using-jdb-with-adb-to-debugging-of-android-app-on-a-real-device/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 10:20:31 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=107</guid>
		<description><![CDATA[Method 1: Debug from CLI

Launch target apk.  Get pid of target app. Forward target app remote port (jdwp:&#60;pid&#62;) to local tcp port (tcp:&#60;#&#62;).  Attach jdp to specified tcp port.

(apk manifest with debuggable=&#8221;true&#8221;)
scripts:
#!/bin/bash
#adb kill-server
#sleep 1
#adb start-server
adb wait-for-device
cmd="adb -d shell am start -e debug true -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -n com.thirdwhale/com.thirdwhale.activity.SplashActivity";
echo $cmd;
exec $cmd &#38;
app_debug_port=$(adb jdwp &#124; tail [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=107&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2009/09/26/using-jdb-with-adb-to-debugging-of-android-app-on-a-real-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>
	</item>
		<item>
		<title>Passing complex data between two activities via byte serialization (Google protobuf)</title>
		<link>http://asantoso.wordpress.com/2009/09/22/passing-complex-data-between-two-activities-via-serialization-google-protobuf/</link>
		<comments>http://asantoso.wordpress.com/2009/09/22/passing-complex-data-between-two-activities-via-serialization-google-protobuf/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 20:56:17 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android 1.5]]></category>
		<category><![CDATA[Cupcake]]></category>
		<category><![CDATA[protobuf]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=76</guid>
		<description><![CDATA[First time android developer frequently asked question:  How to pass complex data from one activity to another?  One way is to use XML string serialization. Marshalling is performed at the originating activity and demarshalling is performed at the target activity. One drawback with using XML is you have more extra bytes (caused by unnecessary tags) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=76&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2009/09/22/passing-complex-data-between-two-activities-via-serialization-google-protobuf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>

		<media:content url="http://asantoso.files.wordpress.com/2009/09/activity_diagram1.png" medium="image">
			<media:title type="html">activity_diagram</media:title>
		</media:content>

		<media:content url="http://asantoso.files.wordpress.com/2009/09/passing_data_2_activites.png" medium="image">
			<media:title type="html">passing_data_2_activites</media:title>
		</media:content>
	</item>
		<item>
		<title>How to build Android application package (.apk) from the command line using the SDK tools + continuously integrated using CruiseControl.</title>
		<link>http://asantoso.wordpress.com/2009/09/15/how-to-build-android-application-package-apk-from-the-command-line-using-the-sdk-tools-continuously-integrated-using-cruisecontrol/</link>
		<comments>http://asantoso.wordpress.com/2009/09/15/how-to-build-android-application-package-apk-from-the-command-line-using-the-sdk-tools-continuously-integrated-using-cruisecontrol/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 18:31:49 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Continuous Integration]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CruiseControl]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=60</guid>
		<description><![CDATA[Hello all android developers, I just want to share my experience building android apk manually using sdk tools without using Eclipse.  My original goal is motivated firstly by the desire to incorporate continuous integration aspect to Android development process and secondly to ditch the ADT eclipse plugin since the plugin auto-build process blocks Eclipse UI [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=60&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2009/09/15/how-to-build-android-application-package-apk-from-the-command-line-using-the-sdk-tools-continuously-integrated-using-cruisecontrol/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>

		<media:content url="http://asantoso.files.wordpress.com/2009/09/build-flow1.png" medium="image">
			<media:title type="html">build-flow</media:title>
		</media:content>
	</item>
		<item>
		<title>Greenpeace Tissue Guide</title>
		<link>http://asantoso.wordpress.com/2009/03/16/greenpeace-tissue-guide/</link>
		<comments>http://asantoso.wordpress.com/2009/03/16/greenpeace-tissue-guide/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 08:03:55 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/2009/03/16/greenpeace-tissue-guide/</guid>
		<description><![CDATA[A simple sustainability mobile app for Greenpeace on the Android platform.
get the source code here: download
get the android apk file: download
watch the screencast demo: watch
Posted in Android       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=55&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2009/03/16/greenpeace-tissue-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>
	</item>
		<item>
		<title>First attempt at creating 3D Flash content using Away3D v2.10 and Maya</title>
		<link>http://asantoso.wordpress.com/2009/02/25/away3d-shoe/</link>
		<comments>http://asantoso.wordpress.com/2009/02/25/away3d-shoe/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 05:26:36 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Away3D]]></category>
		<category><![CDATA[Maya]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=40</guid>
		<description><![CDATA[A first attempt at 3D flash content in Flash using Away3D (v2.10) and Maya. The model is my old sneaker.

drag mouse to rotate the model.
download source code here
Posted in Flash Tagged: Away3D, Flash, Maya      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=40&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2009/02/25/away3d-shoe/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>

		<media:content url="http://asantoso.files.wordpress.com/2009/02/away3d_shoe.png" medium="image">
			<media:title type="html">away3d_shoe</media:title>
		</media:content>
	</item>
		<item>
		<title>Amazon.com Phone Interviews</title>
		<link>http://asantoso.wordpress.com/2009/02/22/amazon-interviews/</link>
		<comments>http://asantoso.wordpress.com/2009/02/22/amazon-interviews/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 21:35:44 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Amazon]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=27</guid>
		<description><![CDATA[Round #1: Given two arrays of integers, get the union of them.
Round #2: Testing, OOD and Regex questions.  Design classes for a mathematical equation. Find all phone numbers in a big file.
Round #3: Given an array of integers and a target number, find all two numbers in the array that sum up to the target [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=27&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2009/02/22/amazon-interviews/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>
	</item>
		<item>
		<title>Correcting exported DAE from ColladaMaya for Papervision3D</title>
		<link>http://asantoso.wordpress.com/2008/06/07/correcting-exported-dae-from-colladamaya-for-papervision3d/</link>
		<comments>http://asantoso.wordpress.com/2008/06/07/correcting-exported-dae-from-colladamaya-for-papervision3d/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 07:14:14 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[COlladaMaya]]></category>
		<category><![CDATA[DAE]]></category>
		<category><![CDATA[Maya]]></category>
		<category><![CDATA[Papervision3D]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=25</guid>
		<description><![CDATA[Using Maya and ColladaMaya:
Open an exported DAE file.
Search for this section:
&#60;bind_material&#62;
&#60;technique_common&#62;
&#60;instance_material symbol=&#8221;file1MaterialSG&#8221; target=&#8221;#file1Material&#8221;&#62;
&#60;/instance_material&#62;
&#60;/technique_common&#62;
&#60;/bind_material&#62;
find this section:
&#60;library_materials&#62;
&#60;material id=&#8221;blinn1&#8243; name=&#8221;blinn1&#8243;&#62;
&#60;instance_effect url=&#8221;#blinn1-fx&#8221;/&#62;
&#60;/material&#62;
&#60;material id=&#8221;file1Material&#8221; name=&#8221;file1Material&#8221;&#62;
&#60;instance_effect url=&#8221;#file1Material-fx&#8221;/&#62;
&#60;/material&#62;
&#60;/library_materials&#62;
change the id attribute value from &#8220;file1Material&#8221; to &#8220;file1MaterialSG&#8221;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=25&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2008/06/07/correcting-exported-dae-from-colladamaya-for-papervision3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex 3 sdk command line development with example on Linux</title>
		<link>http://asantoso.wordpress.com/2008/05/18/flex-3-sdk-command-line-development-with-example-on-linux/</link>
		<comments>http://asantoso.wordpress.com/2008/05/18/flex-3-sdk-command-line-development-with-example-on-linux/#comments</comments>
		<pubDate>Sun, 18 May 2008 20:28:09 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Compile actionscript file from command line]]></category>
		<category><![CDATA[Compile mxml from command line]]></category>
		<category><![CDATA[Flex command line]]></category>
		<category><![CDATA[Flex Linux]]></category>
		<category><![CDATA[mxmlc usage]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=24</guid>
		<description><![CDATA[This post shows how to do Flex 3 development using command line compiler mxmlc under Linux
The example uses a basic actionscript 3 class and an mxml file using the class defined in the .as file.
Step 1:
Download and extract flex 3 sdk to /opt/flex_sdk_3
Hence my flex_sdk_home is /opt/flex_sdk_3
Add /opt/flex_sdk_3/bin to environment path variable.
Create project folder in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=24&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2008/05/18/flex-3-sdk-command-line-development-with-example-on-linux/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>
	</item>
		<item>
		<title>Link: Useful tool for Android development</title>
		<link>http://asantoso.wordpress.com/2008/03/08/link-useful-tool-for-android-development/</link>
		<comments>http://asantoso.wordpress.com/2008/03/08/link-useful-tool-for-android-development/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 01:26:14 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=15</guid>
		<description><![CDATA[Download busybox for Android: here
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=15&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2008/03/08/link-useful-tool-for-android-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>
	</item>
		<item>
		<title>Android: View image from the web</title>
		<link>http://asantoso.wordpress.com/2008/03/07/download-and-view-image-from-the-web/</link>
		<comments>http://asantoso.wordpress.com/2008/03/07/download-and-view-image-from-the-web/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 13:33:05 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[stream image]]></category>
		<category><![CDATA[view image]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=18</guid>
		<description><![CDATA[Simple example on how to get and display image from the web without saving it to local storage in Android.
Download the source: Example1.zip


package org.asantoso;

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;

import android.app.Activity;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.text.Editable;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;

public class Example1 extends Activity{
	EditText inputUrl;
	OnClickListener getImageBtnOnClick = new OnClickListener() {
		public void onClick(View view) {
			Context context = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=18&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2008/03/07/download-and-view-image-from-the-web/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>

		<media:content url="http://asantoso.files.wordpress.com/2008/03/example1.png" medium="image">
			<media:title type="html">Example1</media:title>
		</media:content>
	</item>
	</channel>
</rss>