<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Argonz&#039;s Weblog</title>
	<atom:link href="http://argonzdcc.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://argonzdcc.wordpress.com</link>
	<description>My Personal Weblog</description>
	<lastBuildDate>Wed, 11 Nov 2009 04:09:13 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='argonzdcc.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/492ba64bdea05326e9101a1144ec3382?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Argonz&#039;s Weblog</title>
		<link>http://argonzdcc.wordpress.com</link>
	</image>
			<item>
		<title>Lesson 002 : Flow Control 1 (if)</title>
		<link>http://argonzdcc.wordpress.com/2009/11/10/lesson-002-flow-control-1-if/</link>
		<comments>http://argonzdcc.wordpress.com/2009/11/10/lesson-002-flow-control-1-if/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 10:20:33 +0000</pubDate>
		<dc:creator>argonzdcc</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Pemrograman]]></category>

		<guid isPermaLink="false">http://argonzdcc.wordpress.com/2009/11/10/lesson-002-flow-control-1-if/</guid>
		<description><![CDATA[Hi guys..! We will continue our lesson, before I have posted lesson 001 as warming up our lesson. May be some of you ask me why didn’t the lesson explain about basic programming like structure programming, variable definition, type data, consept of object oriented ect. I answer that this lesson for us who have studied [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=107&subd=argonzdcc&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi guys..! We will continue our lesson, before I have posted lesson 001 as warming up our lesson. May be some of you ask me why didn’t the lesson explain about basic programming like structure programming, variable definition, type data, consept of object oriented ect. I answer that this lesson for us who have studied about programming and who want to know form programming of java. But if you want to ask about that (type data, etc) we can discuss about that. Just comment me and I will try to reply you. Okay guys.. Lets start our lesson ..!!<br />
<span id="more-107"></span><br />
public class IfElseName {<br />
	public static void main(String [] args){<br />
		char firstInitial= &#8216;a&#8217;;<br />
		System.out.print(&#8220;Input your first alphabet of name : &#8220;);<br />
		try {<br />
			firstInitial = (char)System.in.read();<br />
		}catch (Exception e){<br />
			System.out.println(&#8220;Error : &#8221; + e.toString());<br />
		}<br />
		if (firstInitial == &#8216;a&#8217;)<br />
			System.out.println(&#8220;Your name definite Asep !&#8221;);<br />
		else if (firstInitial == &#8216;b&#8217;)<br />
			System.out.println(&#8220;Your name definite Bambang !&#8221;);<br />
		else if (firstInitial == &#8216;c&#8217;)<br />
			System.out.println(&#8220;Your name definite Cecep !&#8221;);<br />
		else<br />
			System.out.println(&#8220;Your name is not famous !&#8221;);<br />
	}<br />
}</p>
<p>Explanation :<br />
I will explain line by line that I haven’t explained before, so if you want see explanation line that I don’t explain here, you should go to lesson before.<br />
Line 3 : char firstInitial= &#8216;a&#8217;;<br />
We made identifier with type data char and the name of identifier is firstInitial and we put ‘a’ as first volume for this identifier.</p>
<p>Line 5 : Try {<br />
It is we use for dislocate mistake to the exception, we can show the exception or not. It depend us<br />
Line 6 : firstInitial = (char)System.in.read();<br />
It’s a metode to input one character. We will input one character into firstInitial.<br />
Line 7 : }catch (Exception e){<br />
The pair of Try is catch. Catch is to take the mistake and get in to Exception and Exception here have identifier is ‘e’<br />
Line 8 : System.out.println(&#8220;Error : &#8221; + e.toString());<br />
This is an inctruction to show exception  if we have.<br />
Line 10 : if (firstInitial == &#8216;a&#8217;)<br />
This is what we called flow control, and for this listing the condition is identifier firstInitial equal or contain character  ‘a’.<br />
Line 11 : System.out.println(&#8220;Your name definite Asep !&#8221;);<br />
This is an intruction to show the text  if the condition is identifier firstInitial is ‘a’<br />
Line 12 : else if (firstInitial == &#8216;b&#8217;)<br />
This is a second condition, the condition is identifier firstInitial equal or contain character  ‘b’<br />
Line 13 : System.out.println(&#8220;Your name definite Bambang !&#8221;);<br />
This is an intruction to show the text if the condition is identifier firstInitial is ‘b’<br />
Line 16 : else<br />
It’s the last condition, the condition is whatever character except ‘a’ and ‘b’<br />
Line 17 : System.out.println(&#8220;Your name is not famous !&#8221;);<br />
This is an intruction to show the text if identifier firstInitial isn’t equal or contain ‘a’ or ‘b’</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/argonzdcc.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/argonzdcc.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/argonzdcc.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/argonzdcc.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/argonzdcc.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/argonzdcc.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/argonzdcc.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/argonzdcc.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/argonzdcc.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/argonzdcc.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=107&subd=argonzdcc&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://argonzdcc.wordpress.com/2009/11/10/lesson-002-flow-control-1-if/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8224d10f59c15cd2a9a683f3ca2743a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Arul</media:title>
		</media:content>
	</item>
		<item>
		<title>Java : Lesson 001</title>
		<link>http://argonzdcc.wordpress.com/2009/11/07/java-lesson-001/</link>
		<comments>http://argonzdcc.wordpress.com/2009/11/07/java-lesson-001/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 07:57:33 +0000</pubDate>
		<dc:creator>argonzdcc</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Pemrograman]]></category>

		<guid isPermaLink="false">http://argonzdcc.wordpress.com/?p=102</guid>
		<description><![CDATA[Ok guys.., I will try to write java code and than I explain line by line. For this session we start from basic lesson. I hope you will follow me, because I will write java code until Network class, and some class have to know if we  want to be expert in java. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=102&subd=argonzdcc&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Ok guys.., I will try to write java code and than I explain line by line. For this session we start from basic lesson. I hope you will follow me, because I will write java code until Network class, and some class have to know if we  want to be expert in java. I will try to write frequently three times a week. So don’t miss it. Okay lets begin our lesson.<br />
<span id="more-102"></span><br />
import java.io.*</p>
<p>class HelloWorld {<br />
	public static void main (String [] args)<br />
	{<br />
		System.out.println(“Hello all world occupant”);<br />
	}<br />
}</p>
<p>Explanation :<br />
Line 1 :	import java.io.*;<br />
 its mean that we include class java.io into this small program where java.io Contain function for input and output like “println” we will learn about another function latter. Star mean that we include all kind of java.io, because java.io contain many class like DataInputStream. We will learn more about classes in java.io. and semicolon (;) mean we have to write semicolon for every statement in java languange. Its like C++, PHP and pascal</p>
<p>Line 2	class HelloWorld {<br />
 It’s mean that our class name is HelloWorld and we put {, its for open the block for class HelloWord, because every class contain some listing, may be contain another class or contain statement, etc. </p>
<p>Line 3 	public static void main (String [] args)<br />
It’s a important function, our program can’t run without this function (function main). This function is public. It’s mean another class can read this function by call the name of function. Static mean that character of this function stay in this class. Void mean that this function doesn&#8217;t return any value. String [] args mean that this program can receive some arguments when we run the program and the argument is String with array or can be more than one argument.</p>
<p>Line 4	{<br />
	It’s for open the statement for function of main<br />
Line 5	System.out.println(“Hello all world occupant”);<br />
It’s a intruction to show sentences that contain between two quatation mark</p>
<p>Line 6 &amp; 7 }<br />
it’s for close the block of function main and class HelloWorld</p>
<p>that’s all for this session. We will meet again in next lesson.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/argonzdcc.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/argonzdcc.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/argonzdcc.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/argonzdcc.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/argonzdcc.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/argonzdcc.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/argonzdcc.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/argonzdcc.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/argonzdcc.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/argonzdcc.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=102&subd=argonzdcc&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://argonzdcc.wordpress.com/2009/11/07/java-lesson-001/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8224d10f59c15cd2a9a683f3ca2743a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Arul</media:title>
		</media:content>
	</item>
		<item>
		<title>How to install ubuntu 9.04 (Jaunty)</title>
		<link>http://argonzdcc.wordpress.com/2009/10/31/how-to-install-ubuntu-9-04-jaunty/</link>
		<comments>http://argonzdcc.wordpress.com/2009/10/31/how-to-install-ubuntu-9-04-jaunty/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 09:11:06 +0000</pubDate>
		<dc:creator>argonzdcc</dc:creator>
				<category><![CDATA[Belajar Ubuntu]]></category>

		<guid isPermaLink="false">http://argonzdcc.wordpress.com/?p=95</guid>
		<description><![CDATA[Before your install Ubuntu 9.04 make a free partisi minimal 7 GB
1. configurate your BIOS for first boot with CD-ROM
2. put your CD installation into your CD-ROM
3. booting your computer
4. it will automatically boot from your CD Installation and ask you what language do you choose
5. after you choose your language, press enter

6. it will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=95&subd=argonzdcc&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Before your install Ubuntu 9.04 make a free partisi minimal 7 GB</p>
<p>1. configurate your BIOS for first boot with CD-ROM<br />
2. put your CD installation into your CD-ROM<br />
3. booting your computer<br />
4. it will automatically boot from your CD Installation and ask you what language do you choose<br />
5. after you choose your language, press enter<br />
<span id="more-95"></span><br />
6. it will show the menu, choose above (paling atas) and wait for a moment<br />
7. choose under (paling bawah) for advantage partition configuration<br />
8. if your partition for ubuntu is still used, right click where free partition did you create, n choose format<br />
9. right click again then choose make partition, it will show box dialog<br />
10. fill minimal 500 for swap partition<br />
11. choose swap for file system<br />
12. right click &#8220;sisa partisi&#8221; choose make partition, it will show box dialog<br />
13. choose ext3 for file system, okay<br />
14. forward and wait, because you are installing ubuntu jaunty in your computer</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/argonzdcc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/argonzdcc.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/argonzdcc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/argonzdcc.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/argonzdcc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/argonzdcc.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/argonzdcc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/argonzdcc.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/argonzdcc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/argonzdcc.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=95&subd=argonzdcc&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://argonzdcc.wordpress.com/2009/10/31/how-to-install-ubuntu-9-04-jaunty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8224d10f59c15cd2a9a683f3ca2743a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Arul</media:title>
		</media:content>
	</item>
		<item>
		<title>What Job do you prefer ?</title>
		<link>http://argonzdcc.wordpress.com/2009/10/30/what-job-do-you-prefer/</link>
		<comments>http://argonzdcc.wordpress.com/2009/10/30/what-job-do-you-prefer/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 08:42:12 +0000</pubDate>
		<dc:creator>argonzdcc</dc:creator>
				<category><![CDATA[My Opinion]]></category>

		<guid isPermaLink="false">http://argonzdcc.wordpress.com/?p=90</guid>
		<description><![CDATA[Programmer is a good job for us, who prefers about computer. Programmers usually spend the time in front of their computers. Programmer can work in the team and can work alone. They can build a company or can be freelance. Nowadays, income of the programmers is increased because Information technology has grown up. My lecturer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=90&subd=argonzdcc&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Programmer is a good job for us, who prefers about computer. Programmers usually spend the time in front of their computers. Programmer can work in the team and can work alone. They can build a company or can be freelance. Nowadays, income of the programmers is increased because Information technology has grown up. My lecturer said Java programming can get salary seventy five million and he showed a newspaper which tells about job vacancy for Java programming. The famous people in programming are <span id="more-90"></span> Bill Gates, Jerry Yang, Mark Zuckerberg. They become rich men because of their creation. They started their creation without thinking about money. Programmers usually do their job because it is their hobby.</p>
<p>Enterpreneurship is also a good job for us, who prefers to get much money. We have to be brave to become enterpreneur, because it is a risky job. Most people in Indonesia usually confused to choose the job between civil servant and enterpreneur, because if we are a civil servant, we have salary every month, but just a little. A civil servant usually buys some expensive object from creditor. Because their salary isn’t enough for cash</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/argonzdcc.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/argonzdcc.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/argonzdcc.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/argonzdcc.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/argonzdcc.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/argonzdcc.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/argonzdcc.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/argonzdcc.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/argonzdcc.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/argonzdcc.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=90&subd=argonzdcc&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://argonzdcc.wordpress.com/2009/10/30/what-job-do-you-prefer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8224d10f59c15cd2a9a683f3ca2743a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Arul</media:title>
		</media:content>
	</item>
		<item>
		<title>Why is English important for you ?</title>
		<link>http://argonzdcc.wordpress.com/2009/10/30/why-is-english-important-for-you/</link>
		<comments>http://argonzdcc.wordpress.com/2009/10/30/why-is-english-important-for-you/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 08:04:48 +0000</pubDate>
		<dc:creator>argonzdcc</dc:creator>
				<category><![CDATA[My Opinion]]></category>

		<guid isPermaLink="false">http://argonzdcc.wordpress.com/?p=86</guid>
		<description><![CDATA[English is important for me because English is an International language. We must prepare our selves to face globalization era. Nowadays, a lot of companies recruit their employee with test of ability in English. We can get Information more and more in Internet, but 80% information in Internet uses English. I’v ever heard that the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=86&subd=argonzdcc&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>English is important for me because English is an International language. We must prepare our selves to face globalization era. Nowadays, a lot of companies recruit their employee with test of ability in English. We can get Information more and more in Internet, but 80% information in Internet uses English. I’v ever heard that the smart person is a person who can use some language.<br />
<span id="more-86"></span><br />
People have to know some languages, minimal they can use two language, National language and International language. National language for communication to nation fellow and international language for communication to people from another country. Regional language is important to communicate to people from the same region, but nowadays we seldom use regional language.</p>
<p>The special reason why is English important for me is  because I have a plan to continue my study abroad, and very special reason is because I can get scholarship to continue me study  with good ability in English. When I pass from undergraduate, I want to continue my study to postgraduate in Adelaide University Australia. I want to obtain a deep understanding of my study especially my department. Software Engineering. Because  I know in abroad has different way to increase our knowledge.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/argonzdcc.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/argonzdcc.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/argonzdcc.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/argonzdcc.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/argonzdcc.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/argonzdcc.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/argonzdcc.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/argonzdcc.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/argonzdcc.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/argonzdcc.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=86&subd=argonzdcc&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://argonzdcc.wordpress.com/2009/10/30/why-is-english-important-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8224d10f59c15cd2a9a683f3ca2743a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Arul</media:title>
		</media:content>
	</item>
		<item>
		<title>TOLERANCE</title>
		<link>http://argonzdcc.wordpress.com/2009/10/30/tolerance/</link>
		<comments>http://argonzdcc.wordpress.com/2009/10/30/tolerance/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 07:58:30 +0000</pubDate>
		<dc:creator>argonzdcc</dc:creator>
				<category><![CDATA[My Opinion]]></category>

		<guid isPermaLink="false">http://argonzdcc.wordpress.com/?p=84</guid>
		<description><![CDATA[	In our life, we must have a tolerant character. As we know that in our country has many religions, cultures etc.  When we were having meeting in our organization, we have many different opinions. In our family have different way to solve one problem. Therefore we must limit our desire.

	For example, I like listening [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=84&subd=argonzdcc&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>	In our life, we must have a tolerant character. As we know that in our country has many religions, cultures etc.  When we were having meeting in our organization, we have many different opinions. In our family have different way to solve one problem. Therefore we must limit our desire.<br />
<span id="more-84"></span><br />
	For example, I like listening to music. I usually listen to music until mid night while I studied. But my parents, my sister and my neighbor will be disturbed by the sound of my music. So I have to make it quiet. In the world especially in our country always happen  a demonstration, but most of  the student of university do the demonstration without paying attention to the road user. So their aspiration is not heard by the government but they just make traffic jams.</p>
<p>	Many other examples that we are not usually aware. To solve the problem we have to make discussion. Our prophet Muhammad said to discuss to finish some problems. So we can get good idea for our problem and all sides feel good without losing someone.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/argonzdcc.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/argonzdcc.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/argonzdcc.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/argonzdcc.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/argonzdcc.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/argonzdcc.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/argonzdcc.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/argonzdcc.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/argonzdcc.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/argonzdcc.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=84&subd=argonzdcc&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://argonzdcc.wordpress.com/2009/10/30/tolerance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8224d10f59c15cd2a9a683f3ca2743a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Arul</media:title>
		</media:content>
	</item>
		<item>
		<title>How to install XAMPP to Ubuntu</title>
		<link>http://argonzdcc.wordpress.com/2009/10/28/how-to-install-xampp-to-ubuntu/</link>
		<comments>http://argonzdcc.wordpress.com/2009/10/28/how-to-install-xampp-to-ubuntu/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 22:43:09 +0000</pubDate>
		<dc:creator>argonzdcc</dc:creator>
				<category><![CDATA[Belajar Ubuntu]]></category>

		<guid isPermaLink="false">http://argonzdcc.wordpress.com/?p=79</guid>
		<description><![CDATA[How to install xampp on Ubuntu
1. download xampp
2. extrak xamp to /opt &#8211;&#62; $ sudo tar xvfz xampp-linux-1.7.1.tar.gz -C /opt
3. masukkan folder yang berisi file php anda pada /opt/lampp/htdocs/
4. jalankan xampp anda &#8211;&#62; $ /opt/lampp/lampp start
5. untuk stop &#8211;&#62; $ /opt/lampp/lampp stop
catatan
jika ada masalah saat xampp atau lampp di jalankan spt berikut
apache2 is already running
maka [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=79&subd=argonzdcc&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>How to install xampp on Ubuntu</p>
<p>1. download xampp<br />
2. extrak xamp to /opt &#8211;&gt; $ sudo tar xvfz xampp-linux-1.7.1.tar.gz -C /opt<br />
3. masukkan folder yang berisi file php anda pada <span id="more-79"></span>/opt/lampp/htdocs/<br />
4. jalankan xampp anda &#8211;&gt; $ /opt/lampp/lampp start<br />
5. untuk stop &#8211;&gt; $ /opt/lampp/lampp stop</p>
<p>catatan<br />
jika ada masalah saat xampp atau lampp di jalankan spt berikut</p>
<p>apache2 is already running</p>
<p>maka matikn dulu apache2nya dengan perintah berikut<br />
# sudo /etc/init.d/apache2 stop</p>
<p>ulang jalankan xampp</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/argonzdcc.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/argonzdcc.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/argonzdcc.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/argonzdcc.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/argonzdcc.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/argonzdcc.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/argonzdcc.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/argonzdcc.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/argonzdcc.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/argonzdcc.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=79&subd=argonzdcc&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://argonzdcc.wordpress.com/2009/10/28/how-to-install-xampp-to-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8224d10f59c15cd2a9a683f3ca2743a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Arul</media:title>
		</media:content>
	</item>
		<item>
		<title>TUGAS I :</title>
		<link>http://argonzdcc.wordpress.com/2009/10/28/tugas-i/</link>
		<comments>http://argonzdcc.wordpress.com/2009/10/28/tugas-i/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 17:32:49 +0000</pubDate>
		<dc:creator>argonzdcc</dc:creator>
				<category><![CDATA[Pemodelan Objek dan Animasi]]></category>

		<guid isPermaLink="false">http://argonzdcc.wordpress.com/?p=76</guid>
		<description><![CDATA[Copy paste aja dh<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=76&subd=argonzdcc&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>#VRML V2.0 utf8<br />
Shape {<br />
geometry Text {<br />
string &#8220;NIM  : 062332&#8243;<br />
fontStyle FontStyle { style &#8220;BOLDITALIC&#8221;}<br />
}<br />
}<br />
<span id="more-76"></span><br />
Shape {<br />
geometry Text {<br />
string &#8220;Nama : Muh. Ansarullah&#8221;<br />
fontStyle FontStyle    { justify &#8220;MIDDLE&#8221;}<br />
}<br />
}</p>
<p>Shape {<br />
geometry Text {<br />
string &#8220;Kelas : 5TPO-C&#8221;<br />
fontStyle FontStyle    {horizontal    FALSE }<br />
}<br />
}</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/argonzdcc.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/argonzdcc.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/argonzdcc.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/argonzdcc.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/argonzdcc.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/argonzdcc.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/argonzdcc.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/argonzdcc.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/argonzdcc.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/argonzdcc.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=76&subd=argonzdcc&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://argonzdcc.wordpress.com/2009/10/28/tugas-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8224d10f59c15cd2a9a683f3ca2743a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Arul</media:title>
		</media:content>
	</item>
		<item>
		<title>TUGAS I : E &#8211; Business and E &#8211; Commerce</title>
		<link>http://argonzdcc.wordpress.com/2009/10/28/tugas-i-e-business-and-e-commerce/</link>
		<comments>http://argonzdcc.wordpress.com/2009/10/28/tugas-i-e-business-and-e-commerce/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 16:52:36 +0000</pubDate>
		<dc:creator>argonzdcc</dc:creator>
				<category><![CDATA[E-Technology]]></category>

		<guid isPermaLink="false">http://argonzdcc.wordpress.com/?p=73</guid>
		<description><![CDATA[Silahkan dicopy tapi di Edit yah...!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=73&subd=argonzdcc&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>E-Business dan E-Commerce</strong></p>
<ul>
<li>E-Business adalah  aktivitas bisnis melalui internet yang biasa kita sebut online, selain menjual dan membeli produk dan jasa, termasuk juga dalam hal pelayanan konsumen dan kerja sama dengan rekan bisnis (baik individual maupun   instansi)</li>
</ul>
<ul>
<li>E-Commerce adalah <span id="more-73"></span>aktivitas dalam kegiatan jual beli barang, jasa/layanan, dan informasi secara online</li>
</ul>
<ul>
<li>E-Bisnis ini dapat berarti e-commerce juga, dapat juga berarti sebagian dari aktivitas e-bisnis juga aktivitas e-commerce. Bisa juga diartikan bahwa e-commerce adalah sub bagian dari e-bisnis.</li>
</ul>
<ul>
<li> Perbedaan utama dari keduanya adalah e-commerce dapat diartikan interaksi antara organisasi dan konsumen mereka sedangkan e-business adalah istilah yang lebih luas yang mencakup operational internal organisasi.</li>
</ul>
<ul>
<li> Dari keduanya ini diharapkan dapat meningkatkan efektifitas dan efesiensi dalam perdagangan dan bisnis.</li>
</ul>
<p>Manfaat E-Commerce<br />
•	Menambah pasar<br />
•	Mengurangi biaya produksi dan promosi<br />
•	Mengurangi biaya inventori<br />
•	Mengurangi biaya komunikasi<br />
•	Hampir tidak terlihat perbedaan antara perusahaan besar dan kecil<br />
•	Memudahkan konsumen memilih barang, 24 jam nonstop<br />
•	Mempercepat dan mempermudah transaksi, dimanapun dan kapanpun<br />
•	Memungkinkan barang terjual lebih murah</p>
<p>Kiat membangun E-Business<br />
•	Membenahi terlebih dahulu sistem pengelolaan sumber daya perusahaan secara terpadu<br />
•	Membuat perencanaan investasi teknologi secara mendetail dan komprehensif<br />
•	Menentukan arah investasi teknologi untuk menjawab kebutuhan jangka panjang.<br />
•	Membentuk struktur organisasi yang fleksibel dan adaptif terhadap perubahan.<br />
•	Melakukan kerjasama kondusif dengan berbagai mitra bisnis (vendor, pemasok barang, lembaga keuangan, dan lain sebagainya)</p>
<p><strong>Type of E-Business</strong></p>
<ul>
<li> Business-to-business (B2B)</li>
</ul>
<blockquote><p>Bisnis yang menjual produk atau menyediakan pelayanan untuk bisnis lain</p></blockquote>
<ul>
<li> Business-to-Costumer (B2C)</li>
</ul>
<blockquote><p>Business yang menjual produk atau penyediakan layanan kepada konsumen</p></blockquote>
<ul>
<li>Costumer-to-Costumer (C2C)</li>
</ul>
<blockquote><p>Komsumen menjual langsung kepada konsumen lainnya</p></blockquote>
<ul>
<li>Business-to-Government (B2G)</li>
</ul>
<blockquote><p>Pemerintah membeli atau menyediakan barang, layanan atau informasi ke/dari pelaku bisnis atau masyarakat</p></blockquote>
<ul>
<li> Business-to-Employee (B2E)</li>
</ul>
<blockquote>
<p style="text-align:left;">Informasi dan layanan tersedia untuk karyawan secara online</p>
</blockquote>
<p><strong>Stakeholders and Major Player</strong></p>
<ul>
<li> Internal stakeholder : manager dan staff</li>
<li> Supplier/Vendor dan produsen</li>
<li> Konsumen</li>
<li> Intermediaries (Perantara)</li>
<li> Financial Intitutions</li>
<li> Web service providers</li>
<li> Associations</li>
<li> Web communities</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/argonzdcc.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/argonzdcc.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/argonzdcc.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/argonzdcc.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/argonzdcc.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/argonzdcc.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/argonzdcc.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/argonzdcc.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/argonzdcc.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/argonzdcc.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=73&subd=argonzdcc&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://argonzdcc.wordpress.com/2009/10/28/tugas-i-e-business-and-e-commerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8224d10f59c15cd2a9a683f3ca2743a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Arul</media:title>
		</media:content>
	</item>
		<item>
		<title>Apakah ukuran sukses itu ??</title>
		<link>http://argonzdcc.wordpress.com/2009/09/03/apakah-ukuran-sukses-itu/</link>
		<comments>http://argonzdcc.wordpress.com/2009/09/03/apakah-ukuran-sukses-itu/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 03:29:49 +0000</pubDate>
		<dc:creator>argonzdcc</dc:creator>
				<category><![CDATA[My Opinion]]></category>

		<guid isPermaLink="false">http://argonzdcc.wordpress.com/?p=69</guid>
		<description><![CDATA[Di basic training calon anggota DCC angkatan XII salah seorang peserta bertanya pada pemateri (saya lupa materi apa). &#8220;Bagaimana mengukur sesuatu itu sukses atau tidak ?&#8221;. Saya sendiri sempat berpikir keras.. untuk pertanyaan ini. Bagaimana tidak, dalam mencapai sesuatu tentu terdiri dari dua bagian utama yaitu proses dan tujuan. Nah mana yg penting menurut anda [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=69&subd=argonzdcc&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Di basic training calon anggota DCC angkatan XII salah seorang peserta bertanya pada pemateri (saya lupa materi apa). &#8220;Bagaimana mengukur sesuatu itu sukses atau tidak ?&#8221;. Saya sendiri sempat berpikir keras.. untuk pertanyaan ini. Bagaimana tidak, dalam mencapai sesuatu tentu terdiri dari dua bagian utama yaitu proses dan tujuan. Nah mana yg penting menurut anda ??</p>
<p><span id="more-69"></span></p>
<p>Sukses kalau di nilai dari kerja organisasi kampus atau sekolah maka yang penting adalah prosesnya, organisasi kampus adalah tempat belajar sebelum benar2 memasuki dunia kerja yg penuh persaingan. Hasil yg dicapai dari tujuan yg dibuat tidak menjadi ukuran. Yang penting dalam sebuah pembelajaran adalah proses. Khusus dalam organisasi proses yg butuhkan adalah kerja sama team yg solid, kebersamaan dalam susah dan senang dalam mencapai tujuan. semua devisi bekerja sesuai fungsinya dan koordinasi yg kuat antara kordinator dengan ketua, serta kordinator dan anggota. profesional dalam setiap pekerjaan termasuk ontime mengikuti setiap agenda. Saya yakin dengan proses yg spt itu hasil tidak akan jelek2 amat. Tentu untuk bisa profesional dalam proses ini sangat butuh perjuangan. Yang mana anggota tidak terima gaji. makan dan mandi tidak teratur. Jadi setiap anggota benar2 berjuang untuk organisasi bukan untuk dirinya. Tapi untuk jangka panjang tentu saja baik untuk setiap anggota sebagai pengalaman sebelum terjun ke dunia kerja sesungguhnya.</p>
<p>Nah, gimana dengan diperusahaan, instansi2 dalam dunia kerja ? tentu saja Hasil adalah ukuran dalam menilai sukses tidaknya tujuan yg ingin dicapai. Entah proses berjalan dengan baik atau tidak, Hasil harus di capai se-optimal mungkin. Tentu kita akan berkomentar &#8220;Wah untuk mencapai hasil yg optimal harus bagus donk prosesnya&#8221;. Yah tentu saja itu benar, tapi terkadang proses tidak penting lagi ketika semua cara2 dalam proses tidak dapat dilakukan dengan baik. Misalnya anggota yg tidak bisa bekerja sama.., konflik antara karyawan, komunikasi antara manajer yg kurang.., maka seorang direktur terkadang tinggal pecat sini pecat sana, karena yg penting tujuan tercapai maka hanya orang yg mau kerja dengan baik yg diterima. Bahkan dia akan melakukan cara apapun untuk mencapai tujuan.  Berbeda dengan organisasi kampus yg mana seorang ketua harus berjuang keras untuk mempertahankan anggotanya untuk tetap proffesional walau harus makan hati, tapi itulah proses.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/argonzdcc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/argonzdcc.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/argonzdcc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/argonzdcc.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/argonzdcc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/argonzdcc.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/argonzdcc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/argonzdcc.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/argonzdcc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/argonzdcc.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=argonzdcc.wordpress.com&blog=3709370&post=69&subd=argonzdcc&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://argonzdcc.wordpress.com/2009/09/03/apakah-ukuran-sukses-itu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8224d10f59c15cd2a9a683f3ca2743a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Arul</media:title>
		</media:content>
	</item>
	</channel>
</rss>