<?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>gHacks technology news &#187; Daniel Pataki</title>
	<atom:link href="http://www.ghacks.net/author/danielpataki/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 11:25:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Do more with your Wordpress using the function reference</title>
		<link>http://www.ghacks.net/2009/08/26/do-more-with-your-wordpress-using-the-function-reference/</link>
		<comments>http://www.ghacks.net/2009/08/26/do-more-with-your-wordpress-using-the-function-reference/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 06:19:54 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[template tags]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15746</guid>
		<description><![CDATA[If you&#8217;ve been developing themes, or taking a go at modifying your own, chances are you&#8217;ve run into the Wordpress Template Tags page. This part of the Wordpress Codex lists numerous functions you can use to customize your themes quickly and easily, even if you&#8217;re just stepping into the wonderful world of modifying your blog, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-15748" src="http://www.ghacks.net/wp-content/uploads/2009/08/wordpress.gif" alt="wordpress" width="166" height="142" />If you&#8217;ve been developing themes, or taking a go at modifying your own, chances are you&#8217;ve run into the <a href="http://codex.wordpress.org/Template_Tags">Wordpress Template Tags</a> page. This part of the Wordpress Codex lists numerous functions you can use to customize your themes quickly and easily, even if you&#8217;re just stepping into the wonderful world of modifying your blog, it&#8217;s worth a look.</p>
<p>Among other things, it allows you to add category lists, show comment ID-s, show comment authors, display next image links, add a dropdown box of categories anywhere, useful, and basically &#8220;drag and drop&#8221;. There is however another great Wordpress reference which is a bit more obscure, but also contains a huge load of functions for some other tasks you might have around your site. The <a href="http://codex.wordpress.org/Function_Reference">Wordpress Function Reference</a> section of the codex lists at least 250-300 functions for pages, authors, plugin usage, comments, users, etc, in short, encompassing the whole blog platform, as opposed to more blog post oriented functions in the Template Tags section.</p>
<p><span id="more-15746"></span></p>
<p>The page is chock full of things like  &#8220;in_category()&#8221;, which if passed a post ID and a category, will tell you if that post is in the category or not. Great if you want to display category specific content on your main page for example. It also gives you real power, with functions like &#8220;wp_insert_post()&#8221;, which you can use to insert posts &#8220;manually&#8221;, by passing an array of info to the function. Similarly you can use wp_insert_user() to add a user, with the parameters you want. Very useful for creating some custom sign up forms, custom permissions and so on.</p>
<p>What I&#8217;ve come to appreciate while using these functions is how very well Wordpress is thought out. I sort of knew this 3 years ago when I started, but when I began to use these functions I realized why. For example, wp_insert_user() will insert a new user, and will return the new user&#8217;s ID. It returns 0 if there is an error, but more importantly, if you pass an existing user&#8217;s ID, it will update that user, instead of creating a new one. There is a separate wp_update_user() function, but the action they perform is so close, it&#8217;s very handy that inserting a user is so flexible.</p>
<p>If you&#8217;re just jumping into these functions you&#8217;ll find them quite easy to use, while giving you a lot of control. If you&#8217;re an experienced PHP programmer you&#8217;ll find you&#8217;ll program less, and you&#8217;ll also appreciate the work going into Wordpress a lot more!</p>

	Tags: <a href="http://www.ghacks.net/tag/functions/" title="functions" rel="tag">functions</a>, <a href="http://www.ghacks.net/tag/template-tags/" title="template tags" rel="tag">template tags</a>, <a href="http://www.ghacks.net/tag/wordpress/" title="wordpress" rel="tag">wordpress</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/29/wordpress-template-tags-you-should-know/" title="Wordpress template tags you should know (March 29, 2009)">Wordpress template tags you should know</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/08/05/zoundry-raven-portable-blog-editor/" title="Zoundry Raven portable Blog Editor (August 5, 2008)">Zoundry Raven portable Blog Editor</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/02/02/wordpress-your-attempt-to-edit-this-post-has-failed/" title="Wordpress: Your attempt to edit this post has failed (February 2, 2009)">Wordpress: Your attempt to edit this post has failed</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/04/16/wordpress-seo-advanced-nofollow/" title="Wordpress SEO: Advanced Nofollow (April 16, 2009)">Wordpress SEO: Advanced Nofollow</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/08/11/wordpress-remote-admin-password-reset-vulnerability/" title="Wordpress Remote Admin Password Reset Vulnerability (August 11, 2009)">Wordpress Remote Admin Password Reset Vulnerability</a> (13)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/08/26/do-more-with-your-wordpress-using-the-function-reference/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Read The New York Times with Adobe Air</title>
		<link>http://www.ghacks.net/2009/05/13/read-the-new-york-times-with-adobe-air/</link>
		<comments>http://www.ghacks.net/2009/05/13/read-the-new-york-times-with-adobe-air/#comments</comments>
		<pubDate>Wed, 13 May 2009 14:02:36 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[adobe air]]></category>
		<category><![CDATA[new york times]]></category>
		<category><![CDATA[newspaper]]></category>
		<category><![CDATA[nyt]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/13/read-the-new-york-times-with-adobe-air/</guid>
		<description><![CDATA[In my limited experience with newspapers, I got the sense that they are not the ones leading the technological revolution. Today I found out that The New York Times has just released an Adobe Air application called The New York Times Reader, for reading their famous newspaper on your desktop. Since &#8220;real life&#8221;, non-tech companies [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12790" src="http://www.ghacks.net/wp-content/uploads/2009/05/times.gif" alt="times" width="51" height="52" />In my limited experience with newspapers, I got the sense that they are not the ones leading the technological revolution. Today I found out that The New York Times has just released an Adobe Air application called <a href="https://timesreader.nytimes.com/webapp/wcs/stores/servlet/AppLogin?storeId=10001&amp;catalogId=10001">The New York Times Reader</a>, for reading their famous newspaper on your desktop. Since &#8220;real life&#8221;, non-tech companies tend to favor technology at least 20 years old this initiative comes as a breath of fresh air (no pun intended), especially since it is really well implemented, it looks and feels great.</p>
<p><span id="more-12791"></span></p>
<p>Sadly the app is not completely free. I usually only look at headlines because I don&#8217;t have a huge amount of time, and for that it is perfect. You can click around in the various sections and read excerpts and titles. You can also read the main page articles and the business articles for free. You will need a subscription though to access the full content on the other pages. There is also a feed reader type &#8220;Latest News&#8221; section, which you can view freel for all the breaking news.</p>
<p>If you&#8217;re already a subscriber the whole app is completely free. If you don&#8217;t have a Times subscription yet, you can subscribe for $3.5 a week. I think this is a small price to pay for the NYT, especially if you live anywhere off the US coastline. If you enjoy reading newspapers, but you don&#8217;t have the time to grab a copy each day, I think the New York Times reader is a great application.</p>
<p>(via <a href="http://lifehacker.com/5249701/times-reader-makes-the-nyt-a-better-desktop-read">Lifehacker</a>)</p>

	Tags: <a href="http://www.ghacks.net/tag/adobe-air/" title="adobe air" rel="tag">adobe air</a>, <a href="http://www.ghacks.net/tag/new-york-times/" title="new york times" rel="tag">new york times</a>, <a href="http://www.ghacks.net/tag/newspaper/" title="newspaper" rel="tag">newspaper</a>, <a href="http://www.ghacks.net/tag/nyt/" title="nyt" rel="tag">nyt</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/12/zflick-adobe-air-flickr-photo-viewer/" title="ZFlick Adobe Air Flickr Photo Viewer (November 12, 2009)">ZFlick Adobe Air Flickr Photo Viewer</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/05/13/use-twhirl-for-adobe-air-to-twitter/" title="Use Twhirl for Adobe Air to twitter (May 13, 2008)">Use Twhirl for Adobe Air to twitter</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/04/03/to-do-list-doomi/" title="To-Do List Doomi (April 3, 2008)">To-Do List Doomi</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/01/01/time-tracking-with-klok-gets-better-and-better/" title="Time tracking with Klok gets better and better (January 1, 2009)">Time tracking with Klok gets better and better</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/07/search-and-download-from-flickr-using-zflick/" title="Search and download from Flickr using zFlick (April 7, 2009)">Search and download from Flickr using zFlick</a> (12)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/13/read-the-new-york-times-with-adobe-air/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Evernote available for BlackBerry</title>
		<link>http://www.ghacks.net/2009/05/12/evernote-available-for-blackberry/</link>
		<comments>http://www.ghacks.net/2009/05/12/evernote-available-for-blackberry/#comments</comments>
		<pubDate>Tue, 12 May 2009 16:29:06 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[note taking]]></category>
		<category><![CDATA[notes]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/12/evernote-available-for-blackberry/</guid>
		<description><![CDATA[Evernote used to be a quite little commercial app which a few people knew about. It wasn&#8217;t bad, but then someone thought that there was much more potential in a market dominated mostly by OneNote. So they went free and since then it has been booming for Evernote, their newest release will let you use [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12763" src="http://www.ghacks.net/wp-content/uploads/2009/05/evernote.png" alt="evernote" width="101" height="97" />Evernote used to be a quite little commercial app which a few people knew about. It wasn&#8217;t bad, but then someone thought that there was much more potential in a market dominated mostly by OneNote. So they went free and since then it has been booming for Evernote, their <a href="http://www.evernote.com/about/download/blackberry/">newest release</a> will let you use your favorite notebook app on your BlackBerry!</p>
<p><span id="more-12764"></span></p>
<p>I am not a huge fan of mobile computing (as in phones), but Evernote is one app I would use myself. Phones basically suck for surfing. I mean the biggest smartphones still have tiny screens, so, at least for me, mobile surfing is a long way away. However, I do frequently have the urge to jot down a few things, which I currently can&#8217;t really do. Evernote is a huge help in this, and now that you can take it with you on your BlackBerry everywhere (or you <a href="http://www.evernote.com/about/download/iphone/">iPhone</a>), taking notes are as easy as&#8230; well, taking notes should be.</p>
<p>The best part of the deal is obviously that you can sync fully with your PC version, and this is the selling point for me. I can write notes on the fly, view some in offline mode, take a pic right into the app, or create a quick voice note. This is an especially big help for me, since I usually drive places, which inhibits my texting capabilities.</p>
<p>Anyway, <a href="http://www.evernote.com/">Evernote</a> is a great note taking app weather you use it on your PC, on you Phone, online or offline, so take a look!</p>

	Tags: <a href="http://www.ghacks.net/tag/blackberry/" title="blackberry" rel="tag">blackberry</a>, <a href="http://www.ghacks.net/tag/note-taking/" title="note taking" rel="tag">note taking</a>, <a href="http://www.ghacks.net/tag/notes/" title="notes" rel="tag">notes</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/07/07/6-great-evernote-features-that-dont-get-enough-press/" title="6 Great Evernote Features That Don&#8217;t Get Enough Press (July 7, 2009)">6 Great Evernote Features That Don&#8217;t Get Enough Press</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/07/03/why-blackberry-and-windows-mobile-isn%e2%80%99t-going-anywhere/" title="Why Blackberry and Windows Mobile isnâ€™t going anywhere (July 3, 2009)">Why Blackberry and Windows Mobile isnâ€™t going anywhere</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/11/10/thunderbird-note-taking-add-on/" title="Thunderbird Note Taking Add-On (November 10, 2009)">Thunderbird Note Taking Add-On</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/09/15/software-applications-launcher-8start/" title="Software Applications Launcher 8start (September 15, 2008)">Software Applications Launcher 8start</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/03/simple-gnome-note-taking-with-tomboy/" title="Simple GNOME Note Taking with Tomboy (April 3, 2009)">Simple GNOME Note Taking with Tomboy</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/12/evernote-available-for-blackberry/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create your own file extension icons</title>
		<link>http://www.ghacks.net/2009/05/08/create-you-own-file-extension-icons/</link>
		<comments>http://www.ghacks.net/2009/05/08/create-you-own-file-extension-icons/#comments</comments>
		<pubDate>Fri, 08 May 2009 03:27:18 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[adobe air]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[icon]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12665</guid>
		<description><![CDATA[I absolutely love all kinds of icons, and not long ago I found a very quick way to make my own simple Adobe-Suite-like icons. All you need is Adobe Air, and an app called Air Icon Generator. The app is from the same people who gave us Bookmarked Generator, and works with the same style, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ghacks.net/wp-content/uploads/2009/05/icongenerator.png"><img class="alignleft size-full wp-image-12664" src="http://www.ghacks.net/wp-content/uploads/2009/05/icongenerator.png" alt="icongenerator" width="140" height="139" /></a>I absolutely love all kinds of icons, and not long ago I found a very quick way to make my own simple Adobe-Suite-like icons. All you need is Adobe Air, and an app called <a href="http://clockmaker.jp/labs/air_icon/">Air Icon Generator</a>. The app is from the same people who gave us <a href="http://www.ghacks.net/2009/03/09/check-your-sites-delicious-bookmark-counts-automatically/">Bookmarked Generator</a>, and works with the same style, although with quite a bit more efficiency. You can churn out 4 different sized icons for as many formats as you want, I created about 10 in 2 minutes.</p>
<p>All you need to do, is fire up the application, select your style (Adobe style, or Web 2.0 star style), enter your text, up to four letters, select a background color and click generate. The shading is done extremely well, no matter what color you choose your icon will look good. This really is a great way to create file extension icons, especially if you use a lot like php, css, js and so on, you can get much better stuff the the original system ones.</p>
<p><span id="more-12665"></span></p>
<p>The only thing I don&#8217;t like about the app is how it saves icons, more specifically, the naming. It generates four files with the names of &#8220;icon_16.png&#8221; for example, where &#8220;icon&#8221; is NOT the name you entered. This way, if you want to save a new icon, you need to get the old ones out of the way because they will be overwritten. I have no idea why the icons are not named after the name you enter, this would make saving and handling of these files much easier. Otherwise a great little app, give it a go!</p>

	Tags: <a href="http://www.ghacks.net/tag/adobe-air/" title="adobe air" rel="tag">adobe air</a>, <a href="http://www.ghacks.net/tag/generator/" title="generator" rel="tag">generator</a>, <a href="http://www.ghacks.net/tag/icon/" title="icon" rel="tag">icon</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/12/zflick-adobe-air-flickr-photo-viewer/" title="ZFlick Adobe Air Flickr Photo Viewer (November 12, 2009)">ZFlick Adobe Air Flickr Photo Viewer</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/05/13/use-twhirl-for-adobe-air-to-twitter/" title="Use Twhirl for Adobe Air to twitter (May 13, 2008)">Use Twhirl for Adobe Air to twitter</a> (4)</li>
	<li><a href="http://www.ghacks.net/2006/05/27/ultra-high-security-password-generator/" title="Ultra High Security Password Generator (May 27, 2006)">Ultra High Security Password Generator</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/04/03/to-do-list-doomi/" title="To-Do List Doomi (April 3, 2008)">To-Do List Doomi</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/01/01/time-tracking-with-klok-gets-better-and-better/" title="Time tracking with Klok gets better and better (January 1, 2009)">Time tracking with Klok gets better and better</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/08/create-you-own-file-extension-icons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubiquity to be built into Firefox</title>
		<link>http://www.ghacks.net/2009/05/05/ubiquity-to-be-built-into-firefox/</link>
		<comments>http://www.ghacks.net/2009/05/05/ubiquity-to-be-built-into-firefox/#comments</comments>
		<pubDate>Tue, 05 May 2009 02:14:08 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[Ubiquity]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/05/ubiquity-to-be-built-into-firefox/</guid>
		<description><![CDATA[If you&#8217;re into browsers, browser tech and mashups, chances are you know what Uniquity is. In a nutshell it&#8217;s a mashup service which lets you navigate and manipulate the web in more natural ways. It&#8217;s quite hard to describe if you haven&#8217;t seen it, think of the awesome bar in Firefox and multiply it by [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12583" src="http://www.ghacks.net/wp-content/uploads/2009/05/ubiquity.png" alt="ubiquity" width="93" height="92" />If you&#8217;re into browsers, browser tech and mashups, chances are you know what <a href="http://labs.mozilla.com/2008/08/introducing-ubiquity/">Uniquity</a> is. In a nutshell it&#8217;s a mashup service which lets you navigate and manipulate the web in more natural ways. It&#8217;s quite hard to describe if you haven&#8217;t seen it, think of the awesome bar in <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> and multiply it by 10, but apart from searching and gathering data it allows you to manage task lists, edit webpages locally and so on, tons of cool features.</p>
<p><span id="more-12584"></span></p>
<p>A version of ubiquity called <a href="http://labs.mozilla.com/2009/04/taskfox-prototype-ubiquity-in-firefox/">taskfox</a>, although slightly toned down, will be built right into Firefox (hopefully soon) and will allow for a lot of the power which Ubiquity gives you. There are some awesome things in there, like searching for and starting a youtube video from the awesomebar, <strong>in</strong> the awesomebar. The path you need to take from inputting something to finding what you want is greatly reduced as a result, especially since everything can be completely controlled by the keyboard too.</p>
<p>Take a look at the video on the site, it looks interesting, I can&#8217;t wait for it to get into the Firefox main build. Until then, if you are restless, take a look at Ubiquity, which offers much the same, and then some.</p>

	Tags: <a href="http://www.ghacks.net/tag/mashup/" title="mashup" rel="tag">mashup</a>, <a href="http://www.ghacks.net/tag/ubiquity/" title="Ubiquity" rel="tag">Ubiquity</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/05/14/mozilla-ubiquity-command-list/" title="Mozilla Ubiquity Command List (May 14, 2009)">Mozilla Ubiquity Command List</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/08/26/mozilla-labs-ubiquity-is-a-firefox-killer-application/" title="Mozilla Labs Ubiquity Is A Firefox Killer Application! (August 26, 2008)">Mozilla Labs Ubiquity Is A Firefox Killer Application!</a> (18)</li>
	<li><a href="http://www.ghacks.net/2009/09/01/goollery-collection-of-google-related-projects/" title="Goollery Collection Of Google Related projects (September 1, 2009)">Goollery Collection Of Google Related projects</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/09/29/feel-the-image-become-the-image/" title="Feel the image, become the image (September 29, 2007)">Feel the image, become the image</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/05/ubiquity-to-be-built-into-firefox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Self-publish for free with Lulu</title>
		<link>http://www.ghacks.net/2009/05/04/self-publish-for-free-with-lulu/</link>
		<comments>http://www.ghacks.net/2009/05/04/self-publish-for-free-with-lulu/#comments</comments>
		<pubDate>Mon, 04 May 2009 20:53:40 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[publish]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/04/self-publish-for-free-with-lulu/</guid>
		<description><![CDATA[If you think you&#8217;ve got what it takes, why not write a book? Oh yeah, it&#8217;s takes a load of time, a huge load of marketing effort, and even more money to get enough published to start selling. It&#8217;s also risky, since you could be throwing money out the window if people don&#8217;t buy your [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12581" src="http://www.ghacks.net/wp-content/uploads/2009/05/lulu.png" alt="lulu" width="102" height="64" />If you think you&#8217;ve got what it takes, why not write a book? Oh yeah, it&#8217;s takes a load of time, a huge load of marketing effort, and even more money to get enough published to start selling. It&#8217;s also risky, since you could be throwing money out the window if people don&#8217;t buy your book. <a href="http://lulu.com">Lulu</a> gives you extremely good tools to publish your own book, and since they offer printing on demand, you won&#8217;t have to pay a dime until someone buys your book, even then, you only pay for printing, plus a little bit. All in all it&#8217;s <strong>the</strong> solution for bloggers, aspiring writers who want to show off their skills in the &#8220;real world&#8221;.</p>
<p><span id="more-12582"></span></p>
<p>The model behind Lulu is that you write the book, upload it in a suitable format, select lots of options and then save it as a book. You can create commercial grade hardcover illustrated books, the tech behind it is really flexible, your imagination is the limit. There are no costs involved anywhere. The &#8220;catch&#8221; is that it will cost you more to print a book than it would if you would take it to a publisher to print 10,000 copies. The reason is purely economic (economies of scale), printing a few copies of a book is relatively more expensive than doing a large amount.</p>
<p>These costs are deducted from the sale of your book, so it&#8217;s all good, since you don&#8217;t actually see the cost, after one successful sale you still get money. You can set your own price for the book, Lulu will deduct its own costs, and you get the rest. They also offer lots of tutorials on creating the document for the finished version of the book, and for once they really are helpful, even for people who&#8217;ve dabbled in this before.</p>
<p>Overall, I love Lulu, I used it to create a book, and I will be sending myself a copy soon. If for nothing else, you can create a really great gift for your friends &amp; family!</p>

	Tags: <a href="http://www.ghacks.net/tag/books/" title="books" rel="tag">books</a>, <a href="http://www.ghacks.net/tag/diy/" title="diy" rel="tag">diy</a>, <a href="http://www.ghacks.net/tag/publish/" title="publish" rel="tag">publish</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/27/wikipedia-gets-books-and-gets-printed/" title="Wikipedia gets books and gets printed (February 27, 2009)">Wikipedia gets books and gets printed</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/09/26/use-worldcat-to-search-libraries-worldwide/" title="Use Worldcat to Search Libraries Worldwide (September 26, 2008)">Use Worldcat to Search Libraries Worldwide</a> (1)</li>
	<li><a href="http://www.ghacks.net/2006/12/05/unsuggester-and-some-apache-htacces-tips/" title="Unsuggester and some Apache .htaccess tips (December 5, 2006)">Unsuggester and some Apache .htaccess tips</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/03/13/how-to-find-the-best-deals-on-textbooks/" title="How to Find the Best Deals on Textbooks (March 13, 2009)">How to Find the Best Deals on Textbooks</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/12/08/hands-free-reading-for-lazy-bookworms/" title="Hands free reading for lazy bookworms (December 8, 2007)">Hands free reading for lazy bookworms</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/04/self-publish-for-free-with-lulu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Inline Google Search in Gmail</title>
		<link>http://www.ghacks.net/2009/05/02/inline-google-search-in-gmail/</link>
		<comments>http://www.ghacks.net/2009/05/02/inline-google-search-in-gmail/#comments</comments>
		<pubDate>Fri, 01 May 2009 23:02:18 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[gmail labs]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/02/inline-google-search-in-gmail/</guid>
		<description><![CDATA[It seems like I&#8217;m the resident Google Labs reporter here at gHacks, but truth be told, they have been rolling out some cool features! Their latest is the ability to search Google inline from Gmail. Enabling the feature ads a Google search bar to the left sidebar in the Gmail interface. If you search from [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12522" src="http://www.ghacks.net/wp-content/uploads/2009/05/searcvh.gif" alt="searcvh" width="257" height="97" />It seems like I&#8217;m the resident Google Labs reporter here at gHacks, but truth be told, they have been rolling out some cool features! Their latest is the ability to search Google inline from <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a>. Enabling the feature ads a Google search bar to the left sidebar in the Gmail interface. If you search from there, the results are presented in a pop up window much like the chat window, and top three results are shown (you can navigate to the others).</p>
<p><span id="more-12523"></span></p>
<p>You can use this as a jump start for searching, clicking on the result to open it in a new window, but you can easily add it to an email, by selecting &#8220;reply with result&#8221;. This will paste the whole result you selected into the email. This is a convenient, and pretty fast way of sharing search results. I find that it is fastest if I already know the answer to the question. For research I like big ol&#8217; regular Google, but if I already know what I need I can get it very easily like this.</p>
<p>Another side-feature which is worth noting is that Gmail has a hundred or so more emoticons available in a labs feature called Extra Emoji. I pretty much hate all emoticons, so you won&#8217;t see me using this, but if you like the &#8220;no-end fun&#8221; these bring to your emails you might like to try them out. They have icons for wine, hurricanes, rabbits and whatnot, stuff I mention regularly in all my emails&#8230;</p>

	Tags: <a href="http://www.ghacks.net/tag/gmail/" title="gmail" rel="tag">gmail</a>, <a href="http://www.ghacks.net/tag/gmail-labs/" title="gmail labs" rel="tag">gmail labs</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/10/play-google-voice-messages-in-gmail/" title="Play Google Voice Messages In Gmail (September 10, 2009)">Play Google Voice Messages In Gmail</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/05/20/gmail-translations-who-needs-it/" title="Gmail Translations: Who Needs It? (May 20, 2009)">Gmail Translations: Who Needs It?</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/06/06/add-functionality-to-gmail-with-gmail-labs/" title="Add functionality to Gmail with Gmail Labs (June 6, 2008)">Add functionality to Gmail with Gmail Labs</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/03/28/yahoo-to-offer-unlimited-email-storage/" title="Yahoo to offer unlimited Email Storage (March 28, 2007)">Yahoo to offer unlimited Email Storage</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/08/25/yahoo-mail-search-and-messenger-upgrades/" title="Yahoo Mail, Search And Messenger Upgrades (August 25, 2009)">Yahoo Mail, Search And Messenger Upgrades</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/02/inline-google-search-in-gmail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use your computer as a phone for free</title>
		<link>http://www.ghacks.net/2009/04/29/use-your-computer-as-a-phone-for-free/</link>
		<comments>http://www.ghacks.net/2009/04/29/use-your-computer-as-a-phone-for-free/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 21:53:45 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[headset]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12475</guid>
		<description><![CDATA[I recently discovered a really cool feature in Vista (I think it isn&#8217;t available quite so readily in XP), which allows you to transform your computer into a phone really easily. Of course you&#8217;ll need a bluetooth capable mobile, and a bluetooth capable computer (or an adapter), but once you hook the two together you [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12472" src="http://www.ghacks.net/wp-content/uploads/2009/04/bluetoothicon.gif" alt="bluetoothicon" width="128" height="128" />I recently discovered a really cool feature in Vista (I think it isn&#8217;t available quite so readily in XP), which allows you to transform your computer into a phone really easily. Of course you&#8217;ll need a bluetooth capable mobile, and a bluetooth capable computer (or an adapter), but once you hook the two together you can import, export, sync and make calls without any external software. Take a look at my screenshot tour of how to do this, basically I am making my laptop a mirror of my phone contacts and using it as a headset for the phone.</p>
<p><span id="more-12475"></span></p>
<h2>1. Enabling bluetooth</h2>
<p><img class="alignright size-full wp-image-12473" src="http://www.ghacks.net/wp-content/uploads/2009/04/bluetooth-phone.gif" alt="bluetooth-phone" width="200" height="216" />The first thing you need to do is enable bluetooth on both devices. You should find bluetooth under connection settings on your phone, or some similar place. I use a Sony w880i, I have it under Settings, Connectivity, Bluetooth. Make sure to set your phone to visible, although this should be the default setting.</p>
<p>On your computer you should have a bluetooth icon in the tray. If you do, right click it, and select &#8220;show devices&#8221;. If you don&#8217;t see the icon there, go into your control panel and double click on &#8220;Bluetooth Devices&#8221;. This should take you to the same screen. If you don&#8217;t see bluetooth settings here, you might not have bluetooth capability, or you might need to install drivers.</p>
<h2>2. Adding your device</h2>
<p>On the Bluetooth Devices screen you might already see your phone, or you will need to click on &#8220;Add Wireless Devices&#8221; in the top menu. All devices which can be discovered should be listed after a few moments of searching, if you wait a few more moments, their names, brands, or types should also be visible.</p>
<p>Double click on the device you want to add, and you will be taken through a very simple procedure to add the device to your list. You will need to enter a code into a dialog on your computer, the code for it will be shown on the phone. Once done, your device will be listed on the Bluetooth Devices page.</p>
<h2>3. Importing contacts</h2>
<p>Double click on your newly listed device and you should see a screen similar to the one below. Select &#8220;Backup Contacts and Calendar Information from your Phone&#8221;. This will quickly copy all your contacts to the contacts folder in your user directory. You can now sync your contacts between your computer and phone. If supported you might be able to do the same with calendar items, emails and notes.</p>
<p><img class="aligncenter size-full wp-image-12474" src="http://www.ghacks.net/wp-content/uploads/2009/04/bluetooth.gif" alt="bluetooth" width="526" height="285" /></p>
<h2>4. Using your computer as a phone</h2>
<p>On the same page, you can see that at the top, you can enter a phone number and call the number. Doing this will work, but it will all be initiated only on the phone. Simply click connect next to the headset option &#8220;Use this computer as a headset or speakerphone for calls on your phone&#8221;. This will make your computer act like any other wireless headset, so any calls your receive or initiate can be conducted by just talking at your computer. I have a good speaker and a built in mic, so I don&#8217;t even have to stop working to talk to people.</p>
<p>The great thing is that you can also initiate a call by right clicking a contact, going to &#8220;actions&#8221; and clicking on &#8220;call this contact&#8221;. The call will be initiated from your phone, but since your laptop is your headset, there will be no need to touch your phone, or for it to be anywhere near you.</p>

	Tags: <a href="http://www.ghacks.net/tag/bluetooth/" title="bluetooth" rel="tag">bluetooth</a>, <a href="http://www.ghacks.net/tag/headset/" title="headset" rel="tag">headset</a>, <a href="http://www.ghacks.net/tag/mobile/" title="mobile" rel="tag">mobile</a>, <a href="http://www.ghacks.net/tag/phone/" title="phone" rel="tag">phone</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/06/12/the-iphone/" title="The iPhone (June 12, 2008)">The iPhone</a> (15)</li>
	<li><a href="http://www.ghacks.net/2006/12/13/skype-30-final-has-been-released/" title="Skype 3.0 final has been released (December 13, 2006)">Skype 3.0 final has been released</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/07/24/make-free-calls-from-your-computer-with-google-voice/" title="How To Make Free Calls From Your Computer With Google Voice (July 24, 2009)">How To Make Free Calls From Your Computer With Google Voice</a> (17)</li>
	<li><a href="http://www.ghacks.net/2006/05/29/cell-phone-stolen-make-it-useless-for-the-thief/" title="Cell Phone Stolen ? Make it useless for the thief ! (May 29, 2006)">Cell Phone Stolen ? Make it useless for the thief !</a> (8)</li>
	<li><a href="http://www.ghacks.net/2007/02/20/watch-my-cell/" title="Watch My Cell (February 20, 2007)">Watch My Cell</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/29/use-your-computer-as-a-phone-for-free/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Sharing is easy with Gmail!</title>
		<link>http://www.ghacks.net/2009/04/28/sharing-is-easy-with-gmail/</link>
		<comments>http://www.ghacks.net/2009/04/28/sharing-is-easy-with-gmail/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 19:14:56 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[sharing]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12446</guid>
		<description><![CDATA[Since the introduction of the Gmail Labs settings to all users sharing in emails has been much easier, and I think somewhat overlooked. There are a few things you can do to tweak your inbox to make your life a bit easier, to enable you to share videos, images and more with your friends and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12445" src="http://www.ghacks.net/wp-content/uploads/2009/04/gmail.png" alt="gmail" width="200" height="121" />Since the introduction of the <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a> Labs settings to all users sharing in emails has been much easier, and I think somewhat overlooked. There are a few things you can do to tweak your inbox to make your life a bit easier, to enable you to share videos, images and more with your friends and co-workers. Just head on down to your Gmail account, click on settings, go to the labs tab and you&#8217;ll find a load of options, here are just a few you can use which are great.</p>
<p><span id="more-12446"></span></p>
<p><strong>Youtube Preview</strong></p>
<p>This really cool feature puts <a href="http://www.ghacks.net/2009/08/10/download-youtube-videos/">Youtube videos</a> right inside your email. If you receive any link pointing to a Youtube video the actual video&#8217;s thumbnail will be shown in the email (words for multiple links), and clicking the thumbnail will enlarge the player so you can view the video right there. I am always looking for ways to streamline my work (and my fun), and this is a real time saver.</p>
<p><strong>Image Previews</strong></p>
<p>The same system above is implemented for Picasa, and Flickr images, again, making image sharing much less painful. If you receive a wad of links you don&#8217;t need to click through each one (especially since many filenames are like dsc11902.jpg), this way you get a small preview right away.</p>
<p><strong>Show everyone where you are</strong></p>
<p>If you have a signature enabled, you can add your map location to the bottom of all your emails. Very handy if you have your own company, or if you want everyone to get to your party on time.</p>
<p>There are a number of other labs features you can try out, let us know which one you use, and which one you like most, I think in terms of usefulness the Youtube one wins my award.</p>

	Tags: <a href="http://www.ghacks.net/tag/email/" title="Email" rel="tag">Email</a>, <a href="http://www.ghacks.net/tag/gmail/" title="gmail" rel="tag">gmail</a>, <a href="http://www.ghacks.net/tag/sharing/" title="sharing" rel="tag">sharing</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/08/25/yahoo-mail-search-and-messenger-upgrades/" title="Yahoo Mail, Search And Messenger Upgrades (August 25, 2009)">Yahoo Mail, Search And Messenger Upgrades</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/12/27/why-you-should-always-log-off-gmail/" title="Why you should always log off Gmail (December 27, 2007)">Why you should always log off Gmail</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/11/04/why-im-still-using-a-software-email-client/" title="Why I&#8217;m Still Using A Software Email Client (November 4, 2008)">Why I&#8217;m Still Using A Software Email Client</a> (17)</li>
	<li><a href="http://www.ghacks.net/2009/06/30/use-gmail-to-host-and-share-photos/" title="Use Gmail To Host And Share Photos (June 30, 2009)">Use Gmail To Host And Share Photos</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/06/16/two-quick-email-tips-to-save-the-day/" title="Two Quick Email Tips To Save The Day (June 16, 2009)">Two Quick Email Tips To Save The Day</a> (19)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/28/sharing-is-easy-with-gmail/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cartoon shootout with Battlefield Heroes</title>
		<link>http://www.ghacks.net/2009/04/28/cartoon-shootout-with-battlefield-heroes/</link>
		<comments>http://www.ghacks.net/2009/04/28/cartoon-shootout-with-battlefield-heroes/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 06:40:09 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[battlefield]]></category>
		<category><![CDATA[battlefield heroes]]></category>
		<category><![CDATA[ea]]></category>
		<category><![CDATA[gaming]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/28/cartoon-shootout-with-battlefield-heroes/</guid>
		<description><![CDATA[A new chapter in the Battlefield series is coming out soon, and there are free beta keys being handed out, so go over there this instant and get one for yourself!
The new game brings a huge change, instead of going for realism, they went for a cartoon look, which looks pretty stunning I think. Many [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-12423" src="http://www.ghacks.net/wp-content/uploads/2009/04/scene3-m-300x300.jpg" alt="scene3-m" width="187" height="187" />A new chapter in the Battlefield series is coming out soon, and there are <a href="http://www.battlefield-heroes.com/">free beta keys</a> being handed out, so go over there this instant and get one for yourself!</p>
<p>The new game brings a huge change, instead of going for realism, they went for a cartoon look, which looks pretty stunning I think. Many will be deterred by this, I suspect especially hardcore gamers, but if I want realism I&#8217;ll jump down to a war zone and take a look myself. I think it&#8217;s quite unique and it makes the game more accessible to other ages and our friends of the female persuasion (I might be able to get my girlfriend to play a round with me!).</p>
<p><span id="more-12424"></span></p>
<p>I haven&#8217;t played a lot with this series, I spent an hour or two with a newer one, and from what I can tell, the experience is much the same, but obviously very different due to the environment. I&#8217;m actually still waiting for my beta key, but to me the screenshots radiate much more of a fun factor than I&#8217;ve seen in games for a while.</p>
<p>Let us know if you&#8217;ve tried the game, I&#8217;ll add a comment as an update as soon as I give it a go, I can&#8217;t wait to shoot every one&#8217;s cartoon bum out of the sky, woohoo!</p>

	Tags: <a href="http://www.ghacks.net/tag/battlefield/" title="battlefield" rel="tag">battlefield</a>, <a href="http://www.ghacks.net/tag/battlefield-heroes/" title="battlefield heroes" rel="tag">battlefield heroes</a>, <a href="http://www.ghacks.net/tag/ea/" title="ea" rel="tag">ea</a>, <a href="http://www.ghacks.net/tag/gaming/" title="gaming" rel="tag">gaming</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/11/25/remove-the-advertising-in-games-like-battlefield-2142/" title="Remove the Advertising in Games like Battlefield 2142 (November 25, 2006)">Remove the Advertising in Games like Battlefield 2142</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/06/07/xbox-project-natal/" title="Xbox Project Natal (June 7, 2009)">Xbox Project Natal</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/04/21/switch-off-apps-for-gaming-mode-with-gamebooster/" title="Switch off apps for gaming mode with Gamebooster (April 21, 2009)">Switch off apps for gaming mode with Gamebooster</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/03/07/run-an-airline-train-road-and-shipping-firm-with-openttd/" title="Run an airline, train, road and shipping firm with OpenTTD (March 7, 2009)">Run an airline, train, road and shipping firm with OpenTTD</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/03/02/ocz-actuator-next-gen-video-gaming/" title="OCZ Actuator Next Gen Video Gaming (March 2, 2008)">OCZ Actuator Next Gen Video Gaming</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/28/cartoon-shootout-with-battlefield-heroes/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Visualize your hard drive consumption with SpaceSniffer</title>
		<link>http://www.ghacks.net/2009/04/27/visualize-your-hard-drive-consumption-with-spacesniffer/</link>
		<comments>http://www.ghacks.net/2009/04/27/visualize-your-hard-drive-consumption-with-spacesniffer/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 00:20:08 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[hard-drive]]></category>
		<category><![CDATA[system tools]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12389</guid>
		<description><![CDATA[No matter what hard drive size you have, if you spend a lot of time on your computer, you will fill it up eventually. A lot of times I have 1Gb stuff which I don&#8217;t need and can safely throw out, I just never bump into these because they are outside my normal file browsing [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12388" src="http://www.ghacks.net/wp-content/uploads/2009/04/spacesniffer.png" alt="spacesniffer" width="178" height="150" />No matter what hard drive size you have, if you spend a lot of time on your computer, you will fill it up eventually. A lot of times I have 1Gb stuff which I don&#8217;t need and can safely throw out, I just never bump into these because they are outside my normal file browsing habits. If you want to save some space by deleting the larges unwanted files, or just want a cool way to visualize your hard drive, give <a href="http://www.uderzo.it/main_products/space_sniffer/index.html">SpaceSniffer</a> a go.</p>
<p><span id="more-12389"></span></p>
<p>With no install needed, just run it, select a drive and watch as the table structure fills up with folders and sub-folders. You can double click on any folder to bring it into main view (cool animation here), so you can see more detail. If you&#8217;ve zoomed in on a folder you can click the name again to zoom back out, or you can use the forward and back buttons like on a browser.</p>
<p>There are options to show unknown space, free space, but apart from that this app is a simple hard drive space analyzer, but a really very well made one. It is beautiful, it is elegant and it gives you the information you need in a form very easily digested by the human mind. I simply love this app, if you can and you like it too, please consider donating to them. (via <a href="http://www.freewaregenius.com/2009/04/24/spacesniffer-explore-a-treemap-representation-of-your-file-and-folder-sizes/">Freeware Genius</a>)</p>

	Tags: <a href="http://www.ghacks.net/tag/hard-drive/" title="hard-drive" rel="tag">hard-drive</a>, <a href="http://www.ghacks.net/tag/system-tools/" title="system tools" rel="tag">system tools</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/07/13/what-would-you-do-with-a-15-terabyte-hard-drive/" title="What Would You do with a 1.5 Terabyte Hard Drive? (July 13, 2008)">What Would You do with a 1.5 Terabyte Hard Drive?</a> (29)</li>
	<li><a href="http://www.ghacks.net/2008/08/21/visualize-hard-drive-space/" title="Visualize Hard Drive Space (August 21, 2008)">Visualize Hard Drive Space</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/05/23/ultimate-defrag/" title="Ultimate Defrag (May 23, 2008)">Ultimate Defrag</a> (16)</li>
	<li><a href="http://www.ghacks.net/2008/07/29/vista-system-partitioning/" title="System Partitioning with Vista (July 29, 2008)">System Partitioning with Vista</a> (10)</li>
	<li><a href="http://www.ghacks.net/2008/04/12/silencing-your-hard-drives/" title="Silencing your hard drives (April 12, 2008)">Silencing your hard drives</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/27/visualize-your-hard-drive-consumption-with-spacesniffer/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fon lets you download without your computer</title>
		<link>http://www.ghacks.net/2009/04/24/fon-lets-you-download-without-your-computer/</link>
		<comments>http://www.ghacks.net/2009/04/24/fon-lets-you-download-without-your-computer/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 15:14:29 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[fon]]></category>
		<category><![CDATA[fonera]]></category>
		<category><![CDATA[router]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/24/fon-lets-you-download-without-your-computer/</guid>
		<description><![CDATA[I don&#8217;t know if you guys know about the Fon router, I have personally used one for ages. It is a community based project, the thinking is that a lot of people buy fon routers, and with the router you get a passcode. If you&#8217;re anywhere in the world and you find a Fon router, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12325" src="http://www.ghacks.net/wp-content/uploads/2009/04/fon.gif" alt="fon" width="170" height="117" />I don&#8217;t know if you guys know about the <a href="http://www.fon.com/en/">Fon router</a>, I have personally used one for ages. It is a community based project, the thinking is that a lot of people buy fon routers, and with the router you get a passcode. If you&#8217;re anywhere in the world and you find a Fon router, you can use that password to use it for free. People without Fon passwords can also use your Fon router for a small fee, so you can also earn from buying one.</p>
<p>Now, the Fon 2.0 router is out, which allows you to download to a pendrive, external hard drive, upload to Youtube, all that fun stuff, but without having your PC or laptop turned on! Just set up a Youtube upload, add some torrent files, switch off your laptop, and the download/upload goes on. There are tons of cool apps built into the firmware, as the <a href="http://www.youtube.com/watch?v=m2zx0uOfb20">screencast about it</a> says, it&#8217;s like a mini linux in there.</p>
<p><span id="more-12326"></span></p>
<p>The price is EUR 50, which is roughly $65 now. Compared to the price of the old Fon this is pricey, but not compared to other top of the line routers which can&#8217;t do half as much. I purchased three routers pooling with my friends for about $10 each, and I have been using it since, it really is a great pieve of hardware, so I can&#8217;t wait to get my hands on the new one. Even if you don&#8217;t need these functions check it out, you will be helping out a great cause. I don&#8217;t travel as much, but one of my friends spends all his time doing so and he finds Fon routers everywhere in the World!</p>

	Tags: <a href="http://www.ghacks.net/tag/fon/" title="fon" rel="tag">fon</a>, <a href="http://www.ghacks.net/tag/fonera/" title="fonera" rel="tag">fonera</a>, <a href="http://www.ghacks.net/tag/router/" title="router" rel="tag">router</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/12/17/wheres-that-darn-router-password/" title="Where&#8217;s that darn router password? (December 17, 2007)">Where&#8217;s that darn router password?</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/04/18/utorrent-port-checker-online/" title="uTorrent Port Checker Online (April 18, 2009)">uTorrent Port Checker Online</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/10/24/upnp-port-mapper/" title="UPNP Port Mapper (October 24, 2008)">UPNP Port Mapper</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/01/28/simple-port-forwarding/" title="Simple Port Forwarding (January 28, 2009)">Simple Port Forwarding</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/02/24/share-your-wifi-and-earn-with-fon/" title="Share your WiFi and earn with Fon (February 24, 2009)">Share your WiFi and earn with Fon</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/24/fon-lets-you-download-without-your-computer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Add tasks to RTM from Launchy</title>
		<link>http://www.ghacks.net/2009/04/24/add-tasks-to-rtm-from-launchy/</link>
		<comments>http://www.ghacks.net/2009/04/24/add-tasks-to-rtm-from-launchy/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 09:40:21 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[remember the milk]]></category>
		<category><![CDATA[task management]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/24/add-tasks-to-rtm-from-launchy/</guid>
		<description><![CDATA[If you&#8217;re a Remember The Milk user (the best online list app) you probably spend some time entering tasks. If you&#8217;re like me, and don&#8217;t like having tabs for apps open all the time (I can just about live with Gmail), then you also need to go to the website each time. To make things [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12314" src="http://www.ghacks.net/wp-content/uploads/2009/04/rememberthemilk.gif" alt="rememberthemilk" width="208" height="92" />If you&#8217;re a Remember The Milk user (the best online list app) you probably spend some time entering tasks. If you&#8217;re like me, and don&#8217;t like having tabs for apps open all the time (I can just about live with <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a>), then you also need to go to the website each time. To make things easier though, you can use <a href="http://www.ghacks.net/2007/12/19/launchy-20/">Launchy</a>, an excellent application launcher, and great script from <a href="http://lifehacker.com/5197116/remember-the-milk-for-launchy-adds-tasks-in-a-flash">Lifehacker</a> together for some lightning fast list creation.</p>
<p><span id="more-12315"></span></p>
<p>The first thing to do is to install Launchy. This will give you awesome application launching skills. Just press alt + space and start typing the app you want to launchy. It remembers stuff, so I can now launch <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> by just pressing &#8220;f&#8221; and then enter. You will then have to install the script from Lifehacker which is a bit more complicated than extracting an archive, but nothing you can&#8217;t handle, take a look at the site for the instructions.</p>
<p>Once done, you can add items to a list easily, by just typing &#8220;rtm&#8221;, pressing tab, entering the task name and then enter. This will add that task to your inbox. If you want a bit more control you can add a due date, the list name, priority, tags and notes, in that order, by pressing tab after each one, and enter at the end.</p>
<p>This method is  so great, because it is really quick, and it also enables you to add tasks without having to go to the site. You can just add tasks all day, and maybe take 15 minutes at the end of each day to manage your tasks.</p>

	Tags: <a href="http://www.ghacks.net/tag/lists/" title="lists" rel="tag">lists</a>, <a href="http://www.ghacks.net/tag/remember-the-milk/" title="remember the milk" rel="tag">remember the milk</a>, <a href="http://www.ghacks.net/tag/task-management/" title="task management" rel="tag">task management</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/06/18/organize-yourself-with-tobu/" title="Organize yourself with Tobu (June 18, 2008)">Organize yourself with Tobu</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/01/12/listas-lists-from-microsoft/" title="Listas &#8211; Lists from Microsoft (January 12, 2008)">Listas &#8211; Lists from Microsoft</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/08/22/gmail-tasks-can-now-be-emailed/" title="Gmail Tasks Can Now Be Emailed (August 22, 2009)">Gmail Tasks Can Now Be Emailed</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/24/add-tasks-to-rtm-from-launchy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Do you use a system sidebar?</title>
		<link>http://www.ghacks.net/2009/04/22/do-you-use-a-system-sidebar/</link>
		<comments>http://www.ghacks.net/2009/04/22/do-you-use-a-system-sidebar/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 21:58:42 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[ask the readers]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google sidebar]]></category>
		<category><![CDATA[sidebar]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/22/do-you-use-a-system-sidebar/</guid>
		<description><![CDATA[With the well developed Google Desktop Sidebar and the Vista Sidebar, putting all your gadgets and websites on a sidebar always visible might be quite tempting and can provide loads of information like email, RSS, weather, notes etc., but do you actually use these features? Does the usefulness outweigh the memory usage?
Personally I like sidebars, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12282" src="http://www.ghacks.net/wp-content/uploads/2009/04/googlebar.gif" alt="googlebar" width="140" height="235" />With the well developed Google Desktop Sidebar and the Vista Sidebar, putting all your gadgets and websites on a sidebar always visible might be quite tempting and can provide loads of information like email, RSS, weather, notes etc., but do you actually use these features? Does the usefulness outweigh the memory usage?</p>
<p>Personally I like sidebars, but for some reason I don&#8217;t use them. I have a pretty wide screen and a system which has plenty of memory to eat, but to me the cleaner my screen, the less stuff I have to focus on, the better. I never really liked the Vista sidebar, it&#8217;s just too &#8220;big&#8221;, it looks a bit clunky sometimes, but there are some good widgets you can put in there, so it&#8217;s not all bad.</p>
<p>I pretty much like Google&#8217;s sidebar, and it also has some good widgets, the best feature is probably the integrated hard drive and email search, which really can be a savior sometimes. It also seems that there are better widgets for the Google Sidebar, but that might be just my perception. In my case I don&#8217;t really find the widgets so useful that I would need to see them permanently on a sidebar, what&#8217;s your take on all this, do you perhaps use another sidebar?</p>
<p><span id="more-12283"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/google/" title="Google" rel="tag">Google</a>, <a href="http://www.ghacks.net/tag/google-sidebar/" title="google sidebar" rel="tag">google sidebar</a>, <a href="http://www.ghacks.net/tag/sidebar/" title="sidebar" rel="tag">sidebar</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/20/youtube-videos-get-automatic-captions-1080p-videos-roll-out/" title="Youtube Videos Get Automatic Captions. 1080p Videos Roll-Out (November 20, 2009)">Youtube Videos Get Automatic Captions. 1080p Videos Roll-Out</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/08/21/youtube-insight-find-out-who-is-embedding-your-youtube-videos/" title="Youtube Insight: Find Out Who Is Embedding Your Youtube Videos (August 21, 2009)">Youtube Insight: Find Out Who Is Embedding Your Youtube Videos</a> (0)</li>
	<li><a href="http://www.ghacks.net/2005/10/14/yahoo-vs-google-vs-msn-search-commands-compared/" title="Yahoo vs. Google vs. Msn, Search commands compared (October 14, 2005)">Yahoo vs. Google vs. Msn, Search commands compared</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/10/05/xoopit-to-become-yahoo-mail-exclusive/" title="Xoopit To Become Yahoo Mail Exclusive (October 5, 2009)">Xoopit To Become Yahoo Mail Exclusive</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/06/15/x-ways-to-manipulate-websites-in-firefox/" title="x Ways To Manipulate Websites In Firefox (June 15, 2009)">x Ways To Manipulate Websites In Firefox</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/22/do-you-use-a-system-sidebar/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Using your own Wiki for coding</title>
		<link>http://www.ghacks.net/2009/04/22/using-your-own-wiki-for-coding/</link>
		<comments>http://www.ghacks.net/2009/04/22/using-your-own-wiki-for-coding/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 14:47:41 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[tiddlywiki]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/22/using-your-own-wiki-for-coding/</guid>
		<description><![CDATA[The biggest time saver you can implement in your coding practices is some sort of searchable database of all the data you need when you&#8217;re working on a project. I mean code snippets, images, data sets, tips &#38; tricks, whatever you use a lot and can be copy pasted. A great way to manage these [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12267" src="http://www.ghacks.net/wp-content/uploads/2009/04/tiddlyspot.gif" alt="tiddlyspot" width="199" height="57" />The biggest time saver you can implement in your coding practices is some sort of searchable database of all the data you need when you&#8217;re working on a project. I mean code snippets, images, data sets, tips &amp; tricks, whatever you use a lot and can be copy pasted. A great way to manage these is a personal Wiki.</p>
<p><a href="http://www.tiddlywiki.com/">TiddlyWiki</a> is one such wiki, which you can download as a single file to your hard drive, or your can host it online using <a href="http://tiddlyspot.com/">TiddlySpot</a>. I recommend you visit the site and download a copy for yourself, there are easy to follow instructions, and no real set up is required.</p>
<p><span id="more-12268"></span></p>
<p>To organize your notes you can use tags, and the whole database is easily searchable from the search box at the top. For example, I usually think up my designs as a single HTML page, without any PHP, just laying out the design. Depending on the general structure of the design I have a few templates at the ready, all in my trusty wiki. To get the one I use for a &#8220;content on the left, sidebar on the right&#8221; layout I just type &#8220;template sidebar right&#8221;, and the first note will be the one containing this layout, I can just copy paste the code into my file.</p>
<p>There are a number of other uses you can put your Wiki to of course. If you&#8217;re learning to code, you can simply copy the snippets you find and you want to study, and tag them by language, for future reference. You can also store some helpful links, ideas, project plans and so on.</p>
<p>You can use this is a regular notebook too, the real use of a Wiki is that it is very unobtrusive. You can use the same file for your personal notes, your diary and your coding organizer. Since you can use tags and search, you can display only the tiddlers (or notes) you want, so your coding stuff doesn&#8217;t have to get in the way of your other notes.</p>
<p>The see the power of a Wiki you really have to take a look yourself, so head on over to TiddlyWiki and grab yourself a copy. Wikis are not everyone&#8217;s cup of tea though, so you may not like it as much, but it is a bit different than most systems so give it a chance, try forcing yourself to use if for a week or two, you&#8217;ll definitely see the benefits.</p>
<p><strong>If you&#8217;d like to get some more tips and tricks for web development and specific languages like HTML, CSS, PHP and the rest, head on down to <a title="web development, php, html" href="http://scriptastique.com">Scriptastique</a> for yumm coding treats!</strong></p>

	Tags: <a href="http://www.ghacks.net/tag/snippets/" title="snippets" rel="tag">snippets</a>, <a href="http://www.ghacks.net/tag/tiddlywiki/" title="tiddlywiki" rel="tag">tiddlywiki</a>, <a href="http://www.ghacks.net/tag/wiki/" title="wiki" rel="tag">wiki</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/27/wikipedia-gets-books-and-gets-printed/" title="Wikipedia gets books and gets printed (February 27, 2009)">Wikipedia gets books and gets printed</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/08/05/make-wikipedia-more-usable-with-vector/" title="Make Wikipedia more usable with Vector (August 5, 2009)">Make Wikipedia more usable with Vector</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/07/01/google-sites-a-different-type-of-wiki/" title="Google sites &#8211; a different type of Wiki (July 1, 2008)">Google sites &#8211; a different type of Wiki</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/10/24/get-free-images-video-and-sound-from-wikimedia-commons/" title="Get Free Images, Video and Sound from Wikimedia Commons (October 24, 2008)">Get Free Images, Video and Sound from Wikimedia Commons</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/03/23/create-interactive-classroom-pages-with-courseforum/" title="Create Interactive Classroom Pages with CourseForum (March 23, 2009)">Create Interactive Classroom Pages with CourseForum</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/22/using-your-own-wiki-for-coding/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Switch off apps for gaming mode with Gamebooster</title>
		<link>http://www.ghacks.net/2009/04/21/switch-off-apps-for-gaming-mode-with-gamebooster/</link>
		<comments>http://www.ghacks.net/2009/04/21/switch-off-apps-for-gaming-mode-with-gamebooster/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 07:03:24 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[gamebooster]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/21/switch-off-apps-for-gaming-mode-with-gamebooster/</guid>
		<description><![CDATA[Recently I have gotten back into gaming, which means a huge 2 hours a week about, but nevertheless, it is a good way to blow off some steam. If you want to run some very modern games though you might need to squeeze every last bit of memory and CPU power out of your laptop [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-12218" src="http://www.ghacks.net/wp-content/uploads/2009/04/gamebooster-300x213.gif" alt="gamebooster" width="300" height="213" />Recently I have gotten back into gaming, which means a huge 2 hours a week about, but nevertheless, it is a good way to blow off some steam. If you want to run some very modern games though you might need to squeeze every last bit of memory and CPU power out of your laptop or desktop PC, and <a href="http://www.iobit.com/gamebooster.html">Gamebooster</a> is a big help in that.</p>
<p>Essentially it does what you could do manually, it finds the services and apps running that you don&#8217;t really need, and switches them all off with the push of a button. It switched off Launchy for me, the Aero theme for Vista, which apparently eats away at the CPU, some tablet services I didn&#8217;t even know I had running, etc., so it does quite a good job.</p>
<p>I actually didn&#8217;t notice a huge increase in performance, but the difference is there. I tested on GTA 4 which runs away on my system, but not very well. On minimum spec I can play pretty well, with only a few effects added. In very intense areas I noticed some performace issues were less prominent, like less lag and jittery camera, so it definitely did help. The best thing about this app is that it is so easy to use, no need to go through 20 services and shut them down, but even better, they can be restarted with the same one click action. This is also great for trips to prolong battery life!</p>
<p><span id="more-12219"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/gamebooster/" title="gamebooster" rel="tag">gamebooster</a>, <a href="http://www.ghacks.net/tag/gaming/" title="gaming" rel="tag">gaming</a>, <a href="http://www.ghacks.net/tag/performance/" title="performance" rel="tag">performance</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/07/xbox-project-natal/" title="Xbox Project Natal (June 7, 2009)">Xbox Project Natal</a> (6)</li>
	<li><a href="http://www.ghacks.net/2007/07/28/why-2-is-better-than-1/" title="Why 2 is better than 1 (July 28, 2007)">Why 2 is better than 1</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/10/17/test-your-browsers-javascript-performance/" title="Test Your Browser&#8217;s JavaScript Performance (October 17, 2008)">Test Your Browser&#8217;s JavaScript Performance</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/06/10/system-performance/" title="System Performance (June 10, 2008)">System Performance</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/06/17/speed-up-vista/" title="Speed up Vista (June 17, 2008)">Speed up Vista</a> (13)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/21/switch-off-apps-for-gaming-mode-with-gamebooster/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Taking screenshots has never been so fun!</title>
		<link>http://www.ghacks.net/2009/04/20/taking-screenshots-has-never-been-so-fun/</link>
		<comments>http://www.ghacks.net/2009/04/20/taking-screenshots-has-never-been-so-fun/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 09:30:18 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[prtscr]]></category>
		<category><![CDATA[screen capture]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[snip]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/20/taking-screenshots-has-never-been-so-fun/</guid>
		<description><![CDATA[I think I just found the best screen capture software ever, or at least the best looking one. The aptly named PrtScr is originally intended to fill the void created by the Windows snipping tool which can only be found on tablet Vistas and some other select distributions. It has the same basic functionality, with [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12188" src="http://www.ghacks.net/wp-content/uploads/2009/04/prtscr.gif" alt="prtscr" width="212" height="154" />I think I just <a href="http://feeds.gawker.com/~r/lifehacker/full/~3/4X5KbzIco_8/prtscr-brings-snipping-tool-to-all-versions-of-windows">found</a> the best screen capture software ever, or at least the best looking one. The aptly named <a href="http://www.fiastarta.com/PrtScr/">PrtScr</a> is originally intended to fill the void created by the Windows snipping tool which can only be found on tablet Vistas and some other select distributions. It has the same basic functionality, with some added extras and much better looks.</p>
<p>You can invoke the tool by pressing the print screen button (you can bind it to anywhere else), and the tool will pop up. It has a great mechanism because you can draw on your desktop before you create the &#8220;snip&#8221;, so depending on what you draw you might decide you need a bigger area. You can then use a box or a freehand tool to select the area you need and snip it.</p>
<p><span id="more-12189"></span></p>
<p>Once that is done the snipped image will sort of hover on your desktop in a very cool way, you really have to see it to appreciate it, take a look on the website above or at <a href="http://www.youtube.com/watch?v=C4z3BUJbGUU&amp;feature=player_embedded">youtube</a> directly. You can save it to the clipboard, edit it with Paint or your can save it to your hard drive. My only problem was that the edit option opens up Paint and apparently there is nothing you can do about this. Since you can send to clipboard it&#8217;s not that bad, you can open it up in Gimp or Photoshop by simply pasting, but since you can choose saving format, timer option and so much, to me the inclusion of this feature would have been obvious. Great looking app though, give it a go!</p>

	Tags: <a href="http://www.ghacks.net/tag/prtscr/" title="prtscr" rel="tag">prtscr</a>, <a href="http://www.ghacks.net/tag/screen-capture/" title="screen capture" rel="tag">screen capture</a>, <a href="http://www.ghacks.net/tag/screenshot/" title="screenshot" rel="tag">screenshot</a>, <a href="http://www.ghacks.net/tag/snip/" title="snip" rel="tag">snip</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/07/18/windows-screen-shots-software-screenie/" title="Windows Screen Shots Software Screenie (July 18, 2009)">Windows Screen Shots Software Screenie</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/04/07/screen-capture-tool-greenshot/" title="Screen Capture Tool Greenshot (April 7, 2009)">Screen Capture Tool Greenshot</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/10/12/screen-capture-software/" title="Screen Capture Software Screenshot Captor (October 12, 2008)">Screen Capture Software Screenshot Captor</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/09/20/quickly-capture-screens-and-share-them-on-os-x-with-skitch/" title="Quickly capture screens and share them on OS X with Skitch (September 20, 2009)">Quickly capture screens and share them on OS X with Skitch</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/04/20/automatic-website-screen-capture/" title="Automatic Website Screen Capture (April 20, 2009)">Automatic Website Screen Capture</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/20/taking-screenshots-has-never-been-so-fun/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Quote, research and take notes with Quotepad</title>
		<link>http://www.ghacks.net/2009/04/19/quote-research-and-take-notes-with-quotepad/</link>
		<comments>http://www.ghacks.net/2009/04/19/quote-research-and-take-notes-with-quotepad/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 09:33:17 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[copy paste]]></category>
		<category><![CDATA[notepad]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[quotepad]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/19/quote-research-and-take-notes-with-quotepad/</guid>
		<description><![CDATA[I sometimes run into an application that&#8217;s not hugely new, but it has such great handling, ease of use and functionality that I start to really like it. One such discovery today is Quotepad. Officially it&#8217;s positioned more like a copy-paste clipboard tool, but it is much more, offering checklists, reminders, timestamping and more.
You can [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12159" src="http://www.ghacks.net/wp-content/uploads/2009/04/quotepad.gif" alt="quotepad" width="250" height="225" />I sometimes run into an application that&#8217;s not hugely new, but it has such great handling, ease of use and functionality that I start to really like it. One such discovery today is <a href="http://quotepad.info/">Quotepad</a>. Officially it&#8217;s positioned more like a copy-paste clipboard tool, but it is much more, offering checklists, reminders, timestamping and more.</p>
<p>You can use a simple key to add a quick note, just select any text and press ctr+shift+q. Your note will be instantly created, which you can then edit, add a subject to and save. This is not so new, a lot of apps offer this functionality, but the little things that Quotepad offers add a lot of extra to the program.</p>
<p><span id="more-12160"></span></p>
<p>Just as an example, clicking the taskbar icon brings up a note list. Clicking it again (or double clicking) brings up the interface to add a new note. Simple, but very effective and efficient use interface. You can mark notes, have the whole window stay on top, change color schemes, change reading order, use filters to narrow your notes, Quotepad can become a great research tool, not just a copy-paste companion!</p>
<p>I find it very useful when I&#8217;m thinking about post ideas. Even with tools like Google Reader, it is sometimes hard to keep track of what I want to write about, and a quick copy paste into Quotepad is a big help, firstly because I can paste the intro paragraph from a blog post, or a description from the app main page. Quotepad shows the source of the text, so I can save the url copy-pasting time. I can then narrow by keyword, making all my blogging work much easier and faster.</p>

	Tags: <a href="http://www.ghacks.net/tag/copy-paste/" title="copy paste" rel="tag">copy paste</a>, <a href="http://www.ghacks.net/tag/notepad/" title="notepad" rel="tag">notepad</a>, <a href="http://www.ghacks.net/tag/notes/" title="notes" rel="tag">notes</a>, <a href="http://www.ghacks.net/tag/quotepad/" title="quotepad" rel="tag">quotepad</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/09/07/use-notepad-without-sessions/" title="Use Notepad++ Without Sessions (September 7, 2008)">Use Notepad++ Without Sessions</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/09/text-xml-editor-intype/" title="Text XML Editor Intype (April 9, 2009)">Text XML Editor Intype</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/03/simple-gnome-note-taking-with-tomboy/" title="Simple GNOME Note Taking with Tomboy (April 3, 2009)">Simple GNOME Note Taking with Tomboy</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/02/20/queue-file-operations-with-piky-basket/" title="Queue File Operations with Piky Basket (February 20, 2008)">Queue File Operations with Piky Basket</a> (0)</li>
	<li><a href="http://www.ghacks.net/2007/10/29/post-it-for-your-desktop/" title="Post-It for your desktop (October 29, 2007)">Post-It for your desktop</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/19/quote-research-and-take-notes-with-quotepad/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Would the try &amp; buy model work for games and movies?</title>
		<link>http://www.ghacks.net/2009/04/19/would-the-try-buy-model-work-for-games-and-movies/</link>
		<comments>http://www.ghacks.net/2009/04/19/would-the-try-buy-model-work-for-games-and-movies/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 22:43:34 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[ask the readers]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[movies]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/19/would-the-try-buy-model-work-for-games-and-movies/</guid>
		<description><![CDATA[I know you&#8217;ve all seen it, naughty people, you download a game for example, and the crack file says something like &#8220;Our cracker team does not support piracy, if you like the game, buy it&#8221;. So do you? I don&#8217;t know about you guys, but while I was &#8220;coming of age&#8221; I probably wouldn&#8217;t have [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12150" src="http://www.ghacks.net/wp-content/uploads/2009/04/free-stuffjpg.gif" alt="free-stuffjpg" width="150" height="107" />I know you&#8217;ve all seen it, naughty people, you download a game for example, and the crack file says something like &#8220;Our cracker team does not support piracy, if you like the game, buy it&#8221;. So do you? I don&#8217;t know about you guys, but while I was &#8220;coming of age&#8221; I probably wouldn&#8217;t have bought stuff like this after I saw it, played it, but now that I am &#8220;coming of age&#8221; and I have income, this model would work for me.</p>
<p><span id="more-12151"></span>There are two problems with movies and games alike, the first is that I think both are way overpriced (although games more so), the second, what if you try it and you don&#8217;t like it? First of all, it&#8217;s difficult to decide if you don&#8217;t like a movie until you actually finish it. With games this is a bit easier, but the ending can make or break a flick completely. In this case if you don&#8217;t like the film you probably wouldn&#8217;t buy it, although you did see it through to the end, so this is a bit unfair for the publisher. However, this would spur movie makers to make better stuff, since their income relies on people liking their stuff, at least more than it does now.</p>
<p>So do you think this business model would work? I think that it could in the long run. The problem is that many customers would consider this to a be a free ride, and wouldn&#8217;t think about the future quality they may get from paying now. If combined with a lower price I think the demand would be very high and could be as lucrative, or even more so than the standard model, what do you say?</p>

	Tags: <a href="http://www.ghacks.net/tag/economics/" title="economics" rel="tag">economics</a>, <a href="http://www.ghacks.net/tag/games/" title="Games" rel="tag">Games</a>, <a href="http://www.ghacks.net/tag/movies/" title="movies" rel="tag">movies</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/10/17/zero-punctuation/" title="Zero Punctuation (October 17, 2007)">Zero Punctuation</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/06/07/xbox-project-natal/" title="Xbox Project Natal (June 7, 2009)">Xbox Project Natal</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/01/24/wow-addons-updater/" title="WOW Addons Updater (January 24, 2009)">WOW Addons Updater</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/03/10/windows-vista-game-explorer-editor/" title="Windows Vista Game Explorer Editor (March 10, 2008)">Windows Vista Game Explorer Editor</a> (4)</li>
	<li><a href="http://www.ghacks.net/2006/11/28/win-your-wow-burning-crusade-beta-keys/" title="Win your Wow Burning Crusade Beta Keys (November 28, 2006)">Win your Wow Burning Crusade Beta Keys</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/19/would-the-try-buy-model-work-for-games-and-movies/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Gmail now suggests recipients</title>
		<link>http://www.ghacks.net/2009/04/18/gmail-now-suggests-recipients/</link>
		<comments>http://www.ghacks.net/2009/04/18/gmail-now-suggests-recipients/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 10:03:46 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google-mail]]></category>
		<category><![CDATA[suggest]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/18/gmail-now-suggests-recipients/</guid>
		<description><![CDATA[It seems that Gmail is set to read your mind, it now suggests recipients to your emails! No, Mr Brin and Page are not inside your head, the application simply monitors groups you frequently send emails to. If you frequently send emails and sometimes there are some &#8220;crossovers&#8221;, this is a handy feature which can [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/gmailsuggest.gif" alt="gmailsuggest" width="252" height="72" class="alignleft size-full wp-image-12131" />It seems that <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a> is set to read your mind, it now suggests recipients to your emails! No, Mr Brin and Page are not inside your head, the application simply monitors groups you frequently send emails to. If you frequently send emails and sometimes there are some &#8220;crossovers&#8221;, this is a handy feature which can make sure you don&#8217;t leave anyone out. </p>
<p><span id="more-12132"></span>You can enable this is the labs settings in your account, and once you do, you should see some suggestions come up. For me this didn&#8217;t work perfectly because I actually rarely email groups, let alone more groups. If you use email mostly for client-to-client work you probably won&#8217;t find this too useful, but in an office-like work environment this could be really handy. </p>
<p>For myself I&#8217;d rather like a better contact management system instead, something better integrated with the compose screen, maybe once that can read your first line and decide on the recipient. You could tell Gmail that if you begin a letter with &#8220;Hi Daniel&#8221; you want to send an email to me. Based on names this could be automated to some extent too. Do you have any contact feature suggestions for Gmail you&#8217;d love to see?</p>

	Tags: <a href="http://www.ghacks.net/tag/contacts/" title="contacts" rel="tag">contacts</a>, <a href="http://www.ghacks.net/tag/email/" title="Email" rel="tag">Email</a>, <a href="http://www.ghacks.net/tag/gmail/" title="gmail" rel="tag">gmail</a>, <a href="http://www.ghacks.net/tag/google-mail/" title="google-mail" rel="tag">google-mail</a>, <a href="http://www.ghacks.net/tag/suggest/" title="suggest" rel="tag">suggest</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/30/use-gmail-to-host-and-share-photos/" title="Use Gmail To Host And Share Photos (June 30, 2009)">Use Gmail To Host And Share Photos</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/07/10/tracking-gmail-account-usage/" title="Tracking Gmail Account Usage (July 10, 2008)">Tracking Gmail Account Usage</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/08/04/synchronize-contacts-between-thunderbird-and-gmail/" title="Synchronize Contacts Between Thunderbird And Gmail (August 4, 2008)">Synchronize Contacts Between Thunderbird And Gmail</a> (12)</li>
	<li><a href="http://www.ghacks.net/2008/05/31/sync-gmail-contacts-with-thunderbird/" title="Sync Gmail Contacts with Thunderbird (May 31, 2008)">Sync Gmail Contacts with Thunderbird</a> (13)</li>
	<li><a href="http://www.ghacks.net/2009/09/10/play-google-voice-messages-in-gmail/" title="Play Google Voice Messages In Gmail (September 10, 2009)">Play Google Voice Messages In Gmail</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/18/gmail-now-suggests-recipients/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
