<?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>Danaville</title>
	<atom:link href="http://danaville.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://danaville.com</link>
	<description></description>
	<lastBuildDate>Fri, 06 Nov 2009 17:38:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>sSMTP vs Sendmail</title>
		<link>http://danaville.com/open-source/ssmtp-vs-sendmail/</link>
		<comments>http://danaville.com/open-source/ssmtp-vs-sendmail/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 17:38:50 +0000</pubDate>
		<dc:creator>danalwebb</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://danaville.com/open-source/ssmtp-vs-sendmail/</guid>
		<description><![CDATA[&#160;
Linux distributions have relied on the venerable Sendmail package since the early days of Slackware. But Sendmail&#8217;s rich mail server features aren&#8217;t an ideal solution for the typical desktop user whose primary mail support is delivered through a remote ISP. That&#8217;s the perfect place for a simpler solution: sSMTP.
Many years ago, before the Internet standardized [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>Linux distributions have relied on the venerable Sendmail package since the early days of Slackware. But Sendmail&#8217;s rich mail server features aren&#8217;t an ideal solution for the typical desktop user whose primary mail support is delivered through a remote ISP. That&#8217;s the perfect place for a simpler solution: sSMTP.</p>
<p>Many years ago, before the Internet standardized on <a href="http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol">Simple Mail Transfer Protocol</a> (SMTP), applications known as mail transfer agents (MTA) were designed to help process email and determine the best route for message delivery. One of the earliest MTAs, <a href="http://www.sendmail.org/">Sendmail</a>, became extremely popular for dealing with the delivery of email across multiple networks. It was the only viable open source mechanism for delivering email at the time Linux was introduced to the world, so it became the default MTA provided on many Linux distributions.</p>
<p>There has always been a division of labor for email processing. MTAs handle delivery of email and mail user agents (MUA) such as GNOME&#8217;s <a href="http://www.gnome.org/projects/evolution/">Evolution</a>, KDE&#8217;s <a href="http://kontact.kde.org/kmail/">KMail</a>, and Mozilla <a href="http://www.mozilla.com/en-US/thunderbird/">Thunderbird</a> let users create and manage messages. MUAs have only a very basic concept of how to deliver mail. They don&#8217;t need to know how to send a message to its intended recipient; they know only about delivering mail to a specific generally server-based MTA, which is then responsible for routing email to the ultimate recipient.</p>
<p>If you run cron jobs or some automated system that sends you alerts via email, the default method the system uses for sending the message is Sendmail, because it is the default MTA for the built-in Linux <code>mail</code> command (typically /bin/mail). This means you not only have to configure your mail reader to send email to your ISP, but you also need to configure Sendmail to do the same thing.</p>
<p>Unfortunately, Sendmail configuration is a mass of twisty passages that even the most experienced user avoids if at all possible. That means it is not the best tool for the typical desktop user.</p>
<p>Two popular Sendmail MTA alternatives, QMail and Postfix, started off simple, but have become complex systems on their own, with capabilities far beyond the needs of a typical desktop user who seeks to simply route email from his machine to his ISP. Alternatively, you could choose a tool other than /bin/mail to send email through direct use of SMTP, such as elm or pine, but these are full MUA clients that provide lots of options that are overkill for addressing the primary problem of mail delivery to an ISP.</p>
<p>&#160;</p>
<h6><font size="4">The simplified solution: sSMTP</font></h6>
<p>Instead of finding a complicated replacement for mail, you can replace the complicated Sendmail with a simple alternative: <a href="http://packages.debian.org/source/sid/ssmtp">sSMTP</a>. sSMTP simplifies configuring your SMTP options with a small configuration file that allows you to specify items like the name of the remote SMTP server, your authorization (username and password), and the domain for your outbound email in much the way you configure your mail reader.</p>
<p>You can install sSMTP through your distribution&#8217;s package manager, or build and install it from source. In the latter case, unpack the source, change into the source directory, and run the command <code>./configure --prefix=/usr/local/ssmtp --enable-ssl --enable-md5auth</code>. Enabling SSL and MD5Auth allows you to communicate with an ISP that requires SMTP login. You can also enable IPv6 support if you need it; see <code>--help</code> for details.</p>
<p>After the configuration is complete, build and install the package using the normal <code>make</code> and <code>sudo make install</code> commands. When you run the install command you will be prompted for a few items. Follow the displayed instructions. Once installation completes you should find a directory called /usr/local/ssmtp with the sSMTP binary under the sbin subdirectory, and the configuration file under the etc/ssmtp subdirectory.</p>
<p>Now you can stop Sendmail and replace it with sSMTP. To stop Sendmail under Linux distributions that use the System V init scripts (and most distributions these days do) you can try the <code>service</code> command:</p>
<p>&#160;</p>
<blockquote><p>sudo service sendmail stop </p>
<p>sudo chkconfig &#8211;levels 2345 sendmail off</p>
</blockquote>
<p>&#160;</p>
<p>The first command stops the currently running instance of Sendmail, and the second prevents it from starting again on reboots. If your version of Linux does not use the SysVInit package you may need to kill the sendmail process manually with a command like <code>sudo killall sendmail</code>.</p>
<p>To replace Sendmail you can simply copy it to another file, then create a symbolic link from sSMTP to sendmail: </p>
<p>&#160;</p>
<blockquote><p>sudo mv /usr/sbin/sendmail /usr/sbin/sendmail.orig </p>
<p>sudo ln -s /usr/local/ssmtp/sbin/ssmtp /usr/sbin/sendmail </p>
</blockquote>
<p>&#160;</p>
<p>The first command moves the original sendmail out of the way, while the second makes sSMTP the program that gets run when any system command calls sendmail. With this approach, if you run into problems using sSMTP, just remove the symbolic link and move the sendmail copy back to its original name.</p>
<p>&#160;</p>
<h6><font size="4">Configuration</font></h6>
<p>The configuration file for sSMTP, based on the <code>--prefix</code> option we used with the configure command while building from the source code, is /usr/local/ssmtp/etc/ssmtp/ssmtp.conf. This file has only four common options, plus some hidden options for authentication.</p>
<p>After a sample build, sSMTP created the following configuration file for me (lines starting with a # symbol are comments): </p>
<p>&#160;</p>
<blockquote><p># /etc/ssmtp.conf &#8212; a config file for sSMTP sendmail. # </p>
<p># The person who gets all mail for userids &lt; 1000 </p>
<p># Make this empty to disable rewriting. </p>
<p>root=postmaster </p>
<p># The place where the mail goes. The actual machine name is required </p>
<p># no MX records are consulted. Commonly mailhosts are named mail.domain.com </p>
<p># The example will fit if you are in domain.com and you mailhub is so named. </p>
<p>mailhub=mail </p>
<p># Where will the mail seem to come from? </p>
<p>rewriteDomain=graphics-muse.org </p>
<p># The full hostname </p>
<p>hostname=kepler.graphics-muse.org </p>
</blockquote>
<p>Change the <code>root=</code> value to an email address that will receive all system-generated email, such as output from cron jobs that encounter errors or log file analysis. I changed this line to my personal email address.</p>
<p><code>mailhub=</code> defines the SMTP server to which email should be sent. Set this line to the host you specify in your mail reader for the SMTP server.</p>
<p><code>hostname=</code> is the name of the mail host that you&#8217;d like recipients of your email to see it. Since I want responses to my email to be sent to back to my ISP domain so I can use my mail reader to retrieve it, I set this line to the ISP domain. This is the domain part of all outbound messages; all users on your system will appear to be coming from this domain.</p>
<p>You can use <code>rewriteDomain=</code> to spoof who you say you are. Since I&#8217;m already spoofing the server address with the hostname line, I leave this line commented out.</p>
<p>The initial configuration does not include information on how to log in to SMTP servers that require authentication. This information is the same information you must provide in your mail reader in order for it to send email through your ISP. To specify this information, you can add the following lines: </p>
<pre>
<blockquote>

  AuthUser=<em>your username</em>
  AuthPass=<em>your password</em>
  AuthMethod=CRAM-MD5

</blockquote>
</pre>
<p>With this configuration, every time my system sends mail using /bin/mail, sendmail gets called, which is actually sSMTP. sSMTP uses the authentication I provided in the configuration file to log in to my ISP&#8217;s SMTP server and deliver my outgoing email.</p>
</p>
<p>&#160; </p>
<h6><font size="4">Example Setup for Gmail</font></h6>
<p><font size="4"></font></p>
<p>Using SSMTP, it doesn&#8217;t matter where you are, mail can be sent out over encrypted SMTP to Google&#8217;s gmail servers. After handing it off, Google&#8217;s servers do all the routing for you.</p>
<p>Setting everything up is quick and easy. Open up /etc/ssmtp/ssmtp.conf in your favorite editor, and add or update the following lines:</p>
<blockquote>
<p>#The following line redirects mail to root to your gmail account<br />
    <br />root=myemail@gmail.com</p>
<p>mailhub=smtp.gmail.com:587</p>
<p>UseSTARTTLS=yes</p>
<p>UseTLS=yes</p>
<p>AuthUser=myemail@gmail.com</p>
<p>AuthPass=mypassword </p>
</blockquote>
<p>That&#8217;s it! Now, let&#8217;s try testing it:</p>
<blockquote>
<p>echo &quot;This is a test message.&quot; | mailx -s &#8216;Test Message&#8217; <a href="mailto:myemail@gmail.com">myemail@gmail.com</a></p>
</blockquote>
<p>You should now be all setup and ready to go!</p>
<p>&#160;</p>
<h6><font size="4">Caveats</font></h6>
<p>Replacing Sendmail with sSMTP works well for desktop PCs that have only a single user configured. If you have multiple users, you may not want to use sSMTP, since by default all email sent via the mail command will look like it comes from a single user. An additional configuration file, revaliases, allows you to map a local user to a specific From: address on outbound mail and to route that mail through a specific mailhub. Still, there is no way to configure different logins on different mailhubs that use different different authentication credentials. With sSMTP, your outbound mail can only have one remote MTA to which it can connect.</p>
<p>Also, in order for any user on your system to use sSMTP, they will need to have read permissions on the ssmtp.conf file. Placing your ISP login information in a configuration file that is world-readable allows anyone who uses your system to see your email authentication information. This is another reason why use of sSMTP is appropriate only for home users who are the sole users of that system. You can fix this problem through normal user and group permissions and by running sSMTP as a setuid program, but not if you want to make things as simple as possible, as we set out to do.</p>
<p>While sSMTP is a replacement for Sendmail, it is not a complete replacement. One important distinction is that it is not intended to receive mail, as Sendmail does. You need to use a mail reader to retrieve and read email from your ISP.</p>
<p>sSMTP also does not manage mail queues, so it sends outbound email immediately. Although the man page for sSMTP shows support for all the same command-line options that Sendmail supports, sSMTP ignores most of those options.</p>
<p>Finally, the sSMTP implementation enforces a limit on the size of outbound message headers. Try not to write long subject lines or include long lists of recipients. If you need to send something to a large list of recipients, set up an alias instead of manually listing all the recipients on the command line.</p>
<p>sSMTP is exactly as advertised: simple. It requires only minimal effort to set up and little to no long-term maintenance. But it isn&#8217;t appropriate for all users. Its greatest value is to the non-technical home user with only one user configured on a machine. To those users, sSMTP can be an easy way to improve messaging management.</p>
]]></content:encoded>
			<wfw:commentRss>http://danaville.com/open-source/ssmtp-vs-sendmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Tips for a Successful Website</title>
		<link>http://danaville.com/uncategorized/design-tips-for-a-successful-website/</link>
		<comments>http://danaville.com/uncategorized/design-tips-for-a-successful-website/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 19:38:17 +0000</pubDate>
		<dc:creator>danalwebb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://danaville.com/uncategorized/design-tips-for-a-successful-website/</guid>
		<description><![CDATA[&#160;
I like to develop and enable good websites.&#160; I do it simply, cost effective, but with a sense of solid quality, using the tools and capabilities that are making the web so exciting, but sensibly so….
I urge you to think about what constitutes a good website and use those thoughts to help you in your [...]]]></description>
			<content:encoded><![CDATA[<h5>&#160;</h5>
<p>I like to develop and enable good websites.&#160; I do it simply, cost effective, but with a sense of solid quality, using the tools and capabilities that are making the web so exciting, but sensibly so….</p>
<p>I urge you to think about what constitutes a good website and use those thoughts to help you in your purchasing decision or next steps.</p>
<p>&#160;</p>
<h5>What makes a good website?</h5>
<h6>It is easy to find:</h6>
<ul>
<li>a good, obvious, memorable <a href="http://danaville.com/seo/tips-for-choosing-a-domain-name/">domain name</a>, not confused with competitors or unrelated sites </li>
<li>the content uses the terms and keywords that you would be expecting to search on, and the content is presented in a <a href="http://www.456bereastreet.com/archive/200502/basics_of_search_engine_optimisation/">search engine friendly</a> way so one can find it via searching appropriately. For example: location dependent services should ensure that the location is described in pages with the service descriptions for meaningful appearance in search engines. </li>
</ul>
<h6>It is there!</h6>
<ul>
<li>it is up! – a reliable host is necessary, and one that assists in providing tools and statistics to understand your visitors behavior. </li>
</ul>
<h6>It is easy to read</h6>
<ul>
<li>the website is viewable in the user’s browser. The website must be tested on a range of browser and ideally consider users who may be using aural browser. </li>
<li>the style is easy on the eye and pleasant to read. It should not distract you from the content.      <br />the navigation is obvious, what the user expects and it is easy to find your way around. </li>
<li>there is a site map and/or search facilities for large sites </li>
</ul>
<h6>One can find what one is looking for, it has meaningful, helpful content:</h6>
<ul>
<li>provide as much information as possible to your users. This will also reduce time required to respond to phone calls and may also retain a potential client, as they may feel more comfortable about your product or service. </li>
<li>the content should enhance the appearance of the organisation. It should appear professional and should present a human, approachable front. </li>
</ul>
<h6>It is easy to maintain and update</h6>
<ul>
<li>It is a simple effective editing system. </li>
<li>It is flexible – <a href="http://www.simplebits.com/publications/bulletproof/">bulletproof </a>. The style used should cope well with any content changes you may make and with specifications or limitations of the user’s browser (eg: large text, no images, dial up connection etc). Therefore unless absolutely necessary I avoid embellishments like flash, javascript – there is much that one can do with good <a href="http://www.w3.org/MarkUp/Guide/">HTML markup</a> and CSS. </li>
</ul>
<p>&#160;</p>
<p>A good book to help with this approach is <a href="http://www.amazon.com/gp/product/0321509021?ie=UTF8&amp;tag=sapscene-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0321509021">Bulletproof Web Design: Improving flexibility and protecting against worst-case scenarios with XHTML and CSS (2nd Edition) (Voices That Matter)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://danaville.com/uncategorized/design-tips-for-a-successful-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Names 101</title>
		<link>http://danaville.com/seo/domain-names-101/</link>
		<comments>http://danaville.com/seo/domain-names-101/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 19:34:11 +0000</pubDate>
		<dc:creator>danalwebb</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://danaville.com/uncategorized/domain-names-101/</guid>
		<description><![CDATA[If you want to look professional, you need your own appropriate domain name. If you are going to use my webservices, I can arrange the domain name or names for you.
If you want to know more, or you’d like to buy your own domain names, read further:
Subdomains
It is possible sometimes to piggyback off another domain [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to look professional, you need your own appropriate domain name. If you are going to use my webservices, I can arrange the domain name or names for you.</p>
<p>If you want to know more, or you’d like to buy your own domain names, read further:</p>
<h5>Subdomains</h5>
<p>It is possible sometimes to piggyback off another domain name, where yours would be a subdomain from the main name. You would be using the main domain’s hosting services and would have limited functionality and control. For example for a personal blog, you could use the services of blogspot and end up with a domain name such as <a href="http://www.danalwebb.blogspot.com/">http://www.danalwebb.blogspot.com/</a> .</p>
<h5><a href="http://danaville.com/seo/tips-for-choosing-a-domain-name/">Choosing your own domain name</a></h5>
<p>If you want to buy your own domain name, one of the first difficult steps is choosing the name.&#160;&#160; So much so I have written a whole separate page on it.&#160; <a href="http://danaville.com/seo/tips-for-choosing-a-domain-name/">See information on choosing your own domain here.</a></p>
<h5>Choosing the suffixes</h5>
<p>You also need to decide what suffixes (ie top level domains and /or country code domains you wish to use). Then before you spend too much time on any one name, always check if it is available – use the appropriate who is servers to check if your chosen name has been taken (see below).</p>
<p>The <a href="http://www.icann.org/faq/">Internet Corporation for Assigned Names and Numbers (ICANN)</a> is responsible for managing and coordinating the Domain Name System (DNS) worldwide. Click on their name to access a list of frequently asked questions. They also have some interesting (to me anyway!) <a href="http://www.icann.org/maps/accredited-registrars.htm">maps.</a></p>
<h5>Register the name as soon as possible</h5>
<p><a href="http://www.icann.org/registrars/accredited-list.html">http://www.icann.org/registrars/accredited-list.html </a>provides a list of accredited registrars who are officially allowed to register a top level domain name for you. If a company is not on the list, then they may be selling domain names purchased through an accredited registrar. ICANN recommends dealing directly. You can take a peek at which domain name servers are most active for US domain names at <a href="http://dailychanges.com/">http://dailychanges.com/</a></p>
<p>To check a domain name registration internationally, you could use the not that pretty looking, but useful <a href="http://www.completewhois.com">www.completewhois.com</a></p>
<p>A good registrar will usually provide tools to determine what domain names are available and possibly suggest others, as well as other information about who is entitled to regsiter a domain name. </p>
<p>Please note that domain name sales can be misleading… look at the renewal price to get a more realistic idea about the cost of owning a domain. Prices can vary greatly between suppliers, a low price may not always be the best if they are going to charge you to transfer, or higher prices for renewals etc.</p>
<h5>US or global domains names</h5>
<p>If purchasing a .com domain name, either do it with your hosting (or I’ll do it for you)</p>
<ul>
<li><a href="http://icdsoft.com">icdsoft.com</a> </li>
<li><a href="http://godaddy.com">goddaddy.com</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://danaville.com/seo/domain-names-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips for Choosing a Domain Name</title>
		<link>http://danaville.com/seo/tips-for-choosing-a-domain-name/</link>
		<comments>http://danaville.com/seo/tips-for-choosing-a-domain-name/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 19:25:50 +0000</pubDate>
		<dc:creator>danalwebb</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://danaville.com/uncategorized/tips-for-choosing-a-domain-name/</guid>
		<description><![CDATA[&#160;
There are many websites with articles giving different aspects of advice about how to choose a domain name. This is a very important step and should be done early in your business development cycle. It will give you portability of your site should you need to change hosts; avoiding the loss of links and search [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>There are many websites with articles giving different aspects of advice about how to choose a domain name. This is a very important step and should be done early in your business development cycle. It will give you portability of your site should you need to change hosts; avoiding the loss of links and search engine placement.</p>
<p>So how to decide on a domain name ……</p>
<h5>dot what?</h5>
<ul>
<li>If you have an aspirations at all to operate across more than one country, then you must consider acquiring the “.com” of your domain. Be serious: avoid .bz, .ws – type names if possible – they sound tacky. </li>
<li>If you are going to be a local business, then you should have either the country code domain (eg: .com.au) or local hosting. Either will be enough to ensure that you appear on local versions of search engines. Without it you will be struggling to maximise your appearance on search engines. However don’t include a location in the domain itself, it may limit you later. Alternatively, buy the variations as well as the location dependent name. </li>
</ul>
<h5>keyword or brand?</h5>
<ul>
<li>Do you go for mobilephone.com or virgin.com? The short answer generally is if you have a limited budget to build a brand, go for the keyword. Some experts say avoid the keywords – the domain name often ends up too long. Think of google, flickr etc. Personally I like the brand idea – <a href="http://www.google.com.au/search?q=keyword+or+brand+domain+name">more discussion </a></li>
</ul>
<h5>make it memorable</h5>
<ul>
<li>keep it short and don’t misspell if it is a real word – eg: if you want a yoga website, and all the yoga names are taken, don’t go for yoger! </li>
</ul>
<h5>Many minds make for a good domain name</h5>
<ul>
<li>Use your friends – ask around, bounce ideas off them, listen to their ideas – many a good idea has been offered in jest. </li>
</ul>
<h5>don’t spend too much</h5>
<ul>
<li>Don’t pay big bucks on a name. Rather spend the money building your brand. </li>
<li>Don’t get carried away buying too many names – you have to pay for them every year and if you let them expire they could get snapped up opportunistically by others who hope to profit. </li>
</ul>
<h5>It is gone but I really want it</h5>
<ul>
<li><a href="http://www.deleteddomains.com/">www.deleteddomains.com</a> could help if you insist on having a domain that was already registered. </li>
<li>A second hand domain could have the benefit that it may already have good linkages and search engine placement. Use <a href="http://www.alltheweb.com/">www.alltheweb.com</a> to see who is linking to that site. A long time ago, my first domain name was for an area that several years later I no longer wanted to work in. There was valuable content on it and it was one of the first covering that sort of knowledge so it had a good search engine placement and history. Someone wanted to buy it. I was happy to not be responsible for it anymore as the content was becoming out dated. However it was bought purely for it’s existing status – it is now covered in advertising and still has no major content update, let alone a style update! And I feel like it was my reputation out there! </li>
</ul>
<h5>Plurals, Prefixes – my, the etc</h5>
<ul>
<li>If you cannot get the name that you want and buy the plural or a prefixed name, then that must become your brand name – always advertise it as such. If you are “thedogparlour”, then your advertising must always say “<strong>the</strong>dogparlour”. </li>
</ul>
<h5>Check <a href="http://en.wikipedia.org/wiki/Trademark">trademarks</a> and similar names or usage</h5>
<ul>
<li>You don’t want to find that a porno star has a similar name. Google the suggested names, similar versions, the related keywords and see what comes up. </li>
<li>Check trademarks in at the very least, your country and the US. </li>
<li>USA – <a href="http://www.uspto.gov/">http://www.uspto.gov/</a> </li>
<li>UK -<a href="http://www.ipo.gov.uk/">http://www.ipo.gov.uk/</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://danaville.com/seo/tips-for-choosing-a-domain-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips for a more popular blog</title>
		<link>http://danaville.com/uncategorized/tips-for-a-more-popular-blog/</link>
		<comments>http://danaville.com/uncategorized/tips-for-a-more-popular-blog/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 14:22:02 +0000</pubDate>
		<dc:creator>danalwebb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://danaville.com/uncategorized/tips-for-a-more-popular-blog/</guid>
		<description><![CDATA[1. Write posts that is hot to be read right now.2. Bookmark your site to social bookmarking websites, i.e. digg, del.icio.us, reddit3. Be among the first with a great blog on your topic, then encourage others to blog on the same topic.4. Break news.5. Post regularly.6. Make groups like Google and Yahoo groups, and then [...]]]></description>
			<content:encoded><![CDATA[<p style="clear: both">1. Write posts that is hot to be read right now.<br />2. Bookmark your site to social bookmarking websites, i.e. digg, del.icio.us, reddit<br />3. Be among the first with a great blog on your topic, then encourage others to blog on the same topic.<br />4. Break news.<br />5. Post regularly.<br />6. Make groups like Google and Yahoo groups, and then include your URL in it &#8211; not spam alike<br />7. Share your expertise generously so people recognize it and depend on you.<br />8. Write short, pithy posts.<br />9. Encourage your readers to help you manipulate the technorati top blog list.<br />10. Include polls, meters and other eye catchy.<br />11. Have an e-mail signature and put your URL in your signature when contacting someone through e-mail.<br />12. Join mybloglog, its a good way of socializing.<br />13. Make your RSS subscribe button very noticeable.<br />14. Use a top commentators plugin to improve comments.<br />15. Be controversial.<br />16. Be original.<br />17. Become top commentator on big traffic blogs.<br />18. Write about Google, Digg and other hugely popular sites.<br />19. Use images in your posts.<br />20. Make a fresh design.<br />21. Answer your email.<br />22. Digest the good ideas of other people, all day, every day.<br />23. Be patient.<br />24. Give credit to those that inspired, it makes your writing more useful.<br />25. Create a lens and highlight your best posts.<br />26. Make a content that is worth buying but you give it free &#8211; it attracts loads of people.<br />27. Place alt tags &#8211; Placing an alt tag on your pictures will surely help you get a higher Search Engine ranking.<br />28. Write about making money.<br />29. Share your knowledge.<br />30. Use the sociable plugin, It ads all the known bookmarking websites and puts it in your posts. This makes bookmarking easier for your readers.<br />31. Try and become a guest poster on a popular blog. Be persistent<br />32. Submit your best and longest posts to article directories.<br />33. Use Blogrush.<br />34. Use Technorati.<br />35. Encourage your readers to digg your posts.<br />36. Make your blog as different as possible.<br />37. Never copy posts.<br />38. Make your SEO as good as possible.<br />39. Submit Themes, with your link on it.<br />40. Leave your footstep in forums.<br />41. Add a sitemap, This helps search engines recognize you more.<br />42. Redirect your 404 page, Redirecting it to your homepage would help lost visitors.<br />43. Ping your blog every after you write an article &#8211; try Ping-O-Matic<br />44. Write posts that each include dozens of trackbacks to dozens of blog posts so that people will notice you.<br />45. Post your photos on flickr.<br />46. Write eye catching blog post titles.<br />47. Use correct grammar.<br />48. Use YouTube and other video sites to market your blog.<br />49. Use social networking buttons, on all posts.<br />50. Admit your faults.<br />51. Be honest.<br />52. Spend entire days focusing on nothing but getting more traffic.<br />53. Write long, definitive posts.<br />54. Write about blogging.<br />55. Don’t interrupt your writing with a lot of links.<br />56. Write stuff that people want to read and share.<br />57. Pull off some jokes from time to time<br />58. Add translations<br />59. Never give up.</p>
<p><br class="final-break" style="clear: both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://danaville.com/uncategorized/tips-for-a-more-popular-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Microsoft doesn&#8217;t tell you about Windows 7</title>
		<link>http://danaville.com/uncategorized/what-microsoft-doesnt-tell-you-about-windows-7/</link>
		<comments>http://danaville.com/uncategorized/what-microsoft-doesnt-tell-you-about-windows-7/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 18:29:20 +0000</pubDate>
		<dc:creator>danalwebb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://danaville.com/uncategorized/what-microsoft-doesnt-tell-you-about-windows-7/</guid>
		<description><![CDATA[&#160;
OVERVIEW
* Cannot &#34;upgrade&#34; from Windows XP&#8211; only from Vista. XP users will have to do a full-package clean install    * To upgrade from Windows XP to Windows 7 with XP-compatibility will cost users $299    * Significant incompatibility with Windows XP    * Only the pricier versions offer [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>OVERVIEW</p>
<p>* Cannot &quot;upgrade&quot; from Windows XP&#8211; only from Vista. XP users will have to do a full-package clean install    <br />* To upgrade from Windows XP to Windows 7 with XP-compatibility will cost users $299    <br />* Significant incompatibility with Windows XP    <br />* Only the pricier versions offer an XP-compatible mode    <br />* Twelve confusing releases to choose from, with hidden &quot;gotchas&quot; in eight of them    <br />* Doesn&#8217;t really bring anything new to the table, nor give users a reason for upgrading from Windows XP&#8211; especially at a $299 price tag </p>
<p>Questions of the day:   <br />* Is Micro$oft trying to force loyal XP users to upgrade to a package they neither want nor need&#8211; and charging them through the gills to do so?    <br />* What makes Micro$oft think that an operating system is worth the price of a new computer? </p>
<p>&#160;</p>
<p>WINDOWS 7   <br />The top topic in the computer world this week is Windows 7. </p>
<p>The following information is gained from tech reports and manuals. As far as I am aware, the following information is reliably accurate. </p>
<p>&#160;</p>
<p>TYPICAL MICRO$OFT CONFUSION   <br />As with past releases, instead of releasing one version that applies to everyone, Micro$oft has once again seen fit to put out SIX releases (12 if you count the OEM release. More about these later). </p>
<p>Of course, this causes considerable headache for the customer trying to figure out which version to buy&#8211; and for the salesman who have to repeat the same information over and over. Thus this article. </p>
<p>The six primary versions: </p>
<p>Home Premium: Upgrade and full   <br />Professional: Upgrade and full    <br />Ultimate: Upgrade and full </p>
<p>The OEM version is available only in FULL&#8230; but comes in separate 32 bit and 64 bit versions (the retail packages contain both). </p>
<p>So that&#8217;s right&#8230; twelve confusing versions. Enjoy! </p>
<p>&#160;</p>
<p>TYPICAL MICRO$OFT PRICING   <br />The price of Windows 7 ranges from $119.99 for the &quot;Home Premium Upgrade&quot; version to $319.99 for the Ultimate Full Version. This is about DOUBLE what Apple charges for a similarly-configured OS X Snow Leopard package. It&#8217;s pretty obvious that the company continues to fail to recognize the financial status of the typical Windows user&#8230; or the needs of the public in general. </p>
<p>&#160;</p>
<p>BEWARE THE PR   <br />Despite Micro$oft&#8217;s much promoted &quot;can run XP programs!&quot; propaganda&#8230; no, you really can&#8217;t. Well, you can, but&#8230; </p>
<p>Only the Professional and Ultimate versions have the ability to run XP. The Home versions do not. </p>
<p>In order to get the P/U versions to run XP items, you have to download an XP virtual system which ties in to the W7 version. The operating speed of this virtual system as well as disadvantages haven&#8217;t been reported yet (beta testers are largely sworn to silence)&#8230; but one can only imagine. </p>
<p>W7 is an entirely new concept, reportedly highly XP-incompatible. This is unfortunate, especially considering that for most people&#8230; XP works just fine (well, as fine as Windows has ever worked, anyway). </p>
<p>An OS that isn&#8217;t XP-friendly right out of the box might be considered by some as an excellent opportunity to consider migrating to Linux, especially with the recently-announced IBM-adoption of Ubuntu and the professional support this predicts. Others are migrating to Apple, which sales have reportedly increased dramatically. </p>
<p>&#160;</p>
<p>BEWARE THE VERSIONS   <br />Right out of the box, Windows 7 is an upgrader&#8217;s nightmare. </p>
<p>1. You cannot upgrade from Windows XP. Only Vista installations will upgrade.   <br />2. The FULL version costs almost twice as much as the upgrade.    <br />3. Installing a FULL version requires wiping your entire Windows system (as well as existing utilities and program settings) and installing W7 from scratch. </p>
<p>This is not exactly endearing to Micro$oft customers. A Micro$oft OS that can&#8217;t upgrade their most popular OS in history? Major blundering mistake. Predicted results: </p>
<p>1. People will just stick with XP   <br />2. People will migrate to Linux&#8211; which is FREE (simple download) </p>
<p>In truth, the only real reason these days to not upgrade to Linux is gaming. When it comes to business, just about anything one could want is available in Linux&#8211; online&#8211; FOR FREE. </p>
<p>(Yes, I know I&#8217;m mentioning Linux quite a bit here. Interesting, isn&#8217;t it&#8230; that Micro$oft&#8217;s latest wonder toy is becoming Linux&#8217; strongest argument.) </p>
<p>&#160;</p>
<p>BEWARE THE OEM VERSIONS   <br />Highly touted are the OEM versions, which can cost considerably less than the &quot;retail&quot; versions. While attractive up-front, what most people don&#8217;t know is: </p>
<p>1. The retail versions are licensed for up to 3 computers (which does reduce the cost-per-computer a bit and is a smart marketing move)   <br />2. The OEM versions work on only one computer. Once that serial number is registered, it cannot be used on another computer. </p>
<p>And yes, this means that if you change your motherboard or purchase another computer that doesn&#8217;t include an OS, you are up a creek without a paddle. Your OEM W7 will not work. Yes, if you blow out or replace a motherboard, you can pick up the phone and contact Micro$oft and they will issue you a new key. But if you have a desktop and a laptop and you need to use Windows 7 on both&#8230; you can&#8217;t do so. You&#8217;ll need to purchase the retail version anyway. </p>
<p>So in short, the OEM version is a really, really bad deal. In the long run, you probably won&#8217;t save money going with the OEM version. And good luck EVER finding the retail version on sale&#8230; at all. </p>
<p>&#160;</p>
<p>NOT ALL THAT IMPRESSIVE   <br />To learn more about W7, I purchased a book that shows all the ins and outs of Windows 7 and has a nifty chapter on all the &quot;new features&quot;. As I read through the list of supposed goodies&#8211; despite the fact that most would call me a serious &quot;power user&quot;&#8211; all I got was &quot;don&#8217;t need that&#8230; don&#8217;t need that&#8230; for SURE don&#8217;t need that&#8230; no value&#8230; not enough&#8230; too little too late&#8230;&quot; etc etc etc. In truth, there wasn&#8217;t a single new &quot;feature&quot; in Windows 7 that impressed me all that much. Most importantly, there wasn&#8217;t a single feature that will change the way I use my comptuer. My guess: most XP users will feel the same way. In the end, I think the major impression will be the same that has existed with Vista, namely: &quot;Why should I spend $300 to upgrade when XP works just fine?&quot; </p>
<p>The next question of course will be, &quot;If my XP stuff is going to be incompatible YET AGAIN with Micro$oft&#8217;s own OS&#8230; why not switch to a new OS entirely and put an end to this run-around?&quot; </p>
<p>&#160;</p>
<p>BOTTOM LINE   <br />The bottom line is that if you update to Windows 7 from Windows XP, you are going to wind up spending $300+ for the privilege. I don&#8217;t know what marketing genius ever came up with the idea that an OPERATING SYSTEM is worth $300&#8230; but that may be one of the reasons so much software piracy goes on these days, and why many people take the opportunity to just upgrade to a new computer that comes with the OS already installed (thus bypassing Micro$oft entirely). </p>
<p>Some day, in a Utopian world where people actually have common sense, Micro$oft is going to realize that an operating system is worth $49.95 for a 3-user version (uh&#8230; like Apple)&#8230; that they only need sell ONE version that meets all needs (uh&#8230; like Apple)&#8230; with their OS being backward-compatible for prior software (uh&#8230; like Apple). If they ever do so, they may be amazed to discover that their sales significantly increase (uh&#8230; like Apple. Hmmm, are we seeing a pattern? WAKE UP MICRO$OFT!!!). </p>
<p>Until that day, Micro$oft seems doomed to keep making the same ME / Vista blunder, trying to sell overpriced, badly-behaved, incompatible OS updates that few people actually want or need. As long as M$ continues to make these OS blunders, they will continue to get bad reviews, people will resist upgrading&#8211; and more and more people will convert to Linux or Apple just because they&#8217;re tired of the incompatibility and runaround of a product line that hasn&#8217;t really expanded our computing horizons in the last five years. </p>
<p>&#160;</p>
<p>SUMMATION   <br />Considering the historically bad M$ OS releases (ME and Vista) as well as serious backward-incompatibility, Windows 7 probably should not be considered a good investment at this time. In truth, it is probably time for businesses and even hobbyists to strongly consider whether they can switch to Linux for less cost and considerably less headache. Linux has remained stable, virtually virus-free and backward-compatible since its inception. Maybe Micro$oft needs to learn a thing or two from the Linux / Apple playbook. I doubt that will happen&#8230; so it will be interesting to see what the market does over the next five years, when people finally start realizing that they&#8217;re tired of being bent over the Windows barrel. </p>
<p>To Micro$oft: you&#8217;re stuck in a rut, you&#8217;re charging too much for your product, and we&#8217;re tired of having our software outdated with each release. The company needs to start thinking about actually improving the product (not just adding needless bells and whistles), working smarter, and striving toward a product that actually increases our computing ability while retaining compatibility with past products.</p>
]]></content:encoded>
			<wfw:commentRss>http://danaville.com/uncategorized/what-microsoft-doesnt-tell-you-about-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Neatx: A new NX server from Google</title>
		<link>http://danaville.com/uncategorized/neatx-a-new-nx-server-from-google/</link>
		<comments>http://danaville.com/uncategorized/neatx-a-new-nx-server-from-google/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 18:07:46 +0000</pubDate>
		<dc:creator>danalwebb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://danaville.com/uncategorized/neatx-a-new-nx-server-from-google/</guid>
		<description><![CDATA[On July 7, internet search giant Google not only announced its operating system Google Chrome OS with much fanfare, it also quietly released Neatx, an open source NX server. According to the announcement, Google has been looking at remote desktop technologies for quite a while. While the X Window System has issues with network latency [...]]]></description>
			<content:encoded><![CDATA[<p>On July 7, internet search giant Google not only announced its operating system <a href="http://lwn.net/Articles/340555/">Google Chrome OS</a> with much fanfare, it also quietly released <a href="http://google-opensource.blogspot.com/2009/07/releasing-neatx-open-source-nx-servier.html">Neatx</a>, an open source NX server. According to the announcement, Google has been looking at remote desktop technologies for quite a while. While the X Window System has issues with network latency and bandwidth, the NX protocol compresses X requests and reduces round-trips, resulting in much better performance — to the point that it can be used over network connections with low bandwidth.</p>
<p>&#160;</p>
<p>So with Neatx, users can log in to a remote Linux desktop. Moreover, the session can be suspended and resumed later from another computer, resembling the functionality that <a href="http://www.gnu.org/software/screen/">GNU screen</a> offers for console sessions. But, unlike screen, a Neatx user has access to the GUI of the remote machine, just as if they were sitting in front of it. </p>
<p>&#160;</p>
<p>The NX protocol, using SSH as a transport and for authentication, was developed by the Italian company <a href="http://www.nomachine.com/">NoMachine</a>, which released the source code of the <a href="http://www.nomachine.com/sources.php">core NX technology</a> in 2003 under the GPL. NoMachine offers free (as in beer) client and server software for various operating systems, including Linux. It wasn&#8217;t very long before free-as-in-speech NX clients emerged, then, in 2004, Fabian Franz implemented <a href="http://freenx.berlios.de/">FreeNX</a>, a GPL implementation of an NX server.</p>
<p>&#160;</p>
<p><a href="http://lwn.net/Articles/343280/">more&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://danaville.com/uncategorized/neatx-a-new-nx-server-from-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extending Gnome&#8217;s Nautilus File Manager</title>
		<link>http://danaville.com/open-source/extending-gnomes-nautilus-file-manager/</link>
		<comments>http://danaville.com/open-source/extending-gnomes-nautilus-file-manager/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 17:39:45 +0000</pubDate>
		<dc:creator>danalwebb</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Nautilus]]></category>
		<category><![CDATA[RedHat]]></category>

		<guid isPermaLink="false">http://danaville.com/open-source/extending-gnomes-nautilus-file-manager/</guid>
		<description><![CDATA[Nautilus-actions is an extension for nautilus which allows you to add an arbitrary program to launch from the nautilus popup menu of selected files. 
Each time you right-click on one or several selected files in nautilus, nautilus-actions will look at its configuration to see if a program has been setup for this selection. If so, [...]]]></description>
			<content:encoded><![CDATA[<p>Nautilus-actions is an extension for nautilus which allows you to add an arbitrary program to launch from the nautilus popup menu of selected files. </p>
<p>Each time you right-click on one or several selected files in nautilus, nautilus-actions will look at its configuration to see if a program has been setup for this selection. If so, it will add an item in the menu that allow you to execute the program on the selected files.</p>
<p>The aim of Nautilus-actions is to be very flexible and to adapt to the most common situation.</p>
<p>Nautilus-actions doesn’t provide any config by default except an item to configure your actions. Thus, it offers the capability for other software that manage files to add their configs into the Nautilus-actions GConf entry. This automagically integrates smoothly to Nautilus without any additional code. It is also possible to import a foreign config, downloaded over the Net for example, into Nautilus-actions through NACT, its configuration tool.</p>
<p>&#160;</p>
<h4>INSTALLATION</h4>
<p>If we have a Fedora Core machine the installation is easy as usual:<br />
<blockquote>
<p><code>yum install nautilus-actions</code></p>
</blockquote>
<p>and then:</p>
<blockquote><p><code>yum install nautilus-open-terminal nautilus-image-converter nautilus-sendto</code></p>
</blockquote>
<p>others *.schemas files are available on the <a href="http://www.grumz.net/index.php?q=configlist">official site</a> of the project.</p>
<p>&#160;</p>
<h4>USAGE</h4>
<p>Now we can list some of the most common (and so useful) actions available:
<p><strong></strong></p>
<p><strong>Open in gEdit as root</strong>: let’s you open and modify a file in Gedit. This function comes really handy when we have to deal with config’s file around the filesystem. For a correct working we have to make a little change in the visudo file, like:: “<code>username ALL=NOPASSWD:/usr/bin/gedit</code>” and modify the action so that it will be lauched using sudo.</p>
<p>&#160;</p>
<p><strong>Set picture as wallpaper</strong>: to change the desktop appearance on the fly.</p>
<p><strong></strong></p>
<p><strong>Nautilus open terminal </strong>: opens a terminal session (as the current user) in the working directory (like Konqueror does, i can add).</p>
<p>&#160;</p>
<p><strong>Convert Audio</strong>: Converts audio files from one format to another. This actions needs to have a previously installed version of <a href="https://savannah.nongnu.org/projects/audio-convert">audio-convert</a> to work at its best.</p>
<p><strong></strong></p>
<p><strong>Nautilus image resizer</strong>: lets you resize and image on the fly. It does also give a new name to the file it generates.</p>
<p>&#160;</p>
<p><strong>Compress selected files using gzip</strong>: compress a file and deletes the original one.</p>
<p><strong></strong></p>
<p><strong>Tag media files with Easytag</strong>: enable us to modify the tags of a music file using easytag (that we must have installed on our box, <code>yum install easytag</code>).</p>
<p>&#160;</p>
<p><strong>Mount ISO et Umount ISO</strong>: mount and unmounts ISO files. Pleas notice that we have to put the “miso” file into <code>~/bin</code> directory and give a <code>chmod 755 ~/bin/miso</code> to enable it.</p>
<p><strong></strong></p>
<p><strong>Run ISO image in QEMU</strong>: lauches ISO files as cd using Qemu (which, as before, needs to be already installed on your box, as usual a simple <code>yum install qemu</code> is sufficent).</p>
<p>&#160;</p>
<p><strong>Install rpms</strong>: installs an RPM package.</p>
<p><strong></strong></p>
<p><strong>Install Deb Files</strong>: installs a DEB package, for Debian and Ubuntu users.</p>
<h4>&#160;</h4>
<h4>RESOURCES</h4>
<p>&#160;</p>
<p> website : <a href="http://www.grumz.net/">http://www.grumz.net/</a>  <br />Nautilus Actions : <a href="http://www.grumz.net/index.php?q=node/94">External Resources</a></p>
]]></content:encoded>
			<wfw:commentRss>http://danaville.com/open-source/extending-gnomes-nautilus-file-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Cross-Platform Email Apps</title>
		<link>http://danaville.com/open-source/best-cross-platform-email-apps/</link>
		<comments>http://danaville.com/open-source/best-cross-platform-email-apps/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 17:24:55 +0000</pubDate>
		<dc:creator>danalwebb</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Software Reviews]]></category>

		<guid isPermaLink="false">http://danaville.com/open-source/best-cross-platform-email-apps/</guid>
		<description><![CDATA[&#160;
Linux comes with various GUI based email client to stay in touch with your friends and family, and share information in newsgroups with other users. The following software is similar to Outlook Express or Windows Live Mail and is used by both home and office user.
Webmail interfaces allow users to access their mail with any [...]]]></description>
			<content:encoded><![CDATA[<h3>&#160;</h3>
<p>Linux comes with various GUI based email client to stay in touch with your friends and family, and share information in newsgroups with other users. The following software is similar to Outlook Express or Windows Live Mail and is used by both home and office user.</p>
<p>Webmail interfaces allow users to access their mail with any standard web browser, from any computer, rather than relying on an e-mail client.</p>
<p>&#160;</p>
<p>However, <a href="http://en.wikipedia.org/wiki/E-mail_client">e-mail client</a> remains extremely popular in a large corporate environment, small business, home and power users. An e-mail client (also mail user agent (MUA)) is a frontend computer program used to manage e-mail. Mail can be stored on the client, on the server side, or in both places. Standard formats for mailboxes include Maildir and mbox.</p>
<p>The following are top five amazing piece of cross-platform software from various projects to make your life easy with wide variety of plug-ins / add-ons.</p>
<h4>#1: Mozilla Thunderbird</h4>
<p>It is an e-mail and news cross-platform client software package by Mozilla Foundation. Thunderbird can manage multiple e-mail, newsgroup and RSS accounts and supports multiple identities within accounts. Features like quick search, saved search folders , advanced message filtering, message grouping, and labels help manage and find messages. Just like Firefox, the tons of extensions and themes for this client makes it very secure and flexible to to enhance your productivity.</p>
<p><a href="http://www.cyberciti.biz/tips/download-email-client-for-linux-mac-osx-windows.html/thunderbird"><img title="Mozilla Thunderbird" alt="Fig.01: Mozilla Thunderbird" src="http://files.cyberciti.biz/uploads/tips/2009/08/thunderbird.png" width="580" height="487" /></a></p>
<p>Fig.01: Mozilla Thunderbird</p>
<p>=&gt; <a href="http://www.mozillamessaging.com/en-US/">Download Mozilla Thunderbird</a></p>
<h4>#2: Claws Mail</h4>
<p>Claws Mail is a free, GTK+-based, open source email and news client. It is very light lightweight. Like Firefox , the wide variety of plug-ins for this email client makes it very flexible and secure. Claws Mail runs on Windows, Mac OS X and Unix-like systems such as Linux, BSD, and Solaris.</p>
<p><a href="http://www.cyberciti.biz/tips/download-email-client-for-linux-mac-osx-windows.html/claws-mail-3-5-0"><img title="Claws Mail" alt="Fig.02: Claws Mail in Action" src="http://files.cyberciti.biz/uploads/tips/2009/08/claws-mail-3.5.0.png" width="580" height="420" /></a></p>
<p>Fig.02: Claws Mail in Action</p>
<p>=&gt; <a href="http://www.claws-mail.org/">Download Claws Mail</a></p>
<h4>#3: Spicebird</h4>
<p>Spicebird is a collaboration client that provides integrated access to email, contacts, calendaring and instant messaging in a single application. It provides easy access to various web services while retaining all the advantages of a desktop application. It is developed by an Indian company called Synovel. It is a free, open source and cross-platform software.</p>
<p><a href="http://www.cyberciti.biz/tips/download-email-client-for-linux-mac-osx-windows.html/spicebird"><img title="Spicebird - e-mail, calendaring and instant messaging" alt="Fig.03: Spicebird in Action (image credit Spicebird project)" src="http://files.cyberciti.biz/uploads/tips/2009/08/spicebird.png" width="596" height="440" /></a></p>
<p>Fig.03: Spicebird in Action (image credit Spicebird project)</p>
<p>=&gt; <a href="http://www.spicebird.com/">Download Spicebird</a></p>
<h4>#4: Zimbra Collaboration Suite (Open Source Version)</h4>
<p>Zimbra is a client and server platform for messaging and collaboration. The web client integrates email, contacts, shared calendar, VoIP, and online document authoring in a rich browser-based interface. This is more like MS-Exchange and Outlook combo. In other words it is compatible with proprietary clients such as Microsoft Outlook and Apple Mail, both through proprietary connectors, as well as the open-source Novell Evolution, so that mail, contacts, and calendar items can be synchronised from these to the ZCS server. Zimbra also provides native two-way sync to many mobile devices such as Nokia Eseries, BlackBerry, Windows Mobile, iPhone with 2.0 software.</p>
<p><a href="http://www.cyberciti.biz/tips/download-email-client-for-linux-mac-osx-windows.html/zimbra"><img title="Zimbra open source server collaboration - email, group calendar, contacts, instant messaging" alt="Fig.04: Zimbra (credit offical Zimbra website)" src="http://files.cyberciti.biz/uploads/tips/2009/08/zimbra.jpg" width="598" height="453" /></a></p>
<p>Fig.04: Zimbra (credit offical Zimbra website)</p>
<p>=&gt; <a href="http://www.zimbra.com/community/downloads.html">Download Zimbra Collaboration Suite (Open Source Version)</a></p>
<h4>#5: Sylpheed</h4>
<p>Sylpheed is a free, GTK+-based, open source email and news client. It is very light lightweight. Sylpheed runs on Windows, Mac OS X and Unix-like systems such as Linux, and BSD.</p>
<p><a href="http://www.cyberciti.biz/tips/download-email-client-for-linux-mac-osx-windows.html/sylpheed"><img title="Sylpheed open source e-mail and news client for Linux / UNIX" alt="Fig.05: Sylpheed in Action" src="http://files.cyberciti.biz/uploads/tips/2009/08/sylpheed.png" width="585" height="474" /></a></p>
<p>Fig.05: Sylpheed in Action</p>
<p>=&gt; <a href="http://sylpheed.sraoss.jp/en/">Download sylpheed</a></p>
<h5>&#160;</h5>
<h5>Other Email Clients For UNIX Like Operating Systems</h5>
<ol>
<li><a href="http://www.seamonkey-project.org/">SeaMonkey</a> &#8211; Mozilla SeaMonkey is an all-in-one Internet application suite that includes an Internet browser, email and newsgroup client, HTML editor, IRC chat, and web development tools. It includes a pop-up blocker, junk mail controls, and a tabbed interface. </li>
<li><a href="http://www.washington.edu/alpine/">Pine (Alpine)</a> &#8211; Alpine is a rewrite of the Pine Message System that adds support for Unicode and other features. Alpine is meant to be suitable for both inexperienced email users and the most demanding of power users. </li>
<li><a href="http://projects.gnome.org/evolution/">Evolution or Novell Evolution</a> &#8211; Evolution provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop. </li>
</ol>
<h4>Recommendations:</h4>
<ol>
<li><strong>Claws Mail</strong> &#8211; Highly recommended for netbook user due to lightweight usage. </li>
<li><strong>Mozilla Thunderbird</strong> &#8211; The wide variety of add-on for this email client makes it very flexible, secure and easy to use. Highly recommended for desktop and power users. </li>
<li><strong>Zimbra Collaboration Suite</strong> ~ Open Source Edition or Businesses Editon &#8211; Highly recommended for business and corporate users due to its support for a broad range of email clients and mobile devices via &quot;over the air&quot; sync. </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://danaville.com/open-source/best-cross-platform-email-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweet this!</title>
		<link>http://danaville.com/software/tweet-this/</link>
		<comments>http://danaville.com/software/tweet-this/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 15:21:07 +0000</pubDate>
		<dc:creator>danalwebb</dc:creator>
				<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://danaville.com/uncategorized/tweet-this/</guid>
		<description><![CDATA[&#160;
(From Mashable)
&#160;
Twitter has become an integral part of our social media lives, marketing strategies, and business objectives. We have multiple accounts, hundreds of followers to watch, Twitter trends to track, hashtags to follow, and a frequent need for continuously updating search results.
As such, getting by on the limited feature set available via Twitter.com is difficult [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p><em>(From <a href="http://mashable.com" target="_blank">Mashable</a>)</em></p>
<p>&#160;</p>
<p><a href="http://www.blippr.com/apps/336651-Twitter">Twitter</a> has become an integral part of our social media lives, marketing strategies, and business objectives. We have multiple accounts, hundreds of followers to watch, Twitter trends to track, hashtags to follow, and a frequent need for continuously updating search results.</p>
<p>As such, getting by on the limited feature set available via Twitter.com is difficult at best. Enter the desktop application, a third-party piece of software that you can install on your computer to interface with Twitter and get more out of your microblogging activities.</p>
<p>Now that <a href="http://mashable.com/tag/twitter">Twitter</a> is <a href="http://mashable.com/2009/03/21/happy-birthday-twitter/">older than a toddler</a>, you have a variety to choose from. From apps for groups, Mac and PC specific clients, and apps that let you do a whole lot more than tweet, you can use this guide to help you find the desktop client that’s right for you.</p>
<p><em>*Note: all ratings are based on 5 stars</em></p>
<hr />
<h4>Power Users Only</h4>
<hr />
<p><img title="destroy twitter" alt="destroy twitter" src="http://ec.mashable.com/wp-content/uploads/2009/06/destroy-twitter.jpg" width="598" height="362" /></p>
<p><strong>Destroy Twitter:</strong> Certainly not your most sophisticated Twitter client, but definitely above average and packing a few hidden nuggets. <a href="https://destroytwitter.com/">Destroy Twitter</a> is a single account, single column app (but does allow for multiple columns in the expanded view), that’s clearly not for power users who have <a href="http://mashable.com/2009/05/18/twitter-apps-manage-multiple-accounts/">multiple presences</a> to manage. It does, however, have a simple yet powerful groups feature that supports groups of users or groups of multiple keywords. The only problem is that accessing those groups can be a challenge.</p>
<p><em><a href="http://www.blippr.com/apps/337174-Mashable">Mashable</a> rating: 3.5 stars      <br />Hit feature: user-created <a href="https://destroytwitter.com/themes">themes</a> that you can download to skin the app      <br />Common concern: better features are hidden</em></p>
<p><img title="tweetdeck" alt="tweetdeck" src="http://ec.mashable.com/wp-content/uploads/2009/06/tweetdeck-26.2.jpg" width="598" height="354" /></p>
<p><strong><a href="http://www.blippr.com/apps/336804-TweetDeck">TweetDeck</a>:</strong> Our current <a href="http://mashable.com/2009/06/16/tweetdeck-vs-seesmic-desktop-2/">head-to-head winner</a> in the desktop space, <a href="http://tweetdeck.com/beta/">TweetDeck’s</a> most recent updates improve upon the column experience to include a report spam button, recommended people to follow, better video playback, auto-suggest for usernames, yFrog integration, and unlimited columns. Oh and it also happens to have a complementary <a href="http://mashable.com/2009/06/16/tweetdeck-iphone/">iPhone app</a> that syncs with your desktop columns. Nice.</p>
<p><em>Mashable rating: 4.5 stars     <br />Hit feature: sync with the iPhone app      <br />Common concern: groups need a little fine tuning </em></p>
<p><em>*Disclosure: TweetDeck partnered with Mashable to create <a href="http://mashable.com/2009/06/25/mashdeck/">MashDeck</a>, a branded version of the software.</em></p>
<p><img title="seesmic desktop" alt="seesmic desktop" src="http://ec.mashable.com/wp-content/uploads/2009/06/seesmic-desktop.jpg" width="599" height="326" /></p>
<p><strong><a href="http://www.blippr.com/apps/337861-Seesmic-Desktop">Seesmic Desktop</a>:</strong> <a href="http://desktop.seesmic.com/">This</a> really is the everything Twitter app. It features support for unlimited Twitter accounts and columns, a smattering of URL and photo options, hands down the best <a href="http://www.blippr.com/apps/336650-Facebook">Facebook</a> integration we’ve seen, and unlimited saved searches. We’re really in love with Seesmic Desktop, and it seems to be evolving at record pace.</p>
<p><em>Mashable rating: 4.5 stars     <br />Hit feature: fantastic Facebook integration for comments and likes      <br />Common concern: system resource hog</em></p>
<p><img title="peoplebrowsr" alt="peoplebrowsr" src="http://ec.mashable.com/wp-content/uploads/2009/06/peoplebrowsr.jpg" width="600" height="327" /></p>
<p><strong>PeopleBrowsr:</strong> The desktop version is just as complicated and feature-rich as the web app (you’ll need to log in to the website to find the download link in lower right-hand corner). With <a href="http://www.peoplebrowsr.com/">PeopleBrowsr</a> you get a full-featured Twitter app that is bloated with features like export, sort by Twitter name or number of followers, map or gallery views, stats on stacks (which are like columns), an aggregate view of tweets across stacks, simultaneous posting to other services, quick access to a number of different filters, and so much more. And we haven’t even begun to discuss the integrations with every popular social site on the planet. Even though the light mode is a little easier, this app is better left to extreme power users. Plus all those features seem to really slow it down.</p>
<p><em>Mashable rating: 3.5 stars     <br />Hit feature: export      <br />Common concern: information overload      <br /></em></p>
<hr />
<h4>Mac Apps</h4>
<hr />
<p><img title="mac lounge" alt="mac lounge" src="http://ec.mashable.com/wp-content/uploads/2009/06/mac-lounge.jpg" width="393" height="388" /></p>
<p><strong>Mac Lounge:</strong> <a href="http://loungeapp.com/mac/">This app</a> is incredibly appealing for its dead simple, single column interface and respectable feature set. We, of course, love the multiple account support, but also appreciate saved searches, quick access to view followers and following, and tweet options to link to tweet, copy tweet, or copy tweet URL. There’s also an accompanying iPhone app [<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=307367075&amp;mt=8">iTunes link</a>], which syncs with the desktop version and greatly improves the app’s relevance.</p>
<p><em>Mashable rating: 3 stars     <br />Hit feature: drag and drop categories to reorder (on left-hand panel)      <br />Common concern: lack of support for groups or image posting</em></p>
<p><img title="nambu" alt="nambu" src="http://ec.mashable.com/wp-content/uploads/2009/06/nambu.jpg" width="598" height="385" /></p>
<p><strong>Nambu:</strong> This really sophisticated <a href="http://nambu.com/">Mac app</a> should be more than enough for any and all of your Twitter needs. You’ve got access to your followers and friends, custom groups, search (integrated with <a href="http://www.blippr.com/apps/336656-FriendFeed">FriendFeed</a> and <a href="http://mashable.com/2009/05/12/oneriot-realtime-search/">One Riot</a>), trends, tr.im and pic.im integration, multiple accounts, Ping.fm integration, filters, and three view options for a one or many column view of tweets.</p>
<p><em>Mashable rating: 4.5 stars     <br />Hit feature: Twitter search with FriendFeed, OneRiot, and Yahoo results      <br />Common concern: needs more variety for photo and URL shortening</em></p>
<p><img title="tweetie for mac" alt="tweetie for mac" src="http://ec.mashable.com/wp-content/uploads/2009/06/tweetie-for-mac.jpg" width="351" height="541" /></p>
<p><strong>Tweetie for Mac:</strong> Beautiful, sleek, and simple, <a href="http://www.blippr.com/apps/338003-Tweetie-for-Mac">Tweetie for Mac</a> is <a href="http://mashable.com/2009/04/20/tweetie-for-mac/">everything you’d expect</a> from the developers of the top mobile application for Twitter. You can get a beautiful view of conversations, toggle through and manage multiple accounts, save searches, and even post videos to <a href="http://mashable.com/2009/05/27/yfrog-video/">yFrog</a>. It’s the cleanest single column app with multiple account management that we’ve ever seen.</p>
<p><em>Mashable rating: 4 stars     <br />Hit feature: killer conversation threads      <br />Common concern: groups are strangely absent</em></p>
<p><img title="twitterpod" alt="twitterpod" src="http://ec.mashable.com/wp-content/uploads/2009/06/twitterpod.jpg" width="366" height="558" /></p>
<p><strong>TwitterPod:</strong> This app isn’t known for its sophistication or advanced Twitter functionality. <a href="http://www.apple.com/downloads/macosx/internet_utilities/twitterpod.html">TwitterPod</a> is a basic single column Twitter app with an inline browser and the ability to filter for just tweets with links. Its heyday has long since passed, but original fan boys and girls may still be using this for their twittering.</p>
<p><em>Mashable rating: 2 stars     <br />Hit feature: inline browser      <br />Common concern: not reliable</em></p>
<p><img title="eventbox" alt="eventbox" src="http://ec.mashable.com/wp-content/uploads/2009/06/eventbox.jpg" width="598" height="491" /></p>
<p><strong>EventBox:</strong> This just-for-Mac app is a favorite of many because it supports Twitter, Facebook, and <a href="http://www.blippr.com/apps/336659-Flickr">Flickr</a> integration, and also supports feed reading with <a href="http://www.blippr.com/apps/337305-Google-Reader">Google Reader</a>, and internet trend watching with Reddit and <a href="http://www.blippr.com/apps/336668-Digg">Digg</a>. Keyboard shortcuts, hotkeys, <a href="http://www.blippr.com/apps/337782-instapaper">instapaper</a> integration, and photo uploads to Flickr and Facebook make <a href="http://thecosmicmachine.com/">EventBox</a> pretty nifty. It’s also got a very slick interface with a navigation menu on the left-hand side.</p>
<p><em>Mashable rating: 4 stars     <br />Hit feature: feed reading alongside tweet watching      <br />Common concern: single Twitter account support only</em></p>
<hr />
<h4>Windows Apps</h4>
<hr />
<p><img title="digsby" alt="digsby" src="http://ec.mashable.com/wp-content/uploads/2009/06/digsby-1.jpg" width="327" height="278" /></p>
<p><strong>Digsby:</strong> The beloved IM, email notification, and social networking application also does Twitter, but it’s only available for PCs at the moment. On the social networking side, <a href="http://www.blippr.com/apps/336739-Digsby">Digsby</a> pulls in Facebook, <a href="http://www.blippr.com/apps/336652-MySpace">MySpace</a>, Twitter, and <a href="http://www.blippr.com/apps/337623-LinkedIn">LinkedIn</a> so you can get a more complete view of what’s happening across your entire social presence.</p>
<p><em>Mashable rating: 2.5 stars     <br />Hit feature: IM and email integration      <br />Common concern: not robust enough for power users</em></p>
<p><img title="digiTweet" alt="digiTweet" src="http://ec.mashable.com/wp-content/uploads/2009/06/digiTweet.jpg" width="598" height="405" /></p>
<p><strong>DigiTweet:</strong> This open source desktop Twitter client for Windows is built on Windows Presentation Foundation (WPF) and allows for a lot of customization in the layout and view of your Twitter stream with an interactive dockable pane. <a href="http://www.digitweet.com/">DigiTweet</a> has also evolved to include multiple search tabs, color coding users you follow by categories (kind of love this), alerts for specific users, follow/unfollow, and link preview.</p>
<p><em>Mashable rating: 3.5 stars     <br />Hit feature: toast alerts for specific tweeters      <br />Common concern: tricky user interface</em></p>
<hr />
<h4>A Few More Options</h4>
<hr />
<p><img title="twhirl" alt="twhirl" src="http://ec.mashable.com/wp-content/uploads/2009/06/twhirl.jpg" width="384" height="671" /></p>
<p><strong>Twhirl:</strong> This oldie but goodie, though no longer actively being updated (Seesmic Desktop took its place), is still working just fine and many a Twitter early adopter are happy to have a single column Twitter experience, with additional windows available for additional Twitter accounts, plus FriendFeed, <a href="http://www.blippr.com/apps/336894-Seesmic">Seesmic</a>, and Identica integration for viewing and posting content to those sites. Since you can still save Twitter searches, <a href="http://www.twhirl.org/">Twhirl</a><a href="http://www.blippr.com/apps/336799-Twhirl">Twhirl</a> is actually a really great desktop client if you’re not beholden to groups.</p>
<p><em>Mashable rating: 3.5 stars     <br />Hit feature: FriendFeed support for viewing threads and adding comments      <br />Common concern: window overload</em></p>
<p><img title="skimmer" alt="skimmer" src="http://ec.mashable.com/wp-content/uploads/2009/06/skimmer.jpg" width="600" height="362" /></p>
<p><strong>Skimmer:</strong> It’s hard not to love this app. Not only is it beautiful to look at it, but it also <a href="http://mashable.com/2009/03/24/skimmer/">tracks your favorite social sites</a>. <a href="http://www.fallon.com/skimmer">Skimmer’s</a> certainly not an application for the social media beginner, but power users of Facebook, Flickr, <a href="http://www.blippr.com/apps/336658-YouTube">YouTube</a>, <a href="http://www.blippr.com/apps/337581-blogger">blogger</a>, and Twitter, will appreciate the aggregation of content, filtering options, view types, and enhanced content viewing experience.</p>
<p><em>Mashable rating: 4.5 stars     <br />Hit feature: gorgeous Flickr and YouTube video viewing      <br />Common concern: sacrificing a few advanced twitter app features for beauty</em></p>
<p><img title="sideline" alt="sideline" src="http://ec.mashable.com/wp-content/uploads/2009/06/sideline.jpg" width="597" height="463" /></p>
<p><strong>Sideline:</strong> <a href="http://sideline.yahoo.com/">Sideline</a> is just a <a href="http://mashable.com/2009/03/31/yahoo-sideline/">search and trending topic app</a> from Yahoo, but it does a darn good job at satisfying those specific needs. You can view current Twitter trends, select to see the three latest tweets or pop out as its own saved search, and create custom search groups as tabs.</p>
<p><em>Mashable rating: 4 stars     <br />Hit feature: search groups that support multiple keywords      <br />Common concern: can’t tweet from the app</em></p>
<hr />
<h4>Less to Tweet Home About</h4>
<hr />
<p><img title="tweetr" alt="tweetr" src="http://ec.mashable.com/wp-content/uploads/2009/06/tweetr.jpg" width="311" height="504" /></p>
<p><strong>Tweetr:</strong> A lesser known simple app, <a href="http://tweet-r.com/">Tweetr</a> is beautiful <a href="http://www.blippr.com/apps/428084-adobe-AIR">adobe AIR</a> based app that doesn’t support multiple accounts, and isn’t right for power users, but might be just perfect for lightweight Twitterers. You’re not going to get columns, groups, search, or filters, but you can share files and take photos with your web cam.</p>
<p><em>Mashable rating: 3 stars     <br />Hit feature: file sharing and webcam photos      <br />Common concern: URL shortening limited to hurl.ws</em></p>
<p><img title="twibble" alt="twibble" src="http://ec.mashable.com/wp-content/uploads/2009/06/twibble.jpg" width="417" height="505" /></p>
<p><strong>Twibble Desktop:</strong> <a href="http://www.twibble.de/twibble-desktop/">Twibble</a> is a bit of a riddle. It’s not a bad app when it comes to feature set, but it’s also not the most intuitive. You can manage multiple accounts, but all tweets are merged together in one stream. You can reply, DM, fav, RT, and copy tweets, but you’ll have to hover over the tweet to even know those behaviors are possible. You can also use keyboard shortcuts, filter your tweets for keywords, or conduct searches that open up in new windows, but Twibble just doesn’t seem to flow as easily as we’d like it to.</p>
<p><em>Mashable rating: 2 stars     <br />Hit feature: drag and drop photo upload      <br />Common concern: very tricky user interface</em></p>
<p><img title="Twitterrific" alt="Twitterrific" src="http://ec.mashable.com/wp-content/uploads/2009/06/Twitterrific.jpg" width="378" height="419" /></p>
<p><strong>Twitterrific:</strong> Once the preferred app of the Mac Twitterati, <a href="http://www.blippr.com/apps/337231-Twitterrific">Twitterrific</a> has seen brighter days on your desktop (meanwhile the <a href="http://mashable.com/2009/05/07/twitterrific-20-2/">iPhone app</a> is certainly an impressive option). As it stands, Twitterrific is hardly an improvement on the Twitter.com web experience.</p>
<p><em>Mashable rating: 2 stars     <br />Hit feature: super lightweight      <br />Common concern: hard to filter tweets for mentions and direct messages</em></p>
<p><img title="spaz" alt="spaz" src="http://ec.mashable.com/wp-content/uploads/2009/06/spaz.jpg" width="360" height="581" /></p>
<p><strong>Spaz:</strong> With a name like <a href="http://funkatron.com/spaz/">Spaz</a>, you’d expect this AIR based client to be perfect for the Twitter spaz. Unfortunately, that’s not quite the case. So even though it’s not a terrible app for lightweight Twitterers, power users won’t get by on the limited feature set.</p>
<p><em>Mashable rating: 2.5 stars     <br />Hit feature: in-line short URL decoding      <br />Common concern: no photo uploading options</em></p>
<p><img title="snitter" alt="snitter" src="http://ec.mashable.com/wp-content/uploads/2009/06/jbruin.jpg" width="387" height="571" /></p>
<p><strong>Snitter:</strong> Another one of those apps that was all the rage back in the day, but is now in dire need of an update. <a href="http://getsnitter.com/">This one</a> is definitely a pass for the time being.</p>
<p><em>Mashable rating: 1.5 stars     <br />Hit feature: filter by time period      <br />Common concern: too many to count</em></p>
]]></content:encoded>
			<wfw:commentRss>http://danaville.com/software/tweet-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.566 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-30 02:11:31 -->
