<?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>Ashraful Islam</title>
	<atom:link href="http://www.ashnah.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ashnah.com/wordpress</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Thu, 11 Sep 2008 15:18:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>sentimental analysis</title>
		<link>http://www.ashnah.com/wordpress/sentimental-analysis/sentimental-analysis/</link>
		<comments>http://www.ashnah.com/wordpress/sentimental-analysis/sentimental-analysis/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 15:18:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[sentimental analysis]]></category>

		<guid isPermaLink="false">http://www.ashnah.com/wordpress/?p=12</guid>
		<description><![CDATA[An important part of our information-gathering behavior has always been to find out what other people think. With the growing availability and popularity of opinion-rich resources such as online review sites and personal blogs, new opportunities and challenges arise as people can, and do, actively use information technologies to seek out and understand the opinions [...]]]></description>
			<content:encoded><![CDATA[<p>An important part of our information-gathering behavior has always been to find out what other people think. With the growing availability and popularity of opinion-rich resources such as online review sites and personal blogs, new opportunities and challenges arise as people can, and do, actively use information technologies to seek out and understand the opinions of others. The sudden eruption of activity in the area of opinion mining and sentiment analysis, which deals with the computational treatment of opinion, sentiment, and subjectivity in text, has thus occurred at least in part as a direct response to the surge of interest in new systems that deal directly with opinions as a first-class object.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ashnah.com/wordpress/sentimental-analysis/sentimental-analysis/feed/</wfw:commentRss>
		</item>
		<item>
		<title>using tar to back up file with ftp</title>
		<link>http://www.ashnah.com/wordpress/linux-ubuntu/using-tar-to-back-up-file-with-ftp/</link>
		<comments>http://www.ashnah.com/wordpress/linux-ubuntu/using-tar-to-back-up-file-with-ftp/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 15:45:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[linux debian ubuntu]]></category>

		<guid isPermaLink="false">http://www.ashnah.com/wordpress/?p=10</guid>
		<description><![CDATA[If you want to backup and upload to a ftp server you can do the following
using linux tar command
&#62;tar cf test.tar dirname/ 
no compression
&#62;tar cfz test.tar.gz  dirname/
tar and compress with gzip
&#62;tar cfj test.tar.bz dirname/
tar and bunzip commpression.
After you have done above you can ftp the test.tar file to aremote ftp server.
or you can do all the [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to backup and upload to a ftp server you can do the following</p>
<p>using linux tar command</p>
<p>&gt;tar cf test.tar dirname/ </p>
<p>no compression</p>
<p>&gt;tar cfz test.tar.gz  dirname/</p>
<p>tar and compress with gzip</p>
<p>&gt;tar cfj test.tar.bz dirname/</p>
<p>tar and bunzip commpression.</p>
<p>After you have done above you can ftp the test.tar file to aremote ftp server.</p>
<p>or you can do all the above by using a shell script like below</p>
<p>!/bin/sh</p>
<p>tar cf test.tar mydirectory/</p>
<p>HOST=ftp.example.com</p>
<p>USER=test<br />
PASS=test<br />
FILE=test.tar</p>
<p>ftp -n $HOST &lt;&lt;EOF<br />
quote USER $USER</p>
<p>quote PASS $PASS</p>
<p>put $FILE</p>
<p>quit</p>
<p>EOF</p>
<p>exit 0</p>
<p> </p>
<p>Above script will do all the thing.</p>
<p>If you need any further help please contact me. I myself is a linux learner.</p>
<p> </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ashnah.com/wordpress/linux-ubuntu/using-tar-to-back-up-file-with-ftp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Basic HTML Tags</title>
		<link>http://www.ashnah.com/wordpress/web-design/basic-html-tags/</link>
		<comments>http://www.ashnah.com/wordpress/web-design/basic-html-tags/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 19:38:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.ashnah.com/wordpress/?p=9</guid>
		<description><![CDATA[Basic HTML Tags
Most HTML tags come in pairs, an opening and closing set. The text to be formatted by the tags is written between the pair. It is essential for both tags to be present for the document to work correctly. All tags are enclosed in left and right angle brackets (&#60;) and (&#62;). Closing [...]]]></description>
			<content:encoded><![CDATA[<p>Basic HTML Tags<br />
Most HTML tags come in pairs, an opening and closing set. The text to be formatted by the tags is written between the pair. It is essential for both tags to be present for the document to work correctly. All tags are enclosed in left and right angle brackets (&lt;) and (&gt;). Closing tags are preceded by a backslash (/). The tags are not case sensitive though you may wish to keep paragraph related tags in uppercase and phrase/word related tags in lower case inorder to distinguish them more easily when scanning your file.</p>
<p>Table of Contents<br />
Tags to Open &amp; Close an HTML Document<br />
Headings<br />
Lists<br />
Links<br />
Images<br />
Other Useful HTML Tags<br />
Tags to open and close an HTML document<br />
All HTML documents should begin with the following set of tags:</p>
<p>&lt;HTML&gt;<br />
&lt;HEAD&gt;<br />
&lt;TITLE&gt;<br />
Write your title here.<br />
&lt;/TITLE&gt;<br />
&lt;/HEAD&gt;<br />
&lt;BODY&gt;<br />
Begin your main body of text here.<br />
All HTML documents should end with the following set of tags:</p>
<p>&lt;/BODY&gt;<br />
&lt;/HTML&gt;<br />
Headings<br />
Headings come in a number of levels or &#8220;sizes.&#8221; The major title of an HTML document is usually the largest, &lt;H1&gt;. Heading tags are used in pairs, with the actual text of the heading between the two tags.</p>
<p>&lt;H1&gt; heading one &lt;/H1&gt;<br />
Heading One<br />
&lt;H2&gt; heading two &lt;/H2&gt;<br />
Heading Two<br />
&lt;H3&gt; heading two &lt;/H3&gt;<br />
Heading Three<br />
Lists<br />
Use these tags to create ordered (numbered) and unordered (bulleted) lists. List tags include pairs to designate the entire list and individual tags to mark each item within the list.</p>
<p>        &lt;OL&gt; Ordered list<br />
        &lt;LI&gt; Line 1<br />
        &lt;LI&gt; Line 2<br />
        &lt;LI&gt; Line 3<br />
        &lt;/OL&gt; End list</p>
<p>Line one<br />
Line two<br />
Line three</p>
<p>        &lt;UL&gt; Unordered list<br />
        &lt;LI&gt; Line 1<br />
        &lt;LI&gt; Line 2<br />
        &lt;LI&gt; Line 3<br />
        &lt;/UL&gt; End list</p>
<p>Line one<br />
Line two<br />
Line three<br />
Links<br />
Hypertext links allow you to jump to other HTML files you&#8217;ve created and to sites around the Internet. It is necessary to know the URL for the site you wish to link to. The tags for a link include the URL (which is enclosed in quotation marks) and the anchor text (the text that you click to jump to the link).</p>
<p>&lt;A HREF=&#8221;the url&#8221;&gt; anchor text &lt;/A&gt;</p>
<p>&lt;A HREF=&#8221;<a href="http://www.lgoogle.com/">http://www.lgoogle.com/</a>&#8220;&gt;<br />
UW Libraries Home Page &lt;/A&gt;</p>
<p>UW Libraries Home Page<br />
Inline Images<br />
Images can be a bit tricky because of the variety of image types. The easiest to work with are .gif and jpg images. You can scan in your own images using the scanners in Suzzallo Library or you can download an image from another Internet site (be aware of copyright restrictions). You should also add an additional message for non-graphical web browsers such as lynx which will describe the image.<br />
&lt;IMG<br />
SRC=&#8221;test.gif&#8221;&gt;</p>
<p> </p>
<p>Other Useful HTML Tags<br />
&lt;P&gt;<br />
Use to create paragraphs. You must use this between each paragraph or else all of them will run together.<br />
&lt;BR&gt;<br />
Use to make a line break.<br />
&lt;HR&gt;<br />
Use to make a line across the page.</p>
<p> </p>
<p> </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ashnah.com/wordpress/web-design/basic-html-tags/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SEO Tips for Small Business Websites</title>
		<link>http://www.ashnah.com/wordpress/uncategorized/seo-tips-for-small-business-websites/</link>
		<comments>http://www.ashnah.com/wordpress/uncategorized/seo-tips-for-small-business-websites/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 19:35:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ashnah.com/wordpress/?p=8</guid>
		<description><![CDATA[SEO Tips for Small Business Websites
Simple techniques that will put you ahead of the competition.
Every day I help dozens of small businesses optimize their websites to improve their visibility and rankings on search engines, and every day, I ask one client to make many of the same changes as the last.
Small business websites generally face [...]]]></description>
			<content:encoded><![CDATA[<p>SEO Tips for Small Business Websites<br />
Simple techniques that will put you ahead of the competition.</p>
<p>Every day I help dozens of small businesses optimize their websites to improve their visibility and rankings on search engines, and every day, I ask one client to make many of the same changes as the last.</p>
<p>Small business websites generally face some major obstacles to ranking well on Google, and competition is rarely one of those obstacles - at least not in this stage in the game as most small business owners still seem oblivious to the potential in being ranked first in search engine rankings - of course, competition varies within industries (apologies to all the real estate agents that are reading this). In my experience, once these obstacles are out of the way, small business websites (for auto repair shops, day spas, shooting ranges, etc.) climb very quickly to the top spots on search engines.</p>
<p>So what does it take to step ahead of the competition?</p>
<p>1. Design it right - the first time<br />
Small business websites have two inherent enemies: the owner, and his/her budget. I wish I had recorded (because I promise you’d be surprised) all the times I’ve heard:</p>
<p>I made this site myself with Dreamweaver/SiteBuilder/[an online tool] but it doesn’t seem to be appear in search engines</p>
<p>or</p>
<p>I can’t make the changes you asked for because the tool I built my website with doesn’t give me access to the HTML/my web designer says that those changes are just too hard (web designer is inadequate)</p>
<p>The best advice I can give (and as a web designer you’ll hear this from me again and again) is to find a professional web designer. Small business owners often either look for the cheapest, most affordable solution and sacrifice quality and the ability to test and improve their website, or they try to do it themselves, thinking that the FrontPage 2000 class they took in High School qualifies them to make the company website - besides, it saves money, right?</p>
<p>There are plenty of affordable web designers (no I’m not talking about the friend of your nephew’s girlfriend) that will work with you to make a website that reflects your brand, product, and customer base.</p>
<p>Don’t forget - websites are promotional. You wouldn’t pay for a cookie-cutter mailer or pay for billboards on roads with no traffic (see where I’m going with this?) - so don’t expect that using the cheapest/simplest web builder or template is going to be a smart investment.<br />
When it comes to building a website, think in the long-run. A website that can’t be found is a waste of money; same with a website that doesn’t sell effectively. You shouldn’t have to pay a lot for a well-built website, but you’ll be paying more if it is built in a non search-engine-friendly way or in a way that doesn’t allow you or your designer to make changes to the HTML code on your site.</p>
<p>2. Use keywords<br />
Please - include keywords on your site. The copy (text not contained in images) on your site is the only indicator that search engines have in determining what your site is about and what keywords it should rank for.</p>
<p>If your site doesn’t say “Plumber in Reno, NV” anywhere on your site, then it will never rank for that keyword.</p>
<p>When determining keywords to target, think of what you would type to find a similar service/company/product in your area. When you are searching for Pizza in Athens, GA, you will probably type something along the lines of “Pizza Athens GA” - this works with nearly every industry. The “[industry/category/product] [area]” keyword model is a good example to follow.</p>
<p>Where to place keywords: Once you have chosen a few keywords to target, use them in an intuitive, relevant way in your body copy. It shouldn’t be hard to include them if you talk about your area and industry right on your home page (which is the page you should focus on the most - none of those “Enter Here” pages that waste users’ time and tell search engines that your site is about “Enter Here”).</p>
<p>3. Avoid using Flash<br />
As a designer, this has always been a difficult recommendation to make. I love Flash - I think it’s pretty, and it is also (especially the latest version) versatile, interactive, and makes for some great applications (see jooce.com). But until July 1, 2008 it has not been search-engine-friendly. Google just began indexing Flash, but its SEO value has yet to be tested and determined so my advice is still to only use Flash for logos, banners, and other small graphical calls to action that don’t need a lot of text.</p>
<p>4. Take advantage of title tags<br />
You don’t have to be familiar with HTML to master this one (very) helpful technique: using title tags correctly. Title &lt;title&gt; tags are found towards the beginning of your HTML and all you have to worry about is the text between the opening &lt;title&gt; tag and the closing &lt;/title&gt; tag.</p>
<p>Too many websites don’t take advantage of the SEO value that Title tags have to offer; they use titles like “Home,” their domain name, or their business name. I recently read a very good article that discusses using your business name in title tags - it is certainly worth re-thinking.</p>
<p>Research has shown - and the experts agree - that title tags are one of the most important factors that search engines take into account when they index your website.</p>
<p>How to use Title Tags correctly:</p>
<p>Do:</p>
<p>Make the title tag on each page of your website unique<br />
Try to keep it under 65 characters (that is all that is visible on search engine results pages)<br />
Include keywords that are specific to the respective page, and describe the theme of the content on that page<br />
Don’t:</p>
<p>repeat keywords<br />
repeat the name of the page (instead of “About Us,” write “About [Company Name] - San Diego Dentist”)<br />
worry about fitting in every keyword you want to rank for - just add the most important one, or - if there is plenty of room and it makes sense - two<br />
forget that this is what users see in search engine results - so make it relevant for users (not just for search engines)<br />
5. Promote your site<br />
I am always surprised that my clients want to be found on Google, Yahoo!, and MSN, they are willing to pay me for it, but they haven’t spent the time to add their business profile on Google Local, Yahoo! Local, or MSN Local. Here are the links to these business profiles (this gets you on Maps and business directories for all three search engines:)</p>
<p>Google Local - Gets you in local listings and Google Maps</p>
<p>Yahoo! Local - Gets you in the Yahoo! business directory and maps<br />
Live Search (MSN) Local Listing Center - Adds your business to MSN Live maps<br />
It is also helpful to add your business to these directories:</p>
<p>Dmoz Open Directory Project - adds your site to hundreds of online directories.<br />
InLocal.com Local Business Directory - there is a free version, and the paid version gets you into over 70 directories.<br />
YellowPages.com<br />
SuperPages.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ashnah.com/wordpress/uncategorized/seo-tips-for-small-business-websites/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top Ten Ways To Improve Your site rank</title>
		<link>http://www.ashnah.com/wordpress/uncategorized/top-ten-ways-to-improve-your-site-rank/</link>
		<comments>http://www.ashnah.com/wordpress/uncategorized/top-ten-ways-to-improve-your-site-rank/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 19:31:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ashnah.com/wordpress/?p=7</guid>
		<description><![CDATA[The practice of search engine optimization (SEO) is part science and part black art. Keeping up with what search engine algorithms deem most worthy for high page rank is ever changing and highly secretive. Aggressive SEO hacks who try to &#8220;cheat the system&#8221; may earn a web site a high rank one day, but possible [...]]]></description>
			<content:encoded><![CDATA[<p class="bodytext">The practice of search engine optimization (SEO) is part science and part black art. Keeping up with what search engine algorithms deem most worthy for high page rank is ever changing and highly secretive. Aggressive SEO hacks who try to &#8220;cheat the system&#8221; may earn a web site a high rank one day, but possible banishment the next. Beware of optimizers who promise you #1 rankings; they may do more harm than good.</p>
<p class="bodytext">It&#8217;s no secret that search engines (such as Google and others) like content — lots of it, fresh and steamy. The more pages you publish in your area of expertise, the more exposure you will have to the search engines (they love archived material too). And the more strategically you headline, title, metatag and link those pages, the higher they rise in rank.</p>
<p class="bodytext">While all search engines work a little differently, they all attempt to provide the best, most relevant information based on search queries. So, I guess what I&#8217;m trying to say is: Publish. And be relevant. I&#8217;ve had great success (see <a href="http://www.ashnah.com/wordpress/wp-admin/google_successes.html">Google Successes</a>) with client web sites scoring well on search engines by publishing pages that avoid schemes to &#8220;trick&#8221; search engines and implement the following tried-and-true tips for search engine success.</p>
<p class="bodytext">1. Use keyword-savvy &#8220;page titles,&#8221; and strategic and proper metatagging on all pages.</p>
<p class="bodytext">2. Allow search-engine robots easy access throughout your site via text links, alt-tagged navigation icons, or a site map.</p>
<p class="bodytext">3. Register your URL with major search engines, directories and specialty sites, as well as select paid directories (such as Yahoo!).</p>
<p class="bodytext">4. Use strategic home page content (keywords in context in HTML text).</p>
<p class="bodytext">5. Use hyperlinks to further weight in-text keywords.</p>
<p class="bodytext">6. Encourage in-bound links from other relevant sites to your pages.</p>
<p class="bodytext">7. Add an integrated web log to your web site.</p>
<p class="bodytext">8. Add/update content frequently. (Write dammit!)</p>
<p class="bodytext">9. Avoid Flash-based opening home-page screens, improper metatag code, as well as any schemes meant to &#8220;trick&#8221; search engines.</p>
<p class="bodytext">10. Get a search-engine optimization audit for your web site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ashnah.com/wordpress/uncategorized/top-ten-ways-to-improve-your-site-rank/feed/</wfw:commentRss>
		</item>
		<item>
		<title>top mistakes that a seo can make</title>
		<link>http://www.ashnah.com/wordpress/uncategorized/top-mistakes-that-a-seo-can-make/</link>
		<comments>http://www.ashnah.com/wordpress/uncategorized/top-mistakes-that-a-seo-can-make/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 19:29:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ashnah.com/wordpress/?p=6</guid>
		<description><![CDATA[If you’ve tried your hand at building an Internet-based business but haven’t yet reached the success you want, find out about these eleven deadly mistakes and how to avoid them.
Mistake 1 - Not Treating What You Do as a Business.
The difference between a hobby and a business is that a hobby doesn’t make you money [...]]]></description>
			<content:encoded><![CDATA[<p>If you’ve tried your hand at building an Internet-based business but haven’t yet reached the success you want, find out about these eleven deadly mistakes and how to avoid them.</p>
<p><strong>Mistake 1 - Not Treating What You Do as a Business.</strong><br />
The difference between a hobby and a business is that a hobby doesn’t make you money - it costs you money.</p>
<p>If you’re earnest about starting a profitable online business, approach seriously and focus on generating revenue. Treat your online business as you would any regular business.</p>
<p><strong>Mistake 2 - Being Distracted by Too Many Good Ideas.</strong><br />
You can light up a room with a light bulb, but you can cut through steel with a laser beam. The same is true with your effort and ideas.</p>
<p>Too many Internet-Entrepreneur-Wanna-Be’s lack the will power to stay focused. Chasing too many ideas at the same time often leaves them exhausted, frustrated, and with little result to show for their hard work.</p>
<p>The key to success is to select one business idea and to develop it completely before moving on to another project.</p>
<p><strong>Mistake 3 - Not Selecting a Specific Niche.</strong><br />
Perhaps the biggest mistake of all is trying to be everything to everyone. You can’t - so stop!</p>
<p>It’s very counter-intuitive to focus on a smaller slice of the market and most people are afraid to do it. But when you do, your business will grow faster, and you’ll be more financially successful in less time.</p>
<p><strong>Mistake 4 - Falling in Love With the Wrong Product Idea.</strong><br />
Even the most experienced entrepreneurs fall into this trap from time-to-time and develop products without doing any research. Before you devote any serious amount of time and effort to developing your new ideas make sure there is a demand for the type of product, information, or service you want to launch.</p>
<p>If you need help with selecting an ideal niche market for your business and finding out which products you should develop first, take a look at this fast track training program (http://www.infoprofitfasttrack.com/vipinvitation.html).</p>
<p><strong>Mistake 5 - Falling for the “Get Rich Quick” Scheme!</strong><br />
Remember the old adage “if something is too good to be true…”? It’s alive and well on the Internet.</p>
<p>Countless people buy into the idea of making millions online overnight. Sadly, they buy into programs hyped up with empty promises only to find themselves “out of cash and out of luck” a short while later.</p>
<p>Be aware of spammers, illegal money-winning scams, and buying “ready to go businesses” that are “hot but will sell for cheap”! Before you fork over your money investigate if those hot businesses have ever made a dime for their current owner.</p>
<p>Doing your homework will save you valuable time, money and many sleepless nights!</p>
<p><strong>Mistake 6 - Going Into It, Instead of Growing Into It.</strong><br />
While the Internet makes it easier to reach your potential clients, you’re still building a business - and that takes time. Don’t tell your boss you’re quitting today because you started this hot new online business last night and you’ll be “rolling in dough in no time flat!”</p>
<p>First make sure your business idea works and is profitable.</p>
<p>That’s one of the advantages of Internet Business - you can start small and step-it-up as your business starts getting sales and generating profits.</p>
<p>Just be sure you can consistently replace your current income before jumping ship and telling your boss to “beat it”!</p>
<p><strong>Mistake 7 - Being a Copy-Cat!</strong><br />
Quickly - what is the most popular business on the Internet? You guessed it - it’s how to make money on the online!</p>
<p>It seems that everyone who has bought a course on making money online is credible enough to teach this subject a week or two later!</p>
<p>Don’t fall for the allure of easy money - because it’s only a perception. In reality your chances of having a successful online business are much greater when you are different from the pack.</p>
<p><strong>Mistake 8 - Wasting Time and Money on Developing Pretty but Useless Websites.</strong><br />
A bad idea is a bad idea - no matter how pretty you dress it up. Many people waste precious startup dollars on expensive but needless graphic design work, pretty logos, and complex web design.</p>
<p>In reality, many businesses can be simple and inexpensive to get off the ground. In fact, a simple site with little or no graphics will often make more money than one with all the latest bells and whistles flashing all over the page.</p>
<p>Think - what is the core concept of your business. Outline it on a single sheet of paper, then implement it fast in it’s simplest form. You can always give it a makeover and make it prettier if it’s successful and profitable.</p>
<p><strong>Mistake 9 - Not Building Relationship with Clients.</strong><br />
“Even though you don’t know me from Adam, I want you to take out your wallet and give me $20 - in exchange I’ll make you the King of the Universe!” What!? You don’t want to give me your $20? What<br />
a surprise!</p>
<p>Most people think about starting a business online in terms of getting a quick sale - with no prior relationship with their potential clients at all.</p>
<p>In reality, you’ll be more successful when you make your first goal to collect contact information from potential clients and follow up with them on regular basis.</p>
<p>It’s much easier to “sell something for FREE” than trying to convince people to give you money at first.</p>
<p>Make it your goal to prove your credibility online and make your business all about relationships with prospects and clients, and you’ll build a thriving online empire.</p>
<p><strong>Mistake 10 - Calling It “QUITS” Too Soon!</strong><br />
If your new online venture isn’t making money at first, don’t walk away from it too soon. Many entrepreneurs have multiple “failures” in their background - which in reality are lessons in what didn’t work.</p>
<p>Evaluate your ideas and get help with gaining a new perspective on what you’re doing. With some new ideas you might find a new way to position your business differently and make it profitable.</p>
<p>Or maybe you simply need to give it more time to gain the traction and momentum you want.</p>
<p><strong>Mistake 11 - Being too cheap!</strong><br />
While it’s a good habit to be thrifty with your dollars, don’t confuse saving money with being cheap. Remember the price you’re paying for things isn’t always expressed in money. It’s also the time, effort, and lost opportunities you can’t take advantage of because you lack the know-how or are busy doing low-level tasks.</p>
<p>Smart online entrepreneurs continually invest in their Education. They buy marketing training programs, time-saving software tools, and systems that allow them to grow businesses faster with less<br />
effort.</p>
<p>The best news is that getting good basic training in how to start your own information marketing business doesn’t have to be expensive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ashnah.com/wordpress/uncategorized/top-mistakes-that-a-seo-can-make/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How search engine works</title>
		<link>http://www.ashnah.com/wordpress/seo-marketing/how-search-engine-works/</link>
		<comments>http://www.ashnah.com/wordpress/seo-marketing/how-search-engine-works/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 19:27:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SEO Marketing]]></category>

		<guid isPermaLink="false">http://www.ashnah.com/wordpress/?p=5</guid>
		<description><![CDATA[
Spider:
A spider is a robotic program that downloads web pages and looks at the code of the page. The spider doesn&#8217;t have any visual components at all, if you right click on most web pages and go to view source that is what the spider can see.
Crawler:
While the spider is downloading pages, it is the [...]]]></description>
			<content:encoded><![CDATA[<ul id="list">
<li>Spider:<br />
A spider is a robotic program that downloads web pages and looks at the code of the page. The spider doesn&#8217;t have any visual components at all, if you right click on most web pages and go to view source that is what the spider can see.</li>
<li>Crawler:<br />
While the spider is downloading pages, it is the crawler&#8217;s job to strip apart the page and look for links. It is the crawler&#8217;s job to look at the links and then decide where the spider should go next determined on the links or a pre-defined list of URL&#8217;s.</li>
<li>Indexer:<br />
It is the indexers job to analyse different aspects of a web page. It looks at Entities such as, titles, headings, links, text, constructs, bold, italic, and other style portions of a page that are ripped apart and analysed.</li>
<li>Database:<br />
The database is where all the results and pages are stored, considering that there are an estimated 10 billion web pages on the Internet this can take a huge amount of storage space, which will be increasing indefinitely.</li>
<li>Search Engine Results Page:<br />
The results page is where the clever stuff takes place; this is where the engine decides which page matches the query that was entered in the search box of their home page.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ashnah.com/wordpress/seo-marketing/how-search-engine-works/feed/</wfw:commentRss>
		</item>
		<item>
		<title>seo tips, how to optimise your site</title>
		<link>http://www.ashnah.com/wordpress/seo-marketing/seo-tips-how-to-optimise-your-site/</link>
		<comments>http://www.ashnah.com/wordpress/seo-marketing/seo-tips-how-to-optimise-your-site/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 19:24:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SEO Marketing]]></category>

		<guid isPermaLink="false">http://www.ashnah.com/wordpress/?p=4</guid>
		<description><![CDATA[Top 10 SEO Tips
The following tips are not necessarily in order of importance, but are in the order you should consider when building a new website from scratch. My top 10 tips ranked by order of importance for high rankings are displayed elsewhere.

Know your geographic market and ensure your domain has the correct TLD.
If your [...]]]></description>
			<content:encoded><![CDATA[<h3>Top 10 SEO Tips</h3>
<p>The following tips are not necessarily in order of importance, but are in the order you should consider when building a new website from scratch. My top 10 tips ranked by order of importance for high rankings are displayed elsewhere.</p>
<ol>
<li><strong>Know your geographic market and ensure your domain has the correct TLD.</strong><br />
If your primary market is the UK it is important to use a .UK TLD and ideally have your domain hosted on UK based servers.</li>
<li><strong>Include keyword in Domain name (using hyphens if necessary).</strong><br />
This doesn&#8217;t mean having a domain name like <em>keyword-keyword-keyword-keyword.com</em> try to stick to the one hyphen and not read as spammy. A good example is a site that sells wheelchair ramps with the URL of the site being <em>www.wheelchair-ramps.co.uk</em></li>
<li><strong>Create as much content about your products or subject as you can.</strong><br />
After doing this divide in to 4 or 5 sections (<em>this will help later when creating your navigation structure</em>)</li>
<li><strong>AFTER you have your site content start keyword researching</strong><br />
There are tools you can use for keyword research; Wordtracker and The Google AdWords Keyword Tool to name but two. I personally use a combination of the Google Keyword Tool, Google LSI and T.J. Common Sense.</li>
<li><strong>Decide on 4 or 5 primary keywords to use as main sub-sections</strong><br />
Ideally have an idea of 4 or 5 main keywords, call them your <strong>Primary Keywords</strong> and then try to position secondary keywords with the Primary Word most closely associated with it.</li>
<li><strong>Sit down and sketch out your navigation system</strong><br />
Put a lot of time in to this and play around until it is right, use Primary Keyword as headers for 5 main Sub-sections and use secondary keywords as headers for content pages under each Primary Keyword<br />
<strong></strong></li>
<li><strong>Re-write content using knowledge previously gained about keywords and phrases</strong><br />
This doesn&#8217;t mean totally re-writing and stuffing the page with keywords, it requires writing paragraphs ensuring the right phrases are in the right places but isn&#8217;t obvious that the phrases are written for the search engines. Do not write too much information on each page and do not stray of in to writing about something else.</li>
<li><strong>Structure each individual page</strong><br />
With your content rich, keyword balanced page written, you now have to create the page structure. Each page should be seen as an individual website.<br />
Starting from the top,Page title should reflect the content of the <strong>Page</strong> ensuring you use the primary keyword for that <strong>Page</strong> Meta keyword tags, (although not overly important), should list 4 or 5 individual keywords related to the <strong>Page</strong> you have created.</p>
<ul>
<li>Meta Description tags, this should be a short concise description describing what the <strong>Page</strong> is about. This is very important as a selling point as you can manipulate the search engines in to displaying this when the person searches for the keyword used in the description. A favourite of mine is <strong>&#8220;Provides information about the latest KEYWORD now in stock and available online&#8221;</strong> or words suitable for the product.</li>
<li>Avoid bloated code by using external style sheets and minimum coding.</li>
<li>Main page layout was previously discussed whilst sketching the navigation system, but it is important that all links are seen by the engines and are using the correct anchor text related to the pages they are pointing too. Avoid using javascipt for links and if you have to use images ensure you use the correct alt attributes. If the page has too many links on it and looks messy this can be overcome by using a combination of css and javascript to create drop down boxes, but should only be used if you know what you are doing. If you have the opposite problem, and want to include links on the page but not necessarily have search engines follow them, this can be achieved using drop down option boxes.</li>
<li>With yout general layout and your linking structure sorted you should now sort out your headings. The main page heading of the page should use your Keywords and be in <strong>H1 Tags</strong>, this should be followed by your most important paragraph, ideally working down the page you should use secondary headers from h2 to h4 (always using the keywords if possible)</li>
<li>If you have used images on your page ensure keywords in the Alt attributes, this doesn&#8217;t mean keyword stuff them but just describe the image using the keyword.</li>
</ul>
</li>
<li><strong>Proof read your completed page and get a 2nd opinion<br />
</strong>With your page completed try and get someone to check it for you to see if it reads to spammy and to see if you have missed out any obvious key phrases that should be on the page.</li>
<li><strong>Construct your site.</strong><br />
With the previous procedure completed for all pages it&#8217;s now time to put the site together. Simply use the previously devised linking structure, group similar pages together under appropriate sub headings and ensure all links are active and using correct anchor text.</li>
</ol>
<p><strong></strong></p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ashnah.com/wordpress/seo-marketing/seo-tips-how-to-optimise-your-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is the best programming language?</title>
		<link>http://www.ashnah.com/wordpress/programming/what-is-the-best-programming-language/</link>
		<comments>http://www.ashnah.com/wordpress/programming/what-is-the-best-programming-language/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 22:47:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.ashnah.com/wordpress/?p=3</guid>
		<description><![CDATA[I have experience of using perl, php, c#, visual basic, c/c++, java and also seen simple sample program of other languages. I think c++ is the best programming language. Pointer is oviously a problem for beginer but you can easily avoid them.
So why so many languages? Is there is technical reason, or is it just [...]]]></description>
			<content:encoded><![CDATA[<p>I have experience of using perl, php, c#, visual basic, c/c++, java and also seen simple sample program of other languages. I think c++ is the best programming language. Pointer is oviously a problem for beginer but you can easily avoid them.</p>
<p>So why so many languages? Is there is technical reason, or is it just commercial war?</p>
<p>I love these features to be present in a modern language</p>
<ol>
<li>c like syntax with { bracket</li>
<li>included assembly facility like D programming language. looking at D feature it seems it is superior than C# but digital marsh can only do so much competion with microsoft at this stage.</li>
<li>built in flex/yacc facility. like i can select syntax i want but program will be converted according to my choice of converter. For example i like ruby syntax then i write the code in ruby and compiler automaticaly convert them to a intermediate language. .NET is doing that but i am talking in programer level by simply using a config file. like compiler.exe   program.cpp syntaxconfig.txt</li>
<li>built in parsing like embeded html and php code. &lt;cpp  my c++ code &gt;  in same program &lt;c# myc#code &gt;.</li>
<li>cross platform without recompilation</li>
</ol>
<p>Do you like to add more criteria or have criticism?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ashnah.com/wordpress/programming/what-is-the-best-programming-language/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.ashnah.com/wordpress/uncategorized/hello-world/</link>
		<comments>http://www.ashnah.com/wordpress/uncategorized/hello-world/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 20:33:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ashnah.com/wordpress/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ashnah.com/wordpress/uncategorized/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
