<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title><![CDATA[[SoftRatty] tag: lines]]></title>
    <link>http://www.softratty.com/tag/lines</link>
    <description></description>
    <pubDate>Fri, 28 Nov 2008 15:30:11 +0000</pubDate>
    <generator>iRatty Engine</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
      <title><![CDATA[BAIK 3.0 (Default branch)]]></title>
      <link>http://www.softratty.com/article/4c838074e82a02b25c4ed014816fa015</link>
      <guid>http://www.softratty.com/article/4c838074e82a02b25c4ed014816fa015</guid>
      <description><![CDATA[BAIK (Bahasa Anak Indonesia untuk Komputer) is a scripting language whose syntax is in Indonesian. It supports file operations, conditions, arrays, functions, MySQL databases, CGI, and TCP/IP...]]></description>
      <content:encoded><![CDATA[BAIK (Bahasa Anak Indonesia untuk Komputer) is a
scripting language whose syntax is in Indonesian. It supports file operations, conditions, arrays, functions, MySQL databases, CGI, and TCP/IP networking.
<hr />
<strong>License:</strong> Free To Use But Restricted
<hr />
<strong>Changes:</strong><br />
By supporting GD graphics library, this version
now can create pictures in the PNG file format.
The basic drawing functions, such us creating
lines, circles, and text, have been adopted. Some
functions for basic statistic calculation were
added and some minor bugs were fixed.<br style="clear: both;"/>
<a href="http://www.pheedo.com/click.phdo?s=99aa53bbd9269da79941114d58ff6017&p=1"><img alt="" style="border: 0;" border="0" src="http://www.pheedo.com/img.phdo?s=99aa53bbd9269da79941114d58ff6017&p=1"/></a>
<img src="http://www.pheedo.com/feeds/tracker.php?i=99aa53bbd9269da79941114d58ff6017" style="display: none;" border="0" height="1" width="1" alt=""/>


]]></content:encoded>
      <pubDate>Mon, 01 Dec 2008 12:23:43 +0000</pubDate>
      <category domain="http://www.softratty.com/tag/basic">basic</category>
      <category domain="http://www.softratty.com/tag/basic statistic calculation">basic statistic calculation</category>
      <category domain="http://www.softratty.com/tag/supports file operations">supports file operations</category>
      <category domain="http://www.softratty.com/tag/png file format">png file format</category>
      <category domain="http://www.softratty.com/tag/functions">functions</category>
      <category domain="http://www.softratty.com/tag/minor bugs">minor bugs</category>
      <category domain="http://www.softratty.com/tag/baik">baik</category>
      <category domain="http://www.softratty.com/tag/mysql databases">mysql databases</category>
      <category domain="http://www.softratty.com/tag/graphics library">graphics library</category>
      <source url="http://www.pheedo.com/click.phdo?i=99aa53bbd9269da79941114d58ff6017">BAIK 3.0 (Default branch)</source>
    </item>
    <item>
      <title><![CDATA[How to send email from the Linux command line]]></title>
      <link>http://www.softratty.com/article/a8e869f0d3e74bf7594b44630cb4481f</link>
      <guid>http://www.softratty.com/article/a8e869f0d3e74bf7594b44630cb4481f</guid>
      <description><![CDATA[The Linux command line can be very powerful once you know how to use it. You can parse data, monitor processes, and do a lot of other useful and cool things using it. There often comes a need to...]]></description>
      <content:encoded><![CDATA[<!-- no icon for 'Guest Blogger' --><img src="/wp-images/icons/topic_linux.jpg" align="right" width="50" height="50" alt="Linux" />
<p>The Linux command line can be very powerful once you know how to use it. You can parse data, monitor processes, and do a lot of other useful and cool things using it. There often comes a need to generate a report and mail it out. It could be as simple a requirement as a notification that the day&#8217;s backup went through fine, or did not. I&#8217;ll help you get started with sending mails from the Linux command line and in shell scripts. We will also cover sending attachments from the command line. We will begin with the &#8220;mail&#8221; command. <span id="more-1763"></span></p>
<h3>MAIL</h3>
<p>First run a quick test to make sure the &#8220;sendmail&#8221; application is installed and working correctly. Execute the following command, replacing &#8220;you@youremailid.com&#8221; with your e-mail address.</p>
<p>	# <strong>mail -s &#8220;Hello world&#8221; you@youremailid.com</strong></p>
<p>Hit the return key and you will come to a new line. Enter the text &#8220;This is a test from my server&#8221;. Follow up the text by hitting the return key again. Then hit the key combination of <strong>Control+D</strong> to continue. The command prompt will ask you if you want to mark a copy of the mail to any other address, hit <strong>Control+D</strong> again. Check your mailbox. This command will send out a mail to the email id mentioned with the subject, &#8220;Hello world&#8221;.</p>
<p>To add content to the body of the mail while running the command you can use the following options. If you want to add text on your own:</p>
<p>	# <strong>echo &#8220;This will go into the body of the mail.&#8221; | mail -s &#8220;Hello world&#8221; you@youremailid.com</strong></p>
<p>And if you want mail to read the content from a file:</p>
<p>	# <strong>mail -s &#8220;Hello world&#8221; you@youremailid.com < /home/calvin/application.log</strong></p>
<p>Some other useful options in the mail command are:</p>
<p>	<strong>-s subject</strong> (The subject of the mail)<br />
	<strong>-c email-address</strong> (Mark a copy to this &#8220;email-address&#8221;, or CC)<br />
	<strong>-b email-address</strong> (Mark a blind carbon copy to this &#8220;email-address&#8221;, or BCC)</p>
<p>Here&#8217;s how you might use these options:</p>
<p>	# <strong>echo &#8220;Welcome to the world of Calvin n Hobbes&#8221; | mail -s &#8220;Hello world&#8221; calvin@cnh.com -c hobbes@cnh.com -b susie.derkins@cnh.com</strong></p>
<h3>MUTT</h3>
<p>One of major drawbacks of using the mail command is that it does not support the sending of attachments. mutt, on the other hand, does support it. I&#8217;ve found this feature particularly useful for scripts that generate non-textual reports or backups which are relatively small in size which I&#8217;d like to backup elsewhere. Of course, mutt allows you to do a lot more than just send attachments. It is a much more complete command line  mail client than the &#8220;mail&#8221; command. Right now we&#8217;ll just explore the basic stuff we might need often. Here&#8217;s how you would attach a file to a mail:</p>
<p>	# <strong>echo &#8220;Sending an attachment.&#8221; | mutt -a backup.zip -s &#8220;attachment&#8221; calvin@cnh.com</strong></p>
<p>This command will send a mail to calvin@cnh.com with the subject (-s) &#8220;attachment&#8221;, the body text &#8220;Sending an attachment.&#8221;, containing the attachment (-a) backup.zip. Like with the mail command you can use the &#8220;-c&#8221; option to mark a copy to another mail id.</p>
<h3>SENDING MAIL FROM A SHELL SCRIPT</h3>
<p>Now, with the basics covered you can send mails from your shell scripts. Here&#8217;s a simple shell script that gives you a reading of the usage of space on your partitions and mails the data to you.</p>
<blockquote><p>#!/bin/bash<br />
	df -h | mail -s &#8220;disk space report&#8221; calvin@cnh.com</p></blockquote>
<p>Save these lines in a file on your Linux server and run it. You should receive a mail containing the results of the command. If, however, you need to send more data than just this you will need to write the data to a text file and enter it into the mail body while composing the mail. Here&#8217;s and example of a shell script that gets the disk usage as well as the memory usage, writes the data into a temporary file, and then enters it all into the body of the mail being sent out:</p>
<blockquote><p>#!/bin/bash<br />
	df -h > /tmp/mail_report.log<br />
	free -m >> /tmp/mail_report.log<br />
	mail -s &#8220;disk and RAM report&#8221; calvin@cnh.com < /tmp/mail_report.log</p></blockquote>
<p>Now here&#8217;s a more complicated problem. You have to take a backup of a few files and mail then out. First the directory to be mailed out is archived. Then it is sent as an email attachment using mutt. Here&#8217;s a script to do just that:</p>
<blockquote><p>#!/bin/bash<br />
	tar -zcf /tmp/backup.tar.gz  /home/calvin/files<br />
	echo | mutt -a -s /tmp/backup.tar.gz &#8220;daily backup of data&#8221; calvin@cnh.com</p></blockquote>
<p>The echo at the start of the last line adds a blank into the body of the mail being set out.</p>
<p>This should get you started with sending mails form the Linux command line and from shell scripts. Read up the &#8220;man page&#8221; for both mail and mutt for more options.</p>
<p>---<br />Related Articles at Simple Help:<ul><li><a href="http://www.simplehelp.net/2007/08/11/how-to-set-up-evolution-for-email/" rel="bookmark" title="Permanent Link: How to set up Evolution for email">How to set up Evolution for email</a></li><li><a href="http://www.simplehelp.net/2007/11/08/simple-help-contest-win-25-twice/" rel="bookmark" title="Permanent Link: Simple Help Contest - Win $25, twice!">Simple Help Contest - Win $25, twice!</a></li><li><a href="http://www.simplehelp.net/2006/07/11/why-you-get-so-many-returned-mail-user-unknown-emails/" rel="bookmark" title="Permanent Link: Why you get so many &#8220;Returned mail: User unknown&#8221; emails">Why you get so many &#8220;Returned mail: User unknown&#8221; emails</a></li><li><a href="http://www.simplehelp.net/2008/11/26/how-to-reset-a-lost-mysql-root-password/" rel="bookmark" title="Permanent Link: How to reset a lost MySQL root password">How to reset a lost MySQL root password</a></li><li><a href="http://www.simplehelp.net/2007/05/27/how-to-set-up-thunderbird-20-for-email/" rel="bookmark" title="Permanent Link: How to set up Thunderbird 2.0 for email">How to set up Thunderbird 2.0 for email</a></li></ul></p><br /><p><a href="http://www.simplehelp.net/?p=1763">How to send email from the Linux command line</a> - <a href="http://www.simplehelp.net/">Simple Help</a> </p>
<p><a href="http://feedads.googleadservices.com/~a/uX7VX2VW3oswEWje7wryuTsBG3Y/a"><img src="http://feedads.googleadservices.com/~a/uX7VX2VW3oswEWje7wryuTsBG3Y/i" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feedproxy.google.com/~f/simplehelp?a=6d43XzY6"><img src="http://feedproxy.google.com/~f/simplehelp?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/simplehelp?a=UtVRrair"><img src="http://feedproxy.google.com/~f/simplehelp?i=UtVRrair" border="0"></img></a> <a href="http://feedproxy.google.com/~f/simplehelp?a=MRXogpOf"><img src="http://feedproxy.google.com/~f/simplehelp?i=MRXogpOf" border="0"></img></a> <a href="http://feedproxy.google.com/~f/simplehelp?a=oWsyLWZG"><img src="http://feedproxy.google.com/~f/simplehelp?d=141" border="0"></img></a> <a href="http://feedproxy.google.com/~f/simplehelp?a=kN8NGhxo"><img src="http://feedproxy.google.com/~f/simplehelp?d=124" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/simplehelp/~4/z2U4qGlnV14" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 01 Dec 2008 08:30:38 +0000</pubDate>
      <category domain="http://www.softratty.com/tag/command">command</category>
      <category domain="http://www.softratty.com/tag/linux command line">linux command line</category>
      <category domain="http://www.softratty.com/tag/mail">mail</category>
      <category domain="http://www.softratty.com/tag/mail command">mail command</category>
      <category domain="http://www.softratty.com/tag/line">line</category>
      <category domain="http://www.softratty.com/tag/command prompt">command prompt</category>
      <category domain="http://www.softratty.com/tag/command line">command line</category>
      <category domain="http://www.softratty.com/tag/e-mail address">e-mail address</category>
      <category domain="http://www.softratty.com/tag/mail body">mail body</category>
      <source url="http://feedproxy.google.com/~r/simplehelp/~3/z2U4qGlnV14/">How to send email from the Linux command line</source>
    </item>
    <item>
      <title><![CDATA[Panels.net - Pop-ups With A Difference]]></title>
      <link>http://www.softratty.com/article/cb4fb593ce55ec27ba582a61ae40440c</link>
      <guid>http://www.softratty.com/article/cb4fb593ce55ec27ba582a61ae40440c</guid>
      <description><![CDATA[In their own words

Panels is a consumer information network. The main goal for panels is to deliver relevant information about businesses, schools, non-profits, etc. from numerous data sources in a...]]></description>
      <content:encoded><![CDATA[<br />In their own words<br /><br />“Panels is a consumer information network. The main goal for panels is to deliver relevant information about businesses, schools, non-profits, etc. from numerous data sources in a standard interface.”<br /><br />Why it might be a killer<br /><br />It lets you promote your company or business in a dynamic fashion.<br /><br />Some questions<br /><br />What is the difference between Panels and ad platforms?<br /><br />What it does<br /><br />Panels is a consumer information network that has the objective of delivering information to site visitors in an interactive way. The basic premise is to highlight relevant information while enabling the user to stay engaged with the original article.
<br>
<br>What Panels does is to display a small window whenever you roll over an icon, and by clicking on the items within the panel more information is produced on a separate window.
<br>
<br>The information that can be displayed this way can range far and wide. Uses that spring easily to mind include basic company information such as URL and links to RSS feeds, whereas a preview of a home page can also be easily displayed. Furthermore, geographical data culled from services like Google Maps can also be visualized right away.  
<br>
<br>If you would like to know more about this form of displaying information you can always check the comprehensive FAQ that is provided, and a video tour is also part of the premises. You can likewise install Panels in an uncomplicated manner – all it takes is to copy and paste a few lines of Javascript into your website or blog platform, and then you are ready to go.<br /><br />Link: <a href='http://www.panels.net'>http://www.panels.net</a><br />Our Review: <a href='http://www.killerstartups.com/Web20/panels-net-pop-ups-with-a-difference'>http://www.killerstartups.com/Web20/panels-net-pop-ups-with-a-difference</a><br /><br /> &nbsp;<div class="feedflare">
<a href="http://feedproxy.google.com/~f/killerstartups/BkQV?a=BqYbVfqh"><img src="http://feedproxy.google.com/~f/killerstartups/BkQV?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/killerstartups/BkQV?a=F9kaJYPA"><img src="http://feedproxy.google.com/~f/killerstartups/BkQV?d=52" border="0"></img></a> <a href="http://feedproxy.google.com/~f/killerstartups/BkQV?a=xPn4MeeX"><img src="http://feedproxy.google.com/~f/killerstartups/BkQV?i=xPn4MeeX" border="0"></img></a> <a href="http://feedproxy.google.com/~f/killerstartups/BkQV?a=f5GioTvk"><img src="http://feedproxy.google.com/~f/killerstartups/BkQV?i=f5GioTvk" border="0"></img></a> <a href="http://feedproxy.google.com/~f/killerstartups/BkQV?a=73OMYd2r"><img src="http://feedproxy.google.com/~f/killerstartups/BkQV?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/killerstartups/BkQV?a=dEOdFmj5"><img src="http://feedproxy.google.com/~f/killerstartups/BkQV?i=dEOdFmj5" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/killerstartups/BkQV/~4/yOLceWEFBZo" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 01 Dec 2008 06:48:00 +0000</pubDate>
      <category domain="http://www.softratty.com/tag/panels">panels</category>
      <category domain="http://www.softratty.com/tag/information">information</category>
      <category domain="http://www.softratty.com/tag/highlight relevant information">highlight relevant information</category>
      <category domain="http://www.softratty.com/tag/consumer information network">consumer information network</category>
      <category domain="http://www.softratty.com/tag/likewise install panels">likewise install panels</category>
      <category domain="http://www.softratty.com/tag/deliver relevant information">deliver relevant information</category>
      <category domain="http://www.softratty.com/tag/numerous data sources">numerous data sources</category>
      <category domain="http://www.softratty.com/tag/home page">home page</category>
      <category domain="http://www.softratty.com/tag/net">net</category>
      <source url="http://feedproxy.google.com/~r/killerstartups/BkQV/~3/yOLceWEFBZo/panels-net-pop-ups-with-a-difference">Panels.net - Pop-ups With A Difference</source>
    </item>
    <item>
      <title><![CDATA[Split CSV Files]]></title>
      <link>http://www.softratty.com/article/ab9ee9fb4520b59913055e47c943df38</link>
      <guid>http://www.softratty.com/article/ab9ee9fb4520b59913055e47c943df38</guid>
      <description><![CDATA[CSV (Comma Separated Values) files are used to store tabular data with each line of a csv file corresponding to one row of the table. The columns of each row are separated by commas which makes it an...]]></description>
      <content:encoded><![CDATA[<p>CSV (Comma Separated Values) files are used to store tabular data with each line of a csv file corresponding to one row of the table. The columns of each row are separated by commas which makes it an easy process to create a table out of csv files.</p>
<p>The most common use of csv files is data export and import. Many applications provide an export to csv option which will store the selected data in a csv file which can then be imported into another application that supports csv import.</p>
<p>Problems can arise if the generated csv file becomes very large as some applications or computer systems might run into limits. That&#8217;s where <a href="http://www.fxfisherman.com/forums/forex-metatrader/tools-utilities/75-csv-splitter-divide-large-csv-files.html#post727">CSV Splitter</a> (via <a href="http://www.technospot.net/blogs/spilt-large-csv-files-into-smaller-files-with-csv-splitter/">Technospot</a>) would come into play. The portable application can split large csv files into multiple files limiting the newly created csv files by the number of lines.</p>
<p><span id="more-8618"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/11/csv_splitter.jpg" alt="" title="csv splitter" width="496" height="192" class="alignnone size-medium wp-image-8619" /></p>
<p>The new csv files will be created in a subdirectory in the same location. It will be named after the original csv file. The application requires the Microsoft .net Framework 1.1.</p>
<p></p>
<p><a href="http://www.ghacks.net/2008/11/30/split-csv-files/">Split CSV Files</a></p>

	Tags: <a href="http://www.ghacks.net/tag/comma-separated-values/" title="comma separated values" rel="tag">comma separated values</a>, <a href="http://www.ghacks.net/tag/csv/" title="csv" rel="tag">csv</a>, <a href="http://www.ghacks.net/tag/csv-file/" title="csv file" rel="tag">csv file</a>, <a href="http://www.ghacks.net/tag/csv-splitter/" title="csv splitter" rel="tag">csv splitter</a>, <a href="http://www.ghacks.net/tag/portable-software/" title="portable software" rel="tag">portable software</a>, <a href="http://www.ghacks.net/tag/split-csv/" title="split csv" rel="tag">split csv</a>, <a href="http://www.ghacks.net/tag/split-csv-files/" title="split csv files" rel="tag">split csv files</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/30/use-dreamscene-on-windows-xp/" title="Use Dreamscene On Windows XP (November 30, 2008)">Use Dreamscene On Windows XP</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/11/28/iso-format-converter/" title="ISO Format Converter (November 28, 2008)">ISO Format Converter</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/11/27/hash-tab-shell-extension/" title="Hash Tab Shell Extension (November 27, 2008)">Hash Tab Shell Extension</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/11/27/snow-desktop/" title="Snow Desktop (November 27, 2008)">Snow Desktop</a> (16)</li>
	<li><a href="http://www.ghacks.net/2008/11/27/dvd-identifier/" title="DVD Identifier (November 27, 2008)">DVD Identifier</a> (2)</li>
</ul>

<div class="feedflare">
<a href="http://feeds.ghacks.net/~f/Ghacksnet?a=sYKypXLy"><img src="http://feedproxy.google.com/~f/Ghacksnet?d=41" border="0"></img></a> <a href="http://feeds.ghacks.net/~f/Ghacksnet?a=39QYiegh"><img src="http://feedproxy.google.com/~f/Ghacksnet?i=39QYiegh" border="0"></img></a> <a href="http://feeds.ghacks.net/~f/Ghacksnet?a=0ZUb2i3x"><img src="http://feedproxy.google.com/~f/Ghacksnet?i=0ZUb2i3x" border="0"></img></a> <a href="http://feeds.ghacks.net/~f/Ghacksnet?a=y7tqxBKz"><img src="http://feedproxy.google.com/~f/Ghacksnet?i=y7tqxBKz" border="0"></img></a> <a href="http://feeds.ghacks.net/~f/Ghacksnet?a=SGdX23J6"><img src="http://feedproxy.google.com/~f/Ghacksnet?d=52" border="0"></img></a> <a href="http://feeds.ghacks.net/~f/Ghacksnet?a=3GTWsySQ"><img src="http://feedproxy.google.com/~f/Ghacksnet?i=3GTWsySQ" border="0"></img></a>
</div>]]></content:encoded>
      <pubDate>Sun, 30 Nov 2008 14:33:31 +0000</pubDate>
      <category domain="http://www.softratty.com/tag/split csv files">split csv files</category>
      <category domain="http://www.softratty.com/tag/split csv">split csv</category>
      <category domain="http://www.softratty.com/tag/split">split</category>
      <category domain="http://www.softratty.com/tag/csv files">csv files</category>
      <category domain="http://www.softratty.com/tag/csv">csv</category>
      <category domain="http://www.softratty.com/tag/csv splitter">csv splitter</category>
      <category domain="http://www.softratty.com/tag/supports csv import">supports csv import</category>
      <category domain="http://www.softratty.com/tag/import">import</category>
      <category domain="http://www.softratty.com/tag/csv option">csv option</category>
      <source url="http://www.ghacks.net/2008/11/30/split-csv-files/">Split CSV Files</source>
    </item>
    <item>
      <title><![CDATA[Talkcast live tonight at 10pm ET]]></title>
      <link>http://www.softratty.com/article/7906474c9a6722cc5e441d6cee717ebd</link>
      <guid>http://www.softratty.com/article/7906474c9a6722cc5e441d6cee717ebd</guid>
      <description><![CDATA[Filed under: Analysis / Opinion , Desktops , Hardware , Multimedia , Podcasting , TUAW Business


Our fearless co-lead Dave Caolo will be aboard the USS Talkcast this evening with me, and we'll be...]]></description>
      <content:encoded><![CDATA[<p>Filed under: <a href="http://www.tuaw.com/category/analysisopinion/" rel="tag">Analysis / Opinion</a>, <a href="http://www.tuaw.com/category/desktops/" rel="tag">Desktops</a>, <a href="http://www.tuaw.com/category/hardware/" rel="tag">Hardware</a>, <a href="http://www.tuaw.com/category/multimedia/" rel="tag">Multimedia</a>, <a href="http://www.tuaw.com/category/podcasting/" rel="tag">Podcasting</a>, <a href="http://www.tuaw.com/category/tuaw-business/" rel="tag">TUAW Business</a></p><div align="center"><img src="http://www.blogcdn.com/www.tuaw.com/media/2008/10/zz0aad3453_telephone.jpg" alt="" /><br />
<div align="left">Our fearless co-lead Dave Caolo will be <a href="http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=45077&amp;cmd=tc">aboard the USS Talkcast</a> this evening with me, and we'll be talking turkey -- cooking them, chasing them down, plucking them, and how to get the most stuffing in there.  Oh wait, wait?  Thanksgiving is over? Oh well then I guess we'll just be talking Mac and iPhone news as usual.<br /><br />On the menu: Black Friday and <a href="http://www.tuaw.com/2008/11/25/black-friday-best-buy-discounting-up-to-150-off-apple-retail/">the deals</a> we may or may not have been suckered into, new releases from <a href="http://www.tuaw.com/2008/11/24/boxee-is-updated-for-apple-tv-2-3/">Boxee</a> (read <a href="http://tuaw.com/2008/11/27/tuaw-talks-to-boxee-and-brings-you-invites/">the interview</a> yet?) and <a href="http://www.tuaw.com/2008/11/26/utorrent-for-mac-beta-officially-released/">uTorrent for the Mac</a>, and since we've got to get our requisite iPhone talk in there, we'll hit on <a href="http://tuaw.com/2008/11/28/iphone-hackers-achieve-a-milestone-linux-boot/">the Linux install</a>, and <a href="http://tuaw.com/2008/11/24/how-to-sell-an-iphone-app-for-9-99/">the tough subject of App Store pricing</a>.  Join us, won't you?<br /></div>
</div>
Do so on TalkShoe by using the <a href="http://www.talkshoe.com/blog/index.php/the-new-talkshoe-a-message-from-the-ceo/">shiny browser-only client</a>; or you can also use the <a href="http://download.talkshoe.com/TalkShoeSetup_macos.dmg">classic TalkShoe Pro Java client</a> that we all know and love. For the web UI, just click the <a href="http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=45077&amp;cmd=tc">"TalkShoe Web" button on our profile page</a> at 10 pm Sunday. You can also listen in <a href="http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=45077&amp;cmd=tc">on the Talkshoe page</a> or call in on regular phone or VOIP lines: dial (724) 444-7444 and enter our talkcast ID, 45077 -- during the call, you can request to talk by keying in *-8. Talk with you then!
<p><em>Recording support for the TUAW Talkcast provided by <a href="http://ecamm.com/">Ecamm Network's CallRecorder for Skype.</a></em></p><p style="padding:5px;clear:both;"><a href="http://www.tuaw.com">TUAW</a><a href="http://www.tuaw.com/2008/11/30/talkcast-live-tonight-at-10pm-et/">Talkcast live tonight at 10pm ET</a> originally appeared on <a href="http://www.tuaw.com">The Unofficial Apple Weblog (TUAW)</a> on Sun, 30 Nov 2008 17:00:00 EST.  Please see our <a href="http://www.weblogsinc.com/feed-terms/">terms for use of feeds</a>.<br style="clear:both;"></p><h6 style="clear: both; padding: 8px 0 0 0; height: 2px; font-size: 1px; border: 0; margin: 0; padding: 0;"></h6><a href=http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=45077>Read</a>&nbsp;|&nbsp;<a href="http://www.tuaw.com/2008/11/30/talkcast-live-tonight-at-10pm-et/" rel="bookmark" title="Permanent link to this entry">Permalink</a>&nbsp;|&nbsp;<a href="http://www.tuaw.com/forward/1386618/" title="Send this entry to a friend via email">Email this</a>&nbsp;|&nbsp;<a href="http://www.tuaw.com/2008/11/30/talkcast-live-tonight-at-10pm-et/#comments" title="View reader comments on this entry">Comments</a>
<p><a href="http://feedads.googleadservices.com/~at/UK64yXOUflaAjO9Y0LKrkv_Cl28/a"><img src="http://feedads.googleadservices.com/~at/UK64yXOUflaAjO9Y0LKrkv_Cl28/i" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feedproxy.google.com/~f/weblogsinc/tuaw?a=tdq3QfGY"><img src="http://feedproxy.google.com/~f/weblogsinc/tuaw?i=tdq3QfGY" border="0"></img></a> <a href="http://feedproxy.google.com/~f/weblogsinc/tuaw?a=ANMYS3eG"><img src="http://feedproxy.google.com/~f/weblogsinc/tuaw?i=ANMYS3eG" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/weblogsinc/tuaw/~4/nD9KY1ed4IM" height="1" width="1"/>]]></content:encoded>
      <pubDate>Sun, 30 Nov 2008 14:00:00 +0000</pubDate>
      <category domain="http://www.softratty.com/tag/talkcast">talkcast</category>
      <category domain="http://www.softratty.com/tag/tuaw">tuaw</category>
      <category domain="http://www.softratty.com/tag/tuaw talkcast">tuaw talkcast</category>
      <category domain="http://www.softratty.com/tag/talkshoe">talkshoe</category>
      <category domain="http://www.softratty.com/tag/requisite iphone talk">requisite iphone talk</category>
      <category domain="http://www.softratty.com/tag/talkshoe page">talkshoe page</category>
      <category domain="http://www.softratty.com/tag/talk">talk</category>
      <category domain="http://www.softratty.com/tag/talkshoe web">talkshoe web</category>
      <category domain="http://www.softratty.com/tag/web">web</category>
      <source url="http://feedproxy.google.com/~r/weblogsinc/tuaw/~3/nD9KY1ed4IM/">Talkcast live tonight at 10pm ET</source>
    </item>
    <item>
      <title><![CDATA[BYIR: January, February & March 2008]]></title>
      <link>http://www.softratty.com/article/2a98ece096fd27baa1f5ae740b81fb80</link>
      <guid>http://www.softratty.com/article/2a98ece096fd27baa1f5ae740b81fb80</guid>
      <description><![CDATA[January 2008

With the start of 2008 came a handy how-to guide for moving Netscape 9 users to Firefox 2 . Recall, AOL had announced they would discontinue support for Netscape 9 (based off of Firefox...]]></description>
      <content:encoded><![CDATA[<div class='snap_preview'><br /><h2><strong>January 2008</strong></h2>
<p><span style="font-family:verdana;"><br />
With the start of 2008 came a handy &#8220;how-to&#8221; guide for moving <a href="http://ffextensionguru.wordpress.com/2008/01/01/tip-transitioning-from-netscape-9-to-fx-2/">Netscape 9 users to Firefox 2</a>. Recall, AOL had announced they would discontinue support for Netscape 9 (based off of Firefox 2) in February 2008.</span></p>
<p><span style="font-family:verdana;">While the below </span><a href="http://ffextensionguru.wordpress.com/2008/01/30/we-remove-vista/">“We Remove Vista…”</a> photo was taken back in October 2007 at <a href="http://www.03055.com/">A&amp;D Computer</a> in Milford, NH it appeared in <em>Todd Bishop&#8217;s Microsoft Blog </em>(now The Microsoft Blog) in late January.</p>
<p><img class="aligncenter" title="We remove Vista" src="http://i104.photobucket.com/albums/m195/ffextensionguru/xpvistasigntwo.jpg" alt="" width="264" height="243" /><span style="font-family:verdana;">Included in January were three Add-Ons Reviews.</span></p>
<ul><span style="font-family:verdana;"></p>
<li> <a href="http://ffextensionguru.wordpress.com/2008/01/03/review-organize-search-engines/">Organize Search Engines</a>, allowed Firefox users with lots of search engines a better management system to keep their search engines organized. Think of the Manage Bookmarks functionality, except for search engines. <a href="http://ffextensionguru.wordpress.com/2008/01/04/review-tab-effect/"></a></li>
<li><a href="http://ffextensionguru.wordpress.com/2008/01/04/review-tab-effect/">Tab Effect</a>, was a bit of a &#8216;novelty&#8217; extension that I didn&#8217;t keep loaded for very long.</li>
<li><a href="http://ffextensionguru.wordpress.com/2008/01/20/review-url-link/">URL Link</a>, a powerful and highly customizable add-on which allows you to add options to the context (right-click) menu for handling URL links</li>
<p></span></ul>
<p><img class="alignright" title="10-years of Mozilla" src="http://i104.photobucket.com/albums/m195/ffextensionguru/mozilla_10_small.png" alt="" width="100" height="98" /><span style="font-family:verdana;">January 22, 2008 marked <a href="http://ffextensionguru.wordpress.com/2008/01/22/ten-years-of-mozilla/">Ten Years of Mozilla</a>, a celebration that would last most of the year.</span></p>
<blockquote><p><span style="font-family:arial;">MOUNTAIN VIEW, Calif. (January 22, 1998 ) — Netscape Communications Corporation (NASDAQ: NSCP) today announced bold plans to make the source code for the next generation of its highly popular Netscape Communicator client software available for free licensing on the Internet. The company plans to post the source code beginning with the first Netscape Communicator 5.0 developer release, expected by the end of the first quarter of 1998.</span></p></blockquote>
<p><span style="font-family:verdana;"><br />
Also in Mozilla news, John Lily was announced as <a href="http://ffextensionguru.wordpress.com/2008/01/08/john-lily-new-mozilla-corp-ceo/">New Mozilla Corp CEO</a> succeeding Mitchell Baker. Mitchell would remain as Mozilla Foundation’s Chairman.</span><br />
<span style="font-family:verdana;"><br />
2008 also brought some much needed good news about Thunderbird. <a href="http://ffextensionguru.wordpress.com/2008/01/06/thunderbird/">David Ascher</a> head of MaiCo (now Mozilla Messaging) had posted an extensive article <em>Thoughts on Thunderbird’s Evolution</em> on his blog. At the end of January came <a href="http://ffextensionguru.wordpress.com/2008/01/29/thunderbird-3-plans-for-2008/">Thunderbird 3 Plans for 2008</a>. The plan included both purposed features and time lines.<br />
<span style="font-family:verdana;"><br />
Due to the increasing popularity of the <em>Get a Mac</em> ads we added a <a href="http://ffextensionguru.wordpress.com/2008/01/13/get-a-mac-category-added/">Get a Mac Category</a>. Released during the NFL playoffs and in response to a <em>Wall Street Journal </em>report, <a href="http://ffextensionguru.wordpress.com/2008/01/13/get-a-mac-referee/">Get a Mac: Referee</a>. Also this month was a the slightly annoying <a href="http://ffextensionguru.wordpress.com/2008/01/13/get-a-mac-time-machine/">Get a Mac: Time Machine</a> ad.<br />
<span style="font-family:verdana;"><br />
A great photo of <a href="http://ffextensionguru.wordpress.com/2008/01/02/canadian-firefoxen/">Canadian Firefoxen</a> by <span style="font-family:verdana;">Rick MacWilliam/Edmonton Journal:</span></span></span></span></p>
<p style="text-align:left;"><span style="font-family:verdana;"><a href="http://i104.photobucket.com/albums/m195/ffextensionguru/pandas5.jpg"><img class="aligncenter" title="Canadian Firefoxen" src="http://i104.photobucket.com/albums/m195/ffextensionguru/pandas5.jpg" alt="" width="225" height="225" /></a></span></p>
<h2><span id="more-1306"></span>February 2008</h2>
<p><img class="alignright" title="Microsoft/Yahoo" src="http://i104.photobucket.com/albums/m195/ffextensionguru/msftyahoosmall.jpg" alt="" width="120" height="51" /><a href="http://ffextensionguru.wordpress.com/2008/02/09/the-future-of-yahoo/"><span style="font-family:verdana;">The Future of Yahoo!</span></a> was being questioned with an unsolicited offer from Microsoft at the end of January. Little did we know that this would become a wild and confusing roller-coaster ride that even today has yet to end (though Steve Ballmer thinks it has).<br />
<span style="font-family:verdana;"><br />
Big news for Add-ons this month with <a href="http://ffextensionguru.wordpress.com/2008/02/01/600-million-add-ons-downloaded/">600-Million Add-Ons Downloaded</a>. A sneak <a href="http://ffextensionguru.wordpress.com/2008/02/16/preview-new-firefox-3-amo/">preview of the new AMO 3.0</a> gave us a glimpse of the new and improved AMO engine. Also came news <a href="http://ffextensionguru.wordpress.com/2008/02/04/foxytunes-acquired/">FoxyTunes was Acquired</a> by Yahoo Music.<br />
<span style="font-family:verdana;"><br />
Firefox hit the <a href="http://ffextensionguru.wordpress.com/2008/02/22/500-million-downloads/">500 Million Downloads</a> milestone on February 22nd. During the month of February, <a href="http://ffextensionguru.wordpress.com/2008/02/07/firefox-20012-released/">Firefox 2.0.0.12</a> and <a href="http://ffextensionguru.wordpress.com/2008/02/13/firefox-30b3-released/">Firefox 3.0b3</a> were released.<br />
<span style="font-family:verdana;"><br />
On February 7th, the Mozilla CEO <a href="http://ffextensionguru.wordpress.com/2008/02/10/john-lilly-on-the-gigaom-show/">John Lilly was interviewed on The GigaOM Show</a>. Part of the year long 10-years of Mozilla celebration was the <a href="http://ffextensionguru.wordpress.com/2008/02/23/february-23-1998-mollizaorg-launched/">Launch</a><a href="http://ffextensionguru.wordpress.com/2008/02/23/february-23-1998-mollizaorg-launched/"> of </a><a href="http://ffextensionguru.wordpress.com/2008/02/23/february-23-1998-mollizaorg-launched/">mozilla.org</a> on February 23, 1998.</span></span></span></p>
<p><img class="aligncenter" title="Mozilla Messaging" src="http://i104.photobucket.com/albums/m195/ffextensionguru/mozilla_messaging.jpg" alt="" width="392" height="103" /><span style="font-family:verdana;">On February 19th, <span style="font-family:verdana;">David Ascher <a href="http://ffextensionguru.wordpress.com/2008/02/19/meet-mozilla-messaging/">announced</a> the official creation of <a href="http://www.mozillamessaging.com/en-US/">Mozilla Messaging</a> (has unofficially been called MailCo for the past few months). This is a new subsidiary of the <a href="http://www.mozilla.org/">Mozilla Foundation</a>, focused on email and internet communications. While on Thunderbird news, </span>Febuary 26th, <a href="http://ffextensionguru.wordpress.com/2008/02/26/thunderbird-20012-released/">Thunderbird 2.0.0.12 was Released.</a></span></p>
<p><!--more--></p>
<h2><strong>March 2008</strong></h2>
<p><span style="font-family:verdana;"> Lots of Firefox news in March. <a href="http://ffextensionguru.wordpress.com/2008/03/05/firefox-3-beta-5-announced/">Firefox 3 Beta 5 Announced</a> and later on the release was <a href="http://ffextensionguru.wordpress.com/2008/03/31/firefox-3-beta-5-delayed/">delayed</a>. Meanwhile on March 10th, <a href="http://ffextensionguru.wordpress.com/2008/03/10/firefox-3-beta-4-released/">Firefox 3 Beta 4 Released</a>. On March 27th came news <a href="http://ffextensionguru.wordpress.com/2008/03/27/firefox-3-to-be-released-in-june/">Firefox 3 to be Released In June</a>:</span></p>
<blockquote><p><span style="font-family:arial;">Mozilla VP of Engineering, Mike Schroepfer, has confirmed that the final release of Firefox 3, currently in Beta 4 stage, is expected for June, a full quarter later than the latest estimate and some nine months past the original. </span></p></blockquote>
<p><span style="font-family:verdana;">The Guru made his intentions know he was going to be <a href="http://ffextensionguru.wordpress.com/2008/03/11/making-the-switch-to-fx-30/">making the Switch to Fx 3.0</a> later that month. <span style="font-family:verdana;">Finally, on March 25th Mozilla released <a href="http://ffextensionguru.wordpress.com/2008/03/25/firefox-20013-released/">Firefox 2.0.0.13</a>.<br />
<span style="font-family:verdana;"><br />
Also in March was some much needed news about Thunderbird. Starting March 4th and every Tuesday thereafter are the new <a href="http://ffextensionguru.wordpress.com/2008/03/04/new-thunderbird-status-meeting/">Thunderbird Status Meeting</a>. Notes from this first meeting include an updated list of <a href="http://ffextensionguru.wordpress.com/2008/03/09/thunderbird-3-features/">Thunderbird 3 Features</a>. In mid March David Ascher announced <a href="http://ffextensionguru.wordpress.com/2008/03/16/new-tbird-engineers/">New Thunderbird Engineers</a> had joined the Mozilla Messaging team.<br />
<span style="font-family:verdana;"><br />
The end of March marked the <a href="http://ffextensionguru.wordpress.com/2008/03/27/new-amo-launched/">New AMO Launch</a>. An alert reader pointed out a couple things I had managed to overlook which I touched on in a quick <a href="http://ffextensionguru.wordpress.com/2008/03/27/update-new-amo-launched/">addendum post</a>.</span></span></span></span></p>
<p><a href="http://ffextensionguru.wordpress.com/2008/03/31/mozillas-10th-birthday/"><img class="alignright" title="Mozilla 10th" src="http://i104.photobucket.com/albums/m195/ffextensionguru/mozilla_10_small.png" alt="" width="100" height="98" /><span style="font-family:verdana;">Mozilla’s 10th Birthday</span></a> was celebrated on March 31st, 10-years from the date when <span style="font-family:verdana;">Mozilla (then Netscape Communication Corp) released the first developer release of <em>Netscape Communication 5.0</em>. </span></p>
<p><span style="font-family:verdana;">Microsoft is no stranger to legal action, usually against them. Back in May 2007, <span style="font-family:verdana;">publicly claimed Free Software Violates Patents! Nearly a year later </span><a href="http://ffextensionguru.wordpress.com/2008/03/25/microsoft-mum-on-alleged-patents-violated/">Microsoft Mum on Alleged Patents Violated</a>, meaning they will not disclose which patents they claim free software violates. Only Microsoft&#8230;<br />
<span style="font-family:verdana;"><br />
While on the topic of Illegal Operations, installing <a href="http://ffextensionguru.wordpress.com/2008/03/27/safari-for-windows-an-illegal-operation/">Safari For Windows is an Illegal Operation</a>. At least according to the Safari EULA:</span></span></p>
<p style="text-align:left;"><a href="http://i104.photobucket.com/albums/m195/ffextensionguru/license-agreement.jpg"><img class="aligncenter" title="Safari Windows EULA" src="http://i104.photobucket.com/albums/m195/ffextensionguru/license-agreement.jpg" alt="" width="440" height="355" /></a><br />
<span style="font-family:verdana;">While on the subject of Apple, how about some <a href="http://ffextensionguru.wordpress.com/2008/03/23/quicktime-quirkiness/">QuickTime Quirkiness</a>! My dealings, frustration and general disapproval with the install and resulting mess left by Apple QucikTime and iTunes.</span>
</p>
<p style="text-align:left;">Then there was the <a href="http://ffextensionguru.wordpress.com/2008/03/27/709/">Get a Mac: Bad Vista reviews ad</a>. This was another website based ad and also was called <a href="http://ffextensionguru.wordpress.com/2008/03/27/get-a-mac-bad-vista-reviews-misleading/">misleading</a> as the &#8216;reviews&#8217; were article titles and the articles were not entirely about Vista.</p>
<table style="text-align:right;" border="0" width="100%">
<tbody>
<tr>
<td></td>
<td style="text-align:center;"><strong><a href="http://ffextensionguru.wordpress.com/2008/11/29/2008-blog-year-in-review/">2008 Blog Year In Review</a></strong></td>
<td><strong>BYIR: April, May &amp; June 2008</strong></td>
</tr>
</tbody>
</table>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffextensionguru.wordpress.com/1306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffextensionguru.wordpress.com/1306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ffextensionguru.wordpress.com/1306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ffextensionguru.wordpress.com/1306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ffextensionguru.wordpress.com/1306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ffextensionguru.wordpress.com/1306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ffextensionguru.wordpress.com/1306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ffextensionguru.wordpress.com/1306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ffextensionguru.wordpress.com/1306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ffextensionguru.wordpress.com/1306/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffextensionguru.wordpress.com&blog=398614&post=1306&subd=ffextensionguru&ref=&feed=1" /></div>]]></content:encoded>
      <pubDate>Sat, 29 Nov 2008 15:35:11 +0000</pubDate>
      <category domain="http://www.softratty.com/tag/mozilla">mozilla</category>
      <category domain="http://www.softratty.com/tag/mozilla news">mozilla news</category>
      <category domain="http://www.softratty.com/tag/news">news</category>
      <category domain="http://www.softratty.com/tag/news foxytunes">news foxytunes</category>
      <category domain="http://www.softratty.com/tag/news firefox">news firefox</category>
      <category domain="http://www.softratty.com/tag/march">march</category>
      <category domain="http://www.softratty.com/tag/mozilla celebration">mozilla celebration</category>
      <category domain="http://www.softratty.com/tag/march 25th mozilla">march 25th mozilla</category>
      <category domain="http://www.softratty.com/tag/february">february</category>
      <source url="http://ffextensionguru.wordpress.com/2008/11/29/byir-january-february-march-2008/">BYIR: January, February &amp; March 2008</source>
    </item>
    <item>
      <title><![CDATA[Printing Trouble?]]></title>
      <link>http://www.softratty.com/article/353472e986f18fff8c38f08cb7dc3adf</link>
      <guid>http://www.softratty.com/article/353472e986f18fff8c38f08cb7dc3adf</guid>
      <description><![CDATA[Symptoms
Materials that you print do not look the same when you print them as they do on your computer screen

Resolutions
You may get different information on the screen than whats printed because of...]]></description>
      <content:encoded><![CDATA[<p><a href="http://www.themsoffice.com/wp-content/uploads/2008/11/microsoft2.jpg"><img src="http://www.themsoffice.com/wp-content/uploads/2008/11/microsoft2.jpg" alt="" title="microsoft2" width="128" height="116" class="alignnone size-medium wp-image-419" /></a><a href="http://office.microsoft.com/en-us/project/HA102113901033.aspx">Symptoms<br />
Materials that you print do not look the same when you print them as they do on your computer screen.</p>
<p></a></p>
<p>Resolutions</p>
<p>You may get different information on the screen than what&#8217;s printed because of settings on the printer itself. If you change the margin settings on your printer, Microsoft Office Project 2007 may not override those settings. For example, if you set the margins on the printer at 1 inch and the margins in Office Project 2007 at 0.5 inch, then part of each page may be cut off when you print your project.<br />
If you have borders on the screen but they don&#8217;t print, try increasing the page margins to 0.5 inch or more (on the File menu, click Page Setup, and then click the Margins tab).<br />
When you preview a view (click Print Preview on the File menu), you may see blank pages that are unavailable. To print blank pages, click Page Setup on the File menu, click the View tab, and then select the Print blank pages check box.<br />
If Gantt bars (Gantt bar: A graphical element on the chart portion of the Gantt Chart view representing the duration of a task.) or Network Diagram (Network Diagram: A diagram that shows dependencies between project tasks. Tasks are represented by boxes, or nodes, and task dependencies are represented by lines that connect the boxes. In Project, the Network Diagram view is a network diagram.) boxes do not print the way they appear on the screen, check the printer&#8217;s properties.<br />
If the legend does not print as it appears on the screen, check the printer or plotter drivers.</p>
<p><a href="http://office.microsoft.com/en-us/project/HA102113941033.aspx">It takes too long to print my project</a></p>
<p>Symptoms<br />
Printing your project takes longer than you want it to.</p>
<p>Cause<br />
The amount of time it takes for a project to print depends on two basic factors: the speed of the printer and the size (and complexity) of your project. Printer speed is not solely a factor of how many pages a printer prints per minute. The number of people using the printer (if it is on a network), the amount of RAM in the printer and your computer, and the network settings for the printer all factor into printer speed.</p>
<p>Large and complex projects take longer to print. Even a small project can take a long time to print if you insert graphics into the workspace (workspace: Files and settings you can save and reopen by opening a single workspace file. Workspace files have the .mpw extension. When you create a workspace file, Project creates lists of the current settings, open projects, views, and so on.), header (header: Text that appears at the top of a printed page. A header typically contains information such as the project or company name and the project start and finish dates.), or footer (footer: Text that appears at the bottom of a printed page. A footer typically contains information such as page number, total page count, and date.).</p>

<p><a href="http://feeds.feedburner.com/~a/MicrosoftOffice?a=fwRq29"><img src="http://feeds.feedburner.com/~a/MicrosoftOffice?i=fwRq29" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/MicrosoftOffice/~4/468836053" height="1" width="1"/>]]></content:encoded>
      <pubDate>Fri, 28 Nov 2008 20:26:48 +0000</pubDate>
      <category domain="http://www.softratty.com/tag/print blank pages">print blank pages</category>
      <category domain="http://www.softratty.com/tag/blank pages">blank pages</category>
      <category domain="http://www.softratty.com/tag/project takes">project takes</category>
      <category domain="http://www.softratty.com/tag/project">project</category>
      <category domain="http://www.softratty.com/tag/preview">preview</category>
      <category domain="http://www.softratty.com/tag/click print preview">click print preview</category>
      <category domain="http://www.softratty.com/tag/network diagram view">network diagram view</category>
      <category domain="http://www.softratty.com/tag/click">click</category>
      <category domain="http://www.softratty.com/tag/network diagram">network diagram</category>
      <source url="http://feeds.feedburner.com/~r/MicrosoftOffice/~3/468836053/">Printing Trouble?</source>
    </item>
    <item>
      <title><![CDATA[What Are You Listening To? (OWAs)]]></title>
      <link>http://www.softratty.com/article/a87175c20ebe05571aabbb9e6ba34dc1</link>
      <guid>http://www.softratty.com/article/a87175c20ebe05571aabbb9e6ba34dc1</guid>
      <description><![CDATA[This article is part of the Open Web Awards , an open, international contest for the best websites and services
Our final 10 sites in the music category of the Open Web Awards feature some familiar...]]></description>
      <content:encoded><![CDATA[<p><a href="http://mashable.com/openwebawards"><img src="http://mashable.com/wp-content/uploads/2008/11/owa-253x53.jpg" align="right"/ border=0/></a><em>This article is part of the <a href="http://mashable.com/openwebawards">Open Web Awards</a>, an open, international contest for the best websites and services.</em></p>
<p>Our final 10 sites in the music category of the Open Web Awards feature some familiar names, such as Last.fm, Pandora, Imeem, and AmieStreet.  So far though, a number of up-and-comers are also seeing plenty of votes, making this one of the more competitive categories.  Vote for the site you’d like to see make it to the finals after checking out all of the nominees:</p>
<blockquote><p>
<strong><a href="http://www.8tracks.com" target="_blank">8tracks</a></strong> - social music networking site that lets you create 30 minutes of music, which roughly translates to 8 tracks. </p>
<p><strong><a href="http://www.amiestreet.com" target="_blank">Amie Street</a></strong> - music discovery site with recommendations and the ability to view your friends&#8217; playlists through an easy-to-read interface.  Amie Street <a href="http://mashable.com/2008/10/15/amiestreet-new-design/">was recently redesigned</a>. </p>
<p><strong><a href="http://www.fairtilizer.com" target="_blank">Fairtilizer</a></strong> - music search and discovery site with tools for artists and labels to share their music with the rest of the world.</p>
<p><strong><a href="http://www.imeem.com" target="_blank">imeem</a></strong> - social music network with free streaming from all four major labels. Also recently introduced a <a href="http://mashable.com/2008/10/20/imeem-mobile/">mobile application</a>.</p>
<p><strong><a href="http://www.jamsbio.com" target="_blank">JamsBio</a></strong> - allows you to share music and discuss it with the community.  Over 5 million songs have been added to the site <a href="http://mashable.com/2008/10/03/jamsbio/">and Mashable took a deep look under the hood</a> in October.</p>
<p><strong><a href="http://www.last.fm" target="_blank">Last.fm</a></strong> - social sharing site that recommends music based on your listening habits.  Last.fm has a <a href="http://mashable.com/2008/07/13/lastfm-iphone/">iPhone application</a> and is owned by CBS.</p>
<p><strong><a href="http://www.mixmatchmusic.com" target="_blank">MixMatchMusic</a></strong> - social music community <a href="http://mashable.com/2008/09/08/mixmatchmusic/">for both artists and listeners</a>.  Artists profit from collaboration and can communicate directly with their fans.</p>
<p><strong><a href="http://www.noisetrade.com" target="_blank">NoiseTrade</a></strong> - connects artists with fans to raise awareness of music and profits. </p>
<p><strong><a href="http://www.pandora.com" target="_blank">Pandora</a></strong> - lets you create your own radio station and recommends music based on your personal preferences. </p>
<p><strong><a href="http://www.sellaband.com" target="_blank">Sellaband</a></strong> - tool for artists to promote themselves and to receive funding from their very own fans.
</p></blockquote>
<h2>VOTE OFTEN: One Vote Per Category Per Day</h2>
<p>Now it&#8217;s time to vote for your favorite music site in the first of two voting rounds.  You can vote for one company per day until midnight on November 30th.  </p>
<p><center><iframe width="210" marginheight="0" marginwidth="0" frameborder="0" height="390" src="http://mashable.polldaddy.com/widget/x2.aspx?f=f&#038;c=14&#038;cn=0"></iframe> <noscript><a href="http://mashable.com/2008/11/19/openwebawards-voting-1/">Mashable Open Web Awards</a></noscript></center></p>
<p>Feel free to embed this widget on your own blog or website by clicking the &#8220;Grab This&#8221; button!  For a timeline, rules and information on our <a href="http://mashable.com/openwebawards/partners/">100 blog partners</a>, please visit the <a href="http://mashable.com/openwebawards">Open Web Awards site</a>.     </p>
<h2>Top Tip For Nominees</h2>
<p>You got through?  Congratulations!  Did you know you can create a custom version of our voting widget above to post to your company blog or website?  Just visit the <a href="http://mashable.com/openwebawards/widget">Open Web Awards Widget Creator</a> and check the box to preset a category or company.  This means your fans only need to enter an email address to vote - <em>simple!</em></p>
<h2>Start Canvassing for YOUR Candidate!</h2>
<p>Want others to vote for your favorite site?  Of course you do!  Why not leave a comment here and on any of our international <a href="http://mashable.com/openwebawards/partners/">partner blogs</a> encouraging other readers to add their support?  The more you promote your candidate across these blogs, the more likely it is for your site to proceed to the finals!</p>
<h2>OWA Sponsors Love The Web</h2>
<p>The Open Web Awards is made possible by our sponsors.  By supporting the Open Web Awards, these companies reward and encourage innovative web technologies.  We can&#8217;t thank them enough for sharing our passion: building great web companies.</p>
<h3>Platinum Partner</h3>
<p><a rel="nofollow" href="http://www.partnerup.com/" target="_blank"><img class="alignnone" title="PartnerUp Logo" src="http://mashable.com/openwebawards/img/partnerup.jpg" alt="" width="225" height="50" /></a><br />
&#8220;<strong>PartnerUp</strong> brings small business and social networking together to create a community where entrepreneurs find the people, resources and information to grow their businesses.&#8221;</p>
<h3>Gold Sponsors</h3>
<p><a rel="nofollow" href="http://www.istockphoto.com/" target="_blank"><img class="alignnone" title="iStockphoto Logo" src="http://mashable.com/openwebawards/img/istockphoto.jpg" alt="" width="225" height="50" /></a><br />
&#8220;<strong>iStockphoto</strong> is the world&#8217;s leading image market and a revenue-sharing social network. Browse 3.5 million images and videos starting at $1 or become a contributor.&#8221;</p>
<p><a rel="nofollow" href="http://affiliates.quintura.com" target="_blank"><img class="alignnone size-full wp-image-40931" title="Quintura Site Search" src="http://mashable.com/wp-content/uploads/2008/10/quintura_for_openwebawards.gif" alt="" width="225" height="87" /></a><br />
&#8220;With <strong>Quintura’s </strong>advanced visual-based search and analytics solution, content publishers can increase site usage while creating new ad revenues&#8221;</p>
<h3>Prize Sponsor</h3>
<p><a rel="nofollow" href="http://www.zazzle.com" target="_blank"><img class="alignnone size-full" title="Zazzle" src="http://mashable.com/wp-content/uploads/2008/11/zazzle_standard_200_black.png" alt=""/></a><br />
&#8220;Infinite and Instant, Zazzle is the only on-demand retail platform for consumers and major brands, offering billions of retail quality, one-of-a-kind products, most of which are produced within 24 hours.&#8221;</p>
<p>---<br />Related Articles at Mashable | All That's New on the Web:</p><p><a href="http://mashable.com/2008/01/02/mp3com-meets-digg-find-new-music-on-sixtyone/">MP3.com Meets Digg: Find New Music on Sixtyone</a><br /><a href="http://mashable.com/2006/12/22/music-social-networks/">Social Networking Awards - Vote for Your Favorite Music Site</a><br /><a href="http://mashable.com/2008/03/11/animoto-submissions/">Animoto Mashups Promote Artists with New Program</a><br /><a href="http://mashable.com/2008/10/29/twitter-vote-report/">Twitter Vote Report Will Track Election Day Shadiness (and Long Lines)</a><br /><a href="http://mashable.com/2006/12/22/social-bookmarking/">Social Networking Awards - Vote for Your Favorite Social Bookmarking Site</a><br /><a href="http://mashable.com/2007/08/03/droptom/">DropTom: Campaign to &#8220;Unfriend&#8221; MySpace&#8217;s Tom</a><br /><a href="http://mashable.com/2006/12/22/photo-sharing-sites/">Social Networking Awards - Vote for Your Favorite Photo-Sharing Site</a></p>
<p><a href="http://feedads.googleadservices.com/~at/DWOHl80zRs_l92aYpzAZAfcez0M/a"><img src="http://feedads.googleadservices.com/~at/DWOHl80zRs_l92aYpzAZAfcez0M/i" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feedproxy.google.com/~f/Mashable?a=4h4hgIu0"><img src="http://feedproxy.google.com/~f/Mashable?i=4h4hgIu0" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=JeNKH42s"><img src="http://feedproxy.google.com/~f/Mashable?d=124" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=mPoYhUtE"><img src="http://feedproxy.google.com/~f/Mashable?i=mPoYhUtE" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=TkEdKLp7"><img src="http://feedproxy.google.com/~f/Mashable?i=TkEdKLp7" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=z4A6wCjD"><img src="http://feedproxy.google.com/~f/Mashable?d=52" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=tZz593kY"><img src="http://feedproxy.google.com/~f/Mashable?i=tZz593kY" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=R4oPM1jz"><img src="http://feedproxy.google.com/~f/Mashable?d=129" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=6R2QmbB2"><img src="http://feedproxy.google.com/~f/Mashable?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=By8fDboF"><img src="http://feedproxy.google.com/~f/Mashable?d=138" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/Mashable/~4/0uAl2jGnx6w" height="1" width="1"/>]]></content:encoded>
      <pubDate>Fri, 28 Nov 2008 20:19:18 +0000</pubDate>
      <category domain="http://www.softratty.com/tag/music">music</category>
      <category domain="http://www.softratty.com/tag/recommends music based">recommends music based</category>
      <category domain="http://www.softratty.com/tag/music discovery site">music discovery site</category>
      <category domain="http://www.softratty.com/tag/discovery site">discovery site</category>
      <category domain="http://www.softratty.com/tag/favorite music site">favorite music site</category>
      <category domain="http://www.softratty.com/tag/site">site</category>
      <category domain="http://www.softratty.com/tag/increase site usage">increase site usage</category>
      <category domain="http://www.softratty.com/tag/favorite site">favorite site</category>
      <category domain="http://www.softratty.com/tag/web awards site">web awards site</category>
      <source url="http://feedproxy.google.com/~r/Mashable/~3/0uAl2jGnx6w/">What Are You Listening To? (OWAs)</source>
    </item>
    <item>
      <title><![CDATA[Find a Couch, a Rental, or Even a Hotel Room (OWAs)]]></title>
      <link>http://www.softratty.com/article/b2eb0032e632ebaf8b22320c78f11003</link>
      <guid>http://www.softratty.com/article/b2eb0032e632ebaf8b22320c78f11003</guid>
      <description><![CDATA[This article is part of the Open Web Awards , an open, international contest for the best websites and services
The Web has changed the way people travel before, during, and even after a trip. Among...]]></description>
      <content:encoded><![CDATA[<p><a href="http://mashable.com/openwebawards"><img src="http://mashable.com/wp-content/uploads/2008/11/owa-253x53.jpg" align="right"/ border=0/></a><em>This article is part of the <a href="http://mashable.com/openwebawards">Open Web Awards</a>, an open, international contest for the best websites and services.</em></p>
<p>The Web has changed the way people travel – before, during, and even after a trip.  Among the tools nominated for The Open Web Award in the travel category are sites for doing everything from price comparison to video tours to finding a couch to crash on for the most budget of travelers.  Here’s a quick look at all of the nominees:</p>
<blockquote><p>
<strong><a href="http://www.couchsurfing.com" target="_blank">CouchSurfing</a></strong> - allows travelers to get free board in more than 200 countries by connecting with locals who have available couches.  </p>
<p><strong><a href="http://www.eurocheapo.com" target="_blank">EuroCheapo</a></strong> - finds the best budget hotels in Europe with price comparison features.</p>
<p><strong><a href="http://www.geckogo.com" target="_blank">GeckoGo</a></strong> - travel guide planner with reviews of hotels and attractions. </p>
<p><strong><a href="http://www.goplanit.com" target="_blank">GoPlanIt</a></strong> - offers travel planning help to the adventure-seeker.  GoPlanIt recenty <a href="http://mashable.com/2008/11/11/pet-earth-iphone/">launched two games for the iPhone</a>. </p>
<p><strong><a href="http://www.resortquest.com" target="_blank">ResortQuest</a></strong> - lets you locate vacation rentals.  ResortQuest features rentals in over 100 locations in North America and Europe. </p>
<p><strong><a href="http://www.spottedbylocals.com" target="_blank">Spotted By Locals</a></strong> - lets you experience a city as if you were actually a resident.  Spotters (users who know about their city) have been selected to give deep insights into each featured city.</p>
<p><strong><a href="http://www.travelmuse.com" target="_blank">TravelMuse</a></strong> - <a href="http://mashable.com/2008/06/11/travelmuse/">relatively new site</a> that features high-quality reviews and tools to plan your next trip.  </p>
<p><strong><a href="http://www.tripfilms.com" target="_blank">Tripfilms</a></strong> - showcases hundreds of travel videos uploaded by actual travelers.</p>
<p><strong><a href="http://www.tripit.com" target="_blank">TripIt</a></strong> - automates your upcoming trip, <a href="http://mashable.com/2008/01/22/tripit-closeness-alert/">tells you when your friends are in town</a>, and features heavy mobile integration with <a href="http://mashable.com/2008/06/24/tripit-ticket-event/">event synchronization</a>.  </p>
<p><strong><a href="http://www.wanderingeducators.com" target="_blank">WanderingEducators</a></strong> - global community for educators to share their travel experiences.  WanderingEducators features blog postings and photographs.</p>
<p><strong><a href="http://www.yapta.com" target="_blank">yapta</a></strong> - gives you some peace of mind as it <a href="http://mashable.com/2008/06/23/yapta-track-airfares/">tracks airfares</a> for discounts before (or after) you buy that plane ticket. Yapta maintains your budget and preferences as it monitors for discounts that may not be available as you&#8217;re shopping for that ticket.</p>
<p><strong><a href="http://www.yellowstonepark.com" target="_blank">Yellowstone Park</a></strong> - the official site for the historical national park with map and travel routes so that you don&#8217;t get lost.</p>
</blockquote>
<h2>VOTE OFTEN: One Vote Per Category Per Day</h2>
<p>Now it&#8217;s time to vote for your favorite travel site in the first of two voting rounds.  You can vote for one company per day until midnight on November 30th.  </p>
<p><center><iframe width="210" marginheight="0" marginwidth="0" frameborder="0" height="390" src="http://mashable.polldaddy.com/widget/x2.aspx?f=f&#038;c=13&#038;cn=0"></iframe> <noscript><a href="http://mashable.com/2008/11/19/openwebawards-voting-1/">Mashable Open Web Awards</a></noscript></center></p>
<p>Feel free to embed this widget on your own blog or website by clicking the &#8220;Grab This&#8221; button!  For a timeline, rules and information on our <a href="http://mashable.com/openwebawards/partners/">100 blog partners</a>, please visit the <a href="http://mashable.com/openwebawards">Open Web Awards site</a>.     </p>
<h2>Top Tip For Nominees</h2>
<p>You got through?  Congratulations!  Did you know you can create a custom version of our voting widget above to post to your company blog or website?  Just visit the <a href="http://mashable.com/openwebawards/widget">Open Web Awards Widget Creator</a> and check the box to preset a category or company.  This means your fans only need to enter an email address to vote - <em>simple!</em></p>
<h2>Start Canvassing for YOUR Candidate!</h2>
<p>Want others to vote for your favorite site?  Of course you do!  Why not leave a comment here and on any of our international <a href="http://mashable.com/openwebawards/partners/">partner blogs</a> encouraging other readers to add their support?  The more you promote your candidate across these blogs, the more likely it is for your site to proceed to the finals!</p>
<h2>OWA Sponsors Love The Web</h2>
<p>The Open Web Awards is made possible by our sponsors.  By supporting the Open Web Awards, these companies reward and encourage innovative web technologies.  We can&#8217;t thank them enough for sharing our passion: building great web companies.</p>
<h3>Platinum Partner</h3>
<p><a rel="nofollow" href="http://www.partnerup.com/" target="_blank"><img class="alignnone" title="PartnerUp Logo" src="http://mashable.com/openwebawards/img/partnerup.jpg" alt="" width="225" height="50" /></a><br />
&#8220;<strong>PartnerUp</strong> brings small business and social networking together to create a community where entrepreneurs find the people, resources and information to grow their businesses.&#8221;</p>
<h3>Gold Sponsors</h3>
<p><a rel="nofollow" href="http://www.istockphoto.com/" target="_blank"><img class="alignnone" title="iStockphoto Logo" src="http://mashable.com/openwebawards/img/istockphoto.jpg" alt="" width="225" height="50" /></a><br />
&#8220;<strong>iStockphoto</strong> is the world&#8217;s leading image market and a revenue-sharing social network. Browse 3.5 million images and videos starting at $1 or become a contributor.&#8221;</p>
<p><a rel="nofollow" href="http://affiliates.quintura.com" target="_blank"><img class="alignnone size-full wp-image-40931" title="Quintura Site Search" src="http://mashable.com/wp-content/uploads/2008/10/quintura_for_openwebawards.gif" alt="" width="225" height="87" /></a><br />
&#8220;With <strong>Quintura’s </strong>advanced visual-based search and analytics solution, content publishers can increase site usage while creating new ad revenues&#8221;</p>
<h3>Prize Sponsor</h3>
<p><a rel="nofollow" href="http://www.zazzle.com" target="_blank"><img class="alignnone size-full" title="Zazzle" src="http://mashable.com/wp-content/uploads/2008/11/zazzle_standard_200_black.png" alt=""/></a><br />
&#8220;Infinite and Instant, Zazzle is the only on-demand retail platform for consumers and major brands, offering billions of retail quality, one-of-a-kind products, most of which are produced within 24 hours.&#8221;</p>
<p>---<br />Related Articles at Mashable | All That's New on the Web:</p><p><a href="http://mashable.com/2008/04/28/my-life-of-travel-is-now-a-real-site/">My Life of Travel is Now a &#8220;Real&#8221; Site</a><br /><a href="http://mashable.com/2007/10/11/roadtrip-wizard/">RoadTrip Wizard to Offer Personalized Travel Tools</a><br /><a href="http://mashable.com/2007/09/10/travbuddy-now-has-a-million-members/">TravBuddy Reaches One Million Registered Users</a><br /><a href="http://mashable.com/2007/07/25/sta-travel-widgets/">STA Travel Launches Widgets Suite</a><br /><a href="http://mashable.com/2006/11/20/mytripz-yet-another-myspace-for-travel/">MyTripz, Yet Another &#8220;MySpace for Travel&#8221;</a><br /><a href="http://mashable.com/2006/12/21/event-social-networks/">Social Networking Awards - Vote for Your Favorite Event-Based Social Network</a><br /><a href="http://mashable.com/2008/10/29/twitter-vote-report/">Twitter Vote Report Will Track Election Day Shadiness (and Long Lines)</a></p>
<p><a href="http://feedads.googleadservices.com/~at/udoTm5kowFsVbCHOgVkRwp-Y94Q/a"><img src="http://feedads.googleadservices.com/~at/udoTm5kowFsVbCHOgVkRwp-Y94Q/i" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feedproxy.google.com/~f/Mashable?a=vKiaEA81"><img src="http://feedproxy.google.com/~f/Mashable?i=vKiaEA81" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=VKhxbMVz"><img src="http://feedproxy.google.com/~f/Mashable?d=124" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=WwS3FqqO"><img src="http://feedproxy.google.com/~f/Mashable?i=WwS3FqqO" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=sFtEdUu5"><img src="http://feedproxy.google.com/~f/Mashable?i=sFtEdUu5" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=j7JPRpwc"><img src="http://feedproxy.google.com/~f/Mashable?d=52" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=HusnymGO"><img src="http://feedproxy.google.com/~f/Mashable?i=HusnymGO" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=nuRy1BSF"><img src="http://feedproxy.google.com/~f/Mashable?d=129" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=3r43JTpt"><img src="http://feedproxy.google.com/~f/Mashable?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=0OUTFCQN"><img src="http://feedproxy.google.com/~f/Mashable?d=138" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/Mashable/~4/yOCC89CClhI" height="1" width="1"/>]]></content:encoded>
      <pubDate>Fri, 28 Nov 2008 18:22:52 +0000</pubDate>
      <category domain="http://www.softratty.com/tag/site">site</category>
      <category domain="http://www.softratty.com/tag/favorite travel site">favorite travel site</category>
      <category domain="http://www.softratty.com/tag/real site">real site</category>
      <category domain="http://www.softratty.com/tag/increase site usage">increase site usage</category>
      <category domain="http://www.softratty.com/tag/favorite site">favorite site</category>
      <category domain="http://www.softratty.com/tag/web awards site">web awards site</category>
      <category domain="http://www.softratty.com/tag/web">web</category>
      <category domain="http://www.softratty.com/tag/web award">web award</category>
      <category domain="http://www.softratty.com/tag/travel">travel</category>
      <source url="http://feedproxy.google.com/~r/Mashable/~3/yOCC89CClhI/">Find a Couch, a Rental, or Even a Hotel Room (OWAs)</source>
    </item>
    <item>
      <title><![CDATA[Where to Go, Who to See? (OWAs)]]></title>
      <link>http://www.softratty.com/article/d09fb06eabdc8976edc8c8ff76d411c1</link>
      <guid>http://www.softratty.com/article/d09fb06eabdc8976edc8c8ff76d411c1</guid>
      <description><![CDATA[This article is part of the Open Web Awards , an open, international contest for the best websites and services
Places and event websites specialize in letting you use the Web to find things to do in...]]></description>
      <content:encoded><![CDATA[<p><a href="http://mashable.com/openwebawards"><img src="http://mashable.com/wp-content/uploads/2008/11/owa-253x53.jpg" align="right"/ border=0/></a><em>This article is part of the <a href="http://mashable.com/openwebawards">Open Web Awards</a>, an open, international contest for the best websites and services.</em></p>
<p>Places and event websites specialize in letting you use the Web to find things to do in the real world (imagine that!).  With GPS increasingly a standard feature on mobile devices, some of these services now let you find friends that are physically near you, or get information about a very precise location when on-the-go.  There are also several services on our list of finalists that take the concept of web-based event management to a whole new level with options for sending invites, selling tickets, and providing supplemental information to event-goers.  Vote for your favorite after checking out the 11 finalists:</p>
<blockquote><p>
<strong><a href="http://www.centerd.com/" target="_blank">Center&#8217;d</a></strong> - a <a href="http://mashable.com/2008/08/20/centerd/">relatively new site</a> that combines reviews and event listings.  </p>
<p><strong><a href="http://www.city-data.com" target="_blank">City Data</a></strong> - provides profiles of thousand of cities in the United States. City Data shows photos, real estate trends and statistics, and a plethora of information for those interested in learning more about a specific geographic region. </p>
<p><strong><a href="http://www.doodle.com" target="_blank">Doodle</a></strong> - a collaborative scheduling web application.</p>
<p><strong><a href="http://www.eventbrite.com" target="_blank">Eventbrite</a></strong> - one of the biggest online event registration services with over 3.8 million tickets sold thus far.</p>
<p><strong><a href="http://www.going.com" target="_blank">Going</a></strong> - an event-based social network, allowing you to buy tickets for charity events, launch parties, and nightlife.</p>
<p><strong><a href="http://www.muchmormagazine.com" target="_blank">Muchmor</a></strong> - a Canadian publication that includes a social network for readers to meet and greet.</p>
<p><strong><a href="http://www.mypunchbowl.com" target="_blank">MyPunchbowl</a></strong> - an Evite rival with customized invitation templates for event organizers and invitees. MyPunchbowl also has <a href="http://mashable.com/2008/04/15/mypunchbowl-kayak/">added functionality</a> to allow users to search for tickets and hotels when planning to attend an event.</p>
<p><strong><a href="http://www.tupalo.com" target="_blank">Tupalo</a></strong> - gives you information about upcoming events in your very own neighborhood. Share your favorite events and connect with friends.</p>
<p><strong><a href="http://www.whrrl.com" target="_blank">Whrrl</a></strong> - a location-aware social network that enables you to see different information based on where you&#8217;re located.</p>
<p><strong><a href="http://www.yelp.com" target="_blank">Yelp</a></strong> - a popular business review site that covers just about every topic from eateries to contractor services. Yelp also gives business owners tools to communicate with customers.
</p></blockquote>
<h2>VOTE OFTEN: One Vote Per Category Per Day</h2>
<p>Now it&#8217;s time to vote for your favorite places and events website in the first of two voting rounds.  You can vote for one company per day until midnight on November 30th.  </p>
<p><center><iframe width="210" marginheight="0" marginwidth="0" frameborder="0" height="390" src="http://mashable.polldaddy.com/widget/x2.aspx?f=f&#038;c=12&#038;cn=0"></iframe> <noscript><a href="http://mashable.com/2008/11/19/openwebawards-voting-1/">Mashable Open Web Awards</a></noscript></center></p>
<p>Feel free to embed this widget on your own blog or website by clicking the &#8220;Grab This&#8221; button!  For a timeline, rules and information on our <a href="http://mashable.com/openwebawards/partners/">100 blog partners</a>, please visit the <a href="http://mashable.com/openwebawards">Open Web Awards site</a>.     </p>
<h2>Top Tip For Nominees</h2>
<p>You got through?  Congratulations!  Did you know you can create a custom version of our voting widget above to post to your company blog or website?  Just visit the <a href="http://mashable.com/openwebawards/widget">Open Web Awards Widget Creator</a> and check the box to preset a category or company.  This means your fans only need to enter an email address to vote - <em>simple!</em></p>
<h2>Start Canvassing for YOUR Candidate!</h2>
<p>Want others to vote for your favorite site?  Of course you do!  Why not leave a comment here and on any of our international <a href="http://mashable.com/openwebawards/partners/">partner blogs</a> encouraging other readers to add their support?  The more you promote your candidate across these blogs, the more likely it is for your site to proceed to the finals!</p>
<h2>OWA Sponsors Love The Web</h2>
<p>The Open Web Awards is made possible by our sponsors.  By supporting the Open Web Awards, these companies reward and encourage innovative web technologies.  We can&#8217;t thank them enough for sharing our passion: building great web companies.</p>
<h3>Platinum Partner</h3>
<p><a rel="nofollow" href="http://www.partnerup.com/" target="_blank"><img class="alignnone" title="PartnerUp Logo" src="http://mashable.com/openwebawards/img/partnerup.jpg" alt="" width="225" height="50" /></a><br />
&#8220;<strong>PartnerUp</strong> brings small business and social networking together to create a community where entrepreneurs find the people, resources and information to grow their businesses.&#8221;</p>
<h3>Gold Sponsors</h3>
<p><a rel="nofollow" href="http://www.istockphoto.com/" target="_blank"><img class="alignnone" title="iStockphoto Logo" src="http://mashable.com/openwebawards/img/istockphoto.jpg" alt="" width="225" height="50" /></a><br />
&#8220;<strong>iStockphoto</strong> is the world&#8217;s leading image market and a revenue-sharing social network. Browse 3.5 million images and videos starting at $1 or become a contributor.&#8221;</p>
<p><a rel="nofollow" href="http://affiliates.quintura.com" target="_blank"><img class="alignnone size-full wp-image-40931" title="Quintura Site Search" src="http://mashable.com/wp-content/uploads/2008/10/quintura_for_openwebawards.gif" alt="" width="225" height="87" /></a><br />
&#8220;With <strong>Quintura’s </strong>advanced visual-based search and analytics solution, content publishers can increase site usage while creating new ad revenues&#8221;</p>
<h3>Prize Sponsor</h3>
<p><a rel="nofollow" href="http://www.zazzle.com" target="_blank"><img class="alignnone size-full" title="Zazzle" src="http://mashable.com/wp-content/uploads/2008/11/zazzle_standard_200_black.png" alt=""/></a><br />
&#8220;Infinite and Instant, Zazzle is the only on-demand retail platform for consumers and major brands, offering billions of retail quality, one-of-a-kind products, most of which are produced within 24 hours.&#8221;</p>
<p>---<br />Related Articles at Mashable | All That's New on the Web:</p><p><a href="http://mashable.com/2005/11/18/riffs-your-social-recommender/">Riffs - Your Social Recommender</a><br /><a href="http://mashable.com/2007/12/20/open-web-awards-finalists-places-and-events/">Open Web Awards Finalists: Places and Events</a><br /><a href="http://mashable.com/2008/10/29/twitter-vote-report/">Twitter Vote Report Will Track Election Day Shadiness (and Long Lines)</a><br /><a href="http://mashable.com/2006/12/21/event-social-networks/">Social Networking Awards - Vote for Your Favorite Event-Based Social Network</a><br /><a href="http://mashable.com/2007/12/11/owa-voting-places/">Open Web Awards - Vote for Your Favorite Events Site</a><br /><a href="http://mashable.com/2007/03/02/nearbie/">Nearbie - Social Networking Through Time</a><br /><a href="http://mashable.com/2007/05/31/yumondo/">Yumondo Is an Urban Style-Sharing Site</a></p>
<p><a href="http://feedads.googleadservices.com/~at/BG1jRuY6nLHSoU1cUALSYa-oBrE/a"><img src="http://feedads.googleadservices.com/~at/BG1jRuY6nLHSoU1cUALSYa-oBrE/i" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feedproxy.google.com/~f/Mashable?a=WETTF84p"><img src="http://feedproxy.google.com/~f/Mashable?i=WETTF84p" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=LuvKF8xs"><img src="http://feedproxy.google.com/~f/Mashable?d=124" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=xj3P5qt5"><img src="http://feedproxy.google.com/~f/Mashable?i=xj3P5qt5" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=uRK8zP6q"><img src="http://feedproxy.google.com/~f/Mashable?i=uRK8zP6q" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=pgkcBnIM"><img src="http://feedproxy.google.com/~f/Mashable?d=52" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=Gm302Msw"><img src="http://feedproxy.google.com/~f/Mashable?i=Gm302Msw" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=F6Tc9rW8"><img src="http://feedproxy.google.com/~f/Mashable?d=129" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=fFu2E9vv"><img src="http://feedproxy.google.com/~f/Mashable?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/Mashable?a=dgXoKPLj"><img src="http://feedproxy.google.com/~f/Mashable?d=138" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/Mashable/~4/UDoDfufUkpM" height="1" width="1"/>]]></content:encoded>
      <pubDate>Fri, 28 Nov 2008 15:30:11 +0000</pubDate>
      <category domain="http://www.softratty.com/tag/web">web</category>
      <category domain="http://www.softratty.com/tag/web awards finalists">web awards finalists</category>
      <category domain="http://www.softratty.com/tag/increase site usage">increase site usage</category>
      <category domain="http://www.softratty.com/tag/site">site</category>
      <category domain="http://www.softratty.com/tag/favorite site">favorite site</category>
      <category domain="http://www.softratty.com/tag/web awards site">web awards site</category>
      <category domain="http://www.softratty.com/tag/awards">awards</category>
      <category domain="http://www.softratty.com/tag/favorite">favorite</category>
      <category domain="http://www.softratty.com/tag/favorite events">favorite events</category>
      <source url="http://feedproxy.google.com/~r/Mashable/~3/UDoDfufUkpM/">Where to Go, Who to See? (OWAs)</source>
    </item>
  </channel>
</rss>
