<?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>aboutronal</title>
	<atom:link href="http://aboutronal.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aboutronal.wordpress.com</link>
	<description>just another ronal&#039;s blog</description>
	<lastBuildDate>Wed, 26 Oct 2011 23:53:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='aboutronal.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/05e08f529720ce491724512a8b680f93?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>aboutronal</title>
		<link>http://aboutronal.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://aboutronal.wordpress.com/osd.xml" title="aboutronal" />
	<atom:link rel='hub' href='http://aboutronal.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Ubuntu Guide For Windows Users: Getting Help At The Command Prompt</title>
		<link>http://aboutronal.wordpress.com/2011/10/26/ubuntu-guide-for-windows-users-getting-help-at-the-command-prompt/</link>
		<comments>http://aboutronal.wordpress.com/2011/10/26/ubuntu-guide-for-windows-users-getting-help-at-the-command-prompt/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 23:53:50 +0000</pubDate>
		<dc:creator>Ronal Pardede</dc:creator>
				<category><![CDATA[komputer]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[command prompt]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://aboutronal.wordpress.com/?p=44</guid>
		<description><![CDATA[For many new Ubuntu and Linux users, making the transition from Windows to Ubuntu is an exercise in not getting frustrated. For those who stick it out, there comes that eventual time when you need to go beyond the GUI, fire up a Terminal window and start working at the command prompt. Because Linux provides [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=44&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ingintahu.web.id"><img class="alignleft" title="ubuntu" src="http://www.watchingthenet.com/wp-content/uploads/image/ubuntulogo.jpg" alt="ubuntulogo.jpg" width="124" height="37" align="right" /></a>For many new Ubuntu and Linux users, making the transition from Windows to Ubuntu is an exercise in not getting frustrated. For those who stick it out, there comes that eventual time when you need to go beyond the GUI, fire up a Terminal window and start working at the command prompt.</p>
<p>Because Linux provides so many commands and possible options, you can&#8217;t expect to recall all of them or know their meaning</p>
<p>To help, Linux provides several methods, such as <em>man</em> and the <em>apropos</em> commands, which let you access a help database that describes each command and its options.</p>
<p>As always with any Linux based system, many resources are available when help is needed, and the command prompt is no exception. One thing to keep in mind when using the command prompt, unlike Windows, Linux (including Ubuntu) is case sensitive, so be sure to type each character of a command in the proper case.</p>
<h3>Display Options And Arguments For Commands</h3>
<p>Say you&#8217;re working with a command and you want to know what options are available. The easiest method is to just type the command with the help option:</p>
<p><em>command –help</em></p>
<p><span id="more-44"></span>In the following example if you used the above syntax for the <em>chmod</em> command, the output would display as shown below:</p>
<p>wtn@wtn2:~$ chmod –help<br />
Usage: chmod [OPTION]… MODE[,MODE]… FILE…<br />
or: chmod [OPTION]… OCTAL-MODE FILE…<br />
or: chmod [OPTION]… –reference=RFILE FILE…<br />
Change the mode of each FILE to MODE.</p>
<p>-c, –changes like verbose but report only when a change is made<br />
–no-preserve-root do not treat `/&#8217; specially (the default)<br />
–preserve-root fail to operate recursively on `/&#8217;<br />
-f, –silent, –quiet suppress most error messages<br />
-v, –verbose output a diagnostic for every file processed<br />
–reference=RFILE use RFILE&#8217;s mode instead of MODE values<br />
-R, –recursive change files and directories recursively<br />
–help display this help and exit<br />
–version output version information and exit</p>
<p>Each MODE is of the form `[ugoa]*([-+=]([rwxXst]*|[ugo]))+&#8217;.</p>
<h3>Display Information About A Command</h3>
<p>Each Linux command is described by a special file called a manual page. The manual pages are stored in a group of sub directories comprising a help database known as an on-line reference manual.</p>
<p>To access this database, use the <em>man </em>command with the following syntax:</p>
<p><em>man commandname</em></p>
<p>For example, to look up detailed information for <em>chmod</em>, type <em>man chmod</em>. The output will display as shown below:</p>
<p>CHMOD(1) User Commands CHMOD(1)</p>
<p>NAME<br />
chmod – change file access permissions</p>
<p>SYNOPSIS<br />
chmod [OPTION]… MODE[,MODE]… FILE…<br />
chmod [OPTION]… OCTAL-MODE FILE…<br />
chmod [OPTION]… –reference=RFILE FILE…</p>
<p>DESCRIPTION<br />
This manual page documents the GNU version of chmod. chmod changes<br />
the permissions of each given file according to mode, which can be<br />
either a symbolic representation of changes to make, or an octal num\u2010<br />
ber representing the bit pattern for the new permissions.</p>
<p>The format of a symbolic mode is \u2018[ugoa...][[+-=][rwxXs\u2010<br />
tugo...]…][,...]\u2019. Multiple symbolic operations can be given, sepa\u2010<br />
rated by commas.</p>
<p>A combination of the letters \u2018ugoa\u2019 controls which users\u2019 access to<br />
the file will be changed: the user who owns it (u), other users in the<br />
file\u2019s group (g), other users not in the file\u2019s group (o), or all<br />
users (a). If none of these are given, the effect is as if \u2018a\u2019 were<br />
given, but bits that are set in the umask are not affected.</p>
<p>The operator \u2018+\u2019 causes the permissions selected to be added to the<br />
Manual page chmod(1) line 1</p>
<p>To continue navigating through the pages, use the following keyboard shortcuts:</p>
<ul>
<li><em>Space Bar</em> – scrolls down one page</li>
<li><em>B</em> – pressing B scrolls up one page</li>
<li><em>Page Up/Down</em> – scrolls up and down one page (same as <em>Space Bar</em> and <em>B</em>)</li>
<li><em>Up/Down Arrow</em> – scrolls up or down one line at a time</li>
<li><em>Home</em> – jumps to beginning (top)</li>
<li><em>End</em> – jumps to end (bottom)</li>
<li><em>Q</em> (or CTRL Z) – quits and exits manual page</li>
</ul>
<h3>Search Manual (man) Pages For Keywords</h3>
<p>While the <em>man</em> command searches the manual pages and displays detailed information about a specified command, you can use the <em>apropos</em> command to easily search manual pages for keywords. This is useful to display summary information about manual pages that contain a specified keyword.</p>
<p>For example, typing the command:</p>
<p><em>apropos files</em></p>
<p>will display a list of man pages containing the word <em>files </em>as shown below.</p>
<p>wtn@wtn2:~$ apropos files<br />
aa-logprof (8) – utility program for managing AppArmor security profiles<br />
aa-unconfined (8) – output a list of processes with tcp or udp ports that do not have AppArmor profiles loaded<br />
aplaymidi (1) – play Standard MIDI Files<br />
apparmor.d (5) – syntax of security profiles for AppArmor.<br />
apparmor.vim (5) – vim syntax highlighting file for AppArmor profiles<br />
apparmor_parser (8) – loads AppArmor profiles into the kernel<br />
apport-unpack (1) – extract the fields of a problem report to separate files<br />
apt-ftparchive (1) – Utility to generate index files<br />
apt-sortpkgs (1) – Utility to sort package index files<br />
arecordmidi (1) – record Standard MIDI Files<br />
aspell-autobuildhash (8) – Autobuilding aspell hash files for some dicts<br />
bittorrent-downloader.bittorrent (1) – download files using a scatter-gather network<br />
bogoutil (1) – Dumps, loads, and maintains bogofilter database files<br />
btdownloadcurses (1) – download files using a scatter-gather network<br />
btdownloadcurses.bittorrent (1) – download files using a scatter-gather network<br />
btdownloadheadless (1) – download files using a scatter-gather network<br />
btdownloadheadless.bittorrent (1) – download files using a scatter-gather network</p>
<p>Note, that the search is limited to the short description that appears at the beginning of each manual page.</p>
<p>The apropos command is useful when you don&#8217;t recall the name of a Linux command. By typing a related keyword, you can obtain a list of commands and search the list for the command you need.</p>
<h3>Other Ways To Find Commands</h3>
<p>While a<em>propos</em> helps you find commands using keywords, you can list commands using the following methods.</p>
<p><em><strong> – List All Available Commands</strong></em> – press the <em>tab</em> key twice. You will see the following message</p>
<p>wtn@wtn2:~$<br />
Display all 1910 possibilities? (y or n)</p>
<p>To display, just press <em>y</em>. You can scroll through the list by pressing the space bar. To exit before reaching the end of the list, press <em>q</em>.</p>
<p><strong><em> – List All Commands Starting With A Letter Or Letters</em></strong> – type a letter and press the <em>tab</em> key twice.</p>
<p>For example typing <em>w</em> and pressing <em>tab</em> key twice will display all commands starting with &#8216;w&#8217;.</p>
<p>wtn@wtn2:~$ w<br />
w whereis wpa_cli<br />
w3m which wpa_passphrase<br />
w3mman while wpa_supplicant<br />
wait whiptail w.procps<br />
wall who write<br />
watch whoami writevt<br />
wc whois wvdial<br />
wftopfa wodim wvdialconf<br />
wget word-list-compress www-browser<br />
whatis wpa_action</p>
<p>While typing <em>w</em>h and pressing <em>tab</em> key twice will display all commands starting with &#8216;wh&#8217;.</p>
<p>wtn@wtn2:~$ wh<br />
whatis which whiptail whoami<br />
whereis while who whois</p>
<p><em><strong> </strong></em><em><strong>- Show Brief Description Of Command</strong></em> – To display just command descriptions, type <em>whatis</em> and the command name. For example, typing <em>whatis who</em> displays the following:</p>
<p>wtn@wtn2:~$ whatis who</p>
<p>who (1) – show who is logged on</p>
<p><em><strong>- Display Location Of Command</strong></em> – To display the directory or path for a command, use the which command using the following syntax. , <em>which who</em>.</p>
<p>wtn@wtn2:~$ which who<br />
/usr/bin/who</p>
<p>As you can see, many oprions exist to find help at the command prompt when using Ubuntu or any Linux distributions. For Windows users making the switch to Ubuntu, knowing how to find help will ease the transisition and eliminate any fears at the command prompt.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboutronal.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboutronal.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboutronal.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboutronal.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboutronal.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboutronal.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboutronal.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboutronal.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboutronal.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboutronal.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboutronal.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboutronal.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboutronal.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboutronal.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=44&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboutronal.wordpress.com/2011/10/26/ubuntu-guide-for-windows-users-getting-help-at-the-command-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d46585afa53502be6091b046e5fa8f3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">akuronal</media:title>
		</media:content>

		<media:content url="http://www.watchingthenet.com/wp-content/uploads/image/ubuntulogo.jpg" medium="image">
			<media:title type="html">ubuntu</media:title>
		</media:content>
	</item>
		<item>
		<title>The Forgotten Keyboard Function Keys And Their Uses</title>
		<link>http://aboutronal.wordpress.com/2011/10/26/the-forgotten-keyboard-function-keys-and-their-uses/</link>
		<comments>http://aboutronal.wordpress.com/2011/10/26/the-forgotten-keyboard-function-keys-and-their-uses/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 23:37:39 +0000</pubDate>
		<dc:creator>Ronal Pardede</dc:creator>
				<category><![CDATA[komputer]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://aboutronal.wordpress.com/?p=41</guid>
		<description><![CDATA[Along the top of your keyboard is a row of keys numbered F1 to F10 or F12. Even though you may never use them, they do have function. In fact, the F stands for Function and they are called Function keys. Below is a list of what each key does. After the list is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=41&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Along the top of your keyboard is a row of keys numbered F1 to F10 or F12. Even though you may never use them, they do have function. In fact, the F stands for Function and they are called Function keys. Below is a list of what each key does. After the list is a trick that you can use Function keys for. Most of the items on the list below apply only to Windows and Windows&#8217; programs, especially Windows Explorer and Internet Explorer.</p>
<p><ins><ins></p>
<div id="attachment_42" class="wp-caption alignleft" style="width: 310px"><a href="http://aboutronal.files.wordpress.com/2011/10/keyboard.gif"><img class="size-medium wp-image-42" title="keyboard" src="http://aboutronal.files.wordpress.com/2011/10/keyboard.gif?w=300&#038;h=179" alt="about ronal" width="300" height="179" /></a><p class="wp-caption-text">keyboard function</p></div>
<p></ins></ins></p>
<p>Some programs have their own set of functions that they have assigned to the Function keys. You can find these in the menu of the program. The menu items which are assigned a function key have the corresponding function key designated after the item name. If you press that function key, you can perform that function without using the menu or buttons. The program&#8217;s help or manual should also tell which functions are assigned to the function keys. You might want to try each one of these as you read through them.</p>
<p><em><strong>Function Keys for Windows</strong></em></p>
<p>* <strong>F1</strong> – Opens Help for the currently displayed program (this does not work on all programs).</p>
<p>* <strong>Windows Logo key and F1</strong> – Opens Windows&#8217; Help.</p>
<p>* <strong>F2</strong> – Highlights the name of a selected object for renaming in Windows Explorer, desktop, and some other Windows&#8217; programs. First, you need to select an item that can be renamed (like, a file or shortcut). After pressing F2, you can then type what you want to rename the object to.</p>
<p>* <strong>F3</strong> – Brings up Search in Windows Explorer.</p>
<p>* <strong>F4</strong> – Drops down the Address bar in Internet Explorer showing your previous locations. This allows you to scroll down and select one.</p>
<p>* <strong>Alt and F4</strong> – Closes the currently displayed program.</p>
<p>* <strong>F5</strong> – Refreshes the view in Windows Explorer, Internet Explorer (in other words, it looks at the source again and reloads the contents), and other programs. In MailWasher it checks the mail (which I guess would be a kind of refresh).</p>
<p>* <strong>F6</strong> – moves the cursor around the structure of a program. Pressing it may cycle you from window to window or from place to place within the program. In Windows Explorer it moves you from the left pane to the right pane and back. This is similar to what the Tab key does.</p>
<p>* <strong>Alt and F6</strong> – Switches between multiple windows in the same program (for example, when the Notepad Find dialog box is displayed, ALT+F6 switches between the Find dialog box and the main Notepad window).</p>
<p>* <strong>F7</strong> – does not have any functionality in Windows. It may be used in individual programs.</p>
<p>* <strong>F8</strong> – accesses Safe Mode if pressed at the right time while the computer is starting. Safe Mode is a trouble-shooting mode, which will start the computer with minimal drivers.</p>
<p>* <strong>F9</strong> – does not have any functionality in Windows. It may be used in individual programs.</p>
<p>* <strong>F10</strong> – Changes the focus to and from the menu. Pressing the Alt key will also do this. Once the focus is on the menu items, you can use the arrow keys to navigate to an item and the Enter key to select it.</p>
<p>* <strong>Shift and F10</strong> – brings up the popup menu in Windows Explorer much like right clicking on an item does.</p>
<p>* <strong>F11</strong> – Switches between regular screen mode and full screen mode. Full screen mode is like a maximized screen but with more screen space and less toolbar controls</p>
<p>* <strong>F12</strong> – does not have any functionality in Windows. It may be used in individual programs.</p>
<p>You may have noticed that some of the Function keys are not used (F7, F9, F12) in Windows. That doesn&#8217;t mean that they can&#8217;t be used. You can assign them or any other key combination to quickly run programs that you frequently use. Here are instructions for doing that.</p>
<ul>
<li>Locate the shortcut of that program. The Start menu is a good place to find shortcuts (every icon in the Start menu is a shortcut). If the program doesn&#8217;t have a shortcut, create one.</li>
</ul>
<ul>
<li>Right click on the shortcut and select the Properties item from the popup menu.</li>
</ul>
<ul>
<li>The Properties dialog will open. Go to the Shortcut tab.</li>
</ul>
<ul>
<li>Put the curser in the Shortcut key textbox and press the Function key or key combination (like Alt + Ctrl + 2) which you want to use to start the program.</li>
</ul>
<ul>
<li>The Function key name or key combination name will appear in the box.</li>
</ul>
<ul>
<li>Click on the Apply button (or the OK button) and close the dialog.</li>
</ul>
<p>After you have done this, whenever you press that Function key or key combination, that program will start. Please note that if you use a Function key or key combination that is already used by Windows or other programs, it will no longer work in Windows or the other programs as it used to and will instead start your program.</p>
<p>To disable this, follow the above instructions but press Backspace or Delete in the Shortcut key textbox.</p>
<p>The Function keys are there to make your life easier. Now you can start using them.</p>
<p>Author – Ray Geide of Ray&#8217;s Computer Tips and many top computer software<br />
Super Win Software, Inc.</p>
<p><a href="http://www.superwin.com/">http://www.superwin.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboutronal.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboutronal.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboutronal.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboutronal.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboutronal.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboutronal.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboutronal.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboutronal.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboutronal.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboutronal.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboutronal.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboutronal.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboutronal.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboutronal.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=41&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboutronal.wordpress.com/2011/10/26/the-forgotten-keyboard-function-keys-and-their-uses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d46585afa53502be6091b046e5fa8f3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">akuronal</media:title>
		</media:content>

		<media:content url="http://aboutronal.files.wordpress.com/2011/10/keyboard.gif?w=300" medium="image">
			<media:title type="html">keyboard</media:title>
		</media:content>
	</item>
		<item>
		<title>The Tea Cup – (amazing Moral)</title>
		<link>http://aboutronal.wordpress.com/2011/10/19/the-tea-cup-%e2%80%93-amazing-moral/</link>
		<comments>http://aboutronal.wordpress.com/2011/10/19/the-tea-cup-%e2%80%93-amazing-moral/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 02:24:13 +0000</pubDate>
		<dc:creator>Ronal Pardede</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[inspiring]]></category>
		<category><![CDATA[moral]]></category>

		<guid isPermaLink="false">http://aboutronal.wordpress.com/?p=27</guid>
		<description><![CDATA[There was a couple who used to go shopping in beautiful stores. They both liked antiques and pottery, especially teacups. One day in a shop they saw a beautiful teacup. They said, “May we see that? We’ve never seen one quite so beautiful.” As the storekeeper handed it to them, suddenly the teacup spoke. “You [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=27&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There was a couple who used to go shopping in beautiful stores. They both liked antiques and pottery, especially teacups. One day in a shop they saw a beautiful teacup.</p>
<p>They said, “May we see that? We’ve never seen one quite so beautiful.” As the storekeeper handed it to them, suddenly the teacup spoke.</p>
<p>“You don’t understand,” it said. “I haven’t always been a teacup. There was a time when I was red and I was clay.” My master took me and rolled me and patted me over and over and I yelled out, “let me alone”, but he only smiled, “Not yet.”</p>
<p>“Then I was placed on a spinning wheel,” the teacup said, “and suddenly I was spun around and around. Stop it! I’m getting dizzy!” I screamed. But my master only nodded and said, ‘Not yet.”</p>
<p>Then he put me in the oven. I never felt such heat. I wondered why he wanted to burn me, and I yelled and knocked at the door. I could see him through the opening and I could read his lips as He shook his head, “Not yet.”</p>
<p>Finally the door opened, he put me on the shelf, and I began to cool. “There, that’s better,” I said. And he brushed and painted me all over. The fumes were horrible. I thought I would gag. ”Stop it, stop it!” I cried. He only nodded,”Not yet.”</p>
<p>Then I knew there wasn’t any hope. I would never make it. I was ready to give up. But the door opened and he took me out and placed me on the shelf.</p>
<p>One hour later he handed me a mirror and said, “Look at yourself.” And I did. I said,”That’s not me; that couldn’t be me. It’s beautiful. I’m beautiful.”<br />
Then my Master said to me, “I know it hurts to be rolled and patted, but if I had left you alone, you’d have dried up. I know it made you dizzy to spin around on the wheel, but if I had stopped, you would have crumbled.<br />
I knew it hurt and was hot and disagreeable in the oven, but if I hadn’t put you there, you would have cracked. I know the fumes were bad when I brushed and painted you all over, but if I hadn’t done that, you never would have hardened;you would not have had any color in your life.<br />
You are what I had in mind when I first began with you.”</p>
<p>Moral: God knows what He’s doing (for all of us).He is the all-Wise &amp; all-Knowing.<br />
He will mold us, by passing us through difficulties in life. So that we become better human beings and face the challenges of life with ease.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboutronal.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboutronal.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboutronal.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboutronal.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboutronal.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboutronal.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboutronal.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboutronal.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboutronal.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboutronal.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboutronal.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboutronal.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboutronal.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboutronal.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=27&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboutronal.wordpress.com/2011/10/19/the-tea-cup-%e2%80%93-amazing-moral/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d46585afa53502be6091b046e5fa8f3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">akuronal</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://aboutronal.wordpress.com/2011/07/14/29/</link>
		<comments>http://aboutronal.wordpress.com/2011/07/14/29/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 03:56:26 +0000</pubDate>
		<dc:creator>Ronal Pardede</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dream]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://aboutronal.wordpress.com/?p=29</guid>
		<description><![CDATA[i have no idea to grow up this site www.anakkost.info the web server have abad service and i can&#8217;t instal some cms, now i try to make  a web blog using indonesian wordpress i hope this work. actualy i want to make forum and a online store but I don&#8217;t know how to start a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=29&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>i have no idea to grow up this site <a title="anakkost" href="http://www.anakkost.info" target="_blank">www.anakkost.info</a> the web server have abad service and i can&#8217;t instal some cms, now i try to make  a web blog using indonesian wordpress i hope this work.</p>
<p>actualy i want to make forum and a online store but I don&#8217;t know how to start a forum and I don&#8217;t have anything to sale in the store&#8230;</p>
<p>it&#8217;s hard to be a web enterpreneur.</p>
<p>but lets try, we dont know about the effort if not tryng&#8230;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboutronal.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboutronal.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboutronal.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboutronal.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboutronal.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboutronal.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboutronal.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboutronal.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboutronal.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboutronal.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboutronal.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboutronal.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboutronal.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboutronal.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=29&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboutronal.wordpress.com/2011/07/14/29/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d46585afa53502be6091b046e5fa8f3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">akuronal</media:title>
		</media:content>
	</item>
		<item>
		<title>me.</title>
		<link>http://aboutronal.wordpress.com/2011/06/13/me/</link>
		<comments>http://aboutronal.wordpress.com/2011/06/13/me/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 14:24:38 +0000</pubDate>
		<dc:creator>Ronal Pardede</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://aboutronal.wordpress.com/?p=3</guid>
		<description><![CDATA[It&#8217;s me! I was born as the first child of four children, was born eighteen years before I typed this post. Oh yes, this is only a post rather than a diary that tells kesahku complained. It is not also a novel that raised the real story. Information about myself I was born and given [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=3&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s me!</p>
<p>I was born as the first child of four children, was born eighteen years before I typed this post. Oh yes, this is only a post rather than a diary that tells kesahku complained. It is not also a novel that raised the real story. Information about myself I was born and given the name &#8220;Ronald Pardede&#8221;, waw pretty name, one year eight months I became an only child. Before my first sister was born!. Not a lot of what I saw in those days than what my parents told olehorang and the people around them. That&#8217;s what I know is I was born in the late afternoon of April six years and nine one. Born with a healthy body, fat and big. Maybe because I was conceived during the ten months.<br />
My childhood quite pleasant, with undivided attention from parents. Born in a village two and a half hour away from the city district. Born of a mother who married a guru.di a place my father in assigned housing. My growth is quite good, though far from town, my parents gave me milk powder every day after the breastfeeding period. A form of love that I proud of today. At that very rarely infants and toddlers get the milk. My parents bought the milk through the only one in the village minibus, minibus that nearly each day to the city. I&#8217;m healthy babies liked by neighbors, in the afternoon when the mother carried me for a walk around the house a lot of girls who like to carry me.<br />
Pleasure that continues even though my sister was born, my parents&#8217; attention remains intact to me. My first sister was born on December twenty-five nine two. Right Christmas night, but in the village my family is the only Christian family. That&#8217;s what I know about the birth of my sister. Then me and my sister grew up together. Because of our age are not much different from father to equate what I get toys and toys that gets. We are quite a lot of toys compared to other children in the village.<br />
Six years from my birth I went to elementary school. Although it before it happens, I&#8217;ve started to learn. I never felt the bench playgroup or kindergarten. Because of the village there is no educational institutions are like that. Due to limited classroom space, the between-class and second class at the join in one room, and besides the number of primary school students in the place was not too much. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboutronal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboutronal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboutronal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboutronal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboutronal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboutronal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboutronal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboutronal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboutronal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboutronal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboutronal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboutronal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboutronal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboutronal.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=3&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboutronal.wordpress.com/2011/06/13/me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d46585afa53502be6091b046e5fa8f3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">akuronal</media:title>
		</media:content>
	</item>
		<item>
		<title>reason why i make this blog</title>
		<link>http://aboutronal.wordpress.com/2011/03/25/reason/</link>
		<comments>http://aboutronal.wordpress.com/2011/03/25/reason/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 04:17:00 +0000</pubDate>
		<dc:creator>Ronal Pardede</dc:creator>
				<category><![CDATA[why I write this blog]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[I]]></category>
		<category><![CDATA[this]]></category>
		<category><![CDATA[why]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://aboutronal.wordpress.com/?p=6</guid>
		<description><![CDATA[this blog is dedicated for my self, to introduce my self to world explain about my activity , tell about my hope, describe about my project. this blog show all my creativities, all about my love story, all about my family,. I will wrote all of my mind in this blog. this blog is just [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=6&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>this blog is dedicated for my self,</p>
<p>to introduce my self to world explain about my activity , tell about my hope, describe about my project. this blog show all my creativities, all about my love story, all about my family,. I will wrote all of my mind in this blog.</p>
<p>this blog is just about me</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboutronal.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboutronal.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboutronal.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboutronal.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboutronal.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboutronal.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboutronal.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboutronal.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboutronal.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboutronal.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboutronal.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboutronal.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboutronal.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboutronal.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=6&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboutronal.wordpress.com/2011/03/25/reason/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d46585afa53502be6091b046e5fa8f3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">akuronal</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://aboutronal.wordpress.com/2011/03/25/hello-world/</link>
		<comments>http://aboutronal.wordpress.com/2011/03/25/hello-world/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 01:13:00 +0000</pubDate>
		<dc:creator>Ronal Pardede</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://aboutronal.wordpress.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=1&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboutronal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboutronal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboutronal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboutronal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboutronal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboutronal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboutronal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboutronal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboutronal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboutronal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboutronal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboutronal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboutronal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboutronal.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboutronal.wordpress.com&amp;blog=21551709&amp;post=1&amp;subd=aboutronal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboutronal.wordpress.com/2011/03/25/hello-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d46585afa53502be6091b046e5fa8f3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">akuronal</media:title>
		</media:content>
	</item>
	</channel>
</rss>
