<?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>Blog-Feast.com Blog Collection &#187; Make Use Of</title>
	<atom:link href="http://www.blog-feast.com/category/technology/make-use-of/feed" rel="self" type="application/rss+xml" />
	<link>http://www.blog-feast.com</link>
	<description>Blogs, Blog-Feast, Blog Feast, Blogs Collection, Blogs Feed, Singapore Blog</description>
	<lastBuildDate>Fri, 12 Mar 2010 18:00:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>5 Steps To Understanding Basic HTML Code</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Fri, 12 Mar 2010 16:31:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[HTML is short for HyperText Markup Language. That&#8217;s gibberish for &#8217;something that makes plain text look good&#8217;. It&#8217;s the &#8216;code&#8217; that&#8217;s behind every webpage. Even this one. And, surprisingly, it&#8217;s actually quite simple.
The teachings of HTML can (almost) be broken down in two all-ruling disciplines: style a.k.a manipulating the appearance, and referring, a.k.a marking and [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/53433_cool-html-codes.jpg" alt="" vspace="5" align="left" />HTML is short for HyperText Markup Language. That&#8217;s gibberish for &#8217;something that makes plain text look good&#8217;. It&#8217;s the &#8216;code&#8217; that&#8217;s behind every webpage. Even this one. And, surprisingly, it&#8217;s actually quite simple.</p>
<p>The teachings of HTML can (almost) be broken down in two all-ruling disciplines: <em>style</em> a.k.a manipulating the appearance, and <em>referring</em>, a.k.a marking and pointing to locations of, and within documents. HTML can&#8217;t do anything more complicated than drawing a table, or creating frames, and we&#8217;re not going to cut into PHP or Java.</p>
<p>Yet HTML is still far off the beaten path for your average Joe. It&#8217;s wizardry, and none of your business. My goal today is to give you some of the HTML building blocks in the course of a few minutes. You won&#8217;t be a programmer just yet, but you&#8217;ll be able to skim the source of a webpage, understand it, and grab that image that Flickr is trying so hard to keep from you.</p>
<p><span></span></p>
<h3><strong>Step One &#8211; The Concept Of <span>Tags</span></strong></h3>
<p>As said previously, HTML manipulates a plain text document to apply style and reference. It does so by applying &#8216;tags&#8217;. A tag does nothing more than indicating a position or selection of the document, and specifying the kind of wizardry that needs to be done.</p>
<blockquote><p><span>&lt;tag-example-1&gt;<span>This, <em>and only this</em> part of the document is affected.</span><span>&lt;<strong><span>/</span></strong>tag-example-1&gt;</span></span></p>
<p><span><span>&lt;tag-example-2&gt;<span>Something just happened, <em>preceding</em> this part of the document</span></span></span></p>
</blockquote>
<p>Example 1 shows a sentence that&#8217;s encapsulated by two tags, a <em>begin-</em> and <em>end tag</em>. Everything in between is affected. Very common examples are <strong>making text bold</strong>, <em>cursive</em>, or creating a <span><span>link</span></span>. The end tag is identical to the begin tag, but is preceded in angle brackets by a forward slash ( / ).</p>
<p>Example 2 shows a tag that works alone and (arguably) doesn&#8217;t <em>need</em> to be closed. Although not required, it&#8217;s occasionally also written as &lt;tag /&gt; to emphasize this very attribute. Loner tags don&#8217;t affect &#8216;part&#8217; of the document, but signify local wizardry, things that happen &#8216;in between&#8217;. Common examples are line breaks and paragraph breaks.</p>
<p><strong>Note:</strong> for loner tags, &lt;tag&gt;, &lt;tag /&gt;, and &lt;tag&gt;&lt;/tag&gt; all mean the same thing.</p>
<blockquote><p><span>&lt;tag attribute=&#8221;value&#8221; attribute2=&#8221;value2&#8243;&gt;</span>This, and only this part of the document is affected.<span>&lt;/tag&gt;</span></p>
</blockquote>
<p>Sometimes tags allow for additional attributes to be supplied. Common examples are text font and color, or image width, height and source. In those cases, the tag name is followed by a space, and a number of attribute with a value, again separated by spaces. The value is the variable part of this formula. Note that the end tag remains the same, regardless of the attributes.</p>
<p>We&#8217;ll review some common tags in the next few steps.</p>
<h3><strong>Step Two &#8211; The Parceling of <span>HTML</span>, <span>HEAD</span> &amp; <span>BODY</span></strong></h3>
<p>The HTML, HEAD and BODY tags are to an HTML document what a bedroom, kitchen and living room are to a house. These encapsulating tags parcel out the big parts of a document.</p>
<ul>
<li><strong>&lt;HTML&gt;&lt;/HTML&gt;</strong> simply indicates the use of HTML code. They&#8217;ll show in every webpage, usually at start and end, and embrace practically all the other code, including the next two.</li>
<li><strong>&lt;HEAD&gt;&lt;/HEAD&gt; </strong>mark the &#8216;administrative building&#8217;. These will encapsule the title, and enable certain scripts. Usually at the very head (no pun intended) of the document, this is where you don&#8217;t need to be.</li>
<li><strong>&lt;BODY&gt;&lt;/BODY&gt;</strong> is located below the HEAD tags, and makes up most of the document. This part tells the tale of what&#8217;s actually showing on your webpage. Living here are the text, images, links, and pretty much anything you can see in your browser. This is where we play. The following tags all occur within the BODY part of an HTML document.</li>
</ul>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/c4c68_html-head-body.jpg" alt="" width="238" height="157" /></p>
<h3><strong>Step Three &#8211; Because <span>&lt;P&gt;</span>, <span>&lt;BR&gt;</span> &amp; <span>&lt;FONT&gt;</span> Make You Feel Pretty</strong></h3>
<p>We&#8217;ve already said HTML was a markup language. This means as much as making text feel pretty. Remember, HTML dates back to when the web was a very text-y experience. Besides, the internet would&#8217;ve been far too slow to support YouTube. Here are some of the most common pretty-making tags.</p>
<ul>
<li><strong>&lt;b&gt;&lt;/b&gt;</strong> makes your text look <strong>bold</strong></li>
<li><strong>&lt;i&gt;&lt;/i&gt;</strong> makes you write in <em>cursive</em></li>
<li><strong>&lt;u&gt;&lt;/u&gt;</strong> <span>underlines</span> what you just wrote</li>
</ul>
<p>You&#8217;ll be delighted to know that these also work in the comments section. Don&#8217;t overuse them, though.</p>
<ul>
<li><strong>&lt;br&gt;</strong> hits the break, making you continue on a new line</li>
<li><strong>&lt;p&gt;</strong> indicates a paragraph, creating an extra large break</li>
</ul>
<p>These allow you to structure the document, because an actual break doesn&#8217;t mean anything in an HTML document.</p>
<p><strong>&lt;FONT&gt;&lt;/FONT&gt;</strong> allows you to manipulate a bunch of other stuff with text, by using attributes like size, face and color.</p>
<p>An ideal example would be &lt;FONT color=&#8221;blue&#8221;&gt;<span>smurfs</span>&lt;/FONT&gt;.</p>
<ul>
<li><strong>&lt;H1&gt;&lt;/H1&gt; to &lt;H6&gt;&lt;/H6&gt;</strong> allow you to quickly draw up different sized headers. H1 is biggest and H7 smallest. The ones we use in MakeUseOf articles are usually about H3.</li>
</ul>
<p>Nowadays, markup is often kept in a separate <strong>CSS</strong> file. The exact style figures are explained externally, and one only needs to &#8216;mark&#8217; part of the document to apply them. This is done by using <strong>div</strong> tags. For example, &lt;div class=&#8221;headermakeuseof&#8221;&gt;sometext&lt;/div&gt; will look for a <em>headermakeuseof</em> class in the CSS file. We won&#8217;t discuss this in detail.</p>
<h3>Step Four &#8211; Embedded Images with <span>&lt;IMG&gt;</span></h3>
<p>Images have become customary on HTML pages, and yet there&#8217;s a piece of code behind it. The <strong>&lt;IMG&gt; </strong>is one of two tags we&#8217;re going to discuss in detail, because it&#8217;s something you&#8217;ll be able to use. Just think of those annoying web sites that don&#8217;t allow you to download some pictures to your desktop (I&#8217;m looking at you, Flickr). Next time, just go into the source and grab the source yourself.</p>
<p>Here are some of the <strong>attributes</strong> used in conjunction with the IMG tab.</p>
<ul>
<li><strong>src=&#8221;http://site.com/image.jpg/&#8221;</strong></li>
</ul>
<p>Very important. The source attribute specifies the location of a picture. That&#8217;s right, a picture is never really rendered in a web page, but gets pulled in from an external source. Once you&#8217;ve got that address, you&#8217;ve got the picture.</p>
<p>Sometimes, only part of the URL is displayed. The actual URL will depend on the location of the HTML file. This is called a relative address, contrasting with an absolute address. An exemplary <span>http://site.com/dir1/dir2/dir3/page.html</span> may show a value of &#8220;image.jpg&#8221; when the picture is located in the same directory as the webpage. In this example, the full address would be <span>http://site.com/dir1/dir2/dir3/image.jpg</span>.</p>
<p>If you encounter a relative address of &#8220;dir4/image.jpg&#8221;, the image will be located in <span>http://site.com/dir1/dir2/dir3/dir4/image.jpg</span></p>
<p>Similarly, &#8220;../image.jpg&#8221; will have you go back one directory, &#8220;../../image.jpg&#8221; two directories, and so on.</p>
<ul>
<li><strong>height=&#8221;200&#8243; width=&#8221;50%&#8221;</strong></li>
</ul>
<p>These tags define how large the image is <em>displayed</em>. It doesn&#8217;t say anything about the actual size of the image. Sizes can be added in pixels (where 200 and 200px are one and the same) or percent. With only height or width specified, the other one changes accordingly. Using both tags allows you to &#8217;stretch&#8217;.</p>
<ul>
<li><strong>alt=&#8221;alternative name or comment&#8221;</strong></li>
</ul>
<p>The alt tag specifies the text shown on mouse-over, or when an image fails to load. More specifically, these are what XKCD uses for those funny afterthoughts.</p>
<p>Proper usage would be, e.g. &lt;IMG src=&#8221;image.jpg&#8221; height=&#8221;20px&#8221; alt=&#8221;example&#8221;&gt;</p>
<h3>Step Five &#8211; Links Are Made With A Tag</h3>
<p>This one could be even more important than the IMG tag. An <strong>&lt;a&gt;&lt;/a&gt;</strong> tag allows you to mark a spot in a document, and link to documents, pictures, files, and even anchors in other HTML sites. Here are the most common attributes.</p>
<ul>
<li><strong>href=&#8221;http://www.makeuseof.com&#8221;</strong></li>
</ul>
<p>One of the most common attribute, written &lt;a href=&#8221;address&#8221;&gt;text&lt;/a&gt;. You can create links by defining the web address and encapsulating said &#8216;anchor text&#8217;. Links can also be used in the comments section, provided you don&#8217;t link to spam or inappropriate content.</p>
<ul>
<li> <strong>name=&#8221;neverwhere&#8221;</strong></li>
</ul>
<p>Used in conjunction with the name attribute, the tag will create an anchor. You can use this anchor to link back to from within the same page, or even over the web. One can link to an anchor by using a relative or absolute URL, respectively &lt;a href=&#8221;#name&#8221;&gt; or &lt;a href=&#8221;http://site.com/page.html#name&#8221;&gt;.</p>
<h3>In Conclusion</h3>
<p>This is the part where I admit we&#8217;ve only brushed the surface of HTML. What we&#8217;ve seen today will allow you to skim through and understand a big part of simple websites. Go ahead, try it. You&#8217;ll definitely find some tags you don&#8217;t know, but that&#8217;s where Google comes in handy. If you&#8217;re willing there&#8217;s a lot more information where that come from, and you can all find it online.</p>
<p>If you&#8217;re looking for something very specific, like an image, an audio file, or a link, there&#8217;s no need to read the entire HTML page. Press Ctrl+F and search for those files or the relevant tags. You know what you&#8217;re looking for now, and especially when you&#8217;ve found it.</p>
<p>What do you think? Your first or last encounter with HTML? Let us know what you think in the comments section below, and don&#8217;t be afraid to try out some of the markup code!</p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(35)<a href="http://www.makeuseof.com/tag/top-10-professional-sample-code-websites-for-programmers/" title="Top 10 Professional Sample Code Websites For Programmers (February 23, 2009)">Top 10 Professional Sample Code Websites For Programmers</a> </li>
<li>(6)<a href="http://www.makeuseof.com/tag/a-web-developer-toolbar-guide/" title="Web Developer Toolbar for Firefox (May 21, 2008)">Web Developer Toolbar for Firefox</a> </li>
<li>(21)<a href="http://www.makeuseof.com/tag/selected-25-css-applications-and-tools/" title="Selected 25 CSS Applications and Tools (September 29, 2007)">Selected 25 CSS Applications and Tools</a> </li>
<li>(38)<a href="http://www.makeuseof.com/tag/install-firebug-for-browsers-other-than-firefox/" title="How To Install Firebug on IE, Safari, Chrome &amp; Opera (March 14, 2009)">How To Install Firebug on IE, Safari, Chrome &#38; Opera</a> </li>
<li>(54)<a href="http://www.makeuseof.com/tag/7-cool-html-effects-that-anyone-can-add-to-their-website-nb/" title="7 Cool HTML Effects That Anyone Can Add To Their Website (August 25, 2009)">7 Cool HTML Effects That Anyone Can Add To Their Website</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/TFZUt493y8uBSI50kfJwJcIXUlg/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/c4c68_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/TFZUt493y8uBSI50kfJwJcIXUlg/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/c4c68_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Zsg9en299_k:3nOmv8aN4bQ:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/c4c68_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Zsg9en299_k:3nOmv8aN4bQ:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6144b_Makeuseof?i=Zsg9en299_k:3nOmv8aN4bQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Zsg9en299_k:3nOmv8aN4bQ:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6144b_Makeuseof?i=Zsg9en299_k:3nOmv8aN4bQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Zsg9en299_k:3nOmv8aN4bQ:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6144b_Makeuseof?i=Zsg9en299_k:3nOmv8aN4bQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Zsg9en299_k:3nOmv8aN4bQ:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6144b_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Zsg9en299_k:3nOmv8aN4bQ:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6144b_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Zsg9en299_k:3nOmv8aN4bQ:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6144b_Makeuseof?i=Zsg9en299_k:3nOmv8aN4bQ:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6144b_Zsg9en299_k" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5168'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5168)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Set Up A Wireless Home Network With Just a Mobile Phone</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Fri, 12 Mar 2010 15:31:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[The key piece in a wireless home network is the wireless router. Once you have the router set up to your internet connection all you have to do is let the computer connect to the wireless router and authenticate.
Now what if you want to use your mobile phone’s internet connection to power your network? And [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b00b1_wmWifiHead.png" border="0" alt="wmWifiHead" vspace="5" align="left" />The key piece in a wireless home network is the wireless router. Once you have the router set up to your internet connection all you have to do is let the computer connect to the wireless router and authenticate.</p>
<p>Now what if you want to use your mobile phone’s internet connection to power your network? And what if, instead of using a physical <a href="http://www.makeuseof.com/tag/8-tips-to-boost-the-signal-from-your-wireless-router/">wireless router</a>, you decided a freeware application called <a href="http://www.freewarepocketpc.net/ppc-download-mobile-wi-fi-router.html">Mobile Wi-Fi Router</a> would do just fine.</p>
<p>Now remember if you and your phone leave the house you will not be able to remotely connect to your home computers. You are essentially taking the connection out with you.</p>
<p><span></span><br />
This makes a good setup for a few computers and casual Internet browsing. NOT if you have seven computers and a server all pulling in gigs and gigs of data.</p>
<p>I am sure you can do this from any mobile platform but today we will be using a Windows Mobile 6.5 device to connect. I have also tested this on Windows Mobile 6.1. If you try it on other versions please let us know in the comments.</p>
<p>First we will need to download the Wi-Fi Router application. You can grab it <a href="http://www.freewarepocketpc.net/ppc-download-mobile-wi-fi-router.html">from here</a>. Once you have it downloaded and installed on your Windows Mobile Device, you can launch it. Go ahead and start up the application by simply clicking on the desktop logo. Set up from there is just as easy.</p>
<p>The main interface of Wi-Fi Router looks like this:</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/3a105_WMWifi2.png" border="0" alt="WMWifi2" width="324" height="537" /></p>
<p>The options are ready to go right out of the box with a WEP password of 1234567890 and a generic network name. These will be fine for testing but when you decide to put this to use please do everyone a favor and change the network name and the WEP key.</p>
<p>Once you have your settings as you want them, you have the option to check the box next to <em>Use these settings next time without asking</em>.</p>
<p>I only have my 3G connection active so that is the only option that appears under <em>Internet Connection</em>. When you have another connection active like Wi-Fi or <a href="http://www.makeuseof.com/tag/technology-explained-what-is-bluetooth/">Bluetooth</a> those will appear there as well for you to choose from.</p>
<p>When you are ready to test, go ahead and hit the <em>Start</em> soft key button.  You will then see a screen that looks like this:</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6c2b7_WMWifi3.png" border="0" alt="WMWifi3" width="324" height="537" /></p>
<p>As you can see it clearly spits the network information back at you so you can look at your device to reference the WEP or network name. Hitting OK will allow you to use your device again keeping the Wi-Fi network active.</p>
<p>Now walk on over to each computer you want to join your new wireless home network and connect to it. Remember to enter your WEP key in the correct field on your computer.</p>
<p>Before the first computer connects the status screen will say <em>Ready to accept connections</em> as you can see below:</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/43d1e_wmwifi5.png" border="0" alt="wmwifi5" width="478" height="205" /></p>
<p>When the first computer connects that status message will change to <em>Connection Established</em>.</p>
<p>Go ahead and test out your connection – we will wait right here! If your connection to your phone is flaky you might want to position the device better. Maybe move it closer to the window or somewhere it gets the most bars / best reception.</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0f488_WMWifi4.png" border="0" alt="WMWifi4" width="481" height="289" /></p>
<p>To disable your wireless home network you can hit the <em>Stop</em> button on the Wi-Fi Router’s main page like so:</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/87a73_wmwifi6.png" border="0" alt="wmwifi6" width="316" height="165" /></p>
<p>If you know how to do this on the iPhone or on Android please hit us up in the comments. Do you have a better way of doing this? Put us on and let us know!</p>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><a href="http://www.facebook.com/connect/connect.php?api_key=8ac25c7e080e1d2db91fed7391552f2a&amp;id=27517455413&amp;connections=20&amp;stream=&amp;css="><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cda61_facebook-rss-footer.png" /></a></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(24)<a href="http://www.makeuseof.com/tag/wifi-for-dummies-9-common-mistakes-setting-up-a-wireless-network/" title="WiFi for Dummies: 9 Common Mistakes Setting up a Wireless Network (August 18, 2009)">WiFi for Dummies: 9 Common Mistakes Setting up a Wireless Network</a> </li>
<li>(33)<a href="http://www.makeuseof.com/tag/top-3-sites-to-download-windows-mobile-6-freeware/" title="Top 3 Sites To Download Windows Mobile 6 Freeware (November 25, 2009)">Top 3 Sites To Download Windows Mobile 6 Freeware</a> </li>
<li>(1)<a href="http://www.makeuseof.com/tag/top-3-secret-mobile-phone-tricks-fun-phone/" title="Top 3 Cool Secret Mobile Phone Tricks (January 29, 2010)">Top 3 Cool Secret Mobile Phone Tricks</a> </li>
<li>(15)<a href="http://www.makeuseof.com/tag/the-5-games-you-should-be-installing-on-your-android-mobile-phone/" title="The 5 Games You Should Be Installing On Your Android Mobile Phone (November 26, 2009)">The 5 Games You Should Be Installing On Your Android Mobile Phone</a> </li>
<li>(9)<a href="http://www.makeuseof.com/tag/snaptu-a-cool-free-pocket-pc-iphone-theme/" title="Snaptu- Free iPhone Theme for Pocket PC or Cellphone (August 15, 2009)">Snaptu- Free iPhone Theme for Pocket PC or Cellphone</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/WcDxw9F7IBhfJFeKxOOBRCVfzzU/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cda61_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/WcDxw9F7IBhfJFeKxOOBRCVfzzU/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cda61_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=TqKeLXHVwIk:tmHg1Dfdgn8:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cda61_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=TqKeLXHVwIk:tmHg1Dfdgn8:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cda61_Makeuseof?i=TqKeLXHVwIk:tmHg1Dfdgn8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=TqKeLXHVwIk:tmHg1Dfdgn8:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/276fe_Makeuseof?i=TqKeLXHVwIk:tmHg1Dfdgn8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=TqKeLXHVwIk:tmHg1Dfdgn8:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/276fe_Makeuseof?i=TqKeLXHVwIk:tmHg1Dfdgn8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=TqKeLXHVwIk:tmHg1Dfdgn8:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/276fe_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=TqKeLXHVwIk:tmHg1Dfdgn8:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/276fe_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=TqKeLXHVwIk:tmHg1Dfdgn8:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/276fe_Makeuseof?i=TqKeLXHVwIk:tmHg1Dfdgn8:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/276fe_TqKeLXHVwIk" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5167'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5167)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Websites and Tools [March 11th]</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Fri, 12 Mar 2010 03:31:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[ Check out some of the latest MakeUseOf discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to MakeUseOf Directory.
List Your Website Here!




&#160;

Etacts &#8211; Enter Etacts. Give your Gmail login and this service will analyze your [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right:30px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/1c926_web-apps-2.jpg" vspace="5" align="left" /> Check out some of the latest <em>MakeUseOf</em> discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to <a href="http://feeds.feedburner.com/WebServicesDir">MakeUseOf Directory</a>.</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>List Your Website Here!</strong></a></p>
<table>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/2e2d1_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.etacts.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.etacts.com">Etacts</a> &#8211; Enter Etacts. Give your Gmail login and this service will analyze your email history and tell you which contacts are most important to you. It will also tell you how long its been since you’ve contacted these important people. Read more: <a href="http://www.makeuseof.com/dir/etacts">Etacts: Find Out Who You’ve Lost Touch With On Gmail</a>.</td>
</tr>
</table>
<p><span></span></p>
<table>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/de83d_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fjustunfollow.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://justunfollow.com">JustUnfollow</a> &#8211;  If you are one of those who feels offended by those who do not follow you back on Twitter, you can easily recognize and unfollow them using JustUnfollow. It is a Twitter-based app that displays your Twitter contacts that do not follow you back. Read more: <a href="http://www.makeuseof.com/dir/justunfollow-unfollow-twitter-users">JustUnfollow: Unfollow Twitter Users That Don’t Follow You</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/594f8_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.ziplist.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.ziplist.com">ZipList</a> &#8211; There are hundreds of to-do list apps online that let you create grocery lists, however, there are very few that are actually created for the sole purpose of making grocery lists. ZipList is one of them. Read more: <a href="http://www.makeuseof.com/dir/ziplist-grocery-lists-to-print">ZipList: Create Grocery Lists To Print &#38; Share Online</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ed5ca_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.buzzcounter.net"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.buzzcounter.net">BuzzCounter</a> &#8211; Even though it was launched just recently, Google Buzz has become one of the popular social networking tools, more so because of it’s integration with Gmail. BuzzCounter provides you with a Google Buzz Widget that lets you display your information on any website or blog. Read more: <a href="http://www.makeuseof.com/dir/buzzcounter-google-buzz-widget">BuzzCounter: Embed Google Buzz Widget On Your Website</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ea434_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.codeorgan.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.codeorgan.com">CodeOrgan</a> &#8211;  Ever wonder how your favorite website sounds? Me neither. The folks at CodeOrgan evidently have, however. The site is really easy to use: simply enter any URL and hit the “Play This Website” button. CodeOrgan will then analyze the web site’s content and isolate all the characters on the musical scale to construct a melody. Read more: <a href="http://www.makeuseof.com/dir/codeorgan-website-sounds">CodeOrgan: Hear How Any Website Sounds</a>.</td>
</tr>
</table>
<p>&nbsp;</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>List Your Website Here!</strong></a></p>
<p>These are just half of the websites that we discovered in the last couple of days. If you want us to send you daily round-ups of all cool websites we come across, leave your email <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=WebServicesDir&amp;loc=en_US">here</a></strong>. Or follow us via <strong><a href="http://feedproxy.google.com/WebServicesDir">RSS feed</a></strong>.</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(171)<a href="http://www.makeuseof.com/tag/makeuseof-extra-27/" title="makeuseof extra #27 (February 15, 2007)">makeuseof extra #27</a> </li>
<li>(107)<a href="http://www.makeuseof.com/tag/finally-stick-to-your-resolutions-with-stickk/" title="Finally Stick To Your Resolutions With StickK (October 10, 2008)">Finally Stick To Your Resolutions With StickK</a> </li>
<li>(51)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-9/" title="Cool Websites and Tools [September 9] (September 9, 2009)">Cool Websites and Tools [September 9]</a> </li>
<li>(62)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-7/" title="Cool Websites and Tools [September 7] (September 7, 2009)">Cool Websites and Tools [September 7]</a> </li>
<li>(72)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-6/" title="Cool Websites and Tools [September 6] (September 6, 2009)">Cool Websites and Tools [September 6]</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/zkovBWn2z1mQcJgnGT2u_-jnCSk/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ea434_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/zkovBWn2z1mQcJgnGT2u_-jnCSk/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ea434_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=hmOxM1qPGgI:RNwcsVi8rXs:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ea434_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=hmOxM1qPGgI:RNwcsVi8rXs:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ea434_Makeuseof?i=hmOxM1qPGgI:RNwcsVi8rXs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=hmOxM1qPGgI:RNwcsVi8rXs:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ea434_Makeuseof?i=hmOxM1qPGgI:RNwcsVi8rXs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=hmOxM1qPGgI:RNwcsVi8rXs:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ea434_Makeuseof?i=hmOxM1qPGgI:RNwcsVi8rXs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=hmOxM1qPGgI:RNwcsVi8rXs:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ea434_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=hmOxM1qPGgI:RNwcsVi8rXs:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/87e37_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=hmOxM1qPGgI:RNwcsVi8rXs:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/87e37_Makeuseof?i=hmOxM1qPGgI:RNwcsVi8rXs:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/87e37_hmOxM1qPGgI" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5166'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5166)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Turn Boxee Into The Ultimate ROM And Game Launcher</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Wed, 10 Mar 2010 16:30:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[Boxee users who also love to play their favorite retro games using emulators have wanted this for a long time: a way to launch ROMs using Boxee&#8217;s slick, remote-based interface.
With some regularity Boxee&#8217;s enthusiastic users will ask about the possibility of a game launcher for their favorite games , including ROMs and native applications. This [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/52bbd_launchericon.png" alt="" vspace="5" align="left" />Boxee users who also love to play their favorite retro games using emulators have wanted this for a long time: a way to launch ROMs using Boxee&#8217;s slick, remote-based interface.</p>
<p>With some regularity Boxee&#8217;s enthusiastic users will ask about the possibility of a game launcher for their favorite games , including ROMs and native applications. This is now possible.</p>
<p>Sort of.</p>
<p>There are a few glitches, and it&#8217;s not an instant process, but if you&#8217;re willing to work at it you can turn Boxee into a ROM and game launcher right now.</p>
<p><span></span><br />
The following instructions assume you&#8217;re already fairly familiar with <a href="http://www.makeuseof.com/tag/boxee-beta-an-app-that-will-change-how-you-think-about-television/">Boxee</a>, and that you already know how to use <a href="http://www.makeuseof.com/tags/emulation/">emulators,</a> assuming you want to launch ROMs. If you know that much, you&#8217;ll have Boxee set up to launch your favorites in no time.</p>
<h3>Install the Game Launcher App</h3>
<p>The first step toward setting up Boxee to launch your ROMs and games is to install <a href="http://forum.boxee.tv/showthread.php?t=16015">FuzzTheD&#8217;s excellent Launcher App.</a> This dandy little Boxee App allows you to execute any external program from within Boxee. The developer gives the example of Chrome and Filezilla, but you can launch any program using this App&#8211;including all of your games.</p>
<p>To install this app, you&#8217;re going to need to add Fuzz The D&#8217;s repository to Boxee. If you&#8217;ve never added a repository on Boxee, don&#8217;t worry: it&#8217;s painless. Just open the App section of Boxee, then bring up the left-side menu. At the bottom of this menu is a &#8220;Repositories&#8221; button; click this. You&#8217;ll be given the option to add a new repository: click this and type &#8220;dir.fuzzthed.com&#8221;. You&#8217;ll now see a new repository to your right, called &#8220;Boxee Repo.&#8221;</p>
<p>Browse this repo and you&#8217;ll see tons of Apps not offered in Boxee&#8217;s standard library (some work better than others.) Explore this as you will, but for the purposes of this tutorial the one you&#8217;re looking for is called &#8220;Launcher.&#8221; Click it, then click the &#8220;Add to My Apps&#8221; button to make sure you have this application in your Apps menu. I also highly recommend hitting the &#8220;Add Shortcut&#8221; button for easy access.</p>
<h3>Setting Up The Game Launcher</h3>
<p>Now that you have Launcher set up, you can create shortcuts to your favorite games. Open the Launcher App and scroll the the left-menu to bring up your options. Click &#8220;Add Application&#8221; and you&#8217;ll be presented with the opportunity to fill in a name for the application, a link to the application and the URL of a thumbnail.</p>
<p>To get started, type the name of the program in the top field. Now add a link to the game you want to launch, either by typing the location of the program or by using the built-in file browser. Windows users will need to point to the game&#8217;s executable, while Linux users need only type the command that brings up the game.</p>
<p>Finally, pick an icon for the application. You can type the location of a local image you want to use, or press button beside this field to automatically search Google for images related to the title you selected previously.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/61f9f_launcherimagesearch_thumb.png" alt="" /></p>
<p>This feature makes finding relevant icons for your games a snap.</p>
<h3>Launching ROMs</h3>
<p>And now the part you&#8217;ve been looking for: using Boxee to launch ROMs. How to this varies depending on your operating system, but it&#8217;s not that hard.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/3f48a_launcher_thumb.png" alt="" /></p>
<p>Windows users looking to launch ROMs using this method need only to make sure their emulator is set as the default program for opening ROM files. For example, if you want to open Nintendo games with the excellent multi-system emulator <a href="http://mednafen.sourceforge.net/">Mednafen</a>, make sure Windows is set to open .nes files with Mednafen (and that all your NES ROMs end with the file extension .nes).</p>
<p>Now, using the instructions above, add a new application to Launcher, pointing directly to the ROM when asked for a link to the application.</p>
<p>Linux users will find the above method doesn&#8217;t work, and that writing the full command (for example, &#8220;mednafen /home/me/roms/mario.nes&#8221;) also doesn&#8217;t yield a good result. No problem: simply create a script that can launch the game using Mednafen. Open your text document and create a document similar to this:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/087a5_launcherscriptlinux_thumb.png" alt="" /></p>
<p>Save this document and make it executable, and you&#8217;ve got a single file to point Boxee towards to open your ROM using your favorite emulator. You&#8217;ll need to make one of these for every ROM you want to launch, but it&#8217;s not a terribly time consumer endeavor.</p>
<p>Not being among the elite ranks of computer users who own a Mac, I cannot verify a method of accomplishing this on OS X. I&#8217;m quite sure, however, that some industrious MakeUseOf user will explain how to do this in the comments below. After all, our readers are awesome.</p>
<h3>Full Screen to Full Screen</h3>
<p>Unfortunately, using this method to launch programs full-screen while Boxee is running full-screen can crash your system on both Windows and Linux. There&#8217;s an obvious solution to this: don&#8217;t use the method to launch your games full-screen. Alternatively, you can run Boxee outside of full-screen when you intend to launch a ROM: just press “\” to enter windowed mode.</p>
<p>My Boxee box runs Linux, so I worked around this problem by always running Boxee in windowed mode while using a program called devilspie to make Boxee appear to be full-screen whilst in windows mode. I simply installed devilspie from the repositories, then saved this script in a sub-directory of my Home Folder called &#8220;.devilspie.&#8221;</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/08c5b_launcherscriptdevilspie_thumb.png" alt="" /></p>
<p>Save this script with a &#8220;.ds&#8221; extension, and devilspie will automatically make Boxee appear fullscreen when it operates in windowed mode, meaning Set devilspie to start automatically on boot and you&#8217;re ready to launch full-screen games from within Boxee without crashing.</p>
<p>There must be similar workarounds for Windows and Mac, but I don&#8217;t know what they are. Again, chime in in the comments below if you work out a solution.</p>
<h3>Conclusion</h3>
<p>Perhaps someday Boxee will arrange deals with the companies that own the rights to our favorite retro-games, giving us the option to legally purchase games for Boxee. I&#8217;d be more than willing to pay for such integration. For now, however, I&#8217;ve managed to turn Boxee into a ROM launcher perfect for my needs.</p>
<p>That&#8217;s not to say there isn&#8217;t room for improvement here. A Boxee developer wanting an enthusiastic user base should consider creating a dedicated ROM game launcher; perhaps one that integrates the programs launched into Boxee itself, but even a launcher built specifically to launch external programs without crashing Boxee would be greatly appreciated. For now, however, users looking for similar functionality can work toward this functionality right now&#8211;and they have FuzzTheD to thank.</p>
<p>What do <em>you</em> use Boxee for?</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(22)<a href="http://www.makeuseof.com/tag/ubuntu-system-panel-gives-you-quick-access-to-your-applications/" title="Ubuntu System Panel Gives Quick Access To Your Applications (January 12, 2009)">Ubuntu System Panel Gives Quick Access To Your Applications</a> </li>
<li>(24)<a href="http://www.makeuseof.com/tag/top-7-unknown-free-launcher-applications-for-windows/" title="Top 7 Unknown Free Launcher Applications for Windows (August 2, 2008)">Top 7 Unknown Free Launcher Applications for Windows</a> </li>
<li>(4)<a href="http://www.makeuseof.com/tag/an-application-launcher-for-your-mouse-mouseextender/" title="MouseExtender – A Cool Program Launcher For Your Mouse (December 12, 2009)">MouseExtender &#8211; A Cool Program Launcher For Your Mouse</a> </li>
<li>(99)<a href="http://www.makeuseof.com/tag/makeuseof-musthave-mac-apps-giveaway-day-7-launchbar/" title="MakeUseOf Must-Have Mac Apps Giveaway Day #7 – LaunchBar (March 8, 2010)">MakeUseOf Must-Have Mac Apps Giveaway Day #7 – LaunchBar</a> </li>
<li>(2)<a href="http://www.makeuseof.com/tag/key-launch-%E2%80%93-quickly-launch-applications-from-the-command-line/" title="KeyLaunch – Launch Programs Fast by Typing in a Few Characters (November 21, 2009)">KeyLaunch &#8211; Launch Programs Fast by Typing in a Few Characters</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/DubMsTk22XuVpA0yP0kYoJdyK0w/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/08c5b_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/DubMsTk22XuVpA0yP0kYoJdyK0w/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/08c5b_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=InpL99RF96Q:gEuGyAGjTes:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/08c5b_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=InpL99RF96Q:gEuGyAGjTes:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/68a46_Makeuseof?i=InpL99RF96Q:gEuGyAGjTes:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=InpL99RF96Q:gEuGyAGjTes:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/68a46_Makeuseof?i=InpL99RF96Q:gEuGyAGjTes:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=InpL99RF96Q:gEuGyAGjTes:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/68a46_Makeuseof?i=InpL99RF96Q:gEuGyAGjTes:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=InpL99RF96Q:gEuGyAGjTes:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/68a46_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=InpL99RF96Q:gEuGyAGjTes:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/68a46_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=InpL99RF96Q:gEuGyAGjTes:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/68a46_Makeuseof?i=InpL99RF96Q:gEuGyAGjTes:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/1d867_InpL99RF96Q" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5119'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5119)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Cool Widgets For Myspace</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Wed, 10 Mar 2010 15:30:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[I have had just about enough of MySpace, Friendster, Facebook and the rest of them. I guess it is just me growing up and settling into my ways. I am 30 years old and I blog and tweet all the time.
But I do recognize that a huge part of the younger population are into Myspace [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right: 20px;margin-top: 20px;margin-bottom: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/8a0d1_widgetHead.png" alt="" vspace="5" align="left" />I have had just about enough of MySpace, Friendster, <a href="http://makeuseof.com/tags/facebook">Facebook</a> and the rest of them. I guess it is just me growing up and settling into my ways. I am 30 years old and I blog and tweet all the time.</p>
<p>But I do recognize that a huge part of the younger population are into <a href="http://myspace.com">Myspace</a> and that is why I will be running down 6 really cool Widgets for your MySpace page.</p>
<p>Aibek covered a huge amount of additions, widgets and more for your MySpace page back in 2006 <a href="http://www.makeuseof.com/tag/60-tools-and-websites-for-myspace-users/">here</a>.</p>
<p><span></span><br />
The first widget I will cover is a game called <strong>Age of War</strong>. Learn the Art of war. Buy turrets, fight and evolve. This is an epic game and will bring people back to your page over and over again! I found this widget here at <a href="http://www.widgetbox.com/widget/ageofwargame">WidgetBox</a></p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/bc004_widget1.png" alt="cool widgets for myspace" width="509" height="471" /></p>
<p>To install the widget on MySpace your best bet is to grab the embed code and insert it where you want it like so:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/7344c_widget2.png" alt="cool widgets for myspace" width="584" height="441" /></p>
<p>The next widget is called <strong><a href="http://www.myflashfetish.com/myspace-comments.php">My Flash Fetish</a></strong> and is a MySpace comment widget as you can see below:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/05c0b_widget3.png" alt="cool widgets for myspace" width="452" height="308" /></p>
<p>There are lots of customizations to color and styling so you can make it fit your page. Click the get code button below the widget and choose &#8220;other&#8221; then copy the embed code and you are on your way to pasting it into your page.</p>
<p>Want more cool widgets for Myspace? Next, we have another <a href="http://www.myflashfetish.com/"><strong>MyFlashFetish</strong></a> widget that allows you to show how long you have been sober from drugs, alcohol or what have you. Visit <a title="http://www.myflashfetish.com/makewidget.php?id=7" href="http://www.myflashfetish.com/makewidget.php?id=7">this site</a> and follow the directions and grab the embed code when you are done to post it on your MySpace page.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/22325_widget4.png" alt="myspace widgets" width="457" height="415" /></p>
<p>Alright now how about a <strong>count down widget</strong> to show how much time is left until your birthday? Check out this widget from <a href="http://www.magicwidgets.com/birthday/">Magic Widgets</a>.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/f2d33_widget5.png" alt="myspace widgets" width="465" height="598" /></p>
<p>Fill in the data on top, change the colors and the background image. Your preview will appear above it. The message can also be dragged around to place it where you would like in the widget on this screen. Then you click get HTML code to get and insert your embed code.</p>
<p>I particularly thought this one was very cute and appropriately titled Stick Figure Family. You can set up yours from <a title="http://www.freeflashtoys.com/stick-figure-family" href="http://www.freeflashtoys.com/stick-figure-family">FreeFlashToys</a>.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/07c99_widget7.png" alt="myspace widgets" width="584" height="334" /></p>
<p>After editing mine looked like this:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/1ab8b_widget8.png" alt="the most wanted widgets for myspace" width="337" height="324" /></p>
<p>Here is a good prank for your page. It is called <strong>Tic Tac Prank</strong> and in the author’s own words:</p>
<blockquote><p>Haha&#8230; we love scaring people with good &#8216;ol pranks. That&#8217;s why we made TIC TAC SCARE. It&#8217;s one of the best ways to make your friends piss themselves, by playing a &#8220;harmless&#8221; game of tic tac toe. So put it on your profile and wait to hear your friends&#8217; reactions. People even record the reactions on YouTube! Check it out.</p>
</blockquote>
<p>Here is the <a href="http://www.freeflashtoys.com/tic-tac-scare-prank">URL to grab the code</a> and below that is a YouTube video of a mom pranking her children with it! Bad mom!</p>
</p>
<p>So all in all, there are an infinite amount of widgets out there for whatever social network you use no matter if it is MySpace, a blog, or anywhere they will let you enter code!</p>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><a href="http://www.facebook.com/connect/connect.php?api_key=8ac25c7e080e1d2db91fed7391552f2a&amp;id=27517455413&amp;connections=20&amp;stream=&amp;css="><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/50345_facebook-rss-footer.png" /></a></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(6)<a href="http://www.makeuseof.com/tag/scrapboy-social-networking-lands-on-the-desktop-windows/" title="Scrapboy- Desktop Client for Facebook, Myspace &amp; Orkut (Win) (November 28, 2008)">Scrapboy- Desktop Client for Facebook, Myspace &#38; Orkut (Win)</a> </li>
<li>(10)<a href="http://www.makeuseof.com/tag/retaggr-lets-people-know-who-you-are/" title="Retaggr Lets People Know Who You Are (July 10, 2008)">Retaggr Lets People Know Who You Are</a> </li>
<li>(3)<a href="http://www.makeuseof.com/tag/how-to-make-a-customized-background-on-myspace/" title="How To Make A Customized Background On MySpace (July 19, 2009)">How To Make A Customized Background On MySpace</a> </li>
<li>(13)<a href="http://www.makeuseof.com/tag/get-your-google-profile-organized-for-friend-connect/" title="Get Your Google Profile Organized For Friend Connect (December 8, 2008)">Get Your Google Profile Organized For Friend Connect</a> </li>
<li>(8)<a href="http://www.makeuseof.com/tag/writeonit-magazine-covers-other-fun-stuff/" title="WriteOnIt – Funny Photo Captions, Magazine Covers &amp; Other (March 8, 2009)">WriteOnIt &#8211; Funny Photo Captions, Magazine Covers &#38; Other</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/dk4D7eZgt_ZgzYMeiYwcpzQwkeE/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/48898_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/dk4D7eZgt_ZgzYMeiYwcpzQwkeE/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/48898_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=N1xzMFYxldo:M9MBqvDio7g:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/48898_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=N1xzMFYxldo:M9MBqvDio7g:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/48898_Makeuseof?i=N1xzMFYxldo:M9MBqvDio7g:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=N1xzMFYxldo:M9MBqvDio7g:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/48898_Makeuseof?i=N1xzMFYxldo:M9MBqvDio7g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=N1xzMFYxldo:M9MBqvDio7g:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/48898_Makeuseof?i=N1xzMFYxldo:M9MBqvDio7g:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=N1xzMFYxldo:M9MBqvDio7g:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/2ab6a_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=N1xzMFYxldo:M9MBqvDio7g:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/2ab6a_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=N1xzMFYxldo:M9MBqvDio7g:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/2ab6a_Makeuseof?i=N1xzMFYxldo:M9MBqvDio7g:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/2ab6a_N1xzMFYxldo" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5118'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5118)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Websites and Tools [March 9th]</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Wed, 10 Mar 2010 03:31:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[ Check out some of the latest MakeUseOf discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to MakeUseOf Directory.
List Your Website Here!




&#160;

Sprdword &#8211; This website indexes documentary videos that offer alternative perspectives and worldviews. You [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right:30px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ef880_web-apps-2.jpg" vspace="5" align="left" /> Check out some of the latest <em>MakeUseOf</em> discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to <a href="http://feeds.feedburner.com/WebServicesDir">MakeUseOf Directory</a>.</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>List Your Website Here!</strong></a></p>
<table>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/55702_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.sprword.com%2Fmustwatch.html"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.sprword.com/mustwatch.html">Sprdword</a> &#8211; This website indexes documentary videos that offer alternative perspectives and worldviews. You will find a collection of best controversial documentaries that you wouldn’t normally find in traditional media. Read more: <a href="http://www.makeuseof.com/dir/sprdword-best-controversial-documentaries">Sprdword: Aggregates Best Controversial Documentaries Online</a>.</td>
</tr>
</table>
<p><span></span></p>
<table>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/bf41f_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Ffillthatform.net"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://fillthatform.net">Fill That Form</a> &#8211;  Many web services still ask you to fill out boring forms before you can do anything else. If you are one of those people who hate filling out the same information again and again, check out FillThatForm. It is a cool app that provides you with an automated way to fill in forms online with a single click. Read more: <a href="http://www.makeuseof.com/dir/fillthatform-fill-in-forms-online">FillThatForm: Automatically Fill In Forms Online</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/76ccf_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.abcya.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.abcya.com">ABCya</a> &#8211; Learning from a book is so old-fashioned. Kids today are so much into technology that it has to be the medium for their education. ABCya is one such site that allows children to learn through thousands of interactive browser based games for kids. Read more: <a href="http://www.makeuseof.com/dir/abcya-browser-based-games-for-kids">ABCya: Thousands Of Educational &#38; Browser Based Games For Kids</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/a6842_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.meetifyr.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.meetifyr.com">Meetifyr</a> &#8211; Finding out when everybody is available for a meeting can be a real hassle, specially if the group is large. Meetifyr is a free availability calendar that helps you with this by providing a dead simple way to check everybody’s availability. Simply go to Meetifyr and launch a new calendar. Read more: <a href="http://www.makeuseof.com/dir/meetifyr-free-availability-calendar">Meetifyr: Dead Simple &#38; Free Availablity Calendar</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/717ff_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.xritephoto.com%2Fph_toolframe.aspx%3Faction%3Dcoloriq"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.xritephoto.com/ph_toolframe.aspx?action=coloriq">ColorIQ</a> &#8211;  How good your eyes are doesn’t entirely revolve around clarity: some people are better at judging colors than others. If you’d like to know how you see colors compared to others in your age the ColorIQ offers you a way to find out. Simply arrange four rows of similar colors in hue order. Read more: <a href="http://www.makeuseof.com/dir/coloriq-how-you-see-color">ColorIQ: Test How You See Colors</a>.</td>
</tr>
</table>
<p>&nbsp;</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>List Your Website Here!</strong></a></p>
<p>These are just half of the websites that we discovered in the last couple of days. If you want us to send you daily round-ups of all cool websites we come across, leave your email <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=WebServicesDir&amp;loc=en_US">here</a></strong>. Or follow us via <strong><a href="http://feedproxy.google.com/WebServicesDir">RSS feed</a></strong>.</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(171)<a href="http://www.makeuseof.com/tag/makeuseof-extra-27/" title="makeuseof extra #27 (February 15, 2007)">makeuseof extra #27</a> </li>
<li>(107)<a href="http://www.makeuseof.com/tag/finally-stick-to-your-resolutions-with-stickk/" title="Finally Stick To Your Resolutions With StickK (October 10, 2008)">Finally Stick To Your Resolutions With StickK</a> </li>
<li>(51)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-9/" title="Cool Websites and Tools [September 9] (September 9, 2009)">Cool Websites and Tools [September 9]</a> </li>
<li>(62)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-7/" title="Cool Websites and Tools [September 7] (September 7, 2009)">Cool Websites and Tools [September 7]</a> </li>
<li>(72)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-6/" title="Cool Websites and Tools [September 6] (September 6, 2009)">Cool Websites and Tools [September 6]</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/CFPtwdnNvKo2xRWZcEhEpZbk4Mk/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b872a_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/CFPtwdnNvKo2xRWZcEhEpZbk4Mk/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b872a_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=vpdYXtjm1yw:GbwBWBMIjBc:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b872a_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=vpdYXtjm1yw:GbwBWBMIjBc:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b872a_Makeuseof?i=vpdYXtjm1yw:GbwBWBMIjBc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=vpdYXtjm1yw:GbwBWBMIjBc:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b4c4f_Makeuseof?i=vpdYXtjm1yw:GbwBWBMIjBc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=vpdYXtjm1yw:GbwBWBMIjBc:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b4c4f_Makeuseof?i=vpdYXtjm1yw:GbwBWBMIjBc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=vpdYXtjm1yw:GbwBWBMIjBc:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b4c4f_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=vpdYXtjm1yw:GbwBWBMIjBc:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b4c4f_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=vpdYXtjm1yw:GbwBWBMIjBc:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b4c4f_Makeuseof?i=vpdYXtjm1yw:GbwBWBMIjBc:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b4c4f_vpdYXtjm1yw" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5117'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5117)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Get Started With Open Notebook Science</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Mon, 08 Mar 2010 17:30:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[Open Notebook Science (ONS) is slowly making a splash in the scientific community. By publishing all experiments in online notebooks via blogs and wikis, scientists are bypassing the lengthy patent process and working toward creating faster solutions to world problems.
Open Notebook Science (ONS) is &#8220;the practice of making a researcher&#8217;s laboratory notebook, and all associated [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right: 20px;margin-top: 5px;margin-bottom: 5px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/8ae01_JCB3.jpg" alt="open notebook science" vspace="5" width="250" height="163" align="left" /><a title="Open Notebook Science" href="http://en.wikipedia.org/wiki/Open_Notebook_Science">Open Notebook Science</a> (ONS) is slowly making a splash in the scientific community. By publishing all experiments in online notebooks via blogs and wikis, scientists are bypassing the lengthy patent process and working toward creating faster solutions to world problems.</p>
<p>Open Notebook Science (ONS) is &#8220;the practice of making a researcher&#8217;s laboratory notebook, and all associated supporting data, public in as close to real time as possible,&#8221; says Dr. <a title="Jean-Claude Bradley" href="http://openwetware.org/images/d/d6/BradleyCVshort.doc">Jean-Claude Bradley</a>, Associate Professor of Chemistry at <a title="Drexel University" href="http://drexel.edu">Drexel University</a> in Pennsylvania and pioneer of ONS.</p>
<p><span></span><br />
The first ONS research project was Bradley&#8217;s <a title="UsefulChem" href="http://usefulchem.wikispaces.com">UsefulChem</a> project.  He opened the walls of his lab to make all data open to the public through a wiki and blog mashup. By doing so, his experimental data can be indexed and harvested by both human and computational agents.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/d0c71_UsefulChem-home.gif" alt="open notebook science" width="580" height="307" /></p>
<p>While his open approach is not the standard for science (especially in Chemistry), ONS is gaining rippled momentum in the scientific community as more and more scientists are seeing the value in collaborating on lab experiments.</p>
<h3>What is the Difference Between ONS and Open Access?</h3>
<p>Open Access (OA) and ONS are similar in that data is shared freely.  Open Access means there is no charge to the reader when the article is published.  Typically, a library has to pay for journal subscriptions, but Open Access journals are made free via the web.</p>
<p>The main differences between OA and ONS are timing and detail.  In ONS, the scientists are working and documenting their research live. Both successes <em>and</em> failures are published.  This is not the standard for science where only successes are published (even in OA).</p>
<p>In OA, the articles are polished and can happen any time after an experiments concludes.  The publication is not live, and all of the failed experiments are removed.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/dc81a_oa.jpg" alt="open notebook science" width="500" height="195" /></p>
<p><a title="Nature" href="http://www.nature.com/">Nature</a> is an Open Access scientific journal devoted to environmental biology.  Their material is made free to the public, but it is polished work and not the raw types of work found in Open Notebook science.</p>
<p>Some OA journals are peer reviewed and some are not.  The <a title="OA Librarian" href="http://oalibrarian.blogspot.com/">OA Librarian</a> has awesome resources on the topic if you would like to learn more.</p>
<h3>What are the Benefits and Risks of ONS?</h3>
<p>While losing the right to a patent can be financially devastating, the effects of producing faster research can help cure world killers.  Bradley estimates that we can cut down the time it takes to go from lab to medicine by 10-15 years with Open Notebook Science.</p>
<p>While pre-tenured faculty and research scientists need peer reviewed publications and patents to advance in their fields, many tenured scientists are able to contribute to the body of knowledge without much risk.</p>
<p>Time will tell is Bradley&#8217;s predictions are right, but, in the meantime, here are some tools for getting started.</p>
<h3>How to get started</h3>
<p>If you want to be start an Open Notebook for your scientific experiments, you need a few simple tools and a commitment to publishing successes and failures in real time.</p>
<p><strong>Tools:</strong></p>
<ol>
<li>A Blog with RSS Feed</li>
<li>A Wiki</li>
<li>An RSS Reader</li>
<li>A Social Network</li>
<li>A digital still camera</li>
<li>A digital video camera</li>
</ol>
<p>Methods:</p>
<ol>
<li>Keep a computer in the lab</li>
<li>Document all steps, materials, and findings (good and bad) as they happen on your wiki notebook</li>
<li>When possible, take pictures or video of experiments</li>
<li>Write a summary for the blog BEFORE you leave the lab.</li>
<li>Publish your blog so that it gets pinged by your RSS feedburner.</li>
<li>During down time, keep current with other similar experiments using your social networks and RSS reader.</li>
</ol>
<h3>A Good Blog and Wiki Mix (Bliki)</h3>
<p>Dr. Bradley uses <a title="UsefulChem" href="http://usefulchem.blogspot.com">Blogger</a> and <a title="UsefulChem Wiki" href="http://usefulchem.wikispaces.com">Wikispaces</a> to create his Bliki environment, but any blog or wiki platform will work.  If you would like to explore and compare wikis, try <a title="wikimatrix" href="http://www.makeuseof.com/dir/wikimatrixorg-compare-wiki/">wikimatrix</a>.</p>
<p>You can learn more about wikimatrix from our article <a title="Wikimatrix" href="http://www.makeuseof.com/dir/wikimatrixorg-compare-wiki/">here</a> and learn about another free program called intodit <a title="Intodit" href="http://www.makeuseof.com/dir/intodit-create-a-wiki-for-anything/">here</a>.  While Blogger is super powerful because it is owned by Google, there are lots of other blogging platforms out there.</p>
<p>Timely publishing is the key to ONS, and experiments should be documented in as near real time as possible. When possible, pictures and videos should be included in the bliki.  It is crucial to make sure that you connect your blog and wiki so they are seamless.</p>
<h3>A Good RSS Reader</h3>
<p>Open Notebook Science requires that a scientist keeps up to date with the experiments of others.  For example, in the Bradley Lab at Drexel, undergrad and grad students are working on a inhibitor to <a title="Enoyl Reductase" href="http://www.sciencemag.org/cgi/content/refs/274/5295/2107">Enoyl Reductase</a>, the root cause of malaria.</p>
<p>It is important for scientists to <a title="Experiments Wiki" href="http://usefulchem.wikispaces.com/All+Reactions">report their findings</a> immediately while the details are fresh, so that others around the world can duplicate or enhance an experiment in their own labs.  Likewise, it is imperative for scientists to read the work of others so they can add to the body of knowledge.<br />
RSS readers are a dime a dozen, but <a title="Google Reader" href="http://reader.google.com">Google Reader</a> is one of the best.  The students can write collect notes from other online notebooks, create notes in text, save and share notes, email notes to other team members, and organize materials very easily.</p>
<p>Open Notebook Science is about sharing data consistently in real time.  Bradley predicts that, in the future, humans won&#8217;t be needed to aggregate data.  But, for now, we have to collect and disseminate data the old fashioned way&#8230;by talking about it! Social networks like <a title="Facebook" href="http://facebook.com">Facebook</a> and <a title="Twitter" href="http://twitter.com">Twitter</a> allow for instant sharing, and Bradley uses <a title="FriendFeed" href="http://friendfeed.com">FriendFeed</a> to collect it all in one location.</p>
<h3>The Wrap</h3>
<p>Will Open Notebook Science change the nature of the scientific community? Probably not.  But, if more people share their data in real time, we can help people around the world combat disease.</p>
<p>Do you share your scientific data in real time?  Why or why not?</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(13)<a href="http://www.makeuseof.com/tag/unleash-the-mad-scientist-within-you/" title="Try Fun Science Experiments At Home With These 6 Websites (April 19, 2009)">Try Fun Science Experiments At Home With These 6 Websites</a> </li>
<li>(9)<a href="http://www.makeuseof.com/tag/top-5-websites-research-weird-science-claims/" title="Top 5 Websites To Research Weird Science Claims (January 21, 2010)">Top 5 Websites To Research Weird Science Claims</a> </li>
<li>(6)<a href="http://www.makeuseof.com/tag/6-top-reference-sites-write-winning-research-paper/" title="6 Top Reference Sites to Write a Winning Research Paper (January 24, 2010)">6 Top Reference Sites to Write a Winning Research Paper</a> </li>
<li>(10)<a href="http://www.makeuseof.com/tag/5-captivating-sites-information-junkies/" title="5 Captivating Sites For Information Junkies (January 22, 2010)">5 Captivating Sites For Information Junkies</a> </li>
<li>(43)<a href="http://www.makeuseof.com/tag/3-cool-science-experiments-you-can-do-at-home/" title="3 Cool Science Experiments You Can Do At Home (January 23, 2009)">3 Cool Science Experiments You Can Do At Home</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/e62QYybAv-JhUE3fJ-qDadAMRrE/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/dc81a_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/e62QYybAv-JhUE3fJ-qDadAMRrE/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/dc81a_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=kpYHfjnn_KA:9jqzMzMF5ig:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/dc81a_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=kpYHfjnn_KA:9jqzMzMF5ig:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/dc81a_Makeuseof?i=kpYHfjnn_KA:9jqzMzMF5ig:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=kpYHfjnn_KA:9jqzMzMF5ig:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/dc81a_Makeuseof?i=kpYHfjnn_KA:9jqzMzMF5ig:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=kpYHfjnn_KA:9jqzMzMF5ig:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/dc81a_Makeuseof?i=kpYHfjnn_KA:9jqzMzMF5ig:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=kpYHfjnn_KA:9jqzMzMF5ig:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/d73ef_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=kpYHfjnn_KA:9jqzMzMF5ig:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/d73ef_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=kpYHfjnn_KA:9jqzMzMF5ig:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/97ee4_Makeuseof?i=kpYHfjnn_KA:9jqzMzMF5ig:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/a9c62_kpYHfjnn_KA" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5078'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5078)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Windows 7: The 7 Most Noticeable New Features</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Mon, 08 Mar 2010 16:30:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[Windows 7 has been out in the wild for quite sometime now.
Many people have had a taste of what it has to offer. Windows 7 brings with it a number of improvements in key areas.
Here are some of the Windows 7 new features that stand out in the latest version of the popular operating system.

Taskbar [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/937db_windows7logo.jpg" alt="" vspace="5" width="120" height="120" align="left" /><a href="http://makeuseof.com/tags/windows-7">Windows 7</a> has been out in the wild for quite sometime now.</p>
<p>Many people have had a taste of what it has to offer. Windows 7 brings with it a number of improvements in key areas.</p>
<p>Here are some of the Windows 7 new features that stand out in the latest version of the popular operating system.</p>
<p><span></span></p>
<h3>Taskbar and Jumplists</h3>
<p>There are lots of tweaks to the Taskbar. The taskbar buttons are icon only by default, they group by default. You can pin applications to the taskbar, user Ctrl + &lt;number&gt; to invoke pinned applications. Applications now support jumplists, which help you launch a particular file or url from the button directly. The taskbar buttons show a progress indicator if the application is displaying a progress bar and many more.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cad25_jumplists.png" alt="windows 7 new features" width="217" height="221" /></p>
<h3>Libraries</h3>
<p>Libraries are like virtual folders. A library can draw its content from multiple folders. For example, if you have your Music stored under more than one folder across various drives, you can see them consolidated into a single virtual folder or library. Libraries can help you manage clutter and organize files the way you like while still being able to view them inside a single location. <a href="http://www.makeuseof.com/tag/windows-7-libraries-–-and-why-you-want-them/">Details here</a>.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/162da_librariris.png" alt="windows 7 new features" width="524" height="392" /></p>
<h3>Windows XP Mode</h3>
<p>Windows 7 offers something  known as the Windows XP mode. What Windows XP mode is that it allows you to run a fully functional copy of Windows XP from within Windows 7. It is essentially the same as running Windows XP virtual  machine inside a virtualization software like VirtualBox. You need to download additional files and make sure your computer can support Windows XP mode. <a href="http://www.makeuseof.com/tag/configure-windows-7-xp-mode/">Details here</a>.</p>
<h3>Desktop and Theming</h3>
<p>Desktop and Theming got a major overhaul with Windows Vista. Windows 7 manages to add new features to those changes. Themes are now easier to create and share. Right click on the desktop and click Personalize and you can access every aspect of the themes from the resulting window. Windows can now natively rotate the wallpaper choosing one from the collection you specify. There are also a <a href="http://www.makeuseof.com/tag/top-5-windows-7-themes/">number of themes</a> available online as well.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/1aea9_desktopswitch.png" alt="windows 7 new features" width="542" height="536" /></p>
<h3>Aero Snap and Aero Peek</h3>
<p>Aero Snap and Aero Peek help you work with multiple open windows easily. Aero Snap can snap windows to the sides or the top, making them cover the entire screen or exactly half the screen. Just hold the title bar of a window and drag it to one of the edges of the screen. Aero Peek on the other hand lets you peek through all the open windows so that you can see you desktop easily. Aero Peek can be activated using Win + Space key or by hovering the mouse pointer over the bottom right corner of the taskbar.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b3209_aerosnap.png" alt="" /></p>
<h3>Media Streaming</h3>
<p>Apart from inclusion of new codecs to support even more filetypes, Windows Media Player can now be used to stream media files. The streaming can take place within your network or over the Internet as you please. You can stream to other computers as well as devices that are compatible with Windows 7. <a href="http://windows.microsoft.com/en-IN/windows7/using-the-play-to-feature-to-stream-media">Details here</a>.</p>
<h3>The HomeGroup</h3>
<p>Its not a stretch to own more than one computer these days. If you have more than one computer at your home you would most likely want to put them on a network so that you can share Internet Connection, share music, videos and pictures. Windows 7 now creates a HomeGroup that all other Windows 7 machines can be a part of and the network is up and running in a snap. You also get a password to control access to your home network.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/8f786_homegrouppasswords.png" alt="" /></p>
<p>There are a host of other features and under the hood improvements that you may not notice in day to day use. It supports more hardware, boots faster, runs snappier. The games, media center and accessories like Paint and Calculator have been updated as well. Overall it wouldn&#8217;t be wrong to consider it the best Operating System from folks over at Redmond. There is nothing stopping you to hold on to the previous version of Windows and bypass Windows 7 altogether as was the case with Windows Vista.</p>
<p>What are your favorite Windows 7 new features?</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(9)<a href="http://www.makeuseof.com/tag/windows-7-requirements-installation-tips/" title="Upgrade To Windows 7: Requirements &amp; Installation Tips (February 9, 2010)">Upgrade To Windows 7: Requirements &#38; Installation Tips</a> </li>
<li>(20)<a href="http://www.makeuseof.com/tag/tweak-windows-with-portable-ultimate-windows-tweaker/" title="Tweak Your Windows OS With Portable Ultimate Windows Tweaker (March 26, 2009)">Tweak Your Windows OS With Portable Ultimate Windows Tweaker</a> </li>
<li>(13)<a href="http://www.makeuseof.com/tag/3-windows-7-upgrade-issues-avoid/" title="Three Windows 7 Upgrade Issues &amp; How To Avoid Them (February 18, 2010)">Three Windows 7 Upgrade Issues &#38; How To Avoid Them</a> </li>
<li>(21)<a href="http://www.makeuseof.com/tag/the-ultimate-%E2%80%98upgrade-to-windows-7%E2%80%B2-guide-%E2%80%93-part-2/" title="The Ultimate ‘Upgrade To Windows 7′ Guide – Part 2 (June 3, 2009)">The Ultimate ‘Upgrade To Windows 7′ Guide – Part 2</a> </li>
<li>(27)<a href="http://www.makeuseof.com/tag/the-ultimate-upgrade-to-windows-7-guide/" title="The Ultimate ‘Upgrade To Windows 7′ Guide (May 26, 2009)">The Ultimate &#8216;Upgrade To Windows 7&#8242; Guide</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/jxWLSQJgPumE8ByILpwcY7uCkno/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/662dc_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/jxWLSQJgPumE8ByILpwcY7uCkno/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/662dc_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Bznll7ykjrc:Dn36KJrzFWs:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/662dc_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Bznll7ykjrc:Dn36KJrzFWs:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/662dc_Makeuseof?i=Bznll7ykjrc:Dn36KJrzFWs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Bznll7ykjrc:Dn36KJrzFWs:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/662dc_Makeuseof?i=Bznll7ykjrc:Dn36KJrzFWs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Bznll7ykjrc:Dn36KJrzFWs:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/662dc_Makeuseof?i=Bznll7ykjrc:Dn36KJrzFWs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Bznll7ykjrc:Dn36KJrzFWs:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/662dc_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Bznll7ykjrc:Dn36KJrzFWs:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/afc89_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=Bznll7ykjrc:Dn36KJrzFWs:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/afc89_Makeuseof?i=Bznll7ykjrc:Dn36KJrzFWs:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/afc89_Bznll7ykjrc" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5077'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5077)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Do I Unblock a Web Page From Behind a Strong Firewall?</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:30:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[Many times we find ourselves on networks where we cannot get to websites that we want to see because of some silly restriction on particular subjects and all sorts of good stuff. There are instances where you will need to get to a specific site for homework or real work and you cannot get to [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b3f18_blockHead.png" alt="" vspace="5" align="left" />Many times we find ourselves on networks where we cannot get to websites that we want to see because of some silly restriction on particular subjects and all sorts of good stuff. There are instances where you will need to get to a specific site for homework or real work and you cannot get to them due to things like restrictive materials, dangerous knowledge and even reproduction. What do you do? Not do your work?</p>
<p>I will show you some tricks I have seen in action as a network administrator over the years and some I have discovered myself. But before starting, know that your system administrator might not be partial to you circumventing their network security so do so at your own risk and make sure you are fully aware of the possible consequences first!</p>
<p><span></span></p>
<h3>How to Unblock a Web Page &#8211; Retrieving The Site&#8217;s IP Address</h3>
<p>The first trick we will use gets around <em>most</em> firewalls or content filtering that work by domain name or URL. The trick is to ping the website from the command line from your home or another computer not on the restricted network. This can be done by hitting <em>start -&gt;run</em> and then typing <strong>cmd</strong>. On Vista and Windows 7, just hit the start orb and type <strong>cmd</strong>.</p>
<p>Then at the command prompt type <em>ping www.site.com</em> replacing site.com with the actual website you want to get to. Like so:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/3eb24_block1.png" alt="how do i unblock a web page" width="584" height="291" /></p>
<p>I chose a random site called <a href="http://www.restricted.com">www.restricted.com</a> and pinged it as you can see above and it returned the IP address. Then I can type in <strong>http://216.34.131.135</strong> in my browser and bypass the URL’s restriction.</p>
<h3>The Google Cache Trick to Unblock a Web Page</h3>
<p>If that didn’t work for you we will move on to the Google Cache trick. Search for the website you are trying to get to. In this instance, we will use <a href="http://www.wtfluck.com">http://www.wtfluck.com</a>. On this imaginary network we are blocking this site and its IP address. So what can we do? Google for it of course, like so:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/8e684_block2.png" alt="how do i unblock a web page" width="584" height="269" /></p>
<p>Hit <em>Google Search</em> and you will see results that look like these:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/5aee2_block4.png" alt="how do i unblock a web page" width="584" height="507" /></p>
<p>Maybe you have never noticed it before but there is a <em>Cached</em> button after each entry and you can click on it to see the site like so:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/07a5f_block5.png" alt="how to unblock a restricted web page" width="584" height="454" /></p>
<p>And on closer inspection to the URL we see this:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/a8dba_block6.png" alt="how to unblock a restricted web page" width="584" height="152" /></p>
<p>The URL <a href="http://www.wtfluck.com">http://www.wtfluck.com</a> does not appear in the main URL which here is <a href="http://74.125.113.132">http://74.125.113.132</a> but if you click the links then you will be taken to the real site so be forewarned!</p>
<h3>Wayback Machine</h3>
<p>The next method to unblock a single web page from behind a restrictive firewall or filter is to use the Wayback Machine located <a title="http://www.archive.org/web/web.php" href="http://www.archive.org/web/web.php">here</a>. Archive.org keeps a working replica of sites from way back when or maybe closer. This is a good way to get content that is a few years old.</p>
<p>Check it out and lets take a look at what we can see:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/a8dba_block7.png" alt="how to unblock a restricted web page" width="424" height="131" /></p>
<p>Can you imagine a network blocking MakeUseOf? Well this is what we could do to read it regardless:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/8f014_block8.png" alt="how do you unblock web pages" width="584" height="184" /></p>
<p>Clicking on one of the links will take you &#8220;back in time&#8221; and that will bring up a version of the site from that day like so:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ecb19_block10.png" alt="how do you unblock web pages" width="584" height="646" /></p>
<p>And clicking on the links will still keep you in the archive like so:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0d2ed_block11.png" alt="how do you unblock web pages" width="584" height="486" /></p>
<p>Looking at the URL it is: <a title="http://web.archive.org/web/20080728061910/www.makeuseof.com/tag/get-your-computer-startup-under-control-with-autoruns/" href="http://web.archive.org/web/20080728061910/www.makeuseof.com/tag/get-your-computer-startup-under-control-with-autoruns/">http://web.archive.org/web/20080728061910/www.makeuseof.com/tag/get-your-computer-startup-under-control-with-autoruns/</a></p>
<p>And my final suggestion is one which is the one I <strong>always</strong> use, which is 100% effective, and is not monitored by your IT group. Use <a href="http://www.makeuseof.com/tag/make-microsoft-remote-desktop-a-portable-app/">Remote Desktop</a> to connect to your computer at home and browse away there. For even more security, open a <a href="http://www.makeuseof.com/tag/creating-your-own-personal-virtual-private-network-with-hamachi/">VPN tunnel</a> between the two machines and encrypt your traffic! You can find a post on this subject by Varun <a href="http://www.makeuseof.com/tag/how-to-set-up-an-instant-private-network-with-remobo/">by clicking here</a>. Also, <a href="http://www.makeuseof.com/tag/6-tips-on-how-to-unblock-a-webpage-from-behind-a-firewall/">check out Jack&#8217;s article</a> on some more tips to bypass a firewall.</p>
<p>How do you bypass security restrictions like this? Let us know in the comments!</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(3)<a href="http://www.makeuseof.com/tag/4-services-that-will-send-fresh-proxy-lists-to-your-email/" title="4 Sites That Will Send New Proxy Server Lists To Your Email (February 4, 2010)">4 Sites That Will Send New Proxy Server Lists To Your Email</a> </li>
<li>(10)<a href="http://www.makeuseof.com/tag/technology-explained-what-is-the-definition-of-a-firewall/" title="What Is The Definition Of A Firewall? [Technology Explained] (January 5, 2010)">What Is The Definition Of A Firewall? [Technology Explained]</a> </li>
<li>(14)<a href="http://www.makeuseof.com/tag/wordpress-exploit-scanner-helps-administrators-scan-their-database-for-malicious-files/" title="Wordpress Exploit Scanner Helps Administrators Scan Their Database For Malicious Files (November 3, 2009)">Wordpress Exploit Scanner Helps Administrators Scan Their Database For Malicious Files</a> </li>
<li>(16)<a href="http://www.makeuseof.com/tag/technology-explained-open-router-ports-their-security-implications/" title="Technology Explained: Open Router Ports &amp; Their Security Implications (November 18, 2009)">Technology Explained: Open Router Ports &#38; Their Security Implications</a> </li>
<li>(15)<a href="http://www.makeuseof.com/tag/one-network-admins-tool-to-rule-them-all/" title="One Network Admin’s Tool to Rule Them All (January 30, 2008)">One Network Admin&#8217;s Tool to Rule Them All</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/UXxdAqGVNAHSwwKIEjBthWC2oeQ/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0d2ed_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/UXxdAqGVNAHSwwKIEjBthWC2oeQ/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/445cc_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=sOzl0X8rMB0:8xo_PXqo1qY:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/445cc_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=sOzl0X8rMB0:8xo_PXqo1qY:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/445cc_Makeuseof?i=sOzl0X8rMB0:8xo_PXqo1qY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=sOzl0X8rMB0:8xo_PXqo1qY:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/445cc_Makeuseof?i=sOzl0X8rMB0:8xo_PXqo1qY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=sOzl0X8rMB0:8xo_PXqo1qY:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/445cc_Makeuseof?i=sOzl0X8rMB0:8xo_PXqo1qY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=sOzl0X8rMB0:8xo_PXqo1qY:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9fb46_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=sOzl0X8rMB0:8xo_PXqo1qY:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9fb46_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=sOzl0X8rMB0:8xo_PXqo1qY:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9fb46_Makeuseof?i=sOzl0X8rMB0:8xo_PXqo1qY:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9fb46_sOzl0X8rMB0" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5076'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5076)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Websites and Tools [March 5th]</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Sat, 06 Mar 2010 03:31:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[Check out some of the latest MakeUseOf discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to MakeUseOf Directory.
Submit Your Web App


 

&#160;

 Chatab &#8211; How would you like to browse the web while chat with [...]]]></description>
			<content:encoded><![CDATA[<p>Check out some of the latest <em>MakeUseOf</em> discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to <a href="http://feeds.feedburner.com/WebServicesDir">MakeUseOf Directory</a>.</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>Submit Your Web App</strong></a></p>
<table>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6b126_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.chatab.com"> </td>
<td>
<p>&nbsp;</p>
</td>
<td> <a href="http://www.chatab.com">Chatab</a> &#8211; How would you like to browse the web while chat with your friends at the same time without having to leave the chatroom or change webpages? Fortunately, Chatab is an all in one online messenger with a built-in browser that lets you chat and browse at the same time. Read more: <a href="http://www.makeuseof.com/dir/chatab-all-in-one-online-messenger">Chatab: All in One Online Messenger With A Built-In Browser</a>.</td>
</tr>
</table>
<p><span></span></p>
<table>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/51ec7_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.tv-ark.org.uk"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.tv-ark.org.uk">TVARK</a> &#8211; We live in a visual world, although most of us don’t know how we got there. TVARK seeks to archive the visual history of television programs and shows, making it an excellent resource for anyone with a passing interest in the history of visual rhetoric. Read more: <a href="http://www.makeuseof.com/dir/tvark-visual-history-of-television-programs">TVARK: Visual History of Television Programs &#38; Shows</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/96393_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.dentalplans.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.dentalplans.com">Dental Plans</a> &#8211; If you’re really lucky, your job covers all the dental work you need. Most people aren’t really that lucky. If you yourself aren’t that lucky, and you’re not sure dental insurance is an option financially, it’s worth checking out DentalPlans.com. Read more: <a href="http://www.makeuseof.com/dir/dentalplans-discount-dental-programs">DentalPlans: Find Discount Dental Programs In Your Area (US Only)</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/f0edf_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.goformat.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.goformat.com">Goformat</a> &#8211;  Microsoft Word and Open Office both lack one key ability &#8211; changing entire sentences or paragraphs typed in capital letters to lower case en masse. Goformat.com, on the other hand, does have this online text formatting ability. Read more: <a href="http://www.makeuseof.com/dir/goformat-online-text-formatting">Goformat: Quick Online Text Formatting Tool</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/51c25_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fcss-color-replace.orca-multimedia.de"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://css-color-replace.orca-multimedia.de">CSS Color Editor</a> &#8211; Re-designing a website can be a hassle if you have a large and messy CSS file. CSSColorEditor makes it easy for you by allowing you to change CSS colors without writing any lines of code. Simply upload a CSS file from your computer and load it into the tool. Read more: <a href="http://www.makeuseof.com/dir/csscoloreditor-change-css-color">CSSColorEditor: Easily Change CSS Colors Online</a>.</td>
</tr>
</table>
<p>&nbsp;</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>Submit Your Web App</strong></a></p>
<p>These are just half of the websites that we discovered in the last couple of days. If you want us to send you daily round-ups of all cool websites we come across, leave your email <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=WebServicesDir&amp;loc=en_US">here</a></strong>. Or follow us via <strong><a href="http://feedproxy.google.com/WebServicesDir">RSS feed</a></strong>.</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(171)<a href="http://www.makeuseof.com/tag/makeuseof-extra-27/" title="makeuseof extra #27 (February 15, 2007)">makeuseof extra #27</a> </li>
<li>(107)<a href="http://www.makeuseof.com/tag/finally-stick-to-your-resolutions-with-stickk/" title="Finally Stick To Your Resolutions With StickK (October 10, 2008)">Finally Stick To Your Resolutions With StickK</a> </li>
<li>(51)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-9/" title="Cool Websites and Tools [September 9] (September 9, 2009)">Cool Websites and Tools [September 9]</a> </li>
<li>(62)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-7/" title="Cool Websites and Tools [September 7] (September 7, 2009)">Cool Websites and Tools [September 7]</a> </li>
<li>(72)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-6/" title="Cool Websites and Tools [September 6] (September 6, 2009)">Cool Websites and Tools [September 6]</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/zjc59241jjs233SxSKAqyOsAaJ4/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/51c25_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/zjc59241jjs233SxSKAqyOsAaJ4/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0819a_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=MxvqVvQZDX0:SoMp-XbUFDM:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0819a_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=MxvqVvQZDX0:SoMp-XbUFDM:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0819a_Makeuseof?i=MxvqVvQZDX0:SoMp-XbUFDM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=MxvqVvQZDX0:SoMp-XbUFDM:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0819a_Makeuseof?i=MxvqVvQZDX0:SoMp-XbUFDM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=MxvqVvQZDX0:SoMp-XbUFDM:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0819a_Makeuseof?i=MxvqVvQZDX0:SoMp-XbUFDM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=MxvqVvQZDX0:SoMp-XbUFDM:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0819a_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=MxvqVvQZDX0:SoMp-XbUFDM:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0819a_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=MxvqVvQZDX0:SoMp-XbUFDM:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0819a_Makeuseof?i=MxvqVvQZDX0:SoMp-XbUFDM:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/33562_MxvqVvQZDX0" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5040'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5040)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 5 Toughest Tech Questions [MakeUseOf Answers]</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Sat, 06 Mar 2010 02:31:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[MakeUseOf Answers has helped solve many of your questions. Today we ask you for help!
Every now and then we are presented with a question that is so specific that we cannot help, for example because we don&#8217;t have access to the respective software or hardware.
With so many people coming together on MakeUseOf, however, chances are [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px;border: 0px none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/11944_answers.png" border="0" alt="MakeUseOf Answers" vspace="5" align="left" /><a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a> has helped solve many of your questions. Today we ask <strong>you</strong> for help!</p>
<p>Every now and then we are presented with a question that is so specific that we cannot help, for example because we don&#8217;t have access to the respective software or hardware.</p>
<p>With so many people coming together on MakeUseOf, however, chances are that some of you had to solve the exact same issue previously and are now able to help. Are you the one?</p>
<p><span></span><br />
Have a peek at our toughest questions from the past two weeks:</p>
<ol>
<li><a title="How to set up Visual C++ Express 2005 as portable app?" href="http://www.makeuseof.com/answers/setting-visual-express-2005-portable-app/">How can I set up Visual C++ Express 2005 as a portable app?</a></li>
<li><a title="How to play Shoutcast streams in Ubuntu?" href="http://www.makeuseof.com/answers/play-southcast-streams-ubuntu/">How can I play Southcast streams in Ubuntu?</a></li>
<li><a title="How to make Time Capsule work on my Mac?" href="http://www.makeuseof.com/answers/time-capsule-work-mac/">How can I get Time Capsule to work on my Mac?</a></li>
<li><a title="How to convert icalendar .ics to outlook .pst calendar?" href="http://www.makeuseof.com/answers/convert-icalendar-ics-file-pst-outlook-calendar-data-file/">Is there a way to convert icalendar .ICS file to .PST Outlook calendar data file?</a></li>
<li><a title="How to prevernt audio/video to get out of sync on a Nokia 6085?" href="http://www.makeuseof.com/answers/prevent-audiovideo-sync-nokia-6085/">How can I prevent audio/video to get out of sync on a Nokia 6085?</a></li>
</ol>
<p>You can see more questions that we couldn’t answer on the <a title="unanswered questions" href="http://www.makeuseof.com/answers/unanswered-questions/">Unanswered Questions</a> page. Please help us out!</p>
<p>Now, if you have a question yourself, go ahead and ask it on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>. No sign up or registration required.</p>
<p>Please keep in mind that sometimes questions are difficult to answer because essential details are lacking. Thus, when you submit a question, please make it a point to provide us with a good description of your problem. This should also include the basics, such as your operating system, hardware information, and eventually further details.</p>
<p>For those of you who would like to follow MakeUseOf Answers via RSS, here is the <a href="http://feeds.feedburner.com/MakeuseofAnswers">Feedburner feed</a>.</p>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><a href="http://www.facebook.com/connect/connect.php?api_key=8ac25c7e080e1d2db91fed7391552f2a&amp;id=27517455413&amp;connections=20&amp;stream=&amp;css="><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ae518_facebook-rss-footer.png" /></a></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(7)<a href="http://www.makeuseof.com/tag/5-toughest-questions-makeuseof-answers/" title="The 5 Toughest Tech Questions [MakeUseOf Answers] (February 19, 2010)">The 5 Toughest Tech Questions [MakeUseOf Answers]</a> </li>
<li>(3)<a href="http://www.makeuseof.com/tag/5-questions-makeuseof-answers/" title="The 5 Best Questions From You [MakeUseOf Answers] (February 12, 2010)">The 5 Best Questions From You [MakeUseOf Answers]</a> </li>
<li>(0)<a href="http://www.makeuseof.com/tag/5-questions-makeuseof-answers-2/" title="The 5 Best Questions From You [MakeUseOf Answers] (February 26, 2010)">The 5 Best Questions From You [MakeUseOf Answers]</a> </li>
<li>(8)<a href="http://www.makeuseof.com/tag/top-10-free-and-highly-trafficked-qa-communities/" title="Top 10: Free and Highly Trafficked Q&amp;A Communities (June 8, 2007)">Top 10: Free and Highly Trafficked Q&#38;A Communities</a> </li>
<li>(29)<a href="http://www.makeuseof.com/tag/top-10-resources-for-computer-troubleshooting-advice-remote-help/" title="Top 10 Sites For Computer Troubleshooting &amp; Tech Support (December 14, 2009)">Top 10 Sites For Computer Troubleshooting &#38; Tech Support</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/MKfJaGAWykgPnof9RyggxbsRH-k/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/ae518_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/MKfJaGAWykgPnof9RyggxbsRH-k/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cf469_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=4OIkrfSylwI:0KqIgokbDHQ:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cf469_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=4OIkrfSylwI:0KqIgokbDHQ:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cf469_Makeuseof?i=4OIkrfSylwI:0KqIgokbDHQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=4OIkrfSylwI:0KqIgokbDHQ:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cf469_Makeuseof?i=4OIkrfSylwI:0KqIgokbDHQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=4OIkrfSylwI:0KqIgokbDHQ:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cf469_Makeuseof?i=4OIkrfSylwI:0KqIgokbDHQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=4OIkrfSylwI:0KqIgokbDHQ:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cf469_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=4OIkrfSylwI:0KqIgokbDHQ:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cf469_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=4OIkrfSylwI:0KqIgokbDHQ:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/cf469_Makeuseof?i=4OIkrfSylwI:0KqIgokbDHQ:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/f5f7f_4OIkrfSylwI" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5039'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5039)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Make Your Regular Mobile Phone Smarter With SMS/MMS (Part 2)</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Sat, 06 Mar 2010 01:31:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[In the first part of this article, we presented various ways for you to stay social on your regular cell phone thanks to SMS. SMS services abound nowadays and can make your regular mobile phone as reliable as smartphones without even the need for a data plan. It all depends on whether you&#8217;re aware of [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/1bfd7_introf.png" alt="" vspace="5" align="left" />In the <a href="http://www.makeuseof.com/tag/regular-cell-phone-smarter-smsmms-data-plan-required-part-1/">first part of this article</a>, we presented various ways for you to stay social on your regular cell phone thanks to SMS. SMS services abound nowadays and can make your regular mobile phone as reliable as smartphones without even the need for a data plan. It all depends on whether you&#8217;re aware of these SMS-integrating services.</p>
<p>This second part of this series on SMS tips and tricks will focus on productivity services that you can reach by SMS. They can  simplify your usual web activities on-the-go.<strong> You must be aware that having an unlimited messaging plan will benefit you greatly if you follow our advice here because you&#8217;ll start texting a lot. If you don&#8217;t have such a messaging plan, be ready to pay your mobile company&#8217;s extra fees.</strong></p>
<p><span></span></p>
<h2><strong>Be Productive</strong></h2>
<ol>
<li><strong>View books and documents</strong>: <a href="http://www.makeuseof.com/dir/booksinmyphone-read-books-mobile/">BooksInMyPhone</a> and <a href="http://www.makeuseof.com/dir/manybooks-free-ebooks-pda-ipod-ebook-reader/">ManyBooks</a> offer lots of downloadable ebooks for Java-enabled phones (which you  probably have if you own a regular phone that you got in the last five  years.) So unless you don&#8217;t prefer these methods, you can try setting up  an account with <a href="http://www.makeuseof.com/dir/dailylit/">DailyLit</a>, a bonus  site from <a href="http://www.makeuseof.com/tag/the-best-6-sites-to-get-free-ebooks/">the  top 6 sites for free books</a>, that sends you snippets or installments  of books in the form of email or RSS on a day-to-day basis for free. To  be able to view books from DailyLit on your phone, it&#8217;s recommended to  go to <em>Settings</em> and under <em>Your DailyLit Reading</em>, click on <em>Manage  the books you&#8217;re reading.</em></li>
<p><img class="aligncenter" style="border: 1px solid black" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/1c462_dailylit.png" alt="SMS tips and tricks" width="468" height="561" /></p>
<p>Select <em>Plaintext Unicode</em> in <em>Installment Text</em>,  otherwise, you&#8217;ll see ugly HTML codes in your phone message later. Now  use Gmail filters to forward DailyLit installments to your phone&#8217;s  email. You could also email any plain text documents to your phone for  view-only so you can read them while you&#8217;re waiting in-line somewhere.</p>
<li><strong>Transcribe messages or notes</strong>: You know you can create notes  by calling <a href="http://www.makeuseof.com/dir/reqall/">Reqall</a> which will  transcribe the message  you leave and can then be accessed on the <a href="http://reqall.com">Reqall website</a>.
<p><img class="aligncenter" style="border: 1px solid black" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/fd944_v2t.png" alt="SMS tips and tricks" width="404" height="136" /></p>
<p>Alternatively, you could use <a href="https://www.google.com/voice">Google Voice</a>&#8217;s transcription  service to transcribe your notes by calling <a href="http://www.slydial.com/">SlyDial</a> (<a href="http://www.makeuseof.com/dir/slydial-connect-someones-voicemail/">this  site lets you head to someone&#8217;s voicemail directly</a>) first and then  your own Google Voice number. Since you get a transcribed copy of your  message in Gmail, you don&#8217;t even have to go to the Google Voice page if  you don&#8217;t want to. If you rather not hear SlyDial&#8217;s 10-second ads,  follow the easy guide to set up your non-GVoice number in a group to  which you&#8217;ll direct to voicemail right away <a href="http://markstout.blogspot.com/2009/08/transcribing-my-own-notes-with-google.html">here</a>.</li>
<li><strong>Create and backup your notes</strong>: If you express yourself better  by typing, try creating your notes in your phone&#8217;s built-in note  application and then emailing your finalized notes to backup sites.
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0cc7d_S.png" alt="SMS tips and tricks" width="195" height="161" /></p>
<p>Some great note repository sites include  <a href="http://www.makeuseof.com/tag/6-ways-to-add-your-information-to-evernote/">Evernote</a> (since you get a <a href="https://www.evernote.com/User.action#summary">personalized  email</a> to upload notes) or your Gmail (with the appropriate filters  to move the message to the appropriate label).</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6ee94_e.png" alt="" width="311" height="202" /></p>
<p>You can also text your notes to your own  <a href="http://www.makeuseof.com/tag/a-first-look-at-google-voice-100-invitations-to-give-away/">Google  Voice</a> number so you&#8217;ll be able to view them on the Google Voice  site later.</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6ee94_glu.png" alt="" width="441" height="201" /></p>
<p>One downside from the popular Google Voice and Evernote services is the fact that you can&#8217;t retrieve your notes. <a href="http://www.glunote.com/">GluNote</a> is a simple Twitter tool that saves your notes and retrieves them for you by DM. When you want to retrieve your notes, DM Glu with search keywords and it will send you back the notes that contain your words. Registration is virtually non-existent as you can easily get started by just following <a href="http://twitter.com/glu">@Glu</a> which will follow you back. After that, you&#8217;re ready to shoot some notes. <a href="http://twitter.com/rtm">RememberTheMilk&#8217;s Twitter bot</a> can also help you retrieve lists (Shopping, Work To-Do&#8217;s, etc) as we will explain in the next section.</li>
<li><strong>Add to your calendar/to-do list and get reminders</strong>: Google Calendar has been featured <a href="http://www.makeuseof.com/tag/organized-semester-google-calendar/">over</a> and <a href="http://www.makeuseof.com/tag/organize-your-schedule-and-share-events/">over</a> because it&#8217;s just a simple but powerful calendar app where you can  create events and get reminded by text message. Heck, you can even <a href="http://www.makeuseof.com/tag/get-notified-by-sms-when-someone-contacts-you-on-pidgin/">be  notified by GCal</a> when someone contacts you on Pidgin.
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/88d56_gcal.png" alt="" width="499" height="52" /></p>
<p>Main things to remember: Set up  notifications in the GCal website so that you get an SMS reminder 10  minutes (or 10 days) before the event. Add <a href="http://www.google.com/support/calendar/bin/answer.py?answer=37529">48368 </a>to your Contacts in your phone as GCal and text it any event or  to-do with a date and time. Any time you want to know <a href="http://www.google.com/support/calendar/bin/answer.py?hl=en&amp;answer=37228">what&#8217;s  in your agenda</a>, text GCal &#8220;next&#8221; for your next event or to-do,  &#8220;day&#8221; for today&#8217;s agenda, and &#8220;nday&#8221; for the next day&#8217;s. <img style="margin-left: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/fbf03_rtm.png" alt="" vspace="5" align="right" />Alternatively, <a href="http://www.makeuseof.com/tag/8-easy-ways-to-manage-tasks-with-remember-the-milk/">RememberTheMilk</a> lets you add tasks via SMS to <a href="http://www.rememberthemilk.com/help/answers/sending/emailinbox.rtm">your  personalized email</a> while its Twitter integration <a href="http://blog.rememberthemilk.com/2007/07/twitter-your-tasks/">lets  you direct message the service</a> to also add tasks, get reminders and  retrieve lists (e.g. shopping list). This is a great deal considering  the applications for smartphones such as the iPhone app and MilkSync for  BlackBerry/WinMo require you to have a Pro account.</li>
<li><strong><a href="http://www.makeuseof.com/dir/google-sms/">Get reference  information</a>, accurate translations, driving directions and answers  to any question</strong>: <img style="margin-right: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/fbf03_gsms.png" alt="" vspace="5" align="left" />Save <a href="http://www.google.com/mobile/products/sms.html#p=default">466453</a> (&#8220;GOOGLE&#8221;) in your Contacts as it will be your useful companion for any  web searches you&#8217;d perform on Google.com. Just be sure to remember  certain keywords for input, such as &#8220;weather,&#8221; &#8220;flight,&#8221; &#8220;movies&#8221; and  even name of hallmarks and restaurants to get your information. The same  contact can be used to translate words as <a href="http://www.makeuseof.com/tag/4-reasons-google-translate-beats-services/">we&#8217;ve   explained before why Google&#8217;s translation service rocks</a>. Just text  &#8220;<strong>translate </strong>WORD <strong>to </strong>LANGUAGE&#8221; and get your WORD translated back in a few   seconds. For some quick directions, text &#8220;<strong>directions</strong> pasadena  ca <strong>to</strong> 94043.&#8221; <img style="margin-left: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/fcc30_chacha.png" alt="" vspace="5" align="right" />You can also SMS 242-242 (<a href="http://www.chacha.com/">Chacha</a>)  to ask literally any question or 44636 (<a href="http://www.makeuseof.com/dir/4info/">4info)</a> for a service similar to Google.</li>
<li><strong>Save, backup and archive your text messages</strong> by forwarding  your texts to your Google Voice number or directly texting to your  family and friends through their GVoice-designated  numbers. Or try <a href="http://www.makeuseof.com/tag/archive-your-twitter-tweets-into-your-evernote-account-with-myen/">DM  @MyEN</a> to archive your text messages to Evernote.</li>
<li><strong>Track your expenses</strong>: There are several services from <a href="http://www.makeuseof.com/tag/15-cool-tools-for-easy-expense-tracking-and-budgeting/">our  great list of expense tracking tools</a> that are worth mentioning  here. <a href="http://www.texthog.com">Texthog</a> and Buxfer both excel as expense and budget tracking sites, where you  can see beautiful pie chart and bar reports of your expenses, which you  can input with a quick SMS to your personalized email (instructions for <a href="https://www.buxfer.com/help.php?topic=Mobile:Commands">Buxfer</a>/<a href="http://news.texthog.com/texthog-tip-correct-formatting-for-sms-and-email">Texthog</a>)  or by sending a direct message to <a href="http://twitter.com/buxfer">@Buxfer</a> or <a href="http://twitter.com/texthog">@TextHog</a> on Twitter.
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/a5c7e_texthogfinal.png" alt="" width="402" height="578" /></p>
<p>Texthog doesn&#8217;t pull transactions from  your online bank accounts so you can rest if you&#8217;re worried about  privacy, but you can export/download transactions to Quicken, MS Money,  etc. on both Texthog and Buxfer. Some differences are that Buxfer offers  the option of uploading your bank statements manually or automatically  to the site and makes it easy to add IOUs. Read more on Texthog <a href="http://www.makeuseof.com/dir/texthog/">here</a> and Buxfer <a href="http://www.makeuseof.com/tag/15-cool-tools-for-easy-expense-tracking-and-budgeting/">here</a>.  <a href="https://www.billmonk.com/">BillMonk</a> is another dedicated  expense/IOU-tracking service that you can read more about <a href="http://www.makeuseof.com/tag/billmonk-track-money/">here</a>.  If you prefer something simpler, check out <a href="http://www.makeuseof.com/dir/tweetwhatyouspend-cash-tracking/">TweetWhatYouSpend</a>.</li>
</ol>
<h2><strong>Play</strong></h2>
<ol>
<li>Shopping: See a product at the store  and think you could buy it online at a better price? Text your product&#8217;s  name to 262966 (<a href="https://payments.amazon.com/sdui/sdui/personal/textbuyit">AMAZON&#8217;s  TextBuyIt</a>), get search results with price information and buy it!</li>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/53f0b_amazon.png" alt="" width="174" height="340" /></p>
<li>Entertainment: <a href="http://www.chacha.com/">ChaCha</a> is the service we  recommended to find reference information and we second it again because  <a href="http://www.makeuseof.com/tag/chacha-search-human-guides/">it&#8217;s  truly an amazingly  helpful service</a> that you can even set to send  you weather, jokes,  etc at a specific time daily. <a href="http://thmbsavrs.chacha.com/">Here&#8217;s how you can <em>Set Up a   Fav</em> on ChaCha</a>.</li>
</ol>
<h2><strong>Miscellaneous</strong></h2>
<p>While you&#8217;re making use of your regular phone, why not also take  advantage of these bonus non-SMS tools that you can use on your regular phone?  For a free call to anywhere in the world, call <a href="http://www.free411.com/index.php">1-800-FREE411</a> and say  &#8220;Free Call&#8221; when prompted. You&#8217;ll have to wait through two short ads and  you can talk for a maximum of 5 minutes, but there are no limits on how  many times you can call. This service and Google&#8217;s <a href="http://www.google.com/goog411/">GOOG411</a> number both offer  free directory services.</p>
<p>Also, if your phone supports taking pictures and videos, that  probably means you can play media on it. You may think it&#8217;s troublesome  to mess with transferring files, but here&#8217;s something that will  facilitate your media transferring: Use a file converter that  understands your phone.</p>
<p><a href="http://onlineconverter.daniusoft.com/"><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b3d11_oc_opt_opt.png" alt="" width="400" height="470" /></a></p>
<p><a href="http://onlineconverter.daniusoft.com/"> </a></p>
<p><a href="http://onlineconverter.daniusoft.com/">Daniusoft&#8217;s Online Converter </a>is a  free tool that elegantly describes the right video and audio file  formats that your phone can take in. The user-friendly approach makes it easy for newer users to convert files to transfer to their phones, but it also features settings for more advanced users to tweak, such as frame rate, encoder, bit rate for videos and audio files, which can be as large as 100MB in size.</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/a98f0_phone.png" alt="" width="499" height="378" /></p>
<p>We weaved our way through plenty services today that we hope will generate more appreciation of the existent features in  your regular mobile. Want to recommed services that I missed? If not, which ones do you find yourself using the most? You may really enlighten fellow readers who aren&#8217;t familiar with these services.</p>
<p>Photo credit: <a rel="nofollow" href="http://www.flickr.com/photos/sarahakabmg/62343797/">Sarah Jones</a>, <a rel="nofollow" href="http://office.microsoft.com/en-US/clipart/results.aspx?qu=j0438320&amp;WT.mc_id=43">j0438320</a>, <a rel="nofollow" href="http://office.microsoft.com/en-US/clipart/results.aspx?qu=j0442135&amp;WT.mc_id=43">j0442135</a>, <a rel="nofollow" href="http://office.microsoft.com/en-US/clipart/results.aspx?qu=j0436075&amp;WT.mc_id=43">j0436075</a>, <a rel="nofollow" href="http://office.microsoft.com/en-us/clipart/results.aspx?qu=j0439835&amp;sc=20">j0439835</a>w</p>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><a href="http://www.facebook.com/connect/connect.php?api_key=8ac25c7e080e1d2db91fed7391552f2a&amp;id=27517455413&amp;connections=20&amp;stream=&amp;css="><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6e3ec_facebook-rss-footer.png" /></a></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(10)<a href="http://www.makeuseof.com/tag/use-your-voice-to-get-things-done-with-dial2do/" title="Use Your Voice To Get Things Done With Dial2Do (February 12, 2009)">Use Your Voice To Get Things Done With Dial2Do</a> </li>
<li>(33)<a href="http://www.makeuseof.com/tag/top-3-sites-to-download-windows-mobile-6-freeware/" title="Top 3 Sites To Download Windows Mobile 6 Freeware (November 25, 2009)">Top 3 Sites To Download Windows Mobile 6 Freeware</a> </li>
<li>(1)<a href="http://www.makeuseof.com/tag/top-3-secret-mobile-phone-tricks-fun-phone/" title="Top 3 Cool Secret Mobile Phone Tricks (January 29, 2010)">Top 3 Cool Secret Mobile Phone Tricks</a> </li>
<li>(15)<a href="http://www.makeuseof.com/tag/the-5-games-you-should-be-installing-on-your-android-mobile-phone/" title="The 5 Games You Should Be Installing On Your Android Mobile Phone (November 26, 2009)">The 5 Games You Should Be Installing On Your Android Mobile Phone</a> </li>
<li>(9)<a href="http://www.makeuseof.com/tag/snaptu-a-cool-free-pocket-pc-iphone-theme/" title="Snaptu- Free iPhone Theme for Pocket PC or Cellphone (August 15, 2009)">Snaptu- Free iPhone Theme for Pocket PC or Cellphone</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/8bfo-0IhT6E_jOCdaMY5EgYIm48/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6e3ec_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/8bfo-0IhT6E_jOCdaMY5EgYIm48/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6e3ec_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=C4AQxXvNsAI:q_dgb78lbd4:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6e3ec_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=C4AQxXvNsAI:q_dgb78lbd4:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b1c10_Makeuseof?i=C4AQxXvNsAI:q_dgb78lbd4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=C4AQxXvNsAI:q_dgb78lbd4:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b1c10_Makeuseof?i=C4AQxXvNsAI:q_dgb78lbd4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=C4AQxXvNsAI:q_dgb78lbd4:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b1c10_Makeuseof?i=C4AQxXvNsAI:q_dgb78lbd4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=C4AQxXvNsAI:q_dgb78lbd4:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b1c10_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=C4AQxXvNsAI:q_dgb78lbd4:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b1c10_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=C4AQxXvNsAI:q_dgb78lbd4:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b1c10_Makeuseof?i=C4AQxXvNsAI:q_dgb78lbd4:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b1c10_C4AQxXvNsAI" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5038'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5038)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Artwork Gofer: The Hunt For Free Album Cover Art [Mac]</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Thu, 04 Mar 2010 16:31:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[Sometimes I miss the good old days when I spent my spare time in the traditional music store, browsing through piles of CD cases adorned with beautiful images on their covers. Not many people do that anymore though, because the music industry has gradually shifted from the physical to the digital form.
Even though browsing through [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/a6f4a_00-Artwork-Gofer-Logo.jpg" border="0" alt="00 Artwork Gofer Logo.jpg" vspace="5" align="left" />Sometimes I miss the good old days when I spent my spare time in the traditional music store, browsing through piles of CD cases adorned with beautiful images on their covers. Not many people do that anymore though, because the music industry has gradually shifted from the physical to the digital form.</p>
<p>Even though browsing through the cover art in digital format is not as fun as touching the real thing, I think most people can cope with that. The one thing that annoys most people is the absence of cover art here and there within the collection. Among thousands of songs in your library, I&#8217;m pretty sure that some of them have the blank look in the cover flow mode.</p>
<p>You can manually search for free album cover art on the net and add them one by one to the songs. But why bother? We have <a href="http://objectstack.com/artwork-gofer">Artwork Gofer</a>.</p>
<p><span></span></p>
<h3><strong>Start Hunting!</strong></h3>
<p>Artwork Gofer is a free application which will help you search and add missing cover art in your music collection. It uses one of the biggest storage of free album cover art as its resources: Amazon Stores.</p>
<p>The first time you open Artwork Gofer, you will find the <em>Preferences</em> window. You may adjust some of the settings here to fit your needs. For example: change the store location from US to Japan if you are looking for cover art for J-Dorama songs.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/6bff2_01-Artwork-Gofer-Preferences.jpg" border="0" alt="free album cover art" width="264" height="413" /></p>
<p>You can also choose to allow a single track to have multiple artworks and replace low-resolution existing artwork with better ones.</p>
<p>Done with the preferences, you can then start hunting by clicking the File menu. There are several options that you can choose: &#8220;<em>Get Artwork for Selection (Command + O)</em>&#8220;, &#8220;<em>Search Album (Command + Option + O)</em>&#8221; and &#8220;<em>Get All Missing Artwork (Command + Shift + O)</em>&#8220;.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/f3b6f_02-Artwork-Gofer-File-Menu.jpg" border="0" alt="free album cover art" width="252" height="181" /></p>
<p>If you choose one of the options while not having iTunes opened, you will get this warning window popping up.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/1c790_03-Artwork-Gofer-Launch-iTunes.jpg" border="0" alt="free album cover art" width="420" height="153" /></p>
<p>To search cover art for individual songs, select the song in iTunes, switch to Artwork Gofer (you can use Alt + Tab for faster switching) and hit Command + O.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/56b36_04-iTunes-No-Cover-ARt-1.jpg" border="0" alt="free dvd cover art" width="550" height="367" /></p>
<p>Artwork Gofer will do its magic and show you the search results. Pick the best one from the results (if there are many) and click the &#8220;<em>Add Artwork</em>&#8221; button. That cover art will then be added to the previously selected song on iTunes.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/18d31_05-Artwork-Gofer-Cover-Art-Found-2.jpg" border="0" alt="free dvd cover art" width="550" height="451" /></p>
<p>Please note that it&#8217;s also possible to have zero results for your searches.</p>
<p>You can take another route of this cover art hunting by directly searching for an album. Just hit the &#8220;<em>Command + Option + O</em>&#8221; and write the title of the album and the artist&#8217;s name and hit the &#8220;<em>Search</em>&#8221; button.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/12adf_06-Artwork-Gofer-Search-Album.jpg" border="0" alt="free dvd cover art" width="259" height="117" /></p>
<p>The ultimate method is the &#8220;<em>Search all missing artwork&#8221; (Command + Shift + O)&#8221;</em>. The option window will open with several items that you can adjust. Hit the &#8220;search&#8221; button when you are done adjusting.</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/5f67f_07-Artwork-Gofer-Search-for-all-missing-artwork.jpg" border="0" alt="07 Artwork Gofer - Search for all missing artwork.jpg" width="369" height="305" /></p>
<p>Artwork Gofer will read your Music Library for songs with missing cover art.</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/7d2ca_07b-Artwork-Gofer-Reading-Library.jpg" border="0" alt="07b Artwork Gofer - Reading Library.jpg" width="450" height="162" /></p>
<p>Then the search result window will open. All of your songs with no cover art will be listed on the left pane along with the number of possible free album cover art found. Click the results one by one and select the best cover art for your songs.</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/aafad_07c-Artwork-Gofer-All-Album-Search.jpg" border="0" alt="07c Artwork Gofer - All Album Search.jpg" width="619" height="508" /></p>
<p>From my experiment, I found that even though this tiny app is not perfect, it did its job very well.</p>
<p>Music lovers who want to get a richer experience with iTunes should check our other related articles about: <a href="http://www.makeuseof.com/tag/enrich-your-itunes-experience-with-geektool-tunesart-mac/">TunesArt</a> and <a href="http://www.makeuseof.com/tag/free-alternatives-to-popular-commercial-mac-applications/">GimmeSomeTunes</a>.</p>
<p>And as always, if you know other free methods to quickly find and download cover art, please share using the comments below.</p>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><a href="http://www.facebook.com/connect/connect.php?api_key=8ac25c7e080e1d2db91fed7391552f2a&amp;id=27517455413&amp;connections=20&amp;stream=&amp;css="><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/acda6_facebook-rss-footer.png" /></a></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(22)<a href="http://www.makeuseof.com/tag/7-websites-search-perfect-album-cover-art/" title="7 Websites To Search For The Perfect Album Cover Art (January 23, 2010)">7 Websites To Search For The Perfect Album Cover Art</a> </li>
<li>(12)<a href="http://www.makeuseof.com/tag/can-you-tell-me-who-is-sharing-my-itunes-library-windows/" title="Who Is Connected To My iTunes Library? (Windows) (October 11, 2008)">Who Is Connected To My iTunes Library? (Windows)</a> </li>
<li>(22)<a href="http://www.makeuseof.com/tag/sync-any-mp3-player-with-itunes-easily/" title="Two Free Apps To Sync ANY MP3 Player with iTunes (May 3, 2009)">Two Free Apps To Sync ANY MP3 Player with iTunes</a> </li>
<li>(63)<a href="http://www.makeuseof.com/tag/the-big-book-of-itunes/" title="The BIG Book of iTunes [Free PDF Download] (March 10, 2009)">The BIG Book of iTunes [Free PDF Download]</a> </li>
<li>(0)<a href="http://www.makeuseof.com/tag/synchronize-mp3s-to-non-apple-devices-with-doubletwist-mac/" title="Synchronize MP3s To Non-Apple Devices with doubleTwist [Mac] (October 25, 2009)">Synchronize MP3s To Non-Apple Devices with doubleTwist [Mac]</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/j2CurHnSRWEq6eMJtbeQw1hTbb8/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/31058_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/j2CurHnSRWEq6eMJtbeQw1hTbb8/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/31058_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=FisDziA4Elk:K9L5NCrichw:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/31058_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=FisDziA4Elk:K9L5NCrichw:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/31058_Makeuseof?i=FisDziA4Elk:K9L5NCrichw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=FisDziA4Elk:K9L5NCrichw:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/31058_Makeuseof?i=FisDziA4Elk:K9L5NCrichw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=FisDziA4Elk:K9L5NCrichw:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/31058_Makeuseof?i=FisDziA4Elk:K9L5NCrichw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=FisDziA4Elk:K9L5NCrichw:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/31058_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=FisDziA4Elk:K9L5NCrichw:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/31058_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=FisDziA4Elk:K9L5NCrichw:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/a287a_Makeuseof?i=FisDziA4Elk:K9L5NCrichw:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/a287a_FisDziA4Elk" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-5000'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(5000)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Configure &amp; Use Windows 7’s XP Mode</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Thu, 04 Mar 2010 15:31:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[You are running Windows 7 and you have already looked at some of our previous posts on Windows 7 such as here and here.  Now you want to know how to install and run Windows XP Mode on your Windows 7 machine. Windows 7 XP Mode is really a virtual machine running Windows XP that lets you [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/af15e_7Head1.png" border="0" alt="7Head1" vspace="5" align="left" />You are running Windows 7 and you have already looked at some of our previous posts on Windows 7 such as <a href="http://www.makeuseof.com/tag/best-windows-7-tips-and-hacks-part-1/">here</a> and <a href="http://www.makeuseof.com/tag/guide-speeding-windows-7-machine/">here</a>.  Now you want to know how to install and run Windows XP Mode on your Windows 7 machine. Windows 7 XP Mode is really a virtual machine running Windows XP that lets you run applications that do not run on Windows 7.</p>
<p>This application can help a company with legacy applications and still upgrade to the latest and greatest iteration of Windows. If this is your situation you can follow this post to see how to get Windows 7 XP Mode and running.</p>
<p><span></span><br />
First things first you need to make sure your machine is capable or running XP Mode. You need to have a minimum of 2 Gigabytes of memory and a processor capable of handling virtualization (with AMD-V™ or Intel® VT turned on in the BIOS) and at least 15 gigabytes free to install your fully functioning XP environment.</p>
<p>If you do not know if your processor can handle it, check out this site to check your Intel processor <a href="http://www.intel.com/support/processors/tools/piu/">over here</a> and you can check your AMD processor with <a href="http://lifehacker.com/5244434/secureable-tells-you-if-your-processor-will-support-windows-7s-xp-mode">this site called Securable</a>. You can also run <a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=0ee2a17f-8538-4619-8d1c-05d27e11adb2&amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0ee2a17f-8538-4619-8d1c-05d27e11adb2&amp;displaylang=en">this application from Microsoft</a> to check your processor and BIOS settings.</p>
<p>OK now that we know that we CAN run XP mode lets see what we need to do next. We will need to download two packages from the Internet. The first download is called Windows XP mode for Windows 7. You can <a title="http://www.microsoft.com/windows/virtual-pc/download.aspx" href="http://www.microsoft.com/windows/virtual-pc/download.aspx">download that here</a> from Microsoft. This is a 500MB download.</p>
<p>The next download is called <a href="http://www.microsoft.com/windows/virtual-pc/download.aspx">Windows Virtual PC</a> that allows us to run the XP virtual machine which was downloaded above. There the instructions provided by Microsoft state clearly:</p>
<blockquote><p><em>Once you have installed Windows 7 XP Mode, click the Windows 7 Start,then select All Programs &gt; Windows Virtual PC &gt; Windows XP Mode to begin setup. For information on how to set up Windows Virtual PC and Windows XP Mode, check out &#8220;Running Windows XP Mode with Windows Virtual PC&#8221; on the <a href="http://www.microsoft.com/windows/virtual-pc/support/default.aspx">Support and Videos</a> page.</em></p>
</blockquote>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/127f3_xp2.png" border="0" alt="Windows 7 XP Mode" width="549" height="434" /></p>
<p>You will need to specify your username and password for your XP installation as you can see below:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/197e4_xp3.png" border="0" alt="Windows 7 XP Mode" width="564" height="463" /></p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/43ff0_xp1.png" border="0" alt="Windows 7 XP Mode" width="249" height="552" /></p>
<p>After you have installed both components, click on <em>Virtual Windows XP</em> for it to complete the installation.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/2e782_xp4.png" border="0" alt="windows 7 xp" width="401" height="112" /></p>
<p>You will see a bunch of dialogues as Windows 7 installs your Virtual Windows XP Environment. When it is complete you will have a real Windows XP installation in your virtual machine as you can see below:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/89a2c_xp5.png" border="0" alt="windows 7 xp" width="294" height="302" /></p>
<p>You can check your virtual machine settings by right clicking on the file, choosing <em>properties</em> and you will see the following:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/98b53_xp6.png" border="0" alt="windows 7 xp" width="584" height="401" /></p>
<p>You can change your memory allocation and other virtual machine settings here. You should have Auto Publish turned to <em>enable</em> so when you set up a application to work with your XP VM the shortcut can be published to the start menu.</p>
<p><img class="aligncenter" src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0038b_xp7.png" border="0" alt="xp7" width="514" height="414" /></p>
<p>To add items to your XP virtual machine, simply drag shortcuts into the start menu under <em>Programs</em> or install them within the XP VM. They will be auto-magically published to your Windows 7 start menu (if Auto-Publish is enabled) under the XP virtual machine shortcut so you can launch them with a single click.</p>
<p>What do you use your XP virtual machine for?  Leave us a note in the comments!</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(14)<a href="http://www.makeuseof.com/tag/vista-switcher-replace-windows-alt-tab-with-something-cooler/" title="Vista Switcher – Replace Windows’ Alt-Tab With Something Cooler (October 21, 2009)">Vista Switcher &#8211; Replace Windows&#8217; Alt-Tab With Something Cooler</a> </li>
<li>(5)<a href="http://www.makeuseof.com/tag/viglance-3-tweaks-xp-vista-windows-7/" title="ViGlance &amp; 3 Other Tweaks To Make XP Or Vista Look Like Windows 7 (February 11, 2010)">ViGlance &#38; 3 Other Tweaks To Make XP Or Vista Look Like Windows 7</a> </li>
<li>(16)<a href="http://www.makeuseof.com/tag/tweak-windows-xpvista7-to-your-taste-with-xdn-tweaker/" title="Tweak Windows XP/Vista/7 to Your Taste with XdN Tweaker (May 2, 2009)">Tweak Windows XP/Vista/7 to Your Taste with XdN Tweaker</a> </li>
<li>(21)<a href="http://www.makeuseof.com/tag/the-ultimate-%E2%80%98upgrade-to-windows-7%E2%80%B2-guide-%E2%80%93-part-2/" title="The Ultimate ‘Upgrade To Windows 7′ Guide – Part 2 (June 3, 2009)">The Ultimate ‘Upgrade To Windows 7′ Guide – Part 2</a> </li>
<li>(27)<a href="http://www.makeuseof.com/tag/the-ultimate-upgrade-to-windows-7-guide/" title="The Ultimate ‘Upgrade To Windows 7′ Guide (May 26, 2009)">The Ultimate &#8216;Upgrade To Windows 7&#8242; Guide</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/6eizG_cAUlOR0liWQSG7wsYbGC8/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0038b_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/6eizG_cAUlOR0liWQSG7wsYbGC8/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0038b_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=mgGHLYHmGRM:7uNbNjQaEHQ:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/0038b_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=mgGHLYHmGRM:7uNbNjQaEHQ:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/d22b9_Makeuseof?i=mgGHLYHmGRM:7uNbNjQaEHQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=mgGHLYHmGRM:7uNbNjQaEHQ:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/d22b9_Makeuseof?i=mgGHLYHmGRM:7uNbNjQaEHQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=mgGHLYHmGRM:7uNbNjQaEHQ:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/d22b9_Makeuseof?i=mgGHLYHmGRM:7uNbNjQaEHQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=mgGHLYHmGRM:7uNbNjQaEHQ:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/d22b9_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=mgGHLYHmGRM:7uNbNjQaEHQ:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/d22b9_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=mgGHLYHmGRM:7uNbNjQaEHQ:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/d22b9_Makeuseof?i=mgGHLYHmGRM:7uNbNjQaEHQ:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/d22b9_mgGHLYHmGRM" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-4999'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(4999)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Websites and Tools [March 3rd]</title>
		<link>http://www.blog-feast.com/technology/make-use-of</link>
		<comments>http://www.blog-feast.com/technology/make-use-of#comments</comments>
		<pubDate>Thu, 04 Mar 2010 03:31:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Make Use Of]]></category>

		<guid isPermaLink="false">http://www.blog-feast.com/technology/make-use-of</guid>
		<description><![CDATA[Check out some of the latest MakeUseOf discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to MakeUseOf Directory.
Submit Your Web App


 

&#160;

 Navilator &#8211; James Cameron’s Avatar is probably one of the biggest movies of [...]]]></description>
			<content:encoded><![CDATA[<p>Check out some of the latest <em>MakeUseOf</em> discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to <a href="http://feeds.feedburner.com/WebServicesDir">MakeUseOf Directory</a>.</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>Submit Your Web App</strong></a></p>
<table>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/e7e85_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fnavilator.com%2Findex.php"> </td>
<td>
<p>&nbsp;</p>
</td>
<td> <a href="http://navilator.com/index.php">Navilator</a> &#8211; James Cameron’s Avatar is probably one of the biggest movies of the decade. The indigenous people portrayed in the movie speak a totally different language called Navi. Unlike languages in some other sci-fi movies, Navi is an actual language created by a linguist at University of Southern California. Now you can learn it too with the help of Navilator. Read more: <a href="http://www.makeuseof.com/dir/navilator-avatar-na-vi-language-translator">Navilator: Avatar Na’vi Language Translator</a>.</td>
</tr>
</table>
<p><span></span></p>
<table>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b0d4c_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.escapemotions.com%2Fexperiments%2Fflame%2F%23top"> </td>
<td>
<p>&nbsp;</p>
</td>
<td> <a href="http://www.escapemotions.com/experiments/flame/#top">Flame</a> &#8211; Not everyone was born with a talent for painting and the arts. While others struggle to learn the basics, some people are much better as if it is a common thing to do. Fortunately, Flame from Escape Motion is a simple web app that lets you create gorgeous flame paintings within seconds. Read more: <a href="http://www.makeuseof.com/dir/flame-flame-paintings">Flame: Draw Cool Flame Paintings Online</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/b0d4c_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Ftwiangulate.com%2Fsearch"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://twiangulate.com/search">Twiangulate</a> &#8211; is a great tool to analyze the followers of any Twitter user. For example, just enter the Twitter handle of any user and choose the Biggest Follower tab. Twiangulate will then tell you who are the most influential people following that particular user. Read more: <a href="http://www.makeuseof.com/dir/twiangulate-find-commonbiggest-followers-twitter-user">Twiangulate: Find Common/Biggest Followers For Any Twitter User</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/426a0_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fblogtrottr.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://blogtrottr.com">Blogtrottr</a> &#8211; Some people use RSS feeds; some people use email updates. If you prefer email updates to RSS readers, but noticed that RSS lets you subscribe to a more specific section on the site, then Blogtrottr was designed for you. This service lets you subscribe to any RSS feed via email. Read more: <a href="http://www.makeuseof.com/dir/blogtrottr-subscribe-to-rss-feed-via-email">Blogtrottr: Subscribe to RSS Feed Via Email</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/1c8be_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.urtak.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.urtak.com">Urtak</a> &#8211; If you are fond of making poll questions and gathering survey answers from people, then Urtak might just be perfect for you. It is a free collaborative poll tool which allows you to create your own embeddable polls. Read more: <a href="http://www.makeuseof.com/dir/urtak-embeddable-polls">Urtak: Create Embeddable Polls For Free</a>.</td>
</tr>
</table>
<p>&nbsp;</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>Submit Your Web App</strong></a></p>
<p>These are just half of the websites that we discovered in the last couple of days. If you want us to send you daily round-ups of all cool websites we come across, leave your email <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=WebServicesDir&amp;loc=en_US">here</a></strong>. Or follow us via <strong><a href="http://feedproxy.google.com/WebServicesDir">RSS feed</a></strong>.</p>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><a href="http://www.facebook.com/connect/connect.php?api_key=8ac25c7e080e1d2db91fed7391552f2a&amp;id=27517455413&amp;connections=20&amp;stream=&amp;css="><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/1dcaa_facebook-rss-footer.png" /></a></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(171)<a href="http://www.makeuseof.com/tag/makeuseof-extra-27/" title="makeuseof extra #27 (February 15, 2007)">makeuseof extra #27</a> </li>
<li>(107)<a href="http://www.makeuseof.com/tag/finally-stick-to-your-resolutions-with-stickk/" title="Finally Stick To Your Resolutions With StickK (October 10, 2008)">Finally Stick To Your Resolutions With StickK</a> </li>
<li>(51)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-9/" title="Cool Websites and Tools [September 9] (September 9, 2009)">Cool Websites and Tools [September 9]</a> </li>
<li>(62)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-7/" title="Cool Websites and Tools [September 7] (September 7, 2009)">Cool Websites and Tools [September 7]</a> </li>
<li>(72)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-6/" title="Cool Websites and Tools [September 6] (September 6, 2009)">Cool Websites and Tools [September 6]</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/aNKOWf9WYSm0Bb9JMVluiWCi1uY/0/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/1dcaa_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/aNKOWf9WYSm0Bb9JMVluiWCi1uY/1/da"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9e501_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Makeuseof?a=rjSo9jef10E:m11EQjgBOAU:qj6IDK7rITs"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9e501_Makeuseof?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=rjSo9jef10E:m11EQjgBOAU:gIN9vFwOqvQ"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9e501_Makeuseof?i=rjSo9jef10E:m11EQjgBOAU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=rjSo9jef10E:m11EQjgBOAU:V_sGLiPBpWU"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9e501_Makeuseof?i=rjSo9jef10E:m11EQjgBOAU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=rjSo9jef10E:m11EQjgBOAU:F7zBnMyn0Lo"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9e501_Makeuseof?i=rjSo9jef10E:m11EQjgBOAU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=rjSo9jef10E:m11EQjgBOAU:I9og5sOYxJI"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9e501_Makeuseof?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=rjSo9jef10E:m11EQjgBOAU:yIl2AUoC8zA"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9e501_Makeuseof?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Makeuseof?a=rjSo9jef10E:m11EQjgBOAU:D7DqB2pKExk"><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9e501_Makeuseof?i=rjSo9jef10E:m11EQjgBOAU:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.blog-feast.com/wp-content/plugins/wp-o-matic/cache/9e501_rjSo9jef10E" height="1" width="1" /></p>
<p>Blog contents are provided by Make Use Of </p>
<div class='wp_likes' id='wp_likes_post-4998'>
<div style='display:none' class='text'><b>0</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(4998)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://www.blog-feast.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-feast.com/technology/make-use-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
