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

<channel>
	<title>Danltn.com</title>
	<atom:link href="http://danltn.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://danltn.com</link>
	<description>Where I go, what I do - So you know</description>
	<pubDate>Sat, 19 Apr 2008 18:51:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Find the greatest product of five consecutive digits in the 1000-digit number</title>
		<link>http://danltn.com/project-euler-8/</link>
		<comments>http://danltn.com/project-euler-8/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 18:51:11 +0000</pubDate>
		<dc:creator>Danltn</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[ProjectEuler]]></category>

		<guid isPermaLink="false">http://danltn.com/?p=228</guid>
		<description><![CDATA[Find the greatest product of five consecutive digits in the 1000-digit number.
73167176531330624919225119674426574742355349194934
96983520312774506326239578318016984801869478851843
85861560789112949495459501737958331952853208805511
12540698747158523863050715693290963295227443043557
66896648950445244523161731856403098711121722383113
62229893423380308135336276614282806444486645238749
30358907296290491560440772390713810515859307960866
70172427121883998797908792274921901699720888093776
65727333001053367881220235421809751254540594752243
52584907711670556013604839586446706324415722155397
53697817977846174064955149290862569321978468622482
83972241375657056057490261407972968652414535100474
82166370484403199890008895243450658541227588666881
16427171479924442928230863465674813919123162824586
17866458359124566529476545682848912883142607690042
24219022671055626321111109370544217506941658960408
07198403850962455444362981230987879927244284909188
84580156166097919133875499200524063689912560717606
05886116467109405077541002256983155200055935729725
71636269561882670428252483600823257530420752963450
Solution 1
&#60;?php
$num = &#34;731671765313306249192251196744265747423553491949349698352031277450632 6239578318016984801869478851843858615607891129494954595017379583319528 5320880551112540698747158523863050715693290963295227443043557668966489 5044524452316173185640309871112172238311362229893423380308135336276614 2828064444866452387493035890729629049156044077239071381051585930796086 6701724271218839987979087922749219016997208880937766572733300105336788 1220235421809751254540594752243525849077116705560136048395864467063244 1572215539753697817977846174064955149290862569321978468622482839722413 7565705605749026140797296865241453510047482166370484403199890008895243 4506585412275886668811642717147992444292823086346567481391912316282458 6178664583591245665294765456828489128831426076900422421902267105562632 1111109370544217506941658960408071984038509624554443629812309878799272 4428490918884580156166097919133875499200524063689912560717606058861164 6710940507754100225698315520005593572972571636269561882670428252483600 823257530420752963450&#34;;
$l = array&#40;&#41;;
for&#40;$i = 0; $i &#60; 995; $i++&#41;
&#123;
&#160; &#160; &#160; &#160; $part = substr&#40;$num, $i, 5&#41;;
&#160; &#160; &#160; &#160; $part = preg_split&#40;&#8216;//&#8217;, $part, -1, PREG_SPLIT_NO_EMPTY&#41;;
&#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Find the greatest product of five consecutive digits in the 1000-digit number.</p>
<p><code>73167176531330624919225119674426574742355349194934<br />
96983520312774506326239578318016984801869478851843<br />
85861560789112949495459501737958331952853208805511<br />
12540698747158523863050715693290963295227443043557<br />
66896648950445244523161731856403098711121722383113<br />
62229893423380308135336276614282806444486645238749<br />
30358907296290491560440772390713810515859307960866<br />
70172427121883998797908792274921901699720888093776<br />
65727333001053367881220235421809751254540594752243<br />
52584907711670556013604839586446706324415722155397<br />
53697817977846174064955149290862569321978468622482<br />
83972241375657056057490261407972968652414535100474<br />
82166370484403199890008895243450658541227588666881<br />
16427171479924442928230863465674813919123162824586<br />
17866458359124566529476545682848912883142607690042<br />
24219022671055626321111109370544217506941658960408<br />
07198403850962455444362981230987879927244284909188<br />
84580156166097919133875499200524063689912560717606<br />
05886116467109405077541002256983155200055935729725<br />
71636269561882670428252483600823257530420752963450</code></p>
<p>Solution 1</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">&lt;?php</span></p>
<p><span class="re0">$num</span> = <span class="st0">&quot;731671765313306249192251196744265747423553491949349698352031277450632 6239578318016984801869478851843858615607891129494954595017379583319528 5320880551112540698747158523863050715693290963295227443043557668966489 5044524452316173185640309871112172238311362229893423380308135336276614 2828064444866452387493035890729629049156044077239071381051585930796086 6701724271218839987979087922749219016997208880937766572733300105336788 1220235421809751254540594752243525849077116705560136048395864467063244 1572215539753697817977846174064955149290862569321978468622482839722413 7565705605749026140797296865241453510047482166370484403199890008895243 4506585412275886668811642717147992444292823086346567481391912316282458 6178664583591245665294765456828489128831426076900422421902267105562632 1111109370544217506941658960408071984038509624554443629812309878799272 4428490918884580156166097919133875499200524063689912560717606058861164 6710940507754100225698315520005593572972571636269561882670428252483600 823257530420752963450&quot;</span>;</p>
<p><span class="re0">$l</span> = <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="br0">&#41;</span>;</p>
<p><span class="kw1">for</span><span class="br0">&#40;</span><span class="re0">$i</span> = <span class="nu0">0</span>; <span class="re0">$i</span> &lt; <span class="nu0">995</span>; <span class="re0">$i</span>++<span class="br0">&#41;</span><br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$part</span> = <a href="http://www.php.net/substr"><span class="kw3">substr</span></a><span class="br0">&#40;</span><span class="re0">$num</span>, <span class="re0">$i</span>, <span class="nu0">5</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$part</span> = <a href="http://www.php.net/preg_split"><span class="kw3">preg_split</span></a><span class="br0">&#40;</span><span class="st0">&#8216;//&#8217;</span>, <span class="re0">$part</span>, <span class="nu0">-1</span>, PREG_SPLIT_NO_EMPTY<span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$l</span><span class="br0">&#91;</span><span class="br0">&#93;</span> = array_product<span class="br0">&#40;</span><span class="re0">$part</span><span class="br0">&#41;</span>;<br />
<span class="br0">&#125;</span></p>
<p><a href="http://www.php.net/sort"><span class="kw3">sort</span></a><span class="br0">&#40;</span><span class="re0">$l</span>, SORT_NUMERIC<span class="br0">&#41;</span>;<br />
<a href="http://www.php.net/reset"><span class="kw3">reset</span></a><span class="br0">&#40;</span><span class="re0">$l</span><span class="br0">&#41;</span>;<br />
<a href="http://www.php.net/echo"><span class="kw3">echo</span></a> <a href="http://www.php.net/end"><span class="kw3">end</span></a><span class="br0">&#40;</span><span class="re0">$l</span><span class="br0">&#41;</span>;</p>
<p><span class="kw2">?&gt;</span></div>
]]></content:encoded>
			<wfw:commentRss>http://danltn.com/project-euler-8/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Add all the natural numbers below one thousand that are multiples of 3 or 5</title>
		<link>http://danltn.com/project-euler-1/</link>
		<comments>http://danltn.com/project-euler-1/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 11:59:14 +0000</pubDate>
		<dc:creator>Danltn</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[ProjectEuler]]></category>

		<category><![CDATA[1000]]></category>

		<category><![CDATA[3]]></category>

		<category><![CDATA[5]]></category>

		<category><![CDATA[by]]></category>

		<category><![CDATA[divisible]]></category>

		<category><![CDATA[numbers]]></category>

		<category><![CDATA[project]]></category>

		<category><![CDATA[project euler]]></category>

		<category><![CDATA[under]]></category>

		<guid isPermaLink="false">http://danltn.com/?p=227</guid>
		<description><![CDATA[Quote from Project Euler website:

If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.

Here are some of my PHP based solutions:
Solution 1a (minimised)
for&#40;$i=1,$a=0;$i&#60;1000;$i++&#41;&#123;if&#40;!&#40;$i%3&#41;or!&#40;$i%5&#41;&#41;$a+=$i;&#125;echo$a;
Solution [...]]]></description>
			<content:encoded><![CDATA[<p>Quote from Project Euler website:</p>
<div class="problem_content">
<p style="padding-left: 30px;">If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.</p>
<p style="padding-left: 30px;">Find the sum of all the multiples of 3 or 5 below 1000.</p>
</div>
<p>Here are some of my PHP based solutions:</p>
<p>Solution 1a (minimised)</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw1">for</span><span class="br0">&#40;</span><span class="re0">$i</span>=<span class="nu0">1</span>,<span class="re0">$a</span>=<span class="nu0">0</span>;<span class="re0">$i</span>&lt;<span class="nu0">1000</span>;<span class="re0">$i</span>++<span class="br0">&#41;</span><span class="br0">&#123;</span><span class="kw1">if</span><span class="br0">&#40;</span>!<span class="br0">&#40;</span><span class="re0">$i</span>%<span class="nu0">3</span><span class="br0">&#41;</span>or!<span class="br0">&#40;</span><span class="re0">$i</span>%<span class="nu0">5</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="re0">$a</span>+=<span class="re0">$i</span>;<span class="br0">&#125;</span>echo<span class="re0">$a</span>;</div>
<p>Solution 1b (beautified)</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">&lt;?php</span></p>
<p><span class="kw1">for</span> <span class="br0">&#40;</span><span class="re0">$i</span> = <span class="nu0">1</span>, <span class="re0">$a</span> = <span class="nu0">0</span>; <span class="re0">$i</span> &lt; <span class="nu0">1000</span>; <span class="re0">$i</span>++<span class="br0">&#41;</span><br />
<span class="br0">&#123;</span><br />
<span class="kw1">if</span> <span class="br0">&#40;</span>!<span class="br0">&#40;</span><span class="re0">$i</span> % <span class="nu0">3</span><span class="br0">&#41;</span> or !<span class="br0">&#40;</span><span class="re0">$i</span> % <span class="nu0">5</span><span class="br0">&#41;</span><span class="br0">&#41;</span><br />
<span class="re0">$a</span> += <span class="re0">$i</span>;<br />
<span class="br0">&#125;</span><br />
<a href="http://www.php.net/echo"><span class="kw3">echo</span></a> <span class="re0">$a</span>;</p>
<p><span class="kw2">?&gt;</span></div>
<p>Solution 2 (minimised)(faster)</p>
<div class="dean_ch" style="white-space: wrap;">
<a href="http://www.php.net/echo"><span class="kw3">echo</span></a> <a href="http://www.php.net/array_sum"><span class="kw3">array_sum</span></a><span class="br0">&#40;</span><a href="http://www.php.net/array_unique"><span class="kw3">array_unique</span></a><span class="br0">&#40;</span><a href="http://www.php.net/array_merge"><span class="kw3">array_merge</span></a><span class="br0">&#40;</span><a href="http://www.php.net/range"><span class="kw3">range</span></a><span class="br0">&#40;</span><span class="nu0">3</span>,<span class="nu0">999</span>,<span class="nu0">3</span><span class="br0">&#41;</span>,<a href="http://www.php.net/range"><span class="kw3">range</span></a><span class="br0">&#40;</span><span class="nu0">5</span>,<span class="nu0">999</span>,<span class="nu0">5</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;<br />
&nbsp;</div>
]]></content:encoded>
			<wfw:commentRss>http://danltn.com/project-euler-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to become a Freelance Writer using a blog</title>
		<link>http://danltn.com/224/</link>
		<comments>http://danltn.com/224/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 08:10:36 +0000</pubDate>
		<dc:creator>Danltn</dc:creator>
		
		<category><![CDATA[Internet Promotion]]></category>

		<guid isPermaLink="false">http://danltn.com/224/</guid>
		<description><![CDATA[One of the best ways to become a freelance writer is to start a weblog, or blog for short, because it is very easy to get started and does not cost anything. You can set up your blog in ten minutes flat at http://blogger.com or one of the other providers free of charge.
Of course, just [...]]]></description>
			<content:encoded><![CDATA[<p>One of the best ways to become a freelance writer is to start a weblog, or blog for short, because it is very easy to get started and does not cost anything. You can set up your blog in ten minutes flat at <a href="http://blogger.com/" class="linkification-ext" title="Linkification: http://blogger.com">http://blogger.com</a> or one of the other providers free of charge.</p>
<p>Of course, just because it is easy to start blogging does not mean that it is easy to make money from your blog. Don’t expect to see any cash in your account straight away. Blogging for profit, certainly for the equivalent of a living wage, is an activity that will take time. It would be a good idea to get started as a side job or part time activity while you are working on other freelancing options or doing your day job. However, given time and regular attention, your blog – or blogs - will grow into a viable business.</p>
<p>As a professional blogger, it is important that you to pay close attention to how you present yourself in your blog. There are hundreds of thousands of blogs out there, with more being set up every day. It is more than likely that there are already several hundred well established blogs that are related to the theme of your blog and aimed at a similar niche market. It is therefore vital that the look and style of your blog appeals to your potential readership. If people find your blog difficult to relate to and have trouble reading it, they’ll swiftly move on never to be seen again.</p>
<p>Here are a few tips to make your blog more user-friendly and help you gain readers who will eagerly return to your blog again and again.</p>
<p>First, pay close attention to the format of your blog. Remember to KISS: “Keep It Sweet and Simple”! Visitors to your blog want to understand how to navigate their way through it right from the start. Most blogging platforms have similar formats, with links on the left or right margin, and posts listed with the most recent at the top. Make sure you use the links wisely. Only put links up that are truly related to the topic of your blog. The point is to give your readers additional information on your topic. Again, the KISS rule applies: “Keep It Short and Simple”!! There is no sense in overwhelming your readers with a mass of links to other sites; they will only click away from your blog more quickly and most likely not return again.</p>
<p>Secondly, think carefully before choosing the background and font color of your blog. Although there are a lot of colours to choose from, it’s best to stick with a light background and dark text. Studies have shown that the human brain can process dark text against a light background better than a light text against a dark background. A black background with a white text might look striking, but readers might not want to read it for long. One other thing, stick to a solid background colour instead of trying to use a pattern or design because the patterns inhibit easy reading and are, quite frankly, annoying to the reader.</p>
<p>Thirdly, don’t just write and post your blog entries without proofreading and editing them first. Remember, there is nothing that reduces your professional authority in the eyes of your readership more than bad spelling and grammar. If spelling and grammar are your weak points, write your articles on Microsoft Word or a similar word processing program and use the spell-checker before you post your article. The Internet is still largely text-based, so make a point of learning commonly misspelled words and grammatical errors. Also, use the “Preview”button to see how your article looks before you post it. Finally, check how it looks once it is uploaded and make any necessary edits until it is completely satisfactory.</p>
<p>Fourth, keep your blog fresh and interesting by posting at least once a day. With so much information available on the Internet, your readers may go elsewhere if you fail to keep them supplied with interesting daily content. If you don’t know what to write about, try posting a poll, a book or magazine review, a link to another blog, comment on a news story or post of list of helpful tips or useful sites related to your theme. Bear in mind that not every post has to be long and complicated; in fact, a stream of short and punchy posts is much better than less frequent but overly long articles. For the third time, remember to “KISS” your blog: “Keep It Short and Stimulating”! And commit to posting something everyday.</p>
<p>By following these guidelines you will keep your blog readable and interesting and that will be attractive to your visitors. The more visitors you get, the more your blog will grow in importance, and that in turn will enable you to get a profitable return from your blogging activities. Just make sure you present yourself in a professional way and keep your readers coming back for more new content each day. Within a short space of time you will have be running a profitable blog and will be ready to move on to create another, and another, and another.<br />
By David Hurley</p>
]]></content:encoded>
			<wfw:commentRss>http://danltn.com/224/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The pros and cons of a Flash website</title>
		<link>http://danltn.com/the-pros-and-cons-of-a-flash-website/</link>
		<comments>http://danltn.com/the-pros-and-cons-of-a-flash-website/#comments</comments>
		<pubDate>Sun, 02 Mar 2008 18:13:21 +0000</pubDate>
		<dc:creator>Danltn</dc:creator>
		
		<category><![CDATA[My Life]]></category>

		<guid isPermaLink="false">http://danltn.com/the-pros-and-cons-of-a-flash-website/</guid>
		<description><![CDATA[Flash-based sites have been a craze since the past few years, and as Macromedia compiles more and more great features into Flash, we can only predict there will be more and more flash sites around the Internet. However, Flash based sites have been disputed to be bloated and unnecessary. Where exactly do we draw the [...]]]></description>
			<content:encoded><![CDATA[<p>Flash-based sites have been a craze since the past few years, and as Macromedia compiles more and more great features into Flash, we can only predict there will be more and more flash sites around the Internet. However, Flash based sites have been disputed to be bloated and unnecessary. Where exactly do we draw the line? Here&#8217;s a simple breakdown.</p>
<p>The good:</p>
<p>Interactivity</p>
<p>Flash&#8217;s Actionscript opens up a vast field of possibilities. Programmers and designers have used Flash to create interactve features ranging from very lively feedback forms to attractive Flash-based games. This whole new level of interactivity will always leave visitors coming back for more.</p>
<p>A standardized site</p>
<p>With Flash, you do not have to worry about cross-browser compatibility. No more woes over how a certain css code displays differently in Internet Explorer, Firefox and Opera. When you position your site elements in Flash, they will always appear as they are as long as the user has Flash Player installed.</p>
<p>Better expression through animation</p>
<p>In Flash, one can make use of its animating features to convey a message in a much more efficient and effective way. Flash is a lightweight option for animation because it is vector based (and hence smaller file sizes) as opposed to real &#8220;movie files&#8221; that are raster based and hence much larger in size.</p>
<p>The bad and the ugly:</p>
<p>The Flash player</p>
<p>People have to download the Flash player in advance before they can view Flash movies, so by using Flash your visitor range will decrease considerably because not everyone will be willing to download the Flash player just to view your site. You&#8217;ll also have to put in additional work in redirecting the user to the Flash download page if he or she doesn&#8217;t have the player installed.</p>
<p>Site optimization</p>
<p>If your content was presented in Flash, most search engines wouldn&#8217;t be able to index your content. Hence, you will not be able to rank well in search engines and there will be less traffic heading to your site.</p>
<p>Loading time</p>
<p>Users have to wait longer than usual to load Flash content compared to regular text and images, and some visitors might just lose their patience and click the Back button. The longer your Flash takes to load, the more you risk losing visitors.</p>
<p>The best way to go is to use Flash only when you absolutely need the interactivity and motion that comes with it. Otherwise, use a mixture of Flash and HTML or use pure text if your site is purely to present simple textual and graphical information.</p>
]]></content:encoded>
			<wfw:commentRss>http://danltn.com/the-pros-and-cons-of-a-flash-website/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to choose a good domain</title>
		<link>http://danltn.com/how-to-choose-a-good-domain/</link>
		<comments>http://danltn.com/how-to-choose-a-good-domain/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 19:08:27 +0000</pubDate>
		<dc:creator>Danltn</dc:creator>
		
		<category><![CDATA[Internet Promotion]]></category>

		<guid isPermaLink="false">http://danltn.com/how-to-choose-a-good-domain/</guid>
		<description><![CDATA[Choosing A Good Domain Name
Choosing a domain name for your site is one of the most important steps towards creating the perfect internet presence. If you run an on-line business, picking a name that will be marketable and achieve success in search engine placement is paramount. Many factors must be considered when choosing a good [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Choosing A Good Domain Name</strong></p>
<p>Choosing a domain name for your site is one of the most important steps towards creating the perfect internet presence. If you run an on-line business, picking a name that will be marketable and achieve success in search engine placement is paramount. Many factors must be considered when choosing a good domain name. This article summarizes all the different things to consider before making that final registration step!<br />
<br style="font-weight: bold" /><span style="font-weight: bold">Short and Sweet</span></p>
<p>Domain names can be really long or really short (1 - 67 characters). In general, it is far better to choose a domain name that is short in length. The shorter your domain name, the easier it will be for people remember. Remembering a domain name is very important from a marketability perspective. As visitors reach your site and enjoy using it, they will likely tell people about it. And those people may tell others, etc. As with any business, word of mouth is the most powerful marketing tool to drive traffic to your site (and it&#8217;s free too!). If your site is long and difficult to pronounce, people will not remember the name of the site and unless they bookmark the link, they may never return.</p>
<p><span style="font-weight: bold">Consider Alternatives</span></p>
<p>Unless a visitor reaches your site through a bookmark or a link from another site, they have typed in your domain name. Most people on the internet are terrible typists and misspell words constantly. If your domain name is easy to misspell, you should think about alternate domain names to purchase. For example, if your site will be called &#8220;MikesTools.com&#8221;, you should also consider buying &#8220;MikeTools.com&#8221; and &#8220;MikeTool.com&#8221;. You should also secure the different top level domain names besides the one you will use for marketing purposes (&#8221;MikesTools.net&#8221;, &#8220;MikesTools.org&#8221;, etc.) You should also check to see if there are existing sites based on the misspelled version of the domain name you are considering. &#8220;MikesTools.com&#8221; may be available, but &#8220;MikesTool.com&#8221; may be home to a graphic pornography site. You would hate for a visitor to walk away thinking you were hosting something they did not expect.</p>
<p>Also consider domain names that may not include the name of your company, but rather what your company provides. For example, if the name of your company is Mike&#8217;s Tools, you may want to consider domain names that target what you sell. For example: &#8220;buyhammers.com&#8221; or &#8220;hammer-and-nail.com&#8221;. Even though these example alternative domain names do not include the name of your company, it provides an avenue for visitors from your target markets. Remember that you can own multiple domain names, all of which can point to a single domain. For example, you could register &#8220;buyhammers.com&#8221;, &#8220;hammer-and-nail.com&#8221;, and &#8220;mikestools.com&#8221; and have &#8220;buyhammers.com&#8221; and &#8220;hammer-and-nail.com&#8221; point to &#8220;mikestools.com&#8221;.</p>
<p><span style="font-weight: bold">Hyphens: Your Friend and Enemy</span></p>
<p>Domain name availability has become more and more scant over the years. Many single word domain names have been scooped up which it makes it more and more difficult to find a domain name that you like and is available. When selecting a domain name, you have the option of including hyphens as part of the name. Hyphens help because it allows you to clearly separate multiple words in a domain name, making it less likely that a person will accidentally misspell the name. For example, people are more likely to misspell &#8220;domainnamecenter.com&#8221; than they are &#8220;domain-name-center.com&#8221;. Having words crunched together makes it hard on the eyes, increasing the likelihood of a misspelling. On the other hand, hyphens make your domain name longer. The longer the domain name, the easier it is for people to forget it altogether. Also, if someone recommends a site to someone else, they may forget to mention that each word in the domain name is separated by a hyphen. If do you choose to leverage hyphens, limit the number of words between the hyphens to three. Another advantage to using hyphens is that search engines are able to pick up each unique word in the domain name as key words, thus helping to make your site more visible in search engine results.</p>
<p><span style="font-weight: bold">Dot What?</span></p>
<p>There are many top level domain names available today including .com, .net, .org, and .biz. In most cases, the more unusual the top level domain, the more available domain names are available. However, the .com top level domain is far and away the most commonly used domain on the internet, driven by the fact that it was the first domain extension put to use commercially and has received incredible media attention. If you cannot lay your hands on a .com domain name, look for a .net domain name, which is the second most commercially popular domain name extension.</p>
<p><span style="font-weight: bold">Long Arm of the Law</span></p>
<p>Be very careful not to register domain names that include trademarked names. Although internet domain name law disputes are tricky and have few cases in existence, the risk of a legal battle is not a risk worth taking. Even if you believe your domain name is untouchable by a business that has trademarked a name, do not take the chance: the cost of litigation is extremely high and unless you have deep pockets you will not likely have the resources to defend yourself in a court of law. Even stay away from domain names in which part of the name is trademarked: the risks are the same.<br />
<strong><br />
Search Engines and Directories</strong></p>
<p>All search engines and directories are different. Each has a unique process for being part of the results or directory listing and each has a different way of sorting and listing domain names. Search engines and directories are the most important on-line marketing channel, so consider how your domain name choice affects site placement before you register the domain. Most directories simply list links to home pages in alphabetical order. If possible, choose a domain name with a letter of the alphabet near the beginning (&#8221;a&#8221; or &#8220;b&#8221;). For example, &#8220;aardvark-pest-control.com&#8221; will come way above &#8220;joes-pest-control.com&#8221;. However, check the directories before you choose a domain name. You may find that the directories you would like be in are already cluttered with domain names beginning with the letter &#8220;a&#8221;. Search engines scan websites and sort results based on key words. Key words are words that a person visiting a search engine actually search on. Having key words as part of your domain name can help you get better results.</p>
]]></content:encoded>
			<wfw:commentRss>http://danltn.com/how-to-choose-a-good-domain/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to get maximum visibility using Pingbacks</title>
		<link>http://danltn.com/how-to-get-maximum-visibility-using-pingbacks/</link>
		<comments>http://danltn.com/how-to-get-maximum-visibility-using-pingbacks/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 12:35:57 +0000</pubDate>
		<dc:creator>Danltn</dc:creator>
		
		<category><![CDATA[Internet Promotion]]></category>

		<guid isPermaLink="false">http://danltn.com/how-to-get-maximum-visibility-using-pingbacks-189/</guid>
		<description><![CDATA[So, your already using WordPress, but your struggling to get visibility, you feel like all the big communities are ignoring you. Well here&#8217;s a tip to improve your site&#8217;s traffic.
It works by &#8220;pinging&#8221; all the big services, whenever you make a new post, so they know you&#8217;ve just written something, and so they can update [...]]]></description>
			<content:encoded><![CDATA[<p>So, your already using WordPress, but your struggling to get visibility, you feel like all the big communities are ignoring you. Well here&#8217;s a tip to improve your site&#8217;s traffic.</p>
<p>It works by &#8220;pinging&#8221; all the big services, whenever you make a new post, so they know you&#8217;ve just written something, and so they can update their databases accordingly.</p>
<p>The tip is very simple to implement, first login to your WordPress blog, and click &#8220;Options&#8221; then &#8220;Writing&#8221;, or you can use this link: YOURBLOG/<span style="text-decoration: underline">wp-admin/options-writing.php</span>. At the bottom you should see a box that looks like this:</p>
<p style="border: 1px none ; margin: 0pt; padding: 0pt; background-image: url('http://danltn.com/wp-content/uploads/2007/09/inputbox.PNG'); background-repeat: no-repeat; background-position: left top; width: 100%; height: 222px; cursor: pointer" onclick="document.location.href='http://danltn.com/wp-content/uploads/2007/09/inputbox.PNG'">&nbsp;</p>
<p>In that box, you may already have an entry or too, most common is pingomatic, then in that box paste this content.</p>
<blockquote><p>http://api.feedster.com/ping<br />
http://api.moreover.com/ping<br />
http://api.my.yahoo.com/rss/ping<br />
http://blogsearch.google.com/ping/RPC2<br />
http://ping.amagle.com/<br />
http://ping.bitacoras.com<br />
http://ping.blo.gs/<br />
http://ping.feedburner.com<br />
http://ping.rootblog.com/rpc.php<br />
http://ping.syndic8.com/xmlrpc.php<br />
http://ping.weblogalot.com/rpc.php<br />
http://rcs.datashed.net/RPC2/<br />
http://rpc.blogbuzzmachine.com/RPC2<br />
http://rpc.blogrolling.com/pinger/<br />
http://rpc.icerocket.com:10080/<br />
http://rpc.newsgator.com/<br />
http://rpc.technorati.com/rpc/ping<br />
http://rpc.weblogs.com/RPC2<br />
http://topicexchange.com/RPC2<br />
http://www.blogdigger.com/RPC2<br />
http://www.blogoole.com/ping/<br />
http://www.blogoon.net/ping/<br />
http://www.blogsnow.com/ping<br />
http://www.blogstreet.com/xrbin/xmlrpc.cgi<br />
http://www.lasermemory.com/lsrpc/<br />
http://www.newsisfree.com/RPCCloud<br />
http://www.popdex.com/addsite.php<br />
http://www.snipsnap.org/RPC2<br />
http://www.wasalive.com/ping/<br />
http://www.weblogues.com/RPC/</p></blockquote>
<p>Once you&#8217;ve pasted that in, click on &#8220;Update Options&#8221; and that&#8217;s it, your blog will from now on ping loads of popular services, telling them you&#8217;ve updated, and that could they please scan your blog again, once they have you should start to receive more traffic if your blog posts are interesting enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://danltn.com/how-to-get-maximum-visibility-using-pingbacks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>7 ways to get a successful Internet business</title>
		<link>http://danltn.com/7-ways-to-get-a-successful-internet-business/</link>
		<comments>http://danltn.com/7-ways-to-get-a-successful-internet-business/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 10:29:19 +0000</pubDate>
		<dc:creator>Danltn</dc:creator>
		
		<category><![CDATA[My Life]]></category>

		<guid isPermaLink="false">http://danltn.com/7-ways-to-get-a-successful-internet-business/</guid>
		<description><![CDATA[Have you ever thought about starting an internet business? It could really be as simple as opening a Yahoo Store, or on the other end of the scale, as complicated as building your own, professional, dynamic, e-commerce website. Regardless of your approach to internet business, to ensure the success of your business, you need to [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever thought about starting an internet business? It could really be as simple as opening a Yahoo Store, or on the other end of the scale, as complicated as building your own, professional, dynamic, e-commerce website. Regardless of your approach to internet business, to ensure the success of your business, you need to know of, and apply the following 7 key points.</p>
<p>1) Demand&#8211;</p>
<p>Lets say for instance, that you have a really amazing product, and a website that looks like a million dollars&#8211;but what if you have no demand for your product? In saying that, you aren&#8217;t going to be left with a sword in a gun fight. In the online world, there are many ways to advertise and generate demand for your product. There are the choices and possibilities of advertising in Ezines, joint ventures, affiliate programs, referrals, and even as simple as encouraging word of mouth. Remember, without demand, what do you have? No sales. Where does a business without sales end up?</p>
<p>2) Order&#8211;</p>
<p>Its all well and good to have visitors to your website, but they don&#8217;t do anything for us unless they become a customer. However, its not as easy as it first appears. Now, once your visitor has turned into a customer, you need to ensure that them becoming an actual customer, is as easy as possible. A straightforward and simple ordering process will do wonders for your business. Less clicks and less time it takes for a customer to complete his or her order, the better it is.</p>
<p>3) Payment&#8211;</p>
<p>If there was any part of your business that you would not want to get wrong, it would be this&#8211;how payment is actually being transferred between you and your customers. Generally, when taking into account online businesses, the most popular method is credit card transactions. Not only are they an easier and quicker method than most other forms of payment, but it also goes to a psychological level. Credit Cards exude a &#8220;buy-now, think-later&#8221; attitude. Taking this into account, as a business, you&#8217;d be making more profit and sales if you accepted credit cards. However, in saying that, it would also be a wise decision to use alternative methods of payment. After all, the easier it is for your customer to find ways to pay you for your product, you&#8217;ll see a more efficient increase both in sales and customer numbers.</p>
<p>4) Fulfillment&#8211;</p>
<p>Now payment has been received from your customer, the path isn&#8217;t clear just yet. This is a mistake often made by new businesses. Your products need to be delivered, remember! Generally, if you sell digital products, the industry standard is for the product to be delivered instantly; generally through a download link. Your customer expects this, so ensure this is in place. Physical products require more attention to detail; namely physical delivery. Ensure that your customer is informed every step of the way. Communication is essential. If at all possible, send your customer a means of tracking the product through the course of its delivery. Feeling insecure is something your customer should never have to experience.</p>
<p>5) Service and Support&#8211;</p>
<p>A good and trusted business will always endevour to provide and utilise excellent customer service support. To a decent extent, your online business customer support will determine whether or not you get repeat purchases, or if your customer requests a refund. The support abilities of your internet business should be efficient as possible; after all, this is the industry standard. At the least, a well-structured and timely e-mail support service should be available to the customer. The more professional your online business becomes, so should your support methods. More advanced methods such as utilising online helpdesks, FAQs, live chats, a ticket system, a knowledge base, will help greatly; these are just examples, there are more support methods out there which you can use.</p>
<p>6) Security&#8211;</p>
<p>The internet business world is filled with people who are honest, trustworthy, and are willing to do everything to help the customer. But, on the other hand, the opposite is also very true. And as such, the internet community at large are getting more aware of ways to protect themselves from the internets less desirable people and activities. Namely, E-commerce frauds.</p>
<p>Because of this, it is upto you and your business to ensure that your visitors are protected, and to prove to them that they can trust you. Simple things, such as using a secured server to process your payments, can help more than is seen on the surface. A digital certificate can also help your business, so purchase one if you can. Physical mailing addresses, and even a phone number where your customers can contact you. Whatever you can do to provide your customers with some piece of mind.</p>
<p>7) Community&#8211;</p>
<p>Your online business has begun to flourish, and you have now received more than just a few sales&#8211;by now you should be thinking about starting a community. A community in any sense is about belonging to something; in this case its no different. Use your customers as a community development team for your product. Use their suggestions and comments to develop and change your product(s). Not only is this an excellent way to increase product ideas for your business, but with every new product release or update, you&#8217;ll see an increase in sales ratios, and you will also have built a loyal customer base.</p>
<p>Well there you have it! Utilising and practising these 7 keys will not only help your online business grow and flourish, but will also ensure your customers are happy, too!</p>
]]></content:encoded>
			<wfw:commentRss>http://danltn.com/7-ways-to-get-a-successful-internet-business/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Don&#8217;t get banned for Adsense Click Fraud</title>
		<link>http://danltn.com/dont-get-banned-for-adsense-click-fraud/</link>
		<comments>http://danltn.com/dont-get-banned-for-adsense-click-fraud/#comments</comments>
		<pubDate>Thu, 27 Dec 2007 18:54:18 +0000</pubDate>
		<dc:creator>Danltn</dc:creator>
		
		<category><![CDATA[Internet Promotion]]></category>

		<guid isPermaLink="false">http://danltn.com/dont-get-banned-for-adsense-click-fraud/</guid>
		<description><![CDATA[Many web site owners are getting their Google Adsense account terminated when they have done nothing wrong to deserve the punishment. Considering the money that they are getting from Adsense, they would certainly want to get back into it.
Considering the money to be made with Adsense, it is no wonder that they would want to [...]]]></description>
			<content:encoded><![CDATA[<p>Many web site owners are getting their Google Adsense account terminated when they have done nothing wrong to deserve the punishment. Considering the money that they are getting from Adsense, they would certainly want to get back into it.</p>
<p>Considering the money to be made with Adsense, it is no wonder that they would want to get back into it.</p>
<p>It is that same consideration why the Google Adsense click fraud is thought of and why many people are getting into it.</p>
<p>Click fraud is the act of clicking on ads for the purpose of costing the advertiser money. It is simply the same as paying out cash for false leads. Many people website owners are aware of this fraud and are sharing the same sentiment that this is the one big problem that Adsense is facing.</p>
<p>How do you prevent being involved in this fraud?</p>
<p>Majority of web hosts are offering access logs. Once this is offered to you, it is necessary that you hand it over to Google as well. This allows them to look for any suspicious activity on your site. Problems like this are very serious and giving it to them is saying that you would want to help them in any way you can in solving the problem.</p>
<p>It can also help if you have a click monitoring software. If you do not have one yet, you should try and get one. There is absolutely no major factor preventing you from having one because most of this software is free.</p>
<p>As usual, all the information you have received should be turned over to Google. This is showing Google that you too are fighting against click frauds and is in no way a part of it.</p>
<p>Study your server logs and watch for any activity that seems suspicious. Report anything that you may find odd, may it big or small thing.</p>
<p>You may want to consider disabling ads for your own IP address and local geographic area. This will certainly prevent accidents and will not make Google mistake another user as you. You can do through a htaccess file. This will avoid Google mistaking as clicking on your own ads and be kicked out because of it.</p>
<p>Keep your Adsense off on pop ups and pop unders. Your ads should not be displayed on content sites that promote illegal activity or tampering of the legal rights of other people or business. Included in this are the content that is considered adult and gambling ones. If you think that you may be breaking this rule, immediately remove your content or Adsense from the web page.</p>
<p>Be truthful and confess up to Google about times when you might have clicked on your own as, whether accidentally or intentionally. Or the times when you have done something that is against the Terms of Service that they are implementing. Be honest about anything that you may have done that is wrong. Confessing is way better than Google learning about it eventually. It would mean eventual termination and no getting back what you have worked so hard for.</p>
<p>Do not tell your family or friends about Adsense on your website. Chances are they may start clicking on them to help you make money without you knowing it. They may be doing more harm to you than help by trying it in the first place.</p>
<p>If ever someone you know chanced upon your Adsense, make sure they understand that they cannot click on your ads under any circumstances. It would be wise to brief them on important things about Adsense and what not to do with them.</p>
<p>Most pay per click networks have different measures in hand to protect website owners against click frauds. Other search engines can track more than 50 data points, IP address, browser’s information, user’s session info and pattern recognition. They also have “systems” available that detects fraud. Not to mention the specialized teams monitoring how things are going and helping advertisers stop click frauds.</p>
<p>Google offers suggestion on how to avoid click fraud. Using “negative keywords” can be used to keep your Adsense showing on products and services that are in no way related to yours. Adding tracking URLs to your links so you can track the traffic coming from Google.</p>
<p>Do not be caught in the Google click fraud. Be aware and be wary.</p>
]]></content:encoded>
			<wfw:commentRss>http://danltn.com/dont-get-banned-for-adsense-click-fraud/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Call of Duty 4</title>
		<link>http://danltn.com/call-of-duty-4/</link>
		<comments>http://danltn.com/call-of-duty-4/#comments</comments>
		<pubDate>Sat, 15 Dec 2007 13:36:58 +0000</pubDate>
		<dc:creator>Danltn</dc:creator>
		
		<category><![CDATA[My Life]]></category>

		<guid isPermaLink="false">http://danltn.com/call-of-duty-4/</guid>
		<description><![CDATA[War rages on in the fourth edition of Activision&#8217;s acclaimed war game. For the first time in the series, Call of Duty moves away from WWII to the modern battlefield. Armed with an arsenal of advanced and powerful modern day firepower, players are transported to treacherous hotspots around the globe to take on a rogue [...]]]></description>
			<content:encoded><![CDATA[<blockquote><span id="objectDescription">War rages on in the fourth edition of Activision&#8217;s acclaimed war game. For the first time in the series, Call of Duty moves away from WWII to the modern battlefield. Armed with an arsenal of advanced and powerful modern day firepower, players are transported to treacherous hotspots around the globe to take on a rogue enemy group threatening the world. As both a U.S Marine and British S.A.S. soldier fighting through an unfolding story full of twists and turns, players use sophisticated technology, superior firepower and coordinated land and air strikes on a battlefield where speed, accuracy and communication are essential to victory. The epic title also delivers an added depth of multiplayer action providing online fans an all-new community of persistence, addictive and customizable gameplay</span>.</p></blockquote>
<p>This game is stunning, absolutely stunning, in game graphics are unbelievable - The gameplay is fantastic. I really never have played such a well constructed game before.</p>
<p>But of course it&#8217;s not all good, Halo 3 easily has a better menu system, and the Ranking system on Halo 3 I feel is superior to Call of Duty&#8217;s, I don&#8217;t like the idea of unlocking weapons at all, if we have bad weapons at the beginning, then it&#8217;s so much harder to get to the higher levels, to get the new weapons.</p>
<p>Custom Classes and massive diverse weapon set are fantastic though, even better - The weapons are realistic.</p>
<p>I&#8217;ve put a video of CoD in the Video spot for this week.</p>
]]></content:encoded>
			<wfw:commentRss>http://danltn.com/call-of-duty-4/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Finally: Halo 3 Major symbol</title>
		<link>http://danltn.com/finally-halo-3-major-symbol/</link>
		<comments>http://danltn.com/finally-halo-3-major-symbol/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 21:14:33 +0000</pubDate>
		<dc:creator>Danltn</dc:creator>
		
		<category><![CDATA[Halo 3]]></category>

		<guid isPermaLink="false">http://danltn.com/finally-halo-3-major-symbol/</guid>
		<description><![CDATA[                
Finally! Got my Halo 3 Major Symbol
&#8216;Nuff said. Why not check out the rest of my Halo 3 Stats?
Why not view this game where I get a staggering 37 kills and only 2 deaths. I was on fire that [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img src="http://www.bungie.net/images/halo3stats/xp/342b27cf-8147-4503-99c2-112060d171cc.gif" style="border: 0pt none " border="0" height="80" width="60" />                <img src="http://www.bungie.net/images/halo3stats/identity/heroic.gif" style="border: 0pt none " border="0" height="80" width="66" /></p>
<h3 align="center">Finally! Got my Halo 3 Major Symbol</h3>
<p>&#8216;Nuff said. Why not check out the rest of my <a href="http://www.bungie.net/stats/halo3/default.aspx?player=Danltn">Halo 3 Stats</a>?</p>
<p>Why not view <a href="http://www.bungie.net/Stats/GameStatsHalo3.aspx?gameid=154621478&amp;player=Danltn">this game</a> where I get a staggering 37 kills and only 2 deaths. I was on fire that game, and you can check out some of my best action in my <a href="http://www.bungie.net/stats/Halo3/FileShare.aspx?gamertag=Danltn">File Share</a>. I&#8217;ll upload my best bits soon. No worries, I&#8217;ve got it all saved to my Hard Drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://danltn.com/finally-halo-3-major-symbol/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
