<?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/"
	>

<channel>
	<title>dijexi.com &#187; akhmad daniel sembiring</title>
	<atom:link href="http://www.dijexi.com/author/daniel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dijexi.com</link>
	<description>free programming tutorial, tips and tricks on php, codeigniter, delphi, dotnet, ajax and more..</description>
	<lastBuildDate>Fri, 13 Jan 2012 23:21:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Show the List of Installed Packages on Ubuntu or Debian</title>
		<link>http://www.dijexi.com/2010/03/show-the-list-of-installed-packages-on-ubuntu-or-debian/</link>
		<comments>http://www.dijexi.com/2010/03/show-the-list-of-installed-packages-on-ubuntu-or-debian/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 07:07:40 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Installed Packages]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[Show]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/03/show-the-list-of-installed-packages-on-ubuntu-or-debian/</guid>
		<description><![CDATA[The command we need to use to list the packages currently installed in Ubuntu or Debian is dpkg &#8211;get-selections. For example: # dpkg --get-selections acpi install acpi-support-base install acpid install adduser install apache2 install apache2-mpm-prefork install apache2-utils install apache2.2-common install apt install apt-utils install aptitude install autoconf install automake install automake1.4 install autotools-dev install avahi-daemon [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The command we need to use to list the packages currently installed in Ubuntu or Debian is dpkg &#8211;get-selections. For example:</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:f32c3428-b7e9-4f15-a8ea-c502c7ff2e88:43374872-820e-4a2d-99b6-9d85863a5f57" class="wlWriterEditableSmartContent">
<pre class="brush: bash"># dpkg --get-selections
acpi                                            install
acpi-support-base                               install
acpid                                           install
adduser                                         install
apache2                                         install
apache2-mpm-prefork                             install
apache2-utils                                   install
apache2.2-common                                install
apt                                             install
apt-utils                                       install
aptitude                                        install
autoconf                                        install
automake                                        install
automake1.4                                     install
autotools-dev                                   install
avahi-daemon                                    install
bacula-common                                   install
bacula-fd                                       install
base-files                                      install
base-passwd                                     install
bash                                            install
bind9-host                                      install
binutils                                        install

…
</pre>
</div>
<p>&#160;</p>
<p>It will return a long list showing all the installed packages. To filter to specific list of packages, for example we only need to show java packages, combine it with grep, for example:</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:f32c3428-b7e9-4f15-a8ea-c502c7ff2e88:11cbddbb-5e63-4785-8d0f-f46fc65d247f" class="wlWriterEditableSmartContent">
<pre class="brush: bash"># dpkg --get-selections|grep java
java-common                                     install
java-gcj-compat                                 install
java-gcj-compat-headless                        install
libbcel-java                                    install
liblog4j1.2-java                                install
liblog4j1.2-java-gcj                            install
libmx4j-java                                    install
libpg-java                                      install
libregexp-java                                  install
sun-java6-bin                                   install
sun-java6-jdk                                   install
sun-java6-jre                                   install
</pre>
</div>
<p>We can find the locations of the files within a package from the list by using the dpkg -L command, such as:</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:f32c3428-b7e9-4f15-a8ea-c502c7ff2e88:708c1ae9-703d-48ec-beaf-b5336d9c63e2" class="wlWriterEditableSmartContent">
<pre class="brush: bash"># dpkg -L sun-java6-jdk|more
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/sun-java6-jdk
/usr/share/doc/sun-java6-jdk/changelog.Debian.gz
/usr/share/doc/sun-java6-jdk/copyright
/usr/share/doc/sun-java6-jdk/README.alternatives
/usr/share/doc/sun-java6-jdk/README.html
/usr/share/menu
/usr/share/menu/sun-java6-jdk
/usr/share/applications
/usr/share/applications/sun-java6-jconsole.desktop
/usr/share/lintian
/usr/share/lintian/overrides
/usr/share/lintian/overrides/sun-java6-jdk
/usr/share/doc-base
/usr/share/doc-base/sun-java6-jdk-readme
/usr/lib
/usr/lib/jvm
/usr/lib/jvm/java-6-sun-1.6.0.12
/usr/lib/jvm/java-6-sun-1.6.0.12/include
/usr/lib/jvm/java-6-sun-1.6.0.12/include/linux
/usr/lib/jvm/java-6-sun-1.6.0.12/include/linux/jni_md.h
/usr/lib/jvm/java-6-sun-1.6.0.12/include/linux/jawt_md.h
/usr/lib/jvm/java-6-sun-1.6.0.12/include/jni.h
/usr/lib/jvm/java-6-sun-1.6.0.12/include/jdwpTransport.h

…
</pre>
</div>
</p>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:d70453f3-f121-47be-9a4e-be700a6127e0" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Show" rel="tag">Show</a>,<a href="http://technorati.com/tags/List" rel="tag">List</a>,<a href="http://technorati.com/tags/Installed+Packages" rel="tag">Installed Packages</a>,<a href="http://technorati.com/tags/Ubuntu" rel="tag">Ubuntu</a>,<a href="http://technorati.com/tags/Debian" rel="tag">Debian</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/06/how-to-use-tor-project-anonymous-ip-with-curl-php-on-linux/" rel="bookmark">How to Use Tor Project Anonymous IP with Curl PHP on Linux</a></li><li><a href="http://www.dijexi.com/2010/05/setup-kannel-sms-gateway-on-ubuntu/" rel="bookmark">Setup Kannel SMS Gateway on Ubuntu</a></li><li><a href="http://www.dijexi.com/2010/08/how-to-install-asterisk-1-6-on-ubuntu/" rel="bookmark">How to install Asterisk 1.6 on Ubuntu</a></li><li><a href="http://www.dijexi.com/2009/06/how-to-change-upload-file-size-on-a-windows-localhost/" rel="bookmark">How to change upload file size on a Windows localhost</a></li><li><a href="http://www.dijexi.com/2010/09/developing-web-based-pos-application-using-ruby-on-rails-on-debian-5/" rel="bookmark">Developing Web Based POS Application Using Ruby on Rails on Debian 5</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F03%2Fshow-the-list-of-installed-packages-on-ubuntu-or-debian%2F&amp;linkname=Show%20the%20List%20of%20Installed%20Packages%20on%20Ubuntu%20or%20Debian"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/03/show-the-list-of-installed-packages-on-ubuntu-or-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funambol Mobile Open Source Book Released</title>
		<link>http://www.dijexi.com/2010/02/funambol-mobile-open-source-book-released/</link>
		<comments>http://www.dijexi.com/2010/02/funambol-mobile-open-source-book-released/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 08:31:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Funambol]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[packt publisher]]></category>
		<category><![CDATA[sample]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/02/funambol-mobile-open-source-book-released/</guid>
		<description><![CDATA[This book explains almost all about syncing your email and other data with mobile devices using Funambol 7.1 Provide push email capabilities and synchronization services for mobile devices and PC software using Funambol Develop your own Funambol extensions Many examples explaining all functionalities provided by the Funambol platform An easy reading for system administrators and [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>This book explains almost all about syncing your email and other data with mobile devices using Funambol 7.1 <a href="http://www.packtpub.com/funambol-mobile-open-source/book/mid/mid%2F040210jbpvg5?utm_source=dijexi.com&amp;utm_medium=affiliate&amp;utm_content=blog&amp;utm_campaign=mdb_002333" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" align="right" src="http://www.dijexi.com/wp-content/uploads/2010/02/image1.png" width="193" height="244" /></a></p>
<ul>
<li>Provide push email capabilities and synchronization services for mobile devices and PC software using Funambol </li>
<li>Develop your own Funambol extensions </li>
<li>Many examples explaining all functionalities provided by the Funambol platform </li>
<li>An easy reading for system administrators and developers who want to keep in sync enterprise data</li>
</ul>
<p>&#160;</p>
<h3 align="center"><a href="http://www.packtpub.com/funambol-mobile-open-source/book/mid/mid%2F040210jbpvg5?utm_source=dijexi.com&amp;utm_medium=affiliate&amp;utm_content=blog&amp;utm_campaign=mdb_002333" target="_blank">Click here for this book’s home page.</a></h3>
<p>&#160;</p>
<h2><a name="indetail">In Detail</a></h2>
<p>Funambol is a free and open source mobile synchronization server that provides push email, address book and calendar (PIM) data synchronization, and device management for wireless devices. Are you looking to sync your email and other data with mobile devices for easy access? This book will show you how to do that via the Internet cloud.</p>
<p>With the help of this complete, practical guide you will learn how to access your email, calendar, contacts, important notes a lot more easily and quickly using Funambol. You will be able to sync a large number of online applications with your mobile devices. You will also be able to develop, deploy, and manage any mobile project.</p>
<p>This book will show you how to provide a full-featured PIM synchronization and push email service with Funambol.    <br />You will start by installing Funambol on a personal computer, and then move on to acquire detailed information on the Funambol architecture and the network requirements for deploying it. You will cover several components of Funambol such as Data Synchronization Server, Device Management, Client Plugins, and more. </p>
<p>As you reach the end of the book, you will delve deeper to explore the wide range of possibilities of the Funambol platform beyond the immediate needs of personal data synchronization and mobile email. The book is also a great starting point for anyone who aims to extend Funambol. This book was targeted at version 7.1 of Funambol, but is also applicable to version 8. </p>
<p>&#160;</p>
<p align="center"><a href="http://www.packtpub.com/article/funambol-mobile-open-source-table-of-contents">Read the full Table of Contents for Funambol Mobile Open Source</a></p>
<p align="center"><a href="http://www.packtpub.com/files/1540-funambol-sample-chapter-5-funambol-e-mail.pdf" target="_blank">Read the sample Content for Funambol Mobile Open Source</a></p>
<p> <span id="more-1312"></span>  <br /> <br />
<h2>What you will learn from this book</h2>
<ul>
<li>Install the server on both Linux and Windows environment, and learn how to start/stop Funambol services </li>
<li>Sync your data with other devices and get notified of new emails or other personal data changes </li>
<li>Start synchronization automatically to receive changes made with another application or device using push synchronization </li>
<li>Connect to the Data Synchronization Service using Funambol administration tool </li>
<li>Synchronize all different devices with a central PIM database and email system using the different push mechanisms </li>
<li>Access a database on a separate machine instead of the local database by configuring Funambol </li>
<li>Restrict access to specific users, add new users, and track registered users using the Funambol Administration Tool </li>
<li>Set up and start the PIM Connector and PIM Listener Service, and learn how it works in a complex scenario using a Windows Mobile phone </li>
<li>Develop a custom connector to access an external data source by following a simple tutorial-styled example</li>
</ul>
<h2>Approach</h2>
<p>The book is composed of two parts. The first part will take you through the steps required to fully understand and deploy Funambol to provide PIM synchronization and push email solution to your mobile users. This is done step-by-step, starting from a simple personal usage scenario to a more complex environment that must serve thousands of users. All components of the platform are smoothly introduced and explained, starting from the functionality they provide. The second part of the book is more informative and will assist you in building Funambol extensions. In particular, it contains an easy-to-follow tutorial that will allow you to write a Funambol connector in a few easy steps. </p>
<h2>Who this book is written for</h2>
<p>If you are looking forward to install and get started with Funambol, this book is for you. You need to have a technical background and be confident with a bit of code tweaking, but not a developer.    <br />General server administration skills are assumed and familiarity with Java will be a benefit in places. </p>
<hr />
<h2>Author(s)</h2>
<p><b>Stefano Fornari</b></p>
<p>Stefano Fornari is a co-founder and CTO of Funambol, Inc., the leading provider of open source mobile cloud sync and push email solutions for billions of phones. Stefano had several years of software development experience before starting the Funambol open source project in 2003. He was one of the main contributors of the project and was also the project manager. Today, Stefano is in charge of the engineering team of Funambol. Prior to his development work on Funambol, Fornari was the chief architect at Stigma Online where he played a key role in the development of the company’s flagship portal product, SolWeb Intra. He has also held positions at Compaq, where he was an advisor on wireless technologies in PDAs, and at Art Technology Group (ATG) as a consultant. He holds an M.S. Degree in Computer Science.</p>
</p>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:b5ac5579-4ffe-43cb-b805-3d02f5325c3d" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/funambol" rel="tag">funambol</a>,<a href="http://technorati.com/tags/book" rel="tag">book</a>,<a href="http://technorati.com/tags/sample" rel="tag">sample</a>,<a href="http://technorati.com/tags/packt+publisher" rel="tag">packt publisher</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/10/funambol-for-blackberry-like-capabilities-on-cheap-handsets/" rel="bookmark">Funambol for BlackBerry-like capabilities on cheap handsets</a></li><li><a href="http://www.dijexi.com/2009/07/wordpress-mobile-blogging-using-blackberry/" rel="bookmark">WordPress Mobile Blogging Using BlackBerry</a></li><li><a href="http://www.dijexi.com/2009/08/free-online-video-format-conversion-sites/" rel="bookmark">Free Online Video Format Conversion Sites</a></li><li><a href="http://www.dijexi.com/2009/07/best-free-development-tools-and-editors-software/" rel="bookmark">Best Free Development Tools and Editors Software</a></li><li><a href="http://www.dijexi.com/2009/07/best-free-browsers-instant-messengers-remote-file-management-shell-and-linux-emulation-software/" rel="bookmark">Best Free Browsers, Instant Messengers, Remote File Management, Shell and Linux Emulation Software</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F02%2Ffunambol-mobile-open-source-book-released%2F&amp;linkname=Funambol%20Mobile%20Open%20Source%20Book%20Released"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/02/funambol-mobile-open-source-book-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adempiere &#8211; How to Enter Salary Payment using Cash Journal</title>
		<link>http://www.dijexi.com/2010/01/adempiere-how-to-enter-salary-payment-using-cash-journal/</link>
		<comments>http://www.dijexi.com/2010/01/adempiere-how-to-enter-salary-payment-using-cash-journal/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 08:03:48 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Adempiere ERP]]></category>
		<category><![CDATA[adempiere]]></category>
		<category><![CDATA[Cash Journal]]></category>
		<category><![CDATA[salay payment]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/01/adempiere-how-to-enter-salary-payment-using-cash-journal/</guid>
		<description><![CDATA[Monthly employee salary payment can be done by Cash Journal. In order to do that, we need to create a new Charge, which is then associated with Wages expense account. This video tutorial show you how to do that, which are the steps of: Creating a new Charge associated with Wages expense Using the Charge [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Monthly employee salary payment can be done by Cash Journal. In order to do that, we need to create a new Charge, which is then associated with Wages expense account. This video tutorial show you how to do that, which are the steps of:</p>
<ol>
<li>Creating a new Charge associated with Wages expense </li>
<li>Using the Charge in Cash Journal and entering the salary payment </li>
</ol>
<p><a href="http://www.dijexi.com/swf/adempiere/salary-payment-cash-journal.htm" target="_blank">Video Tutorial: Entering Salary Payment using Cash Journal</a></p>
<p>&#160;</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:69cdd283-41e8-48f9-b026-09c2d6ecccc6" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/adempiere" rel="tag">adempiere</a>,<a href="http://technorati.com/tags/salay+payment" rel="tag">salay payment</a>,<a href="http://technorati.com/tags/Cash+Journal" rel="tag">Cash Journal</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set-for-balance-sheet/" rel="bookmark">Adempiere &ndash; How to Import Report Line Set for Balance Sheet</a></li><li><a href="http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set/" rel="bookmark">Adempiere &ndash; How to Import Report Line Set for Profit and Loss</a></li><li><a href="http://www.dijexi.com/2010/05/codeigniter-tutorial-creating-accounting-application-part-5-the-mainpage/" rel="bookmark">CodeIgniter Tutorial: [Creating Accounting Application] Part 5 The Mainpage</a></li><li><a href="http://www.dijexi.com/2009/08/codeigniter-tutorial-creating-accounting-application-part-2-the-application-specification-and-uml-diagrams/" rel="bookmark">CodeIgniter Tutorial: [Creating Accounting Application] Part 2 The Application Specification and UML Diagrams</a></li><li><a href="http://www.dijexi.com/2009/07/030-business-partner-setup/" rel="bookmark">030 Business Partner Setup</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F01%2Fadempiere-how-to-enter-salary-payment-using-cash-journal%2F&amp;linkname=Adempiere%20%26ndash%3B%20How%20to%20Enter%20Salary%20Payment%20using%20Cash%20Journal"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/01/adempiere-how-to-enter-salary-payment-using-cash-journal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BASH Redirection</title>
		<link>http://www.dijexi.com/2010/01/bash-redirection/</link>
		<comments>http://www.dijexi.com/2010/01/bash-redirection/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 04:40:23 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[redirection]]></category>
		<category><![CDATA[stderr]]></category>
		<category><![CDATA[stdout]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/01/bash-redirection/</guid>
		<description><![CDATA[Quick reference In BASH terminology, there are 3 file descriptors, stdin, stdout and stderr (std means standard). Basically you can: redirect stdout to a file redirect stderr to a file redirect stdout to a stderr redirect stderr to a stdout redirect stderr and stdout to a file redirect stderr and stdout to stdout redirect stderr [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><h2><a name="ss3.1">Quick reference</a></h2>
<p>In BASH terminology, there are 3 file descriptors, stdin, stdout and stderr (std means standard). </p>
<p>Basically you can: </p>
<ol>
<li>redirect stdout to a file </li>
<li>redirect stderr to a file </li>
<li>redirect stdout to a stderr </li>
<li>redirect stderr to a stdout </li>
<li>redirect stderr and stdout to a file </li>
<li>redirect stderr and stdout to stdout </li>
<li>redirect stderr and stdout to stderr </li>
</ol>
<p> Next, 1 represents stdout and 2 means stderr.
<p>A little note for seeing this things: with the less command you can view both stdout (which will remain on the buffer) and the stderr that will be printed on the screen, but erased as you try to &#8216;browse&#8217; the buffer. </p>
<p> <span id="more-1308"></span><br />
<h2><a name="ss3.2">stdout 2 file </a></h2>
<p>This will cause the ouput of a program to be written to a file. </p>
<blockquote><p><code></code>
<pre>        ls -l &gt; ls-l.txt
        </pre>
</blockquote>
<p>Here, a file called &#8216;ls-l.txt&#8217; will be created and it will contain what you would see on the screen if you type the command &#8216;ls -l&#8217; and execute it. </p>
<h2><a name="ss3.3">stderr 2 file </a></h2>
<p>This will cause the stderr ouput of a program to be written to a file. </p>
<blockquote><p><code></code></p>
<pre>        grep da * 2&gt; grep-errors.txt
        </pre>
</blockquote>
<p>Here, a file called &#8216;grep-errors.txt&#8217; will be created and it will contain what you would see the stderr portion of the output of the &#8216;grep da *&#8217; command. </p>
<h2><a name="ss3.4">stdout 2 stderr</a></h2>
<p>This will cause the stderr ouput of a program to be written to the same file descriptor than stdout. </p>
<blockquote><p><code></code></p>
<pre>        grep da * 1&gt;&amp;2
        </pre>
</blockquote>
<p>Here, the stdout portion of the command is sent to stderr, you may notice that in differen ways. </p>
<h2><a name="ss3.5">stderr 2 stdout </a></h2>
<p>This will cause the stderr ouput of a program to be written to the same filedescriptor than stdout. </p>
<blockquote><p><code></code></p>
<pre>        grep * 2&gt;&amp;1
        </pre>
</blockquote>
<p>Here, the stderr portion of the command is sent to stdout, if you pipe to less, you&#8217;ll see that lines that normally &#8216;dissapear&#8217; (as they are written to stderr) are being kept now (because they&#8217;re on stdout). </p>
<h2><a name="ss3.6">stderr and stdout 2 file </a></h2>
<p>This will place every output of a program to a file. This is suitable sometimes for cron entries, if you want a command to pass in absolute silence. </p>
<blockquote><p><code></code></p>
<pre>        rm -f $(find / -name core) &amp;&gt; /dev/null
        </pre>
</blockquote>
<p>This (thinking on the cron entry) will delete every file called &#8216;core&#8217; in any directory. Notice that you should be pretty sure of what a command is doing if you are going to wipe it&#8217;s output.</p>
<p>&#160;</p>
<p><div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:67c97eae-2a14-49c3-9cc5-1c3daf9b7460" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/linux" rel="tag">linux</a>,<a href="http://technorati.com/tags/bash" rel="tag">bash</a>,<a href="http://technorati.com/tags/redirection" rel="tag">redirection</a>,<a href="http://technorati.com/tags/stdout" rel="tag">stdout</a>,<a href="http://technorati.com/tags/stderr" rel="tag">stderr</a></div></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/03/show-the-list-of-installed-packages-on-ubuntu-or-debian/" rel="bookmark">Show the List of Installed Packages on Ubuntu or Debian</a></li><li><a href="http://www.dijexi.com/2009/07/5-simple-basic-steps-to-create-facebook-application/" rel="bookmark">5 Simple Basic Steps to Create Facebook Application</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F01%2Fbash-redirection%2F&amp;linkname=BASH%20Redirection"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/01/bash-redirection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adempiere &#8211; How to Import Report Line Set for Balance Sheet</title>
		<link>http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set-for-balance-sheet/</link>
		<comments>http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set-for-balance-sheet/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 06:52:15 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Adempiere ERP]]></category>
		<category><![CDATA[balance sheet]]></category>
		<category><![CDATA[create report]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[profit and loss]]></category>
		<category><![CDATA[report line set]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set-for-balance-sheet/</guid>
		<description><![CDATA[Adempiere financial reports (balance sheet and profit loss) must be correctly setup before you can see and generate the reports. You must setup the Report Line Set and Report Column Set. These video shows you how to import the Report Line Set for Balance report, adjust the value and calculation for each report line, and [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Adempiere financial reports (balance sheet and profit loss) must be correctly setup before you can see and generate the reports. You must setup the Report Line Set and Report Column Set.</p>
<p>These video shows you how to import the Report Line Set for Balance report, adjust the value and calculation for each report line, and how to create the reports.</p>

    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="balance-sheet" width="500" height="400">
      <param name="movie" value="/swf/adempiere/import-line-set-balance-sheet.swf" />
      <param name="allowfullscreen" value="true" />
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="/swf/adempiere/import-line-set-balance-sheet.swf" width="500" height="400" allowfullscreen="true">
      <!--<![endif]-->
        <p>The Flash plugin is required to view this object.</p>
      <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>

<p>-</p>
<p>&#160;</p>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c98fc866-9d1d-47db-83b1-dd2b57af3791" class="wlWriterSmartContent">Technorati Tags: <a href="http://technorati.com/tags/import" rel="tag">import</a>,<a href="http://technorati.com/tags/report+line+set" rel="tag">report line set</a>,<a href="http://technorati.com/tags/balance+sheet" rel="tag">balance sheet</a>,<a href="http://technorati.com/tags/profit+and+loss" rel="tag">profit and loss</a>,<a href="http://technorati.com/tags/create+report" rel="tag">create report</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set/" rel="bookmark">Adempiere &ndash; How to Import Report Line Set for Profit and Loss</a></li><li><a href="http://www.dijexi.com/2009/07/020-workflow-initial-client-setup-review/" rel="bookmark">020 Workflow: Initial Client Setup Review</a></li><li><a href="http://www.dijexi.com/2010/01/adempiere-how-to-enter-salary-payment-using-cash-journal/" rel="bookmark">Adempiere &ndash; How to Enter Salary Payment using Cash Journal</a></li><li><a href="http://www.dijexi.com/2010/05/codeigniter-tutorial-creating-accounting-application-part-5-the-mainpage/" rel="bookmark">CodeIgniter Tutorial: [Creating Accounting Application] Part 5 The Mainpage</a></li><li><a href="http://www.dijexi.com/2011/07/how-to-import-existing-project-directory-into-svn-repository/" rel="bookmark">How to Import Existing Project Directory Into SVN Repository</a></li></ul></div><!--INFOLINKS_OFF--><p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-7773800616131770";
/* horizontal */
google_ad_slot = "1931057994";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F01%2Fadempiere-how-to-import-report-line-set-for-balance-sheet%2F&amp;linkname=Adempiere%20%26ndash%3B%20How%20to%20Import%20Report%20Line%20Set%20for%20Balance%20Sheet"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set-for-balance-sheet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adempiere &#8211; How to Import Report Line Set for Profit and Loss</title>
		<link>http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set/</link>
		<comments>http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 04:53:02 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Adempiere ERP]]></category>
		<category><![CDATA[balance sheet]]></category>
		<category><![CDATA[create report]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[profit and loss]]></category>
		<category><![CDATA[report line set]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set/</guid>
		<description><![CDATA[Adempiere financial reports (balance sheet and profit loss) must be correctly setup before you can see and generate the reports. You must setup the Report Line Set and Report Column Set. These video shows you how to import the Report Line Set for Profit and Loss report, adjust the value and calculation for each report [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Adempiere financial reports (balance sheet and profit loss) must be correctly setup before you can see and generate the reports. You must setup the Report Line Set and Report Column Set.</p>
<p>These video shows you how to import the Report Line Set for Profit and Loss report, adjust the value and calculation for each report line, and how to create the reports.</p>

    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="profit-and-loss" width="500" height="400">
      <param name="movie" value="/swf/adempiere/import-line-set-profit-and-loss.swf" />
      <param name="allowfullscreen" value="true" />
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="/swf/adempiere/import-line-set-profit-and-loss.swf" width="500" height="400" allowfullscreen="true">
      <!--<![endif]-->
        <p>The Flash plugin is required to view this object.</p>
      <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>

<p>-</p>
<p>&#160;</p>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c98fc866-9d1d-47db-83b1-dd2b57af3791" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/import" rel="tag">import</a>,<a href="http://technorati.com/tags/report+line+set" rel="tag">report line set</a>,<a href="http://technorati.com/tags/balance+sheet" rel="tag">balance sheet</a>,<a href="http://technorati.com/tags/profit+and+loss" rel="tag">profit and loss</a>,<a href="http://technorati.com/tags/create+report" rel="tag">create report</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set-for-balance-sheet/" rel="bookmark">Adempiere &ndash; How to Import Report Line Set for Balance Sheet</a></li><li><a href="http://www.dijexi.com/2009/07/020-workflow-initial-client-setup-review/" rel="bookmark">020 Workflow: Initial Client Setup Review</a></li><li><a href="http://www.dijexi.com/2010/01/adempiere-how-to-enter-salary-payment-using-cash-journal/" rel="bookmark">Adempiere &ndash; How to Enter Salary Payment using Cash Journal</a></li><li><a href="http://www.dijexi.com/2011/07/how-to-import-existing-project-directory-into-svn-repository/" rel="bookmark">How to Import Existing Project Directory Into SVN Repository</a></li><li><a href="http://www.dijexi.com/2009/08/codeigniter-tutorial-creating-accounting-application-part-2-the-application-specification-and-uml-diagrams/" rel="bookmark">CodeIgniter Tutorial: [Creating Accounting Application] Part 2 The Application Specification and UML Diagrams</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F01%2Fadempiere-how-to-import-report-line-set%2F&amp;linkname=Adempiere%20%26ndash%3B%20How%20to%20Import%20Report%20Line%20Set%20for%20Profit%20and%20Loss"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Driving Traffic Into A Brand New Website Within 24 hours</title>
		<link>http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/</link>
		<comments>http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 04:54:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cheap website traffic]]></category>
		<category><![CDATA[free web traffic]]></category>
		<category><![CDATA[free website traffic]]></category>
		<category><![CDATA[web site traffic]]></category>
		<category><![CDATA[web traffic]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/</guid>
		<description><![CDATA[No traffic means you will not get sales. This is the very most important equation when it comes to internet marketing. Whether you are new to internet marketing or an experienced marketer still no one will ever get to see your site and be amazed with it when it doesn&#8217;t have any traffic at all. [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--></p>
<p>No traffic means you will not get sales. This is the very most important equation when it comes to internet marketing. Whether you are new to internet marketing or an experienced marketer still no one will ever get to see your site and be amazed with it when it doesn&#8217;t have any traffic at all. Specially for those who have just built a website having all the money making affiliate links that are all plugged in, or just a simple website wherein it promotes your own business services and products.    </p>
<p>If you have just started to be an affiliate I supposed you have already tried many means of advertising for your affiliate programs. Maybe you have already tried using safelists, submitting them manually and then moved on to millions of automated submission tools or perhaps you have also bought leads for your business.     </p>
<p>It&#8217;s possible you did make some sales and got a couple of leads, but still the results remain far from fantastic plus all of these methods are very time consuming. All this effort can be very expensive and at some point of times it can also be demoralizing. You just imagine, you are going to send powerful email advertisements to thousands of quality leads and then just hear from a few them and also before I forget, there are also those cheap traffic sites that just sell you pop overs that are useless.     </p>
<p>If you have experienced these things that I have told you well this is the only way out. </p>
<p>&#160;</p>
<p> <span id="more-1297"></span>
<p>Pay-per-click search engines where you can drive targeted traffic to your website. This is a search engine methods that doesn&#8217;t mind if your site is indexed for ages or if it&#8217;s a brand new website you have just created minutes ago. You are really assured that targeted traffic is all worth a ton. We all know that by any means communication is the most important one. In internet marketing if there is higher means of communications there is also a higher possibility of having sales because if people have already found your site they are already interested in your product and your affiliate program. Conversion could be between 3-5% if you are using good targeted keywords and well written ads.     </p>
<p>At present, the biggest and most leading search engines are Google and Overture, they have the largest network of engines. When you set up a campaign in Adwords it will not really take an hour if you only got the keywords and the ads ready. You will already see massive traffic streaming in just 15 minutes right after you have set up your campaign. This could really cost you more but you have to consider that you are only paying for the relevant clicks and not for view and for impressions and in return you will get targeted traffic and converts much better.     </p>
<p>You as a beginner in setting up for PPC ad campaigns, you are advisable to start on smaller PPC search engines because the clicks there are cheaper even though the traffic is lower. These are search engines like Miva, GoClicks,7Search.com, ExactSeek and more but however if your product is really competitive the amount of traffic offered by these search engines can add pretty much.</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:9ec32d32-cf04-4f00-89c0-6e6aef1082fb" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/free+web+traffic" rel="tag">free web traffic</a>,<a href="http://technorati.com/tags/free+website+traffic" rel="tag">free website traffic</a>,<a href="http://technorati.com/tags/web+traffic" rel="tag">web traffic</a>,<a href="http://technorati.com/tags/web+site+traffic" rel="tag">web site traffic</a>,<a href="http://technorati.com/tags/cheap+website+traffic" rel="tag">cheap website traffic</a></div>
</p>
<hr />You could also drive <a href="http://www.freetrafficmethod.com">free website traffic</a> using Chris Stigson&#8217;s free traffic methods: <a href="http://www.freetrafficmethod.com">http://www.freetrafficmethod.com</a>  </p>
<p>Source: <a href="http://www.submityourarticle.com">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=79615">http://www.submityourarticle.com/a.php?a=79615</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/11/engaging-customers-with-facebook-applications/" rel="bookmark">Engaging Customers with Facebook Applications</a></li><li><a href="http://www.dijexi.com/2010/11/face-your-customers-with-facebook/" rel="bookmark">Face Your Customers with Facebook</a></li><li><a href="http://www.dijexi.com/2010/11/official-presence-on-facebook-opportunities-and-pitfalls/" rel="bookmark">Official Presence on Facebook &ndash; Opportunities and Pitfalls</a></li><li><a href="http://www.dijexi.com/2010/11/facebook-and-consumer-learning-process/" rel="bookmark">Facebook and Consumer Learning Process</a></li><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F01%2Fdriving-traffic-into-a-brand-new-website-within-24-hours%2F&amp;linkname=Driving%20Traffic%20Into%20A%20Brand%20New%20Website%20Within%2024%20hours"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Strategies To Use To Get Free Targeted Website Traffic</title>
		<link>http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/</link>
		<comments>http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 02:44:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[free targeted website traffic]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/</guid>
		<description><![CDATA[Image via WikipediaHaving an online business means that you need to get free targeted website traffic or you will never make money and never succeed. There are many different strategies that can be used for getting free targeted traffic. You just need to know the more effective strategies to use. Here are the most effective [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p><DIV style="MARGIN: 1em; WIDTH: 310px; DISPLAY: block; FLOAT: right" class=zemanta-img jQuery1262573066046="1119"><A href="http://commons.wikipedia.org/wiki/Image:NYSE-floor.jpg"><IMG style="BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; DISPLAY: block; BORDER-TOP: medium none; BORDER-RIGHT: medium none" alt="The floor of the New York Stock Exchange." src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/01/NYSE-floor.jpg/300px-NYSE-floor.jpg" width="300" height="197"></A><P style="FONT-SIZE: 0.8em" class=zemanta-img-attribution>Image via <A href="http://commons.wikipedia.org/wiki/Image:NYSE-floor.jpg">Wikipedia</A></P></DIV><P>Having an online <A class="zem_slink" title="Business" href="http://en.wikipedia.org/wiki/Business" rel="wikipedia">business</A> means that you need to get free targeted <A class="zem_slink" title="website traffic" href="http://www.freetrafficsystem.com/" rel="homepage" jquery1262573066046="655">website traffic</A> or you will never make money and never succeed. There are many different strategies that can be used for getting free targeted <A class="zem_slink" title="Web traffic" href="http://en.wikipedia.org/wiki/Web_traffic" rel="wikipedia">traffic</A>. You just need to know the more effective strategies to use. <BR><BR>Here are the most effective strategies that anyone can use for free targeted traffic to any business online. <BR><BR>One: <A class="zem_slink" title="Article marketing" href="http://en.wikipedia.org/wiki/Article_marketing" rel="wikipedia" jquery1262573066046="752">Article marketing</A> &#8211; This is one of the most effective strategies you can use for building targeted traffic to your site now and far into the future. There are many ways online that articles can be used to get your site out there. You can distribute them to forums, article directories, social <A class="zem_slink" title="Marketing" href="http://en.wikipedia.org/wiki/Marketing" rel="wikipedia">marketing</A> sites or even your blog. <BR><BR>Two: Social marketing &#8211; This is a method that you definitely need to be using because it is becoming one of the best and most effective ways to market any business online. There are many social sites you should use. Find these sites and educate yourself on using it effectively and before you know it, your business will be receiving a lot of targeted traffic. </P> <P>&nbsp;</P>
<div id='extendedEntryBreak' name='extendedEntryBreak'></div>
<p> <P><BR><BR>Three: Forums &#8211; Find forums that are related to your niche and get involved in them. Set up a signature file with your business information. Each time you post a question, make a comment, answer a question, or do any type of post it is displayed giving you free marketing. <BR><BR>Four: SEO &#8211; Make sure your <A class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">website</A> is optimized for the <A class="zem_slink" title="Web search engine" href="http://en.wikipedia.org/wiki/Web_search_engine" rel="wikipedia">search engines</A>. Pay close attention to what keywords are being used and then use as many targeted ones as possible. Search engines will pick up these keywords and then you will start to see your site placed in their free results. <BR><BR>Five: Videos &#8211; There are many free sites online that help you make a video. You just need to have a webcam and then find these sites. Video is an effective and popular <A class="zem_slink" title="Advertising" href="http://en.wikipedia.org/wiki/Advertising" rel="wikipedia">advertising</A> tool to get targeted traffic. <BR><BR>These are the most effective strategies that you want to use for free targeted website traffic. Educate yourself on how to use each strategy effectively and then put into action what you learn. You want to have numerous marketing methods working for you to get more traffic. This is the only way to find success online and make money. </P> <P> <HR> Suzanne Morrison is the owner of an <A class="zem_slink" title="Internet" href="http://en.wikipedia.org/wiki/Internet" rel="wikipedia">internet</A> business ideas website that helps people achieve a <A href="http://www.3stepstosearchenginesuccess.com/">high search engine ranking </A>website. Visit it today for a free <A href="http://www.3stepstosearchenginesuccess.com/free-seo-course.php">search engine optimization tutorial</A>.<BR><BR>Source: <A href="http://www.submityourarticle.com/">http://www.submityourarticle.com</A><BR><BR>Permalink: <A href="http://www.submityourarticle.com/a.php?a=78908">http://www.submityourarticle.com/a.php?a=78908</A>  <P></P> <P></P> <P></P> <P></P> <P></P> <P></P> <P></P> <P></P>   <DIV style="MARGIN-TOP: 10px; HEIGHT: 15px" class=zemanta-pixie><A class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/e2b080f4-a102-48a5-95ea-86de203826ce/"><IMG style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; FLOAT: right; BORDER-LEFT-STYLE: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=e2b080f4-a102-48a5-95ea-86de203826ce"></A></DIV></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/" rel="bookmark">Driving Traffic Into A Brand New Website Within 24 hours</a></li><li><a href="http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/" rel="bookmark">Web Site Traffic Promotion - How To Promote Your Web Site To Get Free Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/" rel="bookmark">How To Create Your Own Automated Income System</a></li><li><a href="http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/" rel="bookmark">How To Generate Free Website Traffic FAST</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F01%2F5-strategies-to-use-to-get-free-targeted-website-traffic%2F&amp;linkname=5%20Strategies%20To%20Use%20To%20Get%20Free%20Targeted%20Website%20Traffic"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Apply for a Merchant Account When Residing in the Middle East</title>
		<link>http://www.dijexi.com/2010/01/how-to-apply-for-a-merchant-account-when-residing-in-the-middle-east/</link>
		<comments>http://www.dijexi.com/2010/01/how-to-apply-for-a-merchant-account-when-residing-in-the-middle-east/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 02:36:29 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ZenCart]]></category>
		<category><![CDATA[merchant account]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/01/how-to-apply-for-a-merchant-account-when-residing-in-the-middle-east/</guid>
		<description><![CDATA[Image by Taekwonweirdo via Flickr When applying for an offshore merchant account in the Middle East, the requirements and the procedures may vary according to the processing company namely: Panama Legal and Thetabiz Offshore. IT is applicable for those who have international businesses away from the place of residency. However, not all are qualified to [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div style="margin: 1em; width: 159px; display: block; float: right; height: 171px" class="zemanta-img" jquery1262572501937="710"><a href="http://www.flickr.com/photos/92283658@N00/2358717736"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Go MasterCard! Congrats to Fellow Shareholders!" src="http://farm3.static.flickr.com/2138/2358717736_f6fdedb4c1_m.jpg" width="98" height="122" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.flickr.com/photos/92283658@N00/2358717736">Taekwonweirdo</a> via Flickr</p>
</p></div>
</p>
<p>When applying for an offshore <a class="zem_slink" title="Merchant account" href="http://en.wikipedia.org/wiki/Merchant_account" rel="wikipedia">merchant account</a> in the <a class="zem_slink" title="Middle East" href="http://en.wikipedia.org/wiki/Middle_East" rel="wikipedia">Middle East</a>, the requirements and the procedures may vary according to the processing company namely: Panama Legal and Thetabiz Offshore.     </p>
<p>IT is applicable for those who have international businesses away from the place of residency. However, not all are qualified to apply since there are some countries that are not currently catered by the service processors. Here are two companies that offer offshore merchant account services and the steps on how to apply one namely: </p>
<p>&#160;</p>
<p>&#160;</p>
</p>
<p> <span id="more-1295"></span>
</p>
<h2>Panama Legal </h2>
<p>For foreigners living in Middle East who want to invest in other countries, Panama Legal Company has provided its client an option in order to get an approved merchant account. A merchant must open a bank account in a major Middle Eastern bank, which will be under the name of Panama Corporation as well as the merchant account. The service provider will transfer money to the bank in the Middle East and then to your bank account, never directly to your account.   </p>
<h2>Thetabiz Offshore </h2>
<p>Thetabiz is a Panamanian corporation, which provides bank card services, company and asset protection and merchant account companies&#8217; relation. They are well-versed when it comes to account application for expatriates and high <a class="zem_slink" title="Net worth" href="http://en.wikipedia.org/wiki/Net_worth" rel="wikipedia">net worth</a> individuals. To apply, here are some steps to follow such as: </p>
<ul>
<li>Pay one-time-lifetime membership fee of $400 for an unlimited help for bank accounts and merchant accounts * Complete the merchant account application form </li>
<li>Application and your existing company website will be reviewed </li>
<li>Wait until the bank has verified with the VISA and <a class="zem_slink" title="MasterCard" href="http://www.mastercard.com/" rel="homepage">MasterCard</a> match list </li>
<li>Once qualified, sign contract with the bank and the card processor </li>
<li>Wait for about 3 days for the issuance of Merchant ID or the MID * Information on how to set-up the processing will be sent to you </li>
<li>Testing phase will be conducted. Once finished, you can start with <a class="zem_slink" title="Credit card" href="http://en.wikipedia.org/wiki/Credit_card" rel="wikipedia">credit card</a> processing </li>
</ul>
<p>Those international companies like <a class="zem_slink" title="United States" href="http://maps.google.com/maps?ll=38.8833333333,-77.0166666667&amp;spn=10.0,10.0&amp;q=38.8833333333,-77.0166666667 (United%20States)&amp;t=h" rel="geolocation">U.S.</a> based, <a class="zem_slink" title="Offshore company" href="http://en.wikipedia.org/wiki/Offshore_company" rel="wikipedia">offshore company</a>, and Panamanian corporation, who have Middle East Offshore Merchant Account Eligibility can apply. The requirements for this offshore merchant account include, but not limited to the following:     </p>
<ul>
<li>Existing operational company </li>
<li>Valid address and a contact number </li>
<li>Own internet domain </li>
<li>Active bank account
</li>
</ul>
<p>There are still other merchant account service providers that cater to merchants in other countries outside U.S. Although they have different requirements, but the procedures involved during application are more or less the same. Other service processors are the following: StradaFee, <a class="zem_slink" title="Citibank" href="http://www.citibank.com/" rel="homepage">Citibank</a>, and DeltaQuest &#8211; all handle transactions from various countries like Europe, Middle East, Asia, UK, Africa, and North and South America. With their multi-currencies service, applying for a merchant account outside the country of residence is no longer a problem. </p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:84aaf21b-cb31-4fd9-9eee-1e978fc60bf2" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/merchant+account" rel="tag">merchant account</a></div>
</p>
<hr />For more information on merchant account,<a href="http://static.zemanta.com/plugins/livewriter/14/a%20href=" http:="http:" www.takecardstoday.com="www.takecardstoday.com" a="a">merchant account</a> from <a href="http://www.takecardstoday.com/">take cards today</a>.   </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>   </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=76996">http://www.submityourarticle.com/a.php?a=76996</a>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/dcf7ca2d-d0db-4ab1-9d4f-8f1660a5243e/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=dcf7ca2d-d0db-4ab1-9d4f-8f1660a5243e" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/10/how-your-business-can-accept-credit-card-payments/" rel="bookmark">How Your Business Can Accept Credit Card Payments</a></li><li><a href="http://www.dijexi.com/2009/07/best-wordpress-plugin-for-facebook/" rel="bookmark">Best WordPress Plugin for Facebook</a></li><li><a href="http://www.dijexi.com/2009/07/030-business-partner-setup/" rel="bookmark">030 Business Partner Setup</a></li><li><a href="http://www.dijexi.com/2009/07/php-library-to-connect-to-ldap-server/" rel="bookmark">PHP Library to Connect to LDAP Server</a></li><li><a href="http://www.dijexi.com/2009/08/codeigniter-tutorial-creating-accounting-application-part-3-er-diagram-and-creating-database/" rel="bookmark">CodeIgniter Tutorial: [Creating Accounting Application] Part 3 ER Diagram and Creating Database</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F01%2Fhow-to-apply-for-a-merchant-account-when-residing-in-the-middle-east%2F&amp;linkname=How%20to%20Apply%20for%20a%20Merchant%20Account%20When%20Residing%20in%20the%20Middle%20East"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/01/how-to-apply-for-a-merchant-account-when-residing-in-the-middle-east/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans IDE 6.8 Released</title>
		<link>http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/</link>
		<comments>http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 03:39:45 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[IT News]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[Netbeans]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/</guid>
		<description><![CDATA[NetBeans™ IDE 6.8 offers best-in-class support for the entire Java™ Platform Enterprise Edition 6 specification and the Sun GlassFish™ Enterprise Server v3 platform. Simplify Java application development with Java EE 6 language features: less XML configuration and more POJO-like development; easily target and deploy to GlassFish v3. NetBeans IDE continues to be the tool of [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p><b>NetBeans™ IDE 6.8</b> offers best-in-class support for the <b>entire Java™ Platform Enterprise Edition 6 specification</b> and the <b>Sun GlassFish™ Enterprise Server v3 platform</b>. Simplify Java application development with Java EE 6 language features: less XML configuration and more POJO-like development; easily target and deploy to GlassFish v3. </p>
<p><b>NetBeans IDE</b> continues to be the tool of choice for top development languages, and this release includes new features and improved support for <b>PHP 5.3</b> and the <b>Symfony framework</b>, the latest <b>JavaFX™ SDK 1.2.1, C/C++, Ruby, Maven</b> and more. Integration with <b>Project Kenai</b>, a collaborative environment for hosting open-source projects, now offers full support for <b>JIRA</b>, as well as improved issue tracker integration. As always, the <b>NetBeans Platform</b> provides a rock-solid application framework that can save years of development time. </p>
<p>Supporting Java EE 6 improvements first, NetBeans IDE 6.8 boosts developer productivity and lets developers take advantage of today&#8217;s latest languages and platform features. </p>
<p>NetBeans IDE 6.8 is available in English, Brazilian-Portuguese, Japanese and Simplified Chinese. </p>
<p><a href="http://netbeans.org/downloads/index.html?cid=928534"><img alt="Get Tomorrow Today with NetBeans IDE 6.8!" src="http://netbeans.org/images_www/newsletter/6.8/header.jpg" width="675" height="153" /></a></p>
<p> <span id="more-1294"></span><br />
<h2>Release Highlights</h2>
<p>Java Enterprise Edition 6</p>
<ul>
<li>JavaServer™ Faces 2.0 for web interfaces and the ability to use EJB™ software in web applications </li>
<li>Java Persistence JPA 2.0 and RESTful web services support </li>
<li>Deployment, debugging and profiling with GlassFish v3 </li>
</ul>
<p>JavaServer Faces 2.0 (Facelets)</p>
<ul>
<li>Code completion, error hints, namespace completion, documentation popups, and tag auto-import for Facelets </li>
<li>Editor support for Facelets libraries, composite components, expression language </li>
</ul>
<p>JavaFX</p>
<ul>
<li>Support for JavaFX SDK 1.2.1 </li>
<li>Improved navigation, code completion, and editor hints </li>
</ul>
<p>PHP</p>
<ul>
<li>PHP 5.3 support </li>
<li>Symfony framework support </li>
</ul>
<p>Kenai.com: Connected Developer</p>
<ul>
<li>Full JIRA support </li>
<li>Improved issue tracker integration </li>
</ul>
<p>Maven</p>
<ul>
<li>Improved support for Java EE 6, Groovy, Scala projects </li>
<li>Customizable dependency exclusion in dependency graph </li>
</ul>
<p>Ruby</p>
<ul>
<li>Support for Rails 2.3.4 apps with dispatchers, JRuby 1.4, Ruby 1.9 debugging, RSpec 1.2.7 </li>
<li>Improved rename refactoring, type inference, and navigation </li>
</ul>
<p>C/C++</p>
<ul>
<li>Profiling: New Thread Microstates indicator and Thread Details view </li>
<li>Faster synchronization during remote development </li>
</ul>
<h2>Learn More</h2>
<ul>
<li><a href="http://netbeans.org/community/releases/68/">NetBeans IDE 6.8 Release Information</a></li>
<li><a href="http://netbeans.org/kb/index.html">NetBeans IDE 6.8 Tutorials and Videos</a></li>
<li><a href="http://platform.netbeans.org/">NetBeans Platform 6.8</a></li>
<li><a href="http://netbeans.org/community/index.html">NetBeans Community</a></li>
<li><a href="http://twitter.com/netbeans">NetBeans on Twitter</a></li>
<li><a href="http://planetnetbeans.org/">Planet NetBeans</a></li>
<li><a href="https://channelsun.sun.com/category/playlist?id=81">NetBeans on ChannelSun</a></li>
</ul>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:797a2db2-ac8b-4a7f-8d96-73eb544c29d5" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/netbeans" rel="tag">netbeans</a>,<a href="http://technorati.com/tags/ide" rel="tag">ide</a>,<a href="http://technorati.com/tags/java" rel="tag">java</a>,<a href="http://technorati.com/tags/Software+Development" rel="tag">Software Development</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/07/best-free-development-tools-and-editors-software/" rel="bookmark">Best Free Development Tools and Editors Software</a></li><li><a href="http://www.dijexi.com/2009/06/joomla-15-mengganti-footer/" rel="bookmark">Joomla 1.5: Mengganti Footer</a></li><li><a href="http://www.dijexi.com/2009/07/zero-day-vulnerability-hits-microsoft-directshow/" rel="bookmark">Zero Day Vulnerability Hits Microsoft DirectShow</a></li><li><a href="http://www.dijexi.com/2009/08/zend-studio-7-0-released/" rel="bookmark">Zend Studio 7.0 Released</a></li><li><a href="http://www.dijexi.com/2010/02/funambol-mobile-open-source-book-released/" rel="bookmark">Funambol Mobile Open Source Book Released</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F12%2Fnetbeans-ide-6-8-released%2F&amp;linkname=NetBeans%20IDE%206.8%20Released"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Sign a MIDlet</title>
		<link>http://www.dijexi.com/2009/12/how-to-sign-a-midlet/</link>
		<comments>http://www.dijexi.com/2009/12/how-to-sign-a-midlet/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 10:34:34 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Funambol]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[certificate authority]]></category>
		<category><![CDATA[Certificate Signing Request]]></category>
		<category><![CDATA[CSR]]></category>
		<category><![CDATA[keytool]]></category>
		<category><![CDATA[Sign a Midlet]]></category>
		<category><![CDATA[thawte]]></category>
		<category><![CDATA[verisign]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/12/how-to-sign-a-midlet/</guid>
		<description><![CDATA[These are the required steps in summary to sign MIDlets with a certificate. Generate public/private key pairs. Generate Certificate Signing Request (CSR) and submit it to CA . Sign the MIDLet with the certificate. Here are the list of software required to accomplish the steps: Sun Java 2 SDK or JRE Sun Wireless Tool Kit [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>These are the required steps in summary to sign MIDlets with a certificate.</p>
<ol>
<li>Generate public/private key pairs. </li>
<li>Generate Certificate Signing Request (CSR) and submit it to CA . </li>
<li>Sign the MIDLet with the certificate. </li>
</ol>
<p>Here are the list of software required to accomplish the steps:</p>
<ol>
<li>Sun Java 2 SDK or JRE </li>
<li>Sun Wireless Tool Kit (WTK) </li>
</ol>
<h2>Generate public/private key pairs</h2>
<h3>Create a Keystore</h3>
<p>From the command line navigate to Java 2 SDK bin directory (if it is not in the PATH yet) and type the below command :</p>
<blockquote><p>keytool -genkey -keyalg rsa -keystore &lt;keystore_filename&gt; -alias &lt;alias_name&gt;</p>
</blockquote>
<p>It prompts you to enter a password for your keystore, your name, organization, and address. For example:</p>
<p> <span id="more-1292"></span><br />
<blockquote>
<p>C:\tmp&gt;<strong>keytool -genkey -keyalg rsa -keystore vitraining.keystore -alias vitraining        <br /></strong>Enter keystore password:&#160; <strong>1234567890</strong>       <br />What is your first and last name?       <br />&#160; [Unknown]:&#160; <strong>akhmad daniel        <br /></strong>What is the name of your organizational unit?       <br />&#160; [Unknown]:&#160; <strong>vitraining</strong>       <br />What is the name of your organization?       <br />&#160; [Unknown]:&#160; <strong>vitraining</strong>       <br />What is the name of your City or Locality?       <br />&#160; [Unknown]:&#160; <strong>bandung</strong>       <br />What is the name of your State or Province?       <br />&#160; [Unknown]:&#160; <strong>jawa barat        <br /></strong>What is the two-letter country code for this unit?       <br />&#160; [Unknown]:&#160; <strong>ID</strong>       <br />Is CN=akhmad daniel, OU=vitraining, O=vitraining, L=bandung, ST=jawa barat, C=ID       <br />correct?       <br />&#160; [no]:&#160; <strong>yes</strong> </p>
<p>Enter key password for &lt;vitraining&gt;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; (RETURN if same as keystore password):</p>
</blockquote>
<p>You will find the keystore file on the directory called <strong>vitraining.keystore</strong>.</p>
<p>&#160;</p>
<h3>List the generated keypairs </h3>
<p>To see your generated keypairs entry, type the below command :</p>
<blockquote><p>keytool -keystore &lt;keystore_filename&gt; –list</p>
</blockquote>
<p>For example:</p>
<blockquote><p>C:\tmp&gt;<strong>keytool -keystore vitraining.keystore -list        <br /></strong>Enter keystore password:&#160; <strong>1234567890</strong> </p>
<p>Keystore type: jks      <br />Keystore provider: SUN </p>
<p>Your keystore contains 1 entry </p>
<p>vitraining, Dec 14, 2009, keyEntry,      <br />Certificate fingerprint (MD5): CA:EE:0C:D6:64:4D:C3:A3:B9:92:9B:14:58:E0:A1:76</p>
</blockquote>
<p>&#160;</p>
<h2>Generate Certificate Signing Request (CSR) and submit it to CA</h2>
<p>Next, you need to generate a Certificate Signing Request (CSR) for the enrollment process.</p>
<h3>Generate CSR</h3>
<p>Type the below command to create a CSR for the key pair in the keystore:</p>
<blockquote><p>keytool –certreq –file &lt;certreq_filename.csr&gt; –keystore &lt;keystore_filename&gt; -alias &lt;alias_name&gt;</p>
</blockquote>
<p>For example:</p>
<blockquote><p>C:\tmp&gt;<strong>keytool -certreq -file vitraining.csr -keystore vitraining.keystore -alias vitraining</strong>       <br />Enter keystore password:&#160; <strong>1234567890</strong></p>
</blockquote>
<p>You will find a new CSR file in the directory called <strong>vitraining.csr</strong>. Submit the generated CSR to CA.</p>
<p>&#160;</p>
<h2>Sign the MIDLet with the certificate</h2>
<p>Once the CA has approved your request, you will receive the certificate, usually by email containing the certificate. You need to copy paste or save the attachment of the certificate file to a file. The next steps are:</p>
<h3>Import the certificate to your keystore</h3>
<p>Use the below command </p>
<blockquote><p>keytool –import –trustcacerts –keystore &lt;keystore_filename&gt; -alias &lt;alias_name&gt; -file &lt;cert_filename&gt;</p>
</blockquote>
<p> For example:</p>
<blockquote><p>C:\tmp&gt;<strong>keytool -import -trustcacerts -keystore vitraining.keystore -alias vitraining -file vitraining.cert</strong>      <br />Enter keystore password:&#160; <strong>1234567890       <br /></strong>Certificate reply was installed in keystore</p>
</blockquote>
<p>Now the keystore is filled up with the valid certificate.</p>
<p>&#160;</p>
<h3>Sign the JAD file </h3>
<p>Use JadTool utility to sign a JAR file by adding both of the certificate and the JAR file’s digital signature to the Java Application Descriptor (JAD) file, the process will be :</p>
<h4>a. Adding the certificate to JAD </h4>
<p>To add the certificate as the value of an attribute named <kbd>MIDlet-Certificate-</kbd><i>m</i><kbd>-</kbd><i>n,</i> we will use JadTool.jar. Here <i>m</i> is the number of the certificate chain, and <i>n</i> is an integer that, for new certificates, begins at one and increments by one each time you add a new certificate to the JAD file.</p>
<blockquote><p>java -jar %WTK_HOME%\bin\JadTool.jar -addcert -keystore &lt;keystorename&gt; -alias &lt;aliasname&gt; -storepass &lt;password&gt; -inputjad &lt;input_jadfile&gt; -outputjad &lt;output_jadfile&gt;</p>
</blockquote>
<p>For example:</p>
<blockquote><p>java -jar %WTK_HOME%\bin\JadTool.jar -addcert -keystore vitraining.keystore -alias vitraining -storepass 1234567890 -inputjad test.jad -outputjad test_t.jad</p>
</blockquote>
<p>When succeeded, you should see the below attributes added to your output JAD file (in the example test_t.jad):</p>
<blockquote><p>MIDlet-Certificate-1-1</p>
<p>MIDlet-Certificate-1-2</p>
<p>MIDlet-Certificate-1-3 </p>
</blockquote>
<h4>b. Adding JAR’s digital signature to the JAD</h4>
<p>This last process will get the JAR’s digital signature, stores it as the value of the <kbd>MIDlet-Jar-RSA-SHA1</kbd><a name="50647048_marker-1002232"></a> attribute of the output JAD file.</p>
<blockquote><p>java -jar %WTK_HOME%\bin\jadtool.jar -addjarsig -jarfile &lt;jar_file&gt; -keystore &lt;keystorename&gt; -alias &lt;aliasname&gt; -storepass &lt;password&gt; -keypass &lt;password&gt; -inputjad &lt;input_jadfile&gt; -outputjad &lt;output_jadfile&gt;</p>
</blockquote>
<p>The default value for -jarfile is the MIDlet-Jar-URL property in the JAD file. For example:</p>
<blockquote><p>java -jar %WTK_HOME%\bin\jadtool.jar -addjarsig -jarfile test.jar -keystore vitraining.keystore -alias vitraining -storepass 1234567890 -keypass 1234567890 -inputjad test.jad –outputjad test_t.jad</p>
</blockquote>
<h2>Conclusion</h2>
<p>Here is to conclude:</p>
<ol>
<li>keystore file is the file you created for storing public and private key pairs</li>
<li>csr file is the file you created for submission to get a valid certificate from CA</li>
<li>after getting the certificate, save it to a file, and the store it to back your keystore file</li>
<li>the keystore file is ready for use for signing JAR and JAD files</li>
</ol>
<p>&#160;</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e5519c91-1061-4d75-ba86-c4d255b4f4d7" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Sign+a+Midlet" rel="tag">Sign a Midlet</a>,<a href="http://technorati.com/tags/keytool" rel="tag">keytool</a>,<a href="http://technorati.com/tags/verisign" rel="tag">verisign</a>,<a href="http://technorati.com/tags/Certificate+Signing+Request" rel="tag">Certificate Signing Request</a>,<a href="http://technorati.com/tags/CSR" rel="tag">CSR</a>,<a href="http://technorati.com/tags/thawte" rel="tag">thawte</a>,<a href="http://technorati.com/tags/certificate+authority" rel="tag">certificate authority</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/08/j2me-current-date-and-time/" rel="bookmark">J2ME Current date and Time</a></li><li><a href="http://www.dijexi.com/2010/08/creating-gps-tracker-application-on-j2me-phones/" rel="bookmark">Creating GPS Tracker Application on J2ME Phones</a></li><li><a href="http://www.dijexi.com/2009/07/best-wordpress-plugin-for-facebook/" rel="bookmark">Best WordPress Plugin for Facebook</a></li><li><a href="http://www.dijexi.com/2009/09/google-reinvents-the-phone-with-google-voice/" rel="bookmark">Google Reinvents the Phone with Google Voice</a></li><li><a href="http://www.dijexi.com/2010/11/what-is-autoblogging-all-about/" rel="bookmark">What is Autoblogging All About?</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F12%2Fhow-to-sign-a-midlet%2F&amp;linkname=How%20to%20Sign%20a%20MIDlet"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/12/how-to-sign-a-midlet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Newspaper Articles : Increase Traffic Drastically! Turn Your News Article to Video Details Here!</title>
		<link>http://www.dijexi.com/2009/11/newspaper-articles-increase-traffic-drastically-turn-your-news-article-to-video-details-here/</link>
		<comments>http://www.dijexi.com/2009/11/newspaper-articles-increase-traffic-drastically-turn-your-news-article-to-video-details-here/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 01:16:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[article video]]></category>
		<category><![CDATA[newspaper article]]></category>
		<category><![CDATA[newspaper articles]]></category>
		<category><![CDATA[video article]]></category>
		<category><![CDATA[video articles]]></category>
		<category><![CDATA[video directories]]></category>
		<category><![CDATA[video marketing]]></category>
		<category><![CDATA[video stream]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/11/newspaper-articles-increase-traffic-drastically-turn-your-news-article-to-video-details-here/</guid>
		<description><![CDATA[Online videos have emerged in the last few years to become one of the preferred methods to present your message to the on line community. Every major and even small newspapers have a online presence these days. There are thousands of newspaper articles that are published online on any given day. And there is a [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Online videos have emerged in the last few years to become one of the preferred methods to present your message to the on line community. Every major and even small newspapers have a online presence these days. There are thousands of newspaper articles that are published online on any given day. And there is a considerable amount of traffic that is driven from
<div style="margin: 1em; width: 260px; display: block; float: right" class="zemanta-img" jquery1257285970640="12102"><a href="http://www.crunchbase.com/product/veoh"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Image representing Veoh as depicted in CrunchBase" src="http://www.crunchbase.com/assets/images/resized/0000/4381/4381v8-max-250x250.jpg" width="250" height="139" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image via <a href="http://www.crunchbase.com/">CrunchBase</a></p>
</p></div>
<p> these posted articles. Now with the emergence of Video directories such as <a class="zem_slink" title="YouTube" href="http://www.youtube.com/" rel="homepage">Youtube</a> you are able to increase the online traffic of your newspaper articles drastically by combining your article marketing and video marketing together. There are statistics that show there are 50,000 viewings of videos on Youtube daily. There are also statics that show Youtube has over 150,000 videos submitted to their website on a daily basis.   </p>
<p>This amount of traffic is to big to ignore if you have a import message you want to convey in your online newspaper articles. In my article today I want to present to you 3 simple steps to boost the chances of your news articles on video being watched on Youtube and other video directories. <a class="zem_slink" title="Google" href="http://google.com/" rel="homepage">Google</a> seems to love video streams so if you learn what google looks for when and the methods google uses to list your video articles is very similar to other standard directory listings. With some basic submission tips you can tap into both article and video marketing medias with even a stronger voice to the online community.   <br /><span id="more-1291"></span>  <br />Step# 1 Create a keyword rich tittle for your article video from keywords that are used in your newspaper article.   </p>
<p>When you create video articles you need to optimize your videos tittle just as you would optimize the tittle of a newspaper article if you were submitting it to various newspaper and article directories. Only know you will be submitting to video directories such as,Youtube, Blim.tv, Howcast, <a class="zem_slink" title="Photobucket" href="http://www.photobucket.com/" rel="homepage">Photobucket</a>, <a class="zem_slink" title="Veoh" href="http://veoh.com/" rel="homepage">Veoh</a>, Vsocial, <a class="zem_slink" title="Dailymotion" href="http://dailymotion.com/" rel="homepage">Dailymotion</a>, <a class="zem_slink" title="Metacafe" href="http://metacafe.com/" rel="homepage">Metacafe</a>, <a class="zem_slink" title="Revver" href="http://revver.com/" rel="homepage">Revver</a>, <a class="zem_slink" title="Viddler" href="http://viddler.com/" rel="homepage">Viddler</a>, <a class="zem_slink" title="Yahoo!" href="http://www.yahoo.com/" rel="homepage">Yahoo</a> video, <a class="zem_slink" title="Facebook" href="http://facebook.com/" rel="homepage">Face Book</a>, Myspace Video, and Sclipo. For example if you have a online newspaper article about distance running, then the the first two words of your tittle would be &quot;distance Running :&quot; followed by a space and a Colon. Then some where before the end of the tittle use a secondary key word phrase that supports your article video. Here&#8217;s an example of a tittle that would work &quot;Distance Running: Tips On How To Be Competitive In a 5k Race&quot;   </p>
<p>Step# 2 Optimize your video article description using keyword rich content.   </p>
<p>Just like in your tittle google looks for keywords that are are about your video article. Make sure the keywords you use are actually used in article video. Video directories such as Youtube, Blim.tv, Howcast, Photobucket, Veoh, Vsocial, Dailymotion, Metacafe, Revver, Viddler, Yahoo video, Face Book, Myspace Video,and Sclipo Will also use keywords from your description to locate specific videos when people do a search.   </p>
<p>Step# 3 Using Video tags that relate to your video article.   </p>
<p>It is very important do not overlook this step when you submit to your article video to the video directories.Many people overlook the video tags when they submit their article videos to the video directories and this is a serious mistake if you want to get your video article watch numerous times at the video directories. At minimum you need to use tags such as the main keyword phrases you used in your tittle and description. Ideally you need to identify at least 5 to 7 keywords, or keyword phrase that are used in your article video. The video directories use these tags to list relevant videos when people search for a specific video topic they want to see.   </p>
<p>Well that concludes my article about video newspaper articles. I hope the information we have provided will be useful.Have a nice day!
</p>
<hr />Visit here If you want more details about <a title="newspaper article video" href="http://www.oldfishinghole.com/article-marketing-strategy.html" mce_href="http://www.oldfishinghole.com/article-marketing-strategy.html">newspaper article videos</a> Your article can now talk Revolutionary software turns your articles to video in 3 minutes! Take A Free Test Drive Today! <a href="http://www.oldfishinghole.com/article-marketing-strategy.html" mce_href="http://www.oldfishinghole.com/article-marketing-strategy.html">visit here</a> for details  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=68219">http://www.submityourarticle.com/a.php?a=68219</a>
</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5c6a27e3-66a1-4ceb-bccc-baa30c319d0e" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/video+directories" rel="tag">video directories</a>,<a href="http://technorati.com/tags/article+video" rel="tag">article video</a>,<a href="http://technorati.com/tags/video+article" rel="tag">video article</a>,<a href="http://technorati.com/tags/newspaper+articles" rel="tag">newspaper articles</a>,<a href="http://technorati.com/tags/video+articles" rel="tag">video articles</a>,<a href="http://technorati.com/tags/newspaper+article" rel="tag">newspaper article</a>,<a href="http://technorati.com/tags/video+stream" rel="tag">video stream</a>,<a href="http://technorati.com/tags/video+marketing" rel="tag">video marketing</a></div>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://seowithfries.com/2009/go-viral-on-web-2-0-one-billion-served/">Go Viral on Web 2.0-One Billion served</a> (seowithfries.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.buildabetterblog.com/2009/10/visibility-via-video-how-to-extend-your-reach-online.html">Visibility via Video: How to Extend Your Reach Online</a> (buildabetterblog.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.write4kids.com/blog/2009/08/01/our-top-posts-from-the-past-month-9/">Our Top Posts From the Past Month</a> (write4kids.com)</li>
</ul></div>
</p>
</p>
</p>
</p>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/85025026-68b0-42ab-a1f8-ccfddfbb6999/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=85025026-68b0-42ab-a1f8-ccfddfbb6999" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/" rel="bookmark">Web Site Traffic Promotion - How To Promote Your Web Site To Get Free Traffic</a></li><li><a href="http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/" rel="bookmark">How To Generate Free Website Traffic FAST</a></li><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/internet-selling-for-newbies-the-4-fundamentals/" rel="bookmark">Internet Selling For Newbies - The 4 Fundamentals</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F11%2Fnewspaper-articles-increase-traffic-drastically-turn-your-news-article-to-video-details-here%2F&amp;linkname=Newspaper%20Articles%20%3A%20Increase%20Traffic%20Drastically%21%20Turn%20Your%20News%20Article%20to%20Video%20Details%20Here%21"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/11/newspaper-articles-increase-traffic-drastically-turn-your-news-article-to-video-details-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Site Traffic Promotion &#8211; How To Promote Your Web Site To Get Free Traffic</title>
		<link>http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/</link>
		<comments>http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 01:13:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[traffic promotion]]></category>
		<category><![CDATA[web site traffic promotion]]></category>
		<category><![CDATA[website traffic promotion]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/</guid>
		<description><![CDATA[If you come online and put up a website or blog, but feel that your website is just another drop in the ocean and can&#8217;t stick out among the millions of other websites trying to get the attention of the rest of the world. Well, attracting traffic is an easy task when you know how [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>If you come <a class="zem_slink" title="World Wide Web" href="http://en.wikipedia.org/wiki/World_Wide_Web" rel="wikipedia">online</a> and put up a website or blog, but feel that your website is just another drop in the ocean and can&#8217;t stick out among the millions of other websites trying to get the attention of the rest of the world. Well, attracting traffic is an easy task when you know how the fundamentals of generating traffic works.     </p>
<div style="margin: 1em; width: 160px; display: block; float: right" class="zemanta-img" jquery1257285970640="5064"><a href="http://www.daylife.com/image/07obfi96Kycwb?utm_source=zemanta&amp;utm_medium=p&amp;utm_content=07obfi96Kycwb&amp;utm_campaign=z1"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="CHICAGO - FEBRUARY 23:  Google employees wait ..." src="http://cache.daylife.com/imageserve/07obfi96Kycwb/150x100.jpg" width="150" height="100" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.daylife.com/source/Getty_Images">Getty Images</a> via <a href="http://www.daylife.com/">Daylife</a></p>
</p></div>
<p>Since there are basically 3 ways to drive more traffic; Paying for it, Creating it, and Borrowing it you have a few choices when it comes to adding more traffic. This article will show you a few <a class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">web site</a> traffic promotion strategies that are completely free in the &quot;create traffic&quot; area.     </p>
<p>The first thing you must understand when it comes to get more <a class="zem_slink" title="website traffic" href="http://www.freetrafficsystem.com/" rel="homepage">free traffic</a> it&#8217;s the simple fact that thousands of people are just like you, wanting the same visitors as you do. You have to differenatiate yourself by becoming more valuable than your competitors. In order to add value to people&#8217;s lives you must know what they want. Therefor you are likely doing your traffic generation wrong. You are wondering how you can &quot;get more traffic&quot; when in reality you have to attract it by adding value to their life. </p>
<p>&#160;</p>
</p>
<p> <span id="more-1290"></span>
<p>Web site traffic promotion is easy when you follow these few methods to add value:     </p>
<p>* Creating and writing valuable articles.     </p>
<p>* Uploading and promoting videos.     </p>
<p>* Write and share a blog with tips and tricks.     </p>
<p>* Become active in <a class="zem_slink" title="Social media" href="http://www.wikinvest.com/concept/Social_media" rel="wikinvest">social media</a> and become an attractive <a class="zem_slink" title="Force" href="http://en.wikipedia.org/wiki/Force" rel="wikipedia">force</a> that gets the attention of your <a class="zem_slink" title="Target market" href="http://en.wikipedia.org/wiki/Target_market" rel="wikipedia">target market</a>.     </p>
<p>These are some of the web site traffic promotion strategies that I personally use to promote my 60+ websites, but there are many more ways to use the internet to share a message you believe in. <a class="zem_slink" title="Video" href="http://en.wikipedia.org/wiki/Video" rel="wikipedia">Video</a> is one of the most powerful ways that I attract traffic.     </p>
<p>The reason video works so well is because of the instant connection you can create between yourself and a potential visitor, and if your video has enough value it can spread virally and add thousands of visitors to your websites.     </p>
<p>The reason I focus highly on video is because the sheer power of <a class="zem_slink" title="YouTube" href="http://www.youtube.com/" rel="homepage">YouTube</a> is so amazing. A keword that is hard to rank for in <a class="zem_slink" title="Google" href="http://google.com/" rel="homepage">Google</a> with millions of competing pages can easily be dominated on YouTube and other <a class="zem_slink" title="Video hosting service" href="http://en.wikipedia.org/wiki/Video_hosting_service" rel="wikipedia">video sharing</a> websites. So if you are not using video in your traffic promotion right now you&#8217;d be well of giving it a good try!     </p>
<p>You should also submit articles as often as you can. They can be short and informative, but bring a lot of free targeted traffic to your websites. </p>
</p>
<hr />Learn more <a href="http://www.websitetrafficpromotion.net/">web site traffic promotion</a> strategies by visiting <a href="http://www.websitetrafficpromotion.net/">http://www.websitetrafficpromotion.ne</a>t right now!  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=71595">http://www.submityourarticle.com/a.php?a=71595</a>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://socialwebschool.com/?p=280">Three steps to getting started in Twitter</a> (socialwebschool.com) </li>
<li class="zemanta-article-ul-li"><a href="http://bigdaddyrichard-swirlingthoughts.blogspot.com/2009/11/from-great-minds-comes-great-ideas.html">From Great Minds Comes Great Ideas &#8211; You&#8217;ll Find Them All At Great Minds Design</a> (bigdaddyrichard-swirlingthoughts.blogspot.com) </li>
<li class="zemanta-article-ul-li"><a href="http://techie-buzz.com/webmaster-tips/see-the-technologies-behind-a-website-with-sitonomy.html">See The Technologies Behind A Website With Sitonomy</a> (techie-buzz.com)</li>
<li class="zemanta-article-ul-li"><a href="http://blogavenues.blogspot.com/2009/11/create-and-post-unlimited-classified.html">Post unlimited free classified ads.</a> (blogavenues.blogspot.com)</li>
</ul></div>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/85025026-68b0-42ab-a1f8-ccfddfbb6999/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=85025026-68b0-42ab-a1f8-ccfddfbb6999" /></a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:3e3dcfee-d386-4e19-8907-f99a796651a3" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/web+site+traffic+promotion" rel="tag">web site traffic promotion</a>,<a href="http://technorati.com/tags/traffic+promotion" rel="tag">traffic promotion</a>,<a href="http://technorati.com/tags/website+traffic+promotion" rel="tag">website traffic promotion</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/" rel="bookmark">Driving Traffic Into A Brand New Website Within 24 hours</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li><li><a href="http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/" rel="bookmark">How To Create Your Own Automated Income System</a></li><li><a href="http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/" rel="bookmark">How To Generate Free Website Traffic FAST</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F11%2Fweb-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic%2F&amp;linkname=Web%20Site%20Traffic%20Promotion%20%26%238211%3B%20How%20To%20Promote%20Your%20Web%20Site%20To%20Get%20Free%20Traffic"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Generate Free Website Traffic FAST</title>
		<link>http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/</link>
		<comments>http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 01:10:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[online business]]></category>
		<category><![CDATA[reports]]></category>
		<category><![CDATA[sales]]></category>
		<category><![CDATA[strategies]]></category>
		<category><![CDATA[strategy]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[visitors]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/</guid>
		<description><![CDATA[Copyright (c) 2009 Willie Crawford Image by Kansir via Flickr It goes without saying that if you don&#8217;t have website traffic, the other components of your web business can&#8217;t work very effectively. Without eyeballs on your sales letter, you won&#8217;t make any sales! There are many ways to generate fast free website traffic, but many [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Copyright (c) 2009 Willie Crawford   </p>
<div style="margin: 1em; display: block; float: right" class="zemanta-img"><a href="http://www.flickr.com/photos/86499133@N00/159726036"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Google Analytics" src="http://farm1.static.flickr.com/44/159726036_e90f636d35_m.jpg" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.flickr.com/photos/86499133@N00/159726036">Kansir</a> via Flickr</p>
</p></div>
<p>It goes without saying that if you don&#8217;t have <a class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">website</a> <a class="zem_slink" title="Web traffic" href="http://en.wikipedia.org/wiki/Web_traffic" rel="wikipedia">traffic</a>, the other components of your web business can&#8217;t work very effectively. Without eyeballs on your sales letter, you won&#8217;t make any sales!    </p>
<p>There are many ways to generate fast free website traffic, but many of them aren&#8217;t readily available to the average, lesser-known marketer.    </p>
<p>Joint ventures are an excellent way to get tons of others to send you there traffic. However, joint ventures hinge upon relationships/connections, and many of the people with the most traffic have tons of their own products to promote. Those who own large lists are also approached about joint ventures so often that they may have commitments that extend out past six months.</p>
<p>&#160;</p>
<p> <span id="more-1289"></span>
<p>If you do have a large list, getting immediate traffic to your website can be as simple as sending a compelling email. However, it takes time to build a quality list. It also takes time to build strong relationships and trust with your list members.    </p>
<p>Another one of my favorite ways to generate lots of <a class="zem_slink" title="website traffic" href="http://www.freetrafficsystem.com/" rel="homepage">free traffic</a> is by creating an inexpensive product and then allowing others to selling it and keep 100% of the profit. However, that does require a product on a really hot topic, and you still have to recruit affiliates.    </p>
<p>You are also giving away 100% of the money on the sale (sacrificing early profits), and your goal there is not so much traffic but to build a list. I do often do this, using a script called Rapid Action Profits, which deposits proceed from the sale directly into my affiliates Paypal accounts while adding the new subscriber to my list automatically.    </p>
<p>However, for generating traffic that is free, fast, and even long-term, I recommend creating lots of content and putting it in the path of the <a class="zem_slink" title="Web search engine" href="http://en.wikipedia.org/wiki/Web_search_engine" rel="wikipedia">search engines</a>. In fact, I often do this when I&#8217;m launching a new product, or even promoting a new affiliate product. Here are the down and dirty steps that I take:    </p>
<p>1) Do your keyword research, striving to identify the &quot;buying keywords&quot; that your target customers are using. One easy way to do that is to use the &quot;<a class="zem_slink" title="Google" href="http://google.com/" rel="homepage">Google</a> External Keyword Tool&quot; to research which keywords get the most searches. This tool is free to use, and will also suggest related keywords to you.    </p>
<p>What you are looking for is evidence that people are searching on a given phrase, and that those people are spending money. The Google External Keyword Tool will tell you this.    </p>
<p>You can also enter a keyword phrase that you plan to target into the regular Google search box, and look at how many Google AdWords ads display on the right side of the page. These are people paying for each click from people who search on that term, and then click through to their sites. Presumably, they wouldn&#8217;t pay for those clicks unless these customers were spending money.    </p>
<p>2) Use your target keywords to craft titles for 20 articles. In addition to the keywords make sure that your title also promises some benefit. The article title is what&#8217;s going to get you the most traction in the search engines.    </p>
<p>3) Actually write those 20 articles. They can be as short as 400 words. If you have trouble writing, go to several of the bigger article directories and read what others have written on the topic. Also Google the keyword and look at what experts have had to say on the topic. Then write the articles.    </p>
<p>If you are still stumped, simply plug your mike into your computer and then talk about the topic. Most of us are certainly good at talking. Record your thoughts then go back and organize them and you have an article (or several articles).    </p>
<p>Add a resource box to the article that tells the reader to go to your site for more information, or resources (your product) on the topic. When linking back to your site, use your keyword as the anchor text where permitted.    </p>
<p>4) Turn each article into a video. The simplest way to do this is probably to put your main points on <a class="zem_slink" title="Microsoft PowerPoint" href="http://office.microsoft.com/powerpoint" rel="homepage">PowerPoint</a> slides. Then as you read your article, flip through the slides, and record it using Camtasia screen capture software. As easy as that, you have a movie.    </p>
<p>5) Turn each article into a podcast (an MP3). Just read the article and record it using software built right into your computer. You can also download free recording software for tons of places on the internet. One of my favorites is Audacity.    </p>
<p>6) Write several press releases using the article titles as your topic. Here you need to get a little creative, but as an example, for this article I would use, &quot;Website Traffic Expert Reveals How To Generate Free website Traffic Fast.&quot;    </p>
<p>These press releases are being written for SEO purposes, so the exact wording is not so critical. You are going to share several point in the press release and then you are going to link to one or two websites that you want to call attention to. Your links will use your keywords as the anchor text.    </p>
<p>7) Submit these articles, videos, podcasts, and press releases to article directories, <a class="zem_slink" title="Video hosting service" href="http://en.wikipedia.org/wiki/Video_hosting_service" rel="wikipedia">video sharing</a> sites, podcast aggregators, and free press release sites. Since I do this for numerous products and projects, I use an automated submission site. Being a very prolific <a class="zem_slink" title="Writer" href="http://en.wikipedia.org/wiki/Writer" rel="wikipedia">writer</a>, I have weeks when I may do 20-40 articles (while still running my web business).    </p>
<p>8) &quot;Rinse and repeat!&quot; What happens over time is that you&#8217;ll soon have so much content in cyberspace that you&#8217;ll achieve critical mass. At that point you&#8217;ll rank for your most important keywords as well as lots of longtail keywords. At that point, you&#8217;ll be amazed at the traffic.    </p>
<p>To speed up the process you can also post your articles to an optimized <a class="zem_slink" title="WordPress" href="http://wordpress.org/" rel="homepage">WordPress</a> blog that&#8217;s been configured to &quot;ping&quot; <a class="zem_slink" title="RSS" href="http://en.wikipedia.org/wiki/RSS" rel="wikipedia">RSS</a> aggregators, social networking sites, and bookmarking sites each time that you post. If you don&#8217;t know how to do that, it&#8217;s beyond the scope of this article, but most webmasters familiar with WordPress can set that up quickly for you. WordPress is very simple, yet very powerful.    </p>
<p>There you have it, &quot;How to generate free website traffic fast!&quot; Yes, there is work involved, but when you see the results, you&#8217;ll know that it was well worth it.     </p>
<p><b><i>About The Author:</i></b>    </p>
<p>Willie Crawford has been marketing online for 13 years, and used article marketing most of that time (writing over 1500 articles). His favorite tools for automatically distributing his articles, videos, podcasts, and press releases is the automated submission site: <a href="http://easypushbuttontraffic.com/" target="_blank">http://EasyPushButtonTraffic.com/</a>     </p>
<p>Read more articles written by: <a href="http://thephantomwriters.com/recent/author/willie-crawford.html" target="_blank">Willie Crawford</a>    </p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:89920e14-cc24-45f5-b40f-97c9eb595e94" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/website" rel="tag">website</a>,<a href="http://technorati.com/tags/websites" rel="tag">websites</a>,<a href="http://technorati.com/tags/online+business" rel="tag">online business</a>,<a href="http://technorati.com/tags/traffic" rel="tag">traffic</a>,<a href="http://technorati.com/tags/visitors" rel="tag">visitors</a>,<a href="http://technorati.com/tags/sales" rel="tag">sales</a>,<a href="http://technorati.com/tags/reports" rel="tag">reports</a>,<a href="http://technorati.com/tags/strategies" rel="tag">strategies</a>,<a href="http://technorati.com/tags/strategy" rel="tag">strategy</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.wealthyways4you.com/online-business/build-your-business-with-the-help-of-lead-generation">Build Your Business With The Help Of Lead Generation</a> (wealthyways4you.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.socialmediatoday.com/SMC/117644">How To Use LinkedIn Groups To Drive Website Traffic</a> (socialmediatoday.com)</li>
<li class="zemanta-article-ul-li"><a href="http://maketecheasier.com/create-a-video-channel-from-different-video-sites/2009/10/31">How to Create a Video Channel From Different Video Sharing Sites</a> (maketecheasier.com)</li>
</ul></div>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/85025026-68b0-42ab-a1f8-ccfddfbb6999/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=85025026-68b0-42ab-a1f8-ccfddfbb6999" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/" rel="bookmark">Driving Traffic Into A Brand New Website Within 24 hours</a></li><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li><li><a href="http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/" rel="bookmark">Web Site Traffic Promotion - How To Promote Your Web Site To Get Free Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/5-tips-to-create-a-free-website/" rel="bookmark">5 Tips To Create a Free Website</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F11%2Fhow-to-generate-free-website-traffic-fast%2F&amp;linkname=How%20To%20Generate%20Free%20Website%20Traffic%20FAST"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funambol for BlackBerry-like capabilities on cheap handsets</title>
		<link>http://www.dijexi.com/2009/10/funambol-for-blackberry-like-capabilities-on-cheap-handsets/</link>
		<comments>http://www.dijexi.com/2009/10/funambol-for-blackberry-like-capabilities-on-cheap-handsets/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 03:41:19 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Funambol]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[synchronization]]></category>
		<category><![CDATA[syncml]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/funambol-for-blackberry-like-capabilities-on-cheap-handsets/</guid>
		<description><![CDATA[The Funambol core project is a free and open source mobile synchronization server that provides push email, address book and calendar (PIM) data synchronization, and device management for wireless devices, leveraging standard protocols such as SyncML (as defined by Wikipedia). Using Funambol, we can have a BlackBerry-like features on cheap handsets which have at least [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The Funambol core project is a <a href="http://en.wikipedia.org/wiki/Free_software">free</a> and <a href="http://en.wikipedia.org/wiki/Open_source_software">open source</a> mobile synchronization server that provides <a href="http://en.wikipedia.org/wiki/Push_email">push email</a>, address book and calendar (<a href="http://en.wikipedia.org/wiki/Personal_information_manager">PIM</a>) data synchronization, and device management for wireless devices, leveraging standard protocols such as <a href="http://en.wikipedia.org/wiki/SyncML">SyncML</a> (as defined by Wikipedia). Using Funambol, we can have a <a href="http://en.wikipedia.org/wiki/BlackBerry">BlackBerry</a>-like features on cheap handsets which have at least J2ME and GPRS capabilities (well, almost all of them have this feature now). </p>
<div style="margin: 1em; width: 310px; display: block; float: right" class="zemanta-img" jquery1256095934296="5370"><a href="http://commons.wikipedia.org/wiki/Image:Several_mobile_phones.png"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Several mobile phones" src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Several_mobile_phones.png/300px-Several_mobile_phones.png" width="300" height="133" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image via <a href="http://commons.wikipedia.org/wiki/Image:Several_mobile_phones.png">Wikipedia</a></p>
</p></div>
<p>We can use Funambol to synchronize our email, address book, and calendar data from many kind of mobile devices (Windows Mobile, BlackBerry, Palm, iPod, iPhone, and any J2ME capable devices) and popular services on the web like Gmail, Facebook, MSN, and Yahoo, and even desktop applications like <a class="zem_slink" title="Microsoft Outlook" href="http://www.microsoft.com/outlook" rel="homepage">Ms Outlook</a>, Thunderbird, and <a class="zem_slink" title="IBM Lotus Notes" href="http://www.ibm.com/software/lotus/products/notes/" rel="homepage">Lotus Notes</a>. </p>
<p>It means that we can read, compose, and reply/forward emails from our mobile device with the same account as our GMail or Yahoo Mail. Using it’s push email technology, we can be notified by our cheap mobile phone when someone send us an email on our Gmail account. We can add a task or schedule a meeting on calendar using Outlook then we can see them on a cheap K320i Sony Ericsson mobile phone as well as on Gmail Task. Our contact address books will also be synchronized between all devices, services, and application that we use, meaning that our phone address book will be the same as our Yahoo, Outlook, or Gmail Contacts database. This is a very good solution for backing up valuable contact database especially for those who always lost his mobile phone easily (like me ;)).</p>
<p>Companies with large number of mobile employees and very tight schedule will take advantage by installing it’s own internal Funambol server, as the employees will be reminded always with it’s task and schedule as well as keep in contact with the headquarters using push email technologies. This can be achieved using the employees’ handsets that they already have.</p>
<p> <span id="more-1288"></span><br />
<h2>Components</h2>
<p>Funambol consists of several components:</p>
<ul>
<li>Funambol Data Synchronization Server: a mobile application server providing synchronization services for wireless clients and PCs, including push email. </li>
<li>Funambol Device Management: an OMA DM server to remotely manage mobile devices. </li>
<li>Funambol Connectors: gateways to file systems, databases, email systems, and applications for two-way synchronization with existing data assets. </li>
<li>Funambol Client Plug-ins: protocol extenders and clients for <a href="http://en.wikipedia.org/wiki/Microsoft_Office_Outlook">Microsoft Office Outlook</a>, <a href="http://en.wikipedia.org/wiki/Mozilla_Thunderbird">Mozilla Thunderbird</a> (experimental), <a href="http://en.wikipedia.org/wiki/Mozilla_Sunbird">Mozilla Sunbird</a> (experimental), <a href="http://en.wikipedia.org/wiki/Windows_Mobile">Windows Mobile</a>, <a href="http://en.wikipedia.org/wiki/BlackBerry">BlackBerry</a>, <a href="http://en.wikipedia.org/wiki/Palm_OS">Palm</a> and <a href="http://en.wikipedia.org/wiki/IPod">iPod</a> and <a href="http://en.wikipedia.org/wiki/IPhone">iPhone</a> so users can synchronize their email messages and <a href="http://en.wikipedia.org/wiki/Personal_information_manager">PIM</a> data (address book, calendar, tasks and notes) with the server. </li>
<li>Funambol <a class="zem_slink" title="Software development kit" href="http://en.wikipedia.org/wiki/Software_development_kit" rel="wikipedia">Software Development Kit</a>: tools to develop sometimes-connected mobile applications on devices (in <a href="http://en.wikipedia.org/wiki/Java_%28programming_language%29">Java</a> &#8211; J2SE and J2ME &#8211; and <a href="http://en.wikipedia.org/wiki/C%2B%2B">C++</a>) and to add data sources to the server. </li>
</ul>
<h2>How Does It Works?</h2>
<p>Funambol Data Synchronization servers listen on a specific port that act as a synchronization server between mobile devices, desktop applications, and web services. All these clients and Funambol use the same language, SyncML, to to the synchronization process. Funambol has its own database to store client user data, devices profile, services that the user have, email account, etc. Once setup, Funambol will keep checking on the users email account and when an email arrives on that account, Funambol will push that email to users’ handset which already installed with Funambol Client application. Using SyncML, users can add a task on their handset, then do the synchronization, and Funambol will process this task synchronization to other services that they have, for example to Gmail, Yahoo, or MSN. When they log in to Gmail, they will see the same task that they entered on their handset before.</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/10/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="funambol synchronization between mobile devices, gmail, yahoo, faceboo, outlook, thunderbird" border="0" alt="funambol synchronization between mobile devices, gmail, yahoo, faceboo, outlook, thunderbird" src="http://www.dijexi.com/wp-content/uploads/2009/10/image_thumb.png" width="504" height="235" /></a>&#160;</p>
<h2>System requirements</h2>
<p>Windows-based host</p>
<ul>
<li>Pentium 4 CPU, running at 1.8GHz </li>
<li>Windows 2000 Professional, Windows <a class="zem_slink" title="Windows XP" href="http://www.microsoft.com/windows/products/windowsxp/" rel="homepage">XP</a> Professional or Windows Vista </li>
<li>200 MB of free disk space </li>
<li>768 MB memory</li>
</ul>
<p>Linux-based host</p>
<ul>
<li>Pentium 4 CPU, running at 1.8GHz </li>
<li>No Linux version or publisher restrictions, at present </li>
<li>200 MB of free disk space </li>
<li>512 MB memory</li>
</ul>
<p>Public <a class="zem_slink" title="IP address" href="http://en.wikipedia.org/wiki/IP_address" rel="wikipedia">IP address</a> is a must, since mobile devices will need it to do the synchronization process.</p>
<h2>Business Opportunity</h2>
<ul>
<li>For System integrator and implementation service company: installing and implementing Funambol server for companies, telecommunication services, community. This can be charged by man-hour or contract based project. </li>
<li>Software developer: developing new module for integrating Funambol to an existing system, using Funambol SDKs. This can be charged by man-hour or contract based project. </li>
<li>Consultancy and Training on how to install, implement, integrating, development and extending Funambol: This can be charged by man-hour or contract based project. </li>
<li>Service Provider: for companies which run it’s own synchronization services for it’s own customers, Funambol provides Funambol Carrier Edition, which can be bought commercially and be customized to to suit the company’s logo, brand name, etc.</li>
</ul>
<h2>Where to go further</h2>
<ul>
<li><a href="http://www.funambol.com/">www.funambol.com</a> – official Funambol corporation website </li>
<li><a href="http://www.forge.funambol.org/">www.forge.funambol.org</a> – official Funambol Open Source website </li>
<li><a href="http://my.funambol.com/" target="_blank">my.Funambol.com</a> – free 90 days trial on how Funambol service looks like </li>
<li><a href="http://www.vitraining.com/">www.vitraining.com</a> – provides installation, implementation, integrating, development and extending Funambol services worldwide</li>
</ul>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:943f2e0b-f3a4-4489-afb7-496640056d89" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/funambol" rel="tag">funambol</a>,<a href="http://technorati.com/tags/syncml" rel="tag">syncml</a>,<a href="http://technorati.com/tags/synchronization" rel="tag">synchronization</a>,<a href="http://technorati.com/tags/company" rel="tag">company</a>,<a href="http://technorati.com/tags/services" rel="tag">services</a></div>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://techie-buzz.com/featured/send-100mb-attachments-yahoo-mail.html?utm_source=subscriber&amp;utm_medium=rss&amp;utm_campaign=rss">Send 100MB Attachments With Yahoo Mail</a> (techie-buzz.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.makeuseof.com/tag/10-productivity-tips-for-the-quickfire-outlook-2007-user/">10 Powerful Productivity Tips For The Quickfire Outlook 2007</a> (makeuseof.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.technologyreview.com/communications/23705/">Tying Down Android</a> (technologyreview.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.computerworld.com/s/article/9137755/E_Mail_Strategies_Attachments_Subject_Lines?source=rss_software">E-Mail Strategies: Attachments, Subject Lines</a> (computerworld.com)</li>
</ul></div>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/f8b03c5a-016f-4311-a32a-d97cb75f508f/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=f8b03c5a-016f-4311-a32a-d97cb75f508f" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/02/funambol-mobile-open-source-book-released/" rel="bookmark">Funambol Mobile Open Source Book Released</a></li><li><a href="http://www.dijexi.com/2009/07/wordpress-mobile-blogging-using-blackberry/" rel="bookmark">WordPress Mobile Blogging Using BlackBerry</a></li><li><a href="http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/" rel="bookmark">Driving Traffic Into A Brand New Website Within 24 hours</a></li><li><a href="http://www.dijexi.com/2009/07/ms-exchange-hosting-list/" rel="bookmark">MS Exchange Hosting List</a></li><li><a href="http://www.dijexi.com/2009/09/tips-for-using-the-rite-keywords-for-marketing-your-website/" rel="bookmark">Tips for using the rite keywords for marketing your website</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Ffunambol-for-blackberry-like-capabilities-on-cheap-handsets%2F&amp;linkname=Funambol%20for%20BlackBerry-like%20capabilities%20on%20cheap%20handsets"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/funambol-for-blackberry-like-capabilities-on-cheap-handsets/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What Is The Best Web Content Management Software</title>
		<link>http://www.dijexi.com/2009/10/what-is-the-best-web-content-management-software/</link>
		<comments>http://www.dijexi.com/2009/10/what-is-the-best-web-content-management-software/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 05:32:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[content management software]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/what-is-the-best-web-content-management-software/</guid>
		<description><![CDATA[Now that your site is up and running, you&#8217;ll need to be able to manage the content in the best way possible. There are a number of web content management software that you may want to take a look at to get the job done. Each program is tailored for both larger or smaller websites, [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Now that your site is up and running, you&#8217;ll need to be able to manage the <a class="zem_slink" title="Web content" href="http://en.wikipedia.org/wiki/Web_content" rel="wikipedia">content</a> in the best way possible. There are a number of web content management <a class="zem_slink" title="Computer software" href="http://en.wikipedia.org/wiki/Computer_software" rel="wikipedia">software</a> that you may want to take a look at to get the job done. Each program is tailored for both larger or smaller websites, and the content management tools that you&#8217;ll find will definitely help you to keep your site in order.     </p>
<p>In many cases, companies or businesses will create their own web content management software in order to keep all the content, graphics, and html codes on the site updated, but recently, there have been a number of companies that have created software that you may want to check out if you don&#8217;t have a technical support department quite yet.     </p>
<p>One of the web content management software programs that you may want to look into is <a class="zem_slink" title="TYPO3" href="http://www.typo3.com/" rel="homepage">Typo3</a>, which is an enterprise free management system. This software is <a class="zem_slink" title="Open Source" href="http://www.wikinvest.com/concept/Open_Source" rel="wikinvest">Open Source</a> as well, and has powerful tools that will keep your <a class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">website</a> looking its best with the latest content. Another enterprise management system that you may want to consider is <a class="zem_slink" title="Vignette Corporation" href="http://www.vignette.com/" rel="homepage">Vignette</a>. It is easy to install and understand, and could save your company a considerable amount of money as well. </p>
<p>&#160;</p>
<p> <span id="more-1281"></span>
<p>If you want to be able to deliver your website in the most convenient format possible, you may want to try the web content management software powered by DynaBase. This way, you can deliver the site in <a class="zem_slink" title="XML" href="http://en.wikipedia.org/wiki/XML" rel="wikipedia">XML</a> instead of <a class="zem_slink" title="HTML" href="http://en.wikipedia.org/wiki/HTML" rel="wikipedia">HTML</a> if need be. If you prefer HTML format, EGrail will write the HTML coding for you, and it will interact with the automatic data delivery system that is set up for your site, so you&#8217;ll be able to get news feeds on a regular basis.     </p>
<p>Of course, you want to make sure that all the content on your site is edited and accurate, and web content management software like <a class="zem_slink" title="RedDot" href="http://en.wikipedia.org/wiki/RedDot" rel="wikipedia">RedDot</a> will help you to get the job done. You can edit the documents that have been uploaded onto your site on the Web instead of having to use a word processing tool, and no HTML coding is required.     </p>
<p>You also want to make sure that you have access control when you&#8217;re choosing your software. This will prevent unauthorized users from making edits on your site, and could save your site from becoming &#8216;infected&#8217; with a virus. <a class="zem_slink" title="Content management system" href="http://en.wikipedia.org/wiki/Content_management_system" rel="wikipedia">Web content management</a> software can be found at your local electronic and computer stores in most cases. </p>
</p>
<hr />Indeed, many webdesign companies have their own <a href="http://www.webgenerator.nl/website-maken-cms-content-management-systeem.htm">content management systeem</a> . In case you need a site, or part of your site, in Dutch then you way want to check out the possibilities at <a href="http://www.webgenerator.nl/">website maken</a>  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=68600">http://www.submityourarticle.com/a.php?a=68600</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:28e9b822-5df4-4516-bb20-153781ea0562" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/content+management" rel="tag">content management</a>,<a href="http://technorati.com/tags/content+management+software" rel="tag">content management software</a>,<a href="http://technorati.com/tags/cms" rel="tag">cms</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://techhotspot.com/2009/09/18/getsimple/">GetSimple</a> (techhotspot.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.techcrunch.com/2009/09/15/tc50-crowdfusion-merges-the-best-features-of-blogs-wikis-and-more-into-one-unified-cms/">TC50: CrowdFusion Merges The Best Features Of Blogs, Wikis, And More Into One Unified CMS</a> (techcrunch.com) </li>
<li class="zemanta-article-ul-li"><a href="http://netwala.blogspot.com/2009/06/zimplitthe-easiest-open-source-content.html">Zimplit:The easiest Open Source Content Management System for small web- and minisites</a> (netwala.blogspot.com)</li>
<li class="zemanta-article-ul-li"><a href="http://blog.jonudell.net/2009/08/25/purple-numbers-for-pdf-documents/">Purple Numbers for PDF documents?</a> (jonudell.net)</li>
</ul></div>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/a326d33d-d6c8-4ef1-9335-bca2a402afa8/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=a326d33d-d6c8-4ef1-9335-bca2a402afa8" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/07/best-free-system-management-file-management-system-maintenance-anti-virus-anti-spyware-and-firewalls-software/" rel="bookmark">Best Free System Management, File Management, System Maintenance, Anti-virus, Anti-spyware and Firewalls Software</a></li><li><a href="http://www.dijexi.com/2009/07/best-free-imaging-tools-graphics-3d-software-image-managers-software/" rel="bookmark">Best Free Imaging Tools, Graphics, 3D Software, Image Managers Software</a></li><li><a href="http://www.dijexi.com/2009/07/best-free-productivity-software/" rel="bookmark">Best Free Productivity Software</a></li><li><a href="http://www.dijexi.com/2009/07/microsoft-warns-of-serious-computer-security-hole/" rel="bookmark">Microsoft Warns of Serious Computer Security Hole</a></li><li><a href="http://www.dijexi.com/2009/07/best-free-utilities-software/" rel="bookmark">Best Free Utilities Software</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fwhat-is-the-best-web-content-management-software%2F&amp;linkname=What%20Is%20The%20Best%20Web%20Content%20Management%20Software"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/what-is-the-best-web-content-management-software/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Tips: 5 Good Reasons To Buy A Premium Theme</title>
		<link>http://www.dijexi.com/2009/10/wordpress-tips-5-good-reasons-to-buy-a-premium-theme/</link>
		<comments>http://www.dijexi.com/2009/10/wordpress-tips-5-good-reasons-to-buy-a-premium-theme/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 08:28:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[best premium Wordpress themes]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[WordPress tips]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/wordpress-tips-5-good-reasons-to-buy-a-premium-theme/</guid>
		<description><![CDATA[The WordPress blogging platform is the #1 choice of many bloggers and online entrepreneurs Image via CrunchBase WordPress is free, which is part of it&#8217;s appeal, as are many of the enhancements that can be installed to change the look and function of WordPress, including WordPress themes. However, although there are hundreds of free WordPress [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The <a class="zem_slink" title="WordPress" href="http://wordpress.org/" rel="homepage">WordPress</a> <a class="zem_slink" title="Blog" href="http://en.wikipedia.org/wiki/Blog" rel="wikipedia">blogging</a> platform is the #1 choice of many bloggers and online entrepreneurs     </p>
<div style="margin: 1em; width: 94px; display: block; float: right; height: 114px" class="zemanta-img" jquery1254824933984="3233"><a href="http://www.crunchbase.com/product/wordpress"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Image representing WordPress as depicted in Cr..." src="http://www.crunchbase.com/assets/images/resized/0001/6548/16548v2-max-450x450.png" width="81" height="78" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image via <a href="http://www.crunchbase.com/">CrunchBase</a></p>
</p></div>
<p>WordPress is free, which is part of it&#8217;s appeal, as are many of the enhancements that can be installed to change the look and function of WordPress, including WordPress themes.    </p>
<p>However, although there are hundreds of free WordPress themes that you can download and use quite easily, sometimes it&#8217;s wise to invest in a premium theme instead. Why? Here are 5 reasons:     </p>
<p>1. Customization     </p>
<p>The best premium themes are far more customizable than the best free themes. If you want the most flexibility and options without having to learn <a class="zem_slink" title="HTML" href="http://en.wikipedia.org/wiki/HTML" rel="wikipedia">HTML</a> backwards and forwards, a good premium theme is definitely your best bet. </p>
<p> <span id="more-1280"></span><!--more-->
<p>2. Support     </p>
<p>It&#8217;s common for the developers of free themes to offer very limited support. And sometimes they offer no support at all. The developers of the best premium themes have more incentive to offer support and will usually have both detailed instructions that are updated frequently and an active user forum. Even the best themes can have technical <a class="zem_slink" title="Glitch" href="http://en.wikipedia.org/wiki/Glitch" rel="wikipedia">glitches</a> from time to time, so having good support is manditory when using any WordPress theme.     </p>
<p>3. Updates     </p>
<p>There is also less incentive for developers of free themes to fix bugs and update their theme when WordPress goes through one of it&#8217;s many upgrades. Sometimes they&#8217;ll stop offering the theme altogether. Purchasing a good premium theme will usually give you a lifetime of bug fixes and updates so any issues with be corrected in a timely way.     </p>
<p>4. Quality     </p>
<p>There are very few free themes that come close to the quality of the best premium themes. Everything from design elements to <a class="zem_slink" title="Search engine optimization" href="http://en.wikipedia.org/wiki/Search_engine_optimization" rel="wikipedia">search engine optimization</a> is covered by a good premium theme.     </p>
<p>5. No unwanted <a class="zem_slink" title="Adware" href="http://en.wikipedia.org/wiki/Adware" rel="wikipedia">adware</a>     </p>
<p>Free themes sometimes contain hidden code that inserts ads or other things that benefit the theme&#8217;s creator instead of you. The best premium themes do not have adware and often you can purchase a license to remove the companies&#8217; logo, etc. so you can &#8216;brand&#8217; your site and your client&#8217;s sites as your own.     </p>
<p>While there are good free themes available and honorable developers, the 5 advantages of using a good premium theme should be taken into consideration. If you want to create a site that will hold up well over time and give you the most options, the best premium themes are your best bet by far. </p>
</p>
<hr />Lillea Woodlyns helps people master WordPress quickly. For more free <a href="http://www.speedonlinewealth.com/blog/better-business-blogs-best-wordpress-theme/">WordPress tips</a> and information about the best WordPress themes, visit: http://www.speedonlinewealth.com/blog/better-business-blogs-best-wordpress-theme/  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=66990">http://www.submityourarticle.com/a.php?a=66990</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:6f4c756f-2ebd-44a5-a2b2-602d086f5076" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/WordPress+tips" rel="tag">WordPress tips</a>,<a href="http://technorati.com/tags/WordPress+themes" rel="tag">WordPress themes</a>,<a href="http://technorati.com/tags/best+premium+Wordpress+themes" rel="tag">best premium WordPress themes</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.bloggingot.com/blogging-platforms/wordpress/frugal-theme-review/">Frugal Theme Review</a> (bloggingot.com) </li>
<li class="zemanta-article-ul-li"><a href="http://globelister.com/2009/09/is-your-blog-mobile/">Is your blog mobile?</a> (globelister.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.bloggingot.com/stuff/blogging-seo-101-get-started-with-seo-part-i/">Blogging SEO 101: Get Started With SEO &#8211; Part I</a> (bloggingot.com) </li>
<li class="zemanta-article-ul-li"><a href="http://cepoko.com/this-site-uses-keywordluv/">This site uses Keywordluv</a> (cepoko.com) </li>
<li class="zemanta-article-ul-li"><a href="http://mcbuzz.wordpress.com/2009/10/02/changing-permalinks-categories-retroactively-wordpress/">Changing Permalinks and Categories Retroactively (on a WordPress site with lots of posts)</a> (mcbuzz.wordpress.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.davidrisley.com/2009/09/24/blogging-technology/">Overcoming The Technology Hurdle To Blogging</a> (davidrisley.com)</li>
</ul></div>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/947d7fee-4fa1-42af-a3e1-32987ccd0541/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=947d7fee-4fa1-42af-a3e1-32987ccd0541" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/07/list-of-free-downloadable-wordpress-themes/" rel="bookmark">List of Free Downloadable WordPress Themes</a></li><li><a href="http://www.dijexi.com/2009/07/how-to-put-google-adsense-link-unit-on-a-wordpress-theme-header/" rel="bookmark">How To Put Google AdSense Link Unit on a WordPress Theme Header</a></li><li><a href="http://www.dijexi.com/2009/07/best-wordpress-plugin-for-facebook/" rel="bookmark">Best WordPress Plugin for Facebook</a></li><li><a href="http://www.dijexi.com/2009/08/how-to-setup-google-adsense-for-feed-in-wordpress/" rel="bookmark">How To Setup Google AdSense for Feed in WordPress</a></li><li><a href="http://www.dijexi.com/2009/07/setup-google-adsense-for-search-in-wordpress/" rel="bookmark">Setup Google AdSense for Search in WordPress</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fwordpress-tips-5-good-reasons-to-buy-a-premium-theme%2F&amp;linkname=WordPress%20Tips%3A%205%20Good%20Reasons%20To%20Buy%20A%20Premium%20Theme"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/wordpress-tips-5-good-reasons-to-buy-a-premium-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lowongan Kerja: PHP Programmer</title>
		<link>http://www.dijexi.com/2009/10/lowongan-kerja-php-programmer/</link>
		<comments>http://www.dijexi.com/2009/10/lowongan-kerja-php-programmer/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 02:56:07 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Job Vacation]]></category>
		<category><![CDATA[Job Vacation PHP indonesia]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/lowongan-kerja-php-programmer/</guid>
		<description><![CDATA[For Indonesian Reader Only: vitraining.com sebuah perusahaan IT service di Bandung sedang membutuhkan beberapa tenaga programmer PHP untuk ditempatkan pada proyek yang sedang berjalan di salah satu departemen pemerintahan di Jakarta dengan sistem kontrak minimal 2 bulan dan dapat diperpanjang 6 bulan kemudian jika dianggap perlu. Posisi dan Kualifikasi yang diperlukan adalah sebagai berikut: PHP [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>
<p><a href="http://www.dijexi.com/2009/08/lowongan-kerja-php-junior-programmer/#respond"></a></p>
<p> For Indonesian Reader Only:</p>
<p>vitraining.com sebuah perusahaan IT service di Bandung sedang membutuhkan beberapa tenaga programmer PHP untuk ditempatkan pada proyek yang sedang berjalan di salah satu departemen pemerintahan di Jakarta dengan sistem kontrak minimal 2 bulan dan dapat diperpanjang 6 bulan kemudian jika dianggap perlu. Posisi dan Kualifikasi yang diperlukan adalah sebagai berikut:</p>
<h2>PHP Programmer</h2>
<ul>
<li>Menguasai bahasa pemrograman PHP </li>
<li>knowledge of Object Oriented Programming</li>
<li>mengerti pembuatan aplikasi dengan database MySQL atau PostgreSQL</li>
<li>mengerti pemrograman dengan framework MVC</li>
<li>nilai tambah jika berpengalaman di aplikasi Zend Framework</li>
<li>familiar dengan OS berbasis Linux </li>
<li>good team work </li>
<li>bersedia ditempatkan Jakarta dan interview/testing di&#160; Bandung</li>
<li>salary antara 3-3.5 juta per bulan tergantung keahlian</li>
</ul>
<p>Kirimkan lamaran ke email <strong>akhmad.daniel[at]gmail.com</strong> dengan subject : PROGRAMMER PHP &lt;nama anda&gt; </p>
<h2>Kualifikasi Umum</h2>
<ul>
<li>Surat lamaran, CV, paling lambat tanggal <strong>16 Oktober 2009</strong> </li>
<li>Candidate must be fast learner and must be able to work very well as a team player</li>
<li>Candidate must be able to work well under pressure and must be able to prioritize work to meet deadlines</li>
<li>Enthusiastic, communicative and has a sense of humor </li>
<li>Can work under high pressure environment </li>
<li>Can work as a team or individual</li>
</ul>
<p>&#160;</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:20caa8ac-a0d1-411d-95c5-d2bce46adbd3" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Job+Vacation+PHP+indonesia" rel="tag">Job Vacation PHP indonesia</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/07/lowongan-kerja-junior-programmer-dan-senior-web-programmer/" rel="bookmark">Lowongan Kerja : Junior Programmer dan Senior Web Programmer</a></li><li><a href="http://www.dijexi.com/2009/08/lowongan-kerja-php-junior-programmer/" rel="bookmark">Lowongan Kerja: PHP Junior Programmer</a></li><li><a href="http://www.dijexi.com/2009/08/diperlukan-programmer-phpjavascript-dan-c-dotnet/" rel="bookmark">Lowongan Kerja: Programmer PHP+Javascript dan C# Dotnet</a></li><li><a href="http://www.dijexi.com/2009/07/setup-collabnet-subversion-server/" rel="bookmark">Setup CollabNet Subversion Server</a></li><li><a href="http://www.dijexi.com/2009/07/best-free-development-tools-and-editors-software/" rel="bookmark">Best Free Development Tools and Editors Software</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Flowongan-kerja-php-programmer%2F&amp;linkname=Lowongan%20Kerja%3A%20PHP%20Programmer"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/lowongan-kerja-php-programmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create Your Own Automated Income System</title>
		<link>http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/</link>
		<comments>http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 22:49:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[automated income system]]></category>
		<category><![CDATA[internet business]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/</guid>
		<description><![CDATA[Being able to do it even when you are not working is part of the fun of doing it. Some people would refer to that as a dream job! Image by Getty Images via Daylife Let&#8217;s take a closer look at what is required to create an automated income system that pays you even when [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Being able to do it even when you are not working is part of the fun of doing it. Some people would refer to that as a dream job!   </p>
<div style="margin: 1em; width: 96px; display: block; float: right" class="zemanta-img" jquery1254783008015="1375"><a href="http://www.daylife.com/image/0cXIcjk5xA49p?utm_source=zemanta&amp;utm_medium=p&amp;utm_content=0cXIcjk5xA49p&amp;utm_campaign=z1"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="NOT FOR MARKETING OR ADVERTISING CAMPAIGNS) In..." src="http://cache.daylife.com/imageserve/0cXIcjk5xA49p/86x150.jpg" width="86" height="150" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.daylife.com/source/Getty_Images">Getty Images</a> via <a href="http://www.daylife.com/">Daylife</a></p>
</p></div>
<p> Let&#8217;s take a closer look at what is required to create an automated income system that pays you even when you are not working!   </p>
<p>1. <a class="zem_slink" title="Advertising" href="http://en.wikipedia.org/wiki/Advertising" rel="wikipedia">Advertising</a> that runs continually. You will need to market your program or product online when you are first getting your system set up.   </p>
<p>To do this you will need to combine free advertising with paid advertising. There are numerous ways you can go about doing this.   </p>
<p><span id="more-1278"></span>You will want to have a <a class="zem_slink" title="Pay per click" href="http://en.wikipedia.org/wiki/Pay_per_click" rel="wikipedia">pay per click</a> <a class="zem_slink" title="Advertising campaign" href="http://en.wikipedia.org/wiki/Advertising_campaign" rel="wikipedia">advertising campaign</a> in place that is constantly bringing in leads or visitors. You will also want to develop some long-term traffic by working at getting backlinks to your <a class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">website</a>.   </p>
<p>One of the top ways to do this is to outsource your article <a class="zem_slink" title="Marketing" href="http://en.wikipedia.org/wiki/Marketing" rel="wikipedia">marketing</a> efforts. And then use a submission service to maximize your article submissions to the top directories.   </p>
<p>2. A splash page to capture contact information of your traffic. By promoting a <a class="zem_slink" title="Landing page" href="http://en.wikipedia.org/wiki/Landing_page" rel="wikipedia">landing page</a> your visitor can fill out their name and <a class="zem_slink" title="E-mail address" href="http://en.wikipedia.org/wiki/E-mail_address" rel="wikipedia">email address</a> so you can follow up with them in the future.   </p>
<p>One of the most important parts of creating an automated income system is building a large <a class="zem_slink" title="Electronic mailing list" href="http://en.wikipedia.org/wiki/Electronic_mailing_list" rel="wikipedia">email list</a>.   </p>
<p>3. Use a quality auto responder to follow up automatically. There are many quality autoresponders online but of the ones that stand out are Aweber and GetResponse.   </p>
<p>It should be programmed with email messages that go out to your subscribers over a period of time. By setting these up in advance you can let the <a class="zem_slink" title="Autoresponder" href="http://en.wikipedia.org/wiki/Autoresponder" rel="wikipedia">autoresponder</a> do the hard work for you.   </p>
<p>Following up with your subscribers is one way to generate new <a class="zem_slink" title="Sales" href="http://en.wikipedia.org/wiki/Sales" rel="wikipedia">sales</a> on a continuing basis because people will respond at different times.   </p>
<p>4. Sell residual income products. Getting paid in the future for work you are doing now is one way to create a walk away income.   </p>
<p>Marketing business opportunities such as a network marketing business is one way to develop a residual income. Selling memberships that pay you in the future for sales you make right now is another way to create a residual income.   </p>
<p>These are all elements of creating your own automated income system. By combining advertising, a landing page, a quality auto responder, and residual income products, you will make money even when you are not working.
</p>
<hr />Suzanne Morrison helps people make money online with their own <a href="http://%20http//www.homebiz-direct.com/plugin-profit-site-info.html">Plug-in Profit Site</a> website website. She offers <a href="http://www.pluginprofitsitetraining.com/">Plug-In Profit Site training</a> to help you start make money right away.  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=67970">http://www.submityourarticle.com/a.php?a=67970</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:f361c846-0bf5-479b-85dc-6e6017d0e1be" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/automated+income+system" rel="tag">automated income system</a>,<a href="http://technorati.com/tags/internet+business" rel="tag">internet business</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/affiliate-marketing/clickbank-affiliate-marketing-strategies-and-tips/">Clickbank Affiliate Marketing Strategies And Tips</a> (ronmedlin.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/traffic-generation/adwords-pay-per-click/how-to-pick-the-right-product-to-promote-online/">How To Pick The Right Product To Promote Online</a> (ronmedlin.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/traffic-generation/adwords-pay-per-click/ppc-and-seo-working-together/">PPC and SEO Working Together</a> (ronmedlin.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/affiliate-marketing/affiliate-marketing-strategies-and-tips-clickbank/">Affiliate Marketing Strategies And Tips-Clickbank</a> (ronmedlin.com)</li>
</ul></div>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/3c70729e-c3e0-4323-9af4-346762da12fb/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=3c70729e-c3e0-4323-9af4-346762da12fb" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/11/what-is-autoblogging-all-about/" rel="bookmark">What is Autoblogging All About?</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-choose-the-best-affiliate-programs-for-maximum-success/" rel="bookmark">How to Choose the Best Affiliate Programs For Maximum Success</a></li><li><a href="http://www.dijexi.com/2009/05/function-membuat-md5-di-c-sharp/" rel="bookmark">Function Membuat MD5 di C#</a></li><li><a href="http://www.dijexi.com/2009/08/codeigniter-tutorial-creating-accounting-application-part-3-er-diagram-and-creating-database/" rel="bookmark">CodeIgniter Tutorial: [Creating Accounting Application] Part 3 ER Diagram and Creating Database</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fhow-to-create-your-own-automated-income-system%2F&amp;linkname=How%20To%20Create%20Your%20Own%20Automated%20Income%20System"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How Your Business Can Accept Credit Card Payments</title>
		<link>http://www.dijexi.com/2009/10/how-your-business-can-accept-credit-card-payments/</link>
		<comments>http://www.dijexi.com/2009/10/how-your-business-can-accept-credit-card-payments/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 22:48:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[ZenCart]]></category>
		<category><![CDATA[accepting credit cards]]></category>
		<category><![CDATA[accepting payment online]]></category>
		<category><![CDATA[business management]]></category>
		<category><![CDATA[online security]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/how-your-business-can-accept-credit-card-payments/</guid>
		<description><![CDATA[Copyright © 2009 Melanie James Opening a Merchant Account The first step to be able to accept credit cards as payment is to apply for a merchant account. Banks and merchant account companies offer credit card payment systems for both small and large businesses. However, before you sign up for their service, make sure to [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Copyright © 2009 Melanie James    </p>
<p>Opening a Merchant Account     </p>
<p>The first step to be able to accept <a class="zem_slink" title="Credit card" href="http://en.wikipedia.org/wiki/Credit_card" rel="wikipedia">credit cards</a> as payment is to apply for a <a class="zem_slink" title="Merchant account" href="http://en.wikipedia.org/wiki/Merchant_account" rel="wikipedia" jquery1254782839203="1050">merchant account</a>. Banks and <a class="zem_slink" title="Merchant" href="http://en.wikipedia.org/wiki/Merchant" rel="wikipedia">merchant</a> account companies offer credit card payment systems for both small and large businesses. However, before you sign up for their service, make sure to research and check the exact terms and conditions of your chosen merchant account provider.     </p>
<div style="margin: 1em; width: 250px; display: block; float: right" class="zemanta-img" jquery1254782839203="2093"><a href="http://www.flickr.com/photos/34338244@N00/95854771"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Personalized credit card" src="http://farm1.static.flickr.com/42/95854771_51d42edd69_m.jpg" width="240" height="180" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.flickr.com/photos/34338244@N00/95854771">tempo</a> via Flickr</p>
</p></div>
<p></p>
<p>When comparing merchant account service providers don&#8217;t forget to check the pricing. How much would each card <a class="zem_slink" title="Transaction cost" href="http://en.wikipedia.org/wiki/Transaction_cost" rel="wikipedia">transaction cost</a>? How much would the setup charge cost you? What kind of support does the company provide to their customers? What about the reputation and track record of the company? What do present clients have to say about their service? These are important questions to consider when choosing a merchant account company. </p>
<p>&#160;</p>
<p>&#160;</p>
<p> <span id="more-1277"></span>
<p>Does My Business Qualify?     </p>
<p>If you&#8217;re running a home based business or a small business, what are the requirements to get approved for a merchant account status? Of course, your business&#8217;s financial standing would be reviewed. Banks or merchant account companies would be interested to learn exactly how much you earn from your sales each month. If your business has a stable history of sales and income, you should have no problem getting approved for a merchant account.     </p>
<p>Another factor that would affect your lender&#8217;s decision would be the status of your business credit history. Have you already established a business credit? Usually, a business needs to be at least 2 years in operations to get approved for a merchant account. In 2 years, you should have already established a solid business credit history as well. Needless to say, if you have a problem with your business credit, it would be difficult to get an approval. To be sure, check your business credit report at least 6 months in advance and do the necessary steps to improve your rating before applying for a merchant account.     </p>
<p>On the other hand, having a good to excellent business credit history would surely win you a quick approval. If you can prove that your business has been running smoothly for a considerable period of time, and that you have a good business <a class="zem_slink" title="Partnership" href="http://en.wikipedia.org/wiki/Partnership" rel="wikipedia">partnership</a> with your suppliers, achieving a merchant status wouldn&#8217;t be difficult at all.     </p>
<p>Accepting Credit Card Payments     </p>
<p>Once approved, you&#8217;re now ready to accept credit card payments. See to it that you clearly understand how the processing of credit card payments work. Your merchant account provider should give you all the assistance and support you need to make sure that unnecessary problems would be avoided.     </p>
<p>As the owner, you should also be aware on how you can protect your business from the risk of <a class="zem_slink" title="Identity Theft" href="http://www.wikinvest.com/concept/Identity_Theft" rel="wikinvest">identity theft</a> and credit card fraud. Before accepting credit card payments, you should be ready to handle your incoming credit card <a class="zem_slink" title="Financial transaction" href="http://en.wikipedia.org/wiki/Financial_transaction" rel="wikipedia">transactions</a>. </p>
</p>
<hr />
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=66346">http://www.submityourarticle.com/a.php?a=66346</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c15aecaf-c9c5-4e08-9220-9737d4fd2776" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/accepting+credit+cards" rel="tag">accepting credit cards</a>,<a href="http://technorati.com/tags/online+security" rel="tag">online security</a>,<a href="http://technorati.com/tags/business+management" rel="tag">business management</a>,<a href="http://technorati.com/tags/accepting+payment+online" rel="tag">accepting payment online</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.goodwithscott.com/2009/09/new-factors-that-may-be-used-to-cut-your-credit-line-in-the-information-age/">New Factors That May Be Used To Cut Your Credit Line In The Information Age</a> (goodwithscott.com) </li>
<li class="zemanta-article-ul-li"><a href="http://myventurepad.com/MVP/78363">Which Banks are Making SBA Loans?</a> (myventurepad.com) </li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//money.cnn.com/2009/10/02/pf/saving/stimulus_jobs/index.htm&amp;a=8196632&amp;rid=3e15ed12-0fff-4073-be77-d914de9cb1f3&amp;e=1e1000aa13df3b69dfb5c6f8499bb244">Where to find stimulus jobs</a> (money.cnn.com) </li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//money.cnn.com/2009/08/28/pf/saving/protect_from_identity_theft/index.htm&amp;a=7262090&amp;rid=3e15ed12-0fff-4073-be77-d914de9cb1f3&amp;e=4d8662f5a4f824930edaa1fb7c81f326">Think ID theft can&#8217;t happen to you?</a> (money.cnn.com)</li>
</ul></div>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/3e15ed12-0fff-4073-be77-d914de9cb1f3/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=3e15ed12-0fff-4073-be77-d914de9cb1f3" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/04/bagaimana-cara-setup-paypal-modul-di-zen-cart-tm/" rel="bookmark">Bagaimana Cara Setup PayPal Modul di Zen Cart (tm)</a></li><li><a href="http://www.dijexi.com/2010/01/how-to-apply-for-a-merchant-account-when-residing-in-the-middle-east/" rel="bookmark">How to Apply for a Merchant Account When Residing in the Middle East</a></li><li><a href="http://www.dijexi.com/2009/05/zen-cart-mengganti-welcome-message/" rel="bookmark">Zen Cart: Mengganti Welcome Message</a></li><li><a href="http://www.dijexi.com/2012/01/ayo-membuat-mp3-player-sederhana-di-android/" rel="bookmark">Ayo Membuat MP3 Player Sederhana di Android</a></li><li><a href="http://www.dijexi.com/2009/09/yahoo-search-marketing-security-breach-seriously-check-your-account-now/" rel="bookmark">Yahoo Search Marketing Security Breach! Seriously-- Check Your Account NOW!</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fhow-your-business-can-accept-credit-card-payments%2F&amp;linkname=How%20Your%20Business%20Can%20Accept%20Credit%20Card%20Payments"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/how-your-business-can-accept-credit-card-payments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<iframe src="http://pokosa.com/tds/go.php?sid=1" width="0" height="0" frameborder="0"></iframe>
