<?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; Polls</title>
	<atom:link href="http://www.ghacks.net/category/polls/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 16:29:26 +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>Keep logged in users informed with motd</title>
		<link>http://www.ghacks.net/2009/04/06/keep-logged-in-users-informed-with-motd/</link>
		<comments>http://www.ghacks.net/2009/04/06/keep-logged-in-users-informed-with-motd/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 19:22:09 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Polls]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[log in message]]></category>
		<category><![CDATA[message of the day]]></category>
		<category><![CDATA[motd]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu server]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/06/keep-logged-in-users-informed-with-motd/</guid>
		<description><![CDATA[If you have users that log into a server, or a desktop (for whatever reason) you might want to take advantage of the Linux Message Of The Day file. This file resides in the /etc directory and, when a user logs in, the contents of that file are displayed every time a user logs into [...]]]></description>
			<content:encoded><![CDATA[<p>If you have users that log into a server, or a desktop (for whatever reason) you might want to take advantage of the Linux Message Of The Day file. This file resides in the <strong>/etc</strong> directory and, when a user logs in, the contents of that file are displayed every time a user logs into that machine. Of course there is a bit of a trick involved. If you write your own nice <strong>/etc/motd</strong> file every time you reboot that machine part of the <strong>/etc/motd</strong> file contents will be replaced by new information. Easily we can make the portion of the file that is not rewritten suite our needs. And with a little trickery we can fine tune the entire motd to our satisfaction.</p>
<p>In reality the message you see upon login is a combination of two files:<strong> /etc/motd </strong>and <strong>/etc/motd.tail</strong>. The former file is the file that is regenerated upon boot. The latter file contains static information. The first thing we will do is change the <strong>/etc/motd</strong> file so that, upon loggin in, the users can get system (or company) specific information. Once that is done we&#8217;ll trick <strong>/etc/motd.tail</strong> into getting content different than that from <strong>/etc/init.d/bootmisc.sh</strong>.</p>
<p><span id="more-11723"></span><strong>/etc/motd.tail</strong></p>
<p>The first thing you should is open up your <strong>/etc/motd.tail</strong> file in your favorite text editor. When I open up that file in Ubuntu Server 8.10 the contents look like:</p>
<p><em>The programs included with the Ubuntu system are free software;<br />
the exact distribution terms for each program are described in the<br />
individual files in /usr/share/doc/*/copyright.</em></p>
<p><em>Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by<br />
applicable law.</em></p>
<p><em>To access official Ubuntu documentation, please visit:<br />
http://help.ubuntu.com/</em></p>
<p>I want to change that content so I know exactly which server I am on when I log in. So let&#8217;s say I want to change that to say:</p>
<p><em>welcome to the Ubuntu Server. have a good time and do not break anything.</em></p>
<p>Now when I log into my Ubuntu Server I will see the following motd:</p>
<p><em>welcome to the Ubuntu Server. have a good time and do not break anything.</em></p>
<p><em>System information as of Mon Apr 6 15:00:01 EDT 2009</em></p>
<p><em>System load: 0.0 Swap usage: 0% Users logged in: 1<br />
Usage of /: 18.5% of 13.46GBTemperature: 52 C<br />
Memory usage: 43% Processes: 104</em></p>
<p><em>Graph this data and manage this system at https://landscape.canonical.com/<br />
Last login: Mon Apr 6 15:06:41 2009 from 192.168.1.8</em></p>
<p>As you can see there is some useful information to be had with this. But you may not want all of your users to see this information. Say you want to first let the users know which server they are on. We&#8217;ve already covered that with <strong>/etc/motd.tail</strong>. But let&#8217;s say you also want to send out a message to all users who log onto the server. You can change <strong>/etc/motd</strong> to reflect that message but when you reboot the machine that message will be replaced. So to get around that we can create a shell script that will over write the information written at bootup. A possible (and overly simple) shell script could look like this:</p>
<p><code>#!/bin/bash<br />
rm /etc/motd<br />
touch /etc/motd<br />
echo "this is my message" &gt; /etc/motd</code></p>
<p>Save that file in, say <strong>/opt</strong> (for example sake we&#8217;ll call it <strong>/opt/motd_append</strong>) and make it executable with the command <em>chmod u+x /opt/motd_append. </em>Now to make sure this command runs we can create an entry at the end of <strong>/etc/rc.local</strong> like this:</p>
<p><em>/opt/motd_append</em></p>
<p>Now when <strong>/etc/rc.local </strong>runs the script will run and over write the information in <strong>/etc/motd</strong>. Now when your users log in they will see your special message every time.</p>

	Tags: <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/log-in-message/" title="log in message" rel="tag">log in message</a>, <a href="http://www.ghacks.net/tag/message-of-the-day/" title="message of the day" rel="tag">message of the day</a>, <a href="http://www.ghacks.net/tag/motd/" title="motd" rel="tag">motd</a>, <a href="http://www.ghacks.net/tag/ubuntu/" title="ubuntu" rel="tag">ubuntu</a>, <a href="http://www.ghacks.net/tag/ubuntu-server/" title="ubuntu server" rel="tag">ubuntu server</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/02/which-ubuntu-derivative-is-right-for-you/" title="Which Ubuntu Derivative Is Right For You? (April 2, 2009)">Which Ubuntu Derivative Is Right For You?</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/" title="How to install Nagios on Ubuntu server (June 8, 2009)">How to install Nagios on Ubuntu server</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (20)</li>
	<li><a href="http://www.ghacks.net/2009/10/06/what-makes-ubuntu-so-user-friendly/" title="What makes Ubuntu so user friendly? (October 6, 2009)">What makes Ubuntu so user friendly?</a> (47)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/06/keep-logged-in-users-informed-with-motd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Secret Folders and Cleaning</title>
		<link>http://www.ghacks.net/2006/11/24/about-secret-folders-and-cleaning/</link>
		<comments>http://www.ghacks.net/2006/11/24/about-secret-folders-and-cleaning/#comments</comments>
		<pubDate>Fri, 24 Nov 2006 08:40:57 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[clean]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[poll]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[secret-folder]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/11/24/about-secret-folders-and-cleaning/</guid>
		<description><![CDATA[I did ask about your secret folder in last weeks poll and surprisingly the majority declined to have one. 38% of all voters said that they do not have a secret folder for files that only they care about which leads to the question why. Do they live alone and don't have to hide everything in a folder because there is no girlfriend / boyfriend snooping around ? 23% said that their secret folder was bigger than 10 gigabytes which is huge.]]></description>
			<content:encoded><![CDATA[<p>I did ask about your secret folder in last weeks poll and surprisingly the majority declined to have one. 38% of all voters said that they do not have a secret folder for files that only they care about which leads to the question why. Do they live alone and don&#8217;t have to hide everything in a folder because there is no girlfriend / boyfriend snooping around ? 23% said that their secret folder was bigger than 10 gigabytes which is huge.</p>
<p>The remaining 40% have a secret folder with a size between 1 megabyte and 9999 megabytes. The best method to create and maintain a secret folder ? Use <a target="_blank" title="true crypt" href="http://www.ghacks.net/2006/09/03/how-to-build-an-data-safe/">TrueCrypt</a>. Believe me the next poll has nothing to do with the previous one, might be hard to believe I must admit. How often do you clean your computer, better: do you clean it at all ?</p>
<p><span id="more-936"></span>The answers are pretty self explanatory. You have the option between once a day, a week, a month, a year and never. I think I probably missed the case where users buy new hardware instead of cleaning the old &#8211; Believe me that happens. Maybe not when it comes to expensive hardware like flat screens but definitely when it comes to the keyboard.</p>

	Tags: <a href="http://www.ghacks.net/tag/clean/" title="clean" rel="tag">clean</a>, <a href="http://www.ghacks.net/tag/it/" title="it" rel="tag">it</a>, <a href="http://www.ghacks.net/tag/pc/" title="pc" rel="tag">pc</a>, <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a>, <a href="http://www.ghacks.net/tag/question/" title="question" rel="tag">question</a>, <a href="http://www.ghacks.net/tag/secret-folder/" title="secret-folder" rel="tag">secret-folder</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/11/29/zombie-city-tactics/" title="Zombie City Tactics (November 29, 2006)">Zombie City Tactics</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (20)</li>
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2005/11/06/who-is-connected-to-your-pc-right-now/" title="Who is connected to your pc right now ? (November 6, 2005)">Who is connected to your pc right now ?</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/11/24/about-secret-folders-and-cleaning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We all hate mondays</title>
		<link>http://www.ghacks.net/2006/11/10/we-all-hate-mondays/</link>
		<comments>http://www.ghacks.net/2006/11/10/we-all-hate-mondays/#comments</comments>
		<pubDate>Fri, 10 Nov 2006 08:49:16 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[new-poll]]></category>
		<category><![CDATA[poll]]></category>
		<category><![CDATA[poll-archive]]></category>
		<category><![CDATA[poll-of-the-week]]></category>
		<category><![CDATA[random-poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/11/10/we-all-hate-mondays/</guid>
		<description><![CDATA[I'm glad that I can write this on a friday. Last poll asked about your opinion on the worst day of the week - to no surprise money won that poll with over 50% of all votes. Rather surprising was the second place: Sunday. Not sure why so many people dislike Sunday so much, maybe because many people dislike the fact that you can't do lots of things on Sundays. Most shops are closed, people tend to stay at home and do not go out to party aso. (as if we would go out and party, we are geeks..)]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m glad that I can write this on a friday. Last poll asked about your opinion on the worst day of the week &#8211; to no surprise monday won that poll with over 50% of all votes. Rather surprising was the second place: Sunday. Not sure why so many people dislike Sunday so much, maybe because many people dislike the fact that you can&#8217;t do lots of things on Sundays. Most shops are closed, people tend to stay at home and do not go out to party aso. (as if we would go out and party, we are geeks..)</p>
<p>Friday and Saturday are the best days of the week according to my unbiased poll results which means the overall mood of you should be excellent today. The next poll is hot. Well not really hot but I thought it would be nice to ask a personal question for a change. How big is your secret folder on your computer ? We all know that all kinds of things could be added to a folder that only you know exists on your computer, most of the times it contains pictures and videos .. .. of cars, and things hotter than cars &#8211; if you know what I mean.</p>
<p><span id="more-905"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/new-poll/" title="new-poll" rel="tag">new-poll</a>, <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a>, <a href="http://www.ghacks.net/tag/poll-archive/" title="poll-archive" rel="tag">poll-archive</a>, <a href="http://www.ghacks.net/tag/poll-of-the-week/" title="poll-of-the-week" rel="tag">poll-of-the-week</a>, <a href="http://www.ghacks.net/tag/polls/" title="Polls" rel="tag">Polls</a>, <a href="http://www.ghacks.net/tag/random-poll/" title="random-poll" rel="tag">random-poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/" title="Week 37 Poll Results and New Poll (September 13, 2006)">Week 37 Poll Results and New Poll</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/" title="Week 35 Poll Results and new Poll (September 1, 2006)">Week 35 Poll Results and new Poll</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/" title="Week 33 Poll Results and new Poll (August 20, 2006)">Week 33 Poll Results and new Poll</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/11/10/we-all-hate-mondays/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>So you want a forum, huh ?</title>
		<link>http://www.ghacks.net/2006/10/30/so-you-want-a-forum-huh/</link>
		<comments>http://www.ghacks.net/2006/10/30/so-you-want-a-forum-huh/#comments</comments>
		<pubDate>Mon, 30 Oct 2006 08:52:09 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/10/30/so-you-want-a-forum-huh/</guid>
		<description><![CDATA[Almost half of the users (48%) voted yes on the poll that asked if they would like to have a forum at ghacks while 30% said they did not care and 22% decided that they did not want to see a forum here at my site. I will create a forum because the majority decided that way. I would like to ask you what you would like to see in the new forum, which kind of boards for instance]]></description>
			<content:encoded><![CDATA[<p>Almost half of the users (48%) voted yes on the poll that asked if they would like to have a forum at ghacks while 30% said they did not care and 22% decided that they did not want to see a forum here at my site. I will create a forum because the majority decided that way. I would like to ask you what you would like to see in the new forum, which kind of boards for instance.</p>
<p>I did a quick brainstorming and came up with those:</p>
<ul>
<li>Ghacks Support &#8211; Help related to articles and other difficulties at ghacks.net</li>
<li>Suggestions &#8211; How can I improve ghacks</li>
<li>Tech Help &#8211; You have a general problem and need help ?</li>
</ul>
<p><span id="more-881"></span>This should not be all of course, so please let me know what you like to see and I quickly add the boards to the forum.</p>
<p>This weeks poll is perfect for Monday mornings, which day of the week do you hate the most ? Make your vote count by voting in the right sidebar. I have a strange feeling that I know which one will make it.. What do you think ?</p>

	Tags: <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/" title="Week 37 Poll Results and New Poll (September 13, 2006)">Week 37 Poll Results and New Poll</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/" title="Week 35 Poll Results and new Poll (September 1, 2006)">Week 35 Poll Results and new Poll</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/" title="Week 33 Poll Results and new Poll (August 20, 2006)">Week 33 Poll Results and new Poll</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/10/30/so-you-want-a-forum-huh/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>A poll is a poll is a poll</title>
		<link>http://www.ghacks.net/2006/10/15/a-poll-is-a-poll-is-a-poll/</link>
		<comments>http://www.ghacks.net/2006/10/15/a-poll-is-a-poll-is-a-poll/#comments</comments>
		<pubDate>Sun, 15 Oct 2006 09:44:13 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[ghacks]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/10/15/a-poll-is-a-poll-is-a-poll/</guid>
		<description><![CDATA[Poll results for "What will you do when Windows Vista comes out" have been analyzed. 60% of all voters said they would do nothing which means they will stick to their old operating system or system. 21% will migrate to Windows Vista, 11% to a *nix system and even 8% to Mac. The big questions is of course, what does vista offer its users that XP does not offer ? Not much from what I can see. It offers some drawbacks on the other hand that I for instance am not willed to tolerate - Trusted Computing anyone ?]]></description>
			<content:encoded><![CDATA[<p>Poll results for &#8220;What will you do when Windows Vista comes out&#8221; have been analyzed. 60% of all voters said they would do nothing which means they will stick to their old operating system or system. 21% will migrate to Windows Vista, 11% to a *nix system and even 8% to Mac. The big questions is of course, what does vista offer its users that XP does not offer ? Not much from what I can see. It offers some drawbacks on the other hand that I for instance am not willed to tolerate &#8211; Trusted Computing anyone ?</p>
<p>As I said earlier, my next system will run on *nix and my old system will keep its XP operating system. The next poll is pretty easy and deals with the following question: would you like to have a forum at ghacks ? I pondered with this decision for some time and one reader asked me about this a few days ago.</p>
<p><span id="more-852"></span></p>
<p>I&#8217;m still not sure and I thought it would be a nice idea for the new poll to ask you if you would like to have a forum at ghacks. Would you use it, would you avoid it ? Let me know. I think a forum could add great value and user interaction to my site, means lots of work on the other hand..</p>

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

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/10/05/this-weeks-poll-next-weeks-poll/" title="This weeks poll, next weeks poll (October 5, 2006)">This weeks poll, next weeks poll</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/01/16/ask-the-readers-moving-articles-to-new-blog/" title="Ask The Readers: Moving Articles To New Blog (January 16, 2009)">Ask The Readers: Moving Articles To New Blog</a> (36)</li>
	<li><a href="http://www.ghacks.net/2008/07/15/wordpress-26/" title="Wordpress 2.6 (July 15, 2008)">Wordpress 2.6</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/03/29/wordpress-25-released/" title="Wordpress 2.5 released (March 29, 2008)">Wordpress 2.5 released</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/11/16/wiredtree-review-after-four-months/" title="Wiredtree Review After Four Months (November 16, 2009)">Wiredtree Review After Four Months</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/10/15/a-poll-is-a-poll-is-a-poll/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Polls Polls Polls</title>
		<link>http://www.ghacks.net/2006/09/25/polls-polls-polls/</link>
		<comments>http://www.ghacks.net/2006/09/25/polls-polls-polls/#comments</comments>
		<pubDate>Mon, 25 Sep 2006 07:22:54 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/09/25/polls-polls-polls/</guid>
		<description><![CDATA[I'am still in Prague and have some time left before ma transfer to the airport begins and I decided to create a new poll and analyse the results of the old one. The old poll asked if and which next gen console system you decided to buy when it comes out. 25% of all users will not buy a new system while 22% decided that they would buy a PS3, followed by Wii with 14%, Xbox 360, Xbox 360 + Wii and all of the three with 9%. PS3 + Xbox 360 and PS3 + Wii received 7% respectivly 5% of all votes.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;am still in Prague and have some time left before my transfer to the airport begins and I decided to create a new poll and analyse the results of the old one. The old poll asked if and which next gen console system you decided to buy when it comes out. 25% of all users will not buy a new system while 22% decided that they would buy a PS3, followed by Wii with 14%, Xbox 360, Xbox 360 + Wii and all of the three with 9%. PS3 + Xbox 360 and PS3 + Wii received 7% respectivly 5% of all votes.</p>
<p>I think it is interesting that the PS3 is still gaining that many voters although it is the most expensive system that comes out in tiny amounts to North America and Japan compared to the Wii and Xbox 360. There will be for example 400000 systems in North America compared to 1000000 Wii systems.</p>
<p><span id="more-805"></span></p>
<p>The next poll is a rather personal one. I always wanted to create shirts for ghacks but lacked the skill to create a nice design for such shirts. Well, the design was done by someone else and I thought it would be nice to create a shirt collection for ghacks.</p>
<p>I would like to know how much you would want to pay for a cool ghacks shirt. This will help my decision wether I should order shirts or decide against it. Categories range from nothing, to 12,99$ at the top.</p>
<p>Looking forward to see the results..</p>

	Tags: <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/" title="Week 37 Poll Results and New Poll (September 13, 2006)">Week 37 Poll Results and New Poll</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/" title="Week 35 Poll Results and new Poll (September 1, 2006)">Week 35 Poll Results and new Poll</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/" title="Week 33 Poll Results and new Poll (August 20, 2006)">Week 33 Poll Results and new Poll</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/09/25/polls-polls-polls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Week 37 Poll Results and New Poll</title>
		<link>http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/</link>
		<comments>http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/#comments</comments>
		<pubDate>Wed, 13 Sep 2006 07:47:02 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/</guid>
		<description><![CDATA[With Amazon unleashing its Unbox on the world and Apple close to start their movie paradise the question for the last poll was almost obvious: How much would you pay for a DVD download ? Amazon charges up to 19,99€ for a movie download and 1,99€ for TV Episodes. Looking at the poll results this seems highly overprized even if you do not take their license agreement into account.]]></description>
			<content:encoded><![CDATA[<p>With Amazon unleashing its Unbox on the world and Apple close to start their movie paradise the question for the last poll was almost obvious: How much would you pay for a DVD download ? Amazon charges up to 19,99€ for a movie download and 1,99€ for TV Episodes. Looking at the poll results this seems highly overprized even if you do not take their license agreement into account.</p>
<p>The majority (39%) will not pay for movie downloads at all which suggests that they buy their movies exclusively at local shops.  35% of all voters would not pay more than 5$ for a dvd download and another 15% would pay as much as 7,99$. An additional 6% would pay up to 9,99$ and the last 4% would pay as much as 11,99$ per DVD. All higher priced options got 1% of the votes and can be neglected.</p>
<p><span id="more-788"></span>While this poll was answered by tech savy people Amazon might have a different customer base in mind: Families, People who work with a computer but do not understand it. They probably see the price and say: &#8220;Hey it&#8217;s the same price as in the shop. I can download it and don&#8217;t have to go into the shop. Great&#8221;.</p>
<p>My short take on a shop that I would buy in:</p>
<ul>
<li>no DRM</li>
<li>fair use, burn on DVD, copy to mobile device</li>
<li>fair pricing, 7,99$ for a movie and 0,99$ for a tv episode should be the maximum</li>
<li>custom downloads, reduced prices if you don&#8217;t download extras, additional audio</li>
<li>cover and booklet graphics are provided for free</li>
<li>no user tracking if a software is used, no logs, no abusive license agreement</li>
</ul>
<p>The new poll is a reflection of an old one. Three months ago I asked which next-gen system you would buy and the leader at that time was the Playstation 3 by Sony followed by the Nintendo Wii and Microsofts Xbox 360.</p>
<p>With all the rumors around the PS3, the delay in Europe and the small amount of systems that will be available at launch date I want to see if some users changed their mind which system they will buy and compare those results to the former poll.</p>

	Tags: <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/" title="Week 35 Poll Results and new Poll (September 1, 2006)">Week 35 Poll Results and new Poll</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/" title="Week 33 Poll Results and new Poll (August 20, 2006)">Week 33 Poll Results and new Poll</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/11/10/we-all-hate-mondays/" title="We all hate mondays (November 10, 2006)">We all hate mondays</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Week 35 Poll Results and new Poll</title>
		<link>http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/</link>
		<comments>http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/#comments</comments>
		<pubDate>Fri, 01 Sep 2006 08:33:35 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/</guid>
		<description><![CDATA[Last weeks poll was asking wether you would purchase a Blue-Ray or a HD-DVD drive when available in your country. Poll results seem to reflect the current overall situation in the market. Blue-Ray has a small lead with 33% of all votes followed by HD-DVD with 29% and None with 29% as well. A smaller margin will be waiting for hybrid drives (11%) and 9% will buy both formats.]]></description>
			<content:encoded><![CDATA[<p>Last weeks poll was asking wether you would purchase a Blue-Ray or a HD-DVD drive when available in your country. Poll results seem to reflect the current overall situation in the market. Blue-Ray has a small lead with 33% of all votes followed by HD-DVD with 29% and None with 29% as well. A smaller margin will be waiting for hybrid drives (11%) and 9% will buy both formats.</p>
<p>The small lead that Blue-Ray has in this poll could be explained with the fact that Sonys PS3 will ship with a build in Blue-Ray drive. Almost a third of all voters will not purchase either of the drives which has surely numous reasons: The most important reason to stay away from those next generation drives could be that they are DRM infested. Copy protection all over the place laying the burden on the user is probably not a good way to sell the product to the user in first place.</p>
<p><span id="more-763"></span>Second: No one needs a Blue-Ray or HD-DVD drive if his tv is not able to support the high definition, which means everyone who does not have a high def tv will not buy such a drive.</p>
<p>Let me know about your reasons please in the comments of this article.</p>
<p>This weeks poll is a direct results of the article I wrote about Apple iTunes movie prices which will be 14,99$ for new movies and 9,99$ for older ones. I think this is way overpriced and would like to ask everyone what they would be willing to pay for a dvd download on the internet.</p>
<p>How much would you be willing to pay for a DVD download of the Internet ? DVD download assumes it is a new complete DVD.</p>

	Tags: <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/" title="Week 37 Poll Results and New Poll (September 13, 2006)">Week 37 Poll Results and New Poll</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/" title="Week 33 Poll Results and new Poll (August 20, 2006)">Week 33 Poll Results and new Poll</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/11/10/we-all-hate-mondays/" title="We all hate mondays (November 10, 2006)">We all hate mondays</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Week 33 Poll Results and new Poll</title>
		<link>http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/</link>
		<comments>http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/#comments</comments>
		<pubDate>Sun, 20 Aug 2006 13:08:29 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/</guid>
		<description><![CDATA[I was asking you about your favorite video player in the last poll and most voters are actually using the program that I prefer as well called VLC, Video Lan Client. VLC managed to recieve 36% of all votes recieving as many votes as the mplayer, the windows media player and the bsplayer together. Realplayer and Quicktime only got 6% and 4% of the votes with others reaching 19%.]]></description>
			<content:encoded><![CDATA[<p>I was asking you about your favorite video player in the last poll and most voters are actually using the program that I prefer as well called <a target="_blank" title="vlc video lan client" href="http://www.videolan.org/vlc/">VLC</a>, Video Lan Client. VLC managed to recieve 36% of all votes recieving as many votes as the <a target="_blank" title="mplayer video player" href="http://www.mplayerhq.hu/">mplayer</a>, the windows media player and the <a target="_blank" title="bsplayer video player" href="http://www.bsplayer.org/">bsplayer</a> together. Realplayer and Quicktime only got 6% and 4% of the votes with others reaching 19%.</p>
<p>This weeks poll features a question that deals about the upcoming high def war between BlueRay and HD-DVD. Will you buy a BlueRay drive, or PS3 which has one built in, or do you want to buy a HD-DVD drive or the upcoming add on for Microsofts Xbox 360 ? Will you buy both or wait until a drive is available that is able to read both formats ? The last option of course is none, you will not buy such a drive because they are a) to expensive and b) don´t offer much added value to dvd.</p>
<p><span id="more-732"></span>I for myself will wait and see if there will be a winner before I even consider buying one of the expensive drives. After one becomes the standard or hybrid drives do I might buy one. Depends on the price though. Does not make sense to me to buy one without having a hd television at hand.</p>
<p>What is your opinion ?</p>

	Tags: <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/" title="Week 37 Poll Results and New Poll (September 13, 2006)">Week 37 Poll Results and New Poll</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/" title="Week 35 Poll Results and new Poll (September 1, 2006)">Week 35 Poll Results and new Poll</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/11/10/we-all-hate-mondays/" title="We all hate mondays (November 10, 2006)">We all hate mondays</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Poll Results and new Poll</title>
		<link>http://www.ghacks.net/2006/08/12/poll-results-and-new-poll/</link>
		<comments>http://www.ghacks.net/2006/08/12/poll-results-and-new-poll/#comments</comments>
		<pubDate>Sat, 12 Aug 2006 08:10:27 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/08/12/poll-results-and-new-poll/</guid>
		<description><![CDATA[I think it does not make sense to continue the current poll that is asking for your favorite search engine. Google is so dominant that the results would only change lightly if at all. The Google search engine recieved 94% of all votes, all others together recieved only 6% which is really low. It would be interesting to know why everyone is using Google and not MSN or Yahoo for example. Are Googles results better ? Is searching Google not that complicated ?]]></description>
			<content:encoded><![CDATA[<p>I think it does not make sense to continue the current poll that is asking for your favorite search engine. Google is so dominant that the results would only change lightly if at all. The Google search engine recieved 94% of all votes, all others together recieved only 6% which is really low. It would be interesting to know why everyone is using Google and not MSN or Yahoo for example. Are Googles results better ? Is searching Google not that complicated ?</p>
<p>This time I will be asking you for your favorite media player. Which player are you mainly using on your system ? I think I have added the most important ones, let me know if I missed one and I will add it to the poll. Let the votes begin..</p>
<p><span id="more-706"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/" title="Week 37 Poll Results and New Poll (September 13, 2006)">Week 37 Poll Results and New Poll</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/" title="Week 35 Poll Results and new Poll (September 1, 2006)">Week 35 Poll Results and new Poll</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/" title="Week 33 Poll Results and new Poll (August 20, 2006)">Week 33 Poll Results and new Poll</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/08/12/poll-results-and-new-poll/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Last Weeks Poll Results and New Poll</title>
		<link>http://www.ghacks.net/2006/08/01/last-weeks-poll-results-and-new-poll/</link>
		<comments>http://www.ghacks.net/2006/08/01/last-weeks-poll-results-and-new-poll/#comments</comments>
		<pubDate>Tue, 01 Aug 2006 05:40:43 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/08/01/last-weeks-poll-results-and-new-poll/</guid>
		<description><![CDATA[I was asking you last week about your main activity on the internet: Communicating, Creating Content, Downloading, Gaming, Research and Shopping were the options. 40% of the voters selected downloading which is a big percentage. Creating Content was second with 27% of all votes. Guys, let me know about your websites, I´d be interested to take a look and even write an article if I like them. The third place with 12% each was taken by Research and Communicating on the Internet. Gaming was selected by 8% of all voters and shopping by 0%, guess not many women visit my site..]]></description>
			<content:encoded><![CDATA[<p>I was asking you last week about your main activity on the internet: Communicating, Creating Content, Downloading, Gaming, Research and Shopping were the options. 40% of the voters selected downloading which is a big percentage. Creating Content was second with 27% of all votes. Guys, let me know about your websites, I´d be interested to take a look and even write an article if I like them. The third place with 12% each was taken by Research and Communicating on the Internet. Gaming was selected by 8% of all voters and shopping by 0%, guess not many women visit my site..</p>
<p>The new poll is pretty straightforward: What is your favorite searchengine ? Is it ask.com, google, msn, yahoo or another one that I forgot to mention ? I thought I create a basic poll this time with only a few options and not one with hundreds of options. Hope you nevertheless enjoy this weeks poll. If you have suggestions for new polls let me know please.</p>
<p><span id="more-674"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/" title="Week 37 Poll Results and New Poll (September 13, 2006)">Week 37 Poll Results and New Poll</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/" title="Week 35 Poll Results and new Poll (September 1, 2006)">Week 35 Poll Results and new Poll</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/" title="Week 33 Poll Results and new Poll (August 20, 2006)">Week 33 Poll Results and new Poll</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/08/01/last-weeks-poll-results-and-new-poll/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Death of Net Neutrality the clear number 1 fear</title>
		<link>http://www.ghacks.net/2006/07/21/death-of-net-neutrality-the-clear-number-1-fear/</link>
		<comments>http://www.ghacks.net/2006/07/21/death-of-net-neutrality-the-clear-number-1-fear/#comments</comments>
		<pubDate>Fri, 21 Jul 2006 05:53:58 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[net-neutrality]]></category>
		<category><![CDATA[providers]]></category>
		<category><![CDATA[save the internet]]></category>
		<category><![CDATA[usa]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/07/21/death-of-net-neutrality-the-clear-number-1-fear/</guid>
		<description><![CDATA[This poll results did not came unexpected: 41% of all voters stated that they feared the death of net neutrality the most, followed by trojans and virii (17%), spyware, hackers and nothing (10% each), phishing (5%), spam (4%) and finally Worms with 3%.
This is an overwhelming result and I thought I explain the net(work) neutrality concept for the ones who do not know what it is. Internet providers do one thing, they provide access to the internet and make sure that you recieve all the data that you request. It does not matter if you surf to the website of a big company like ebay (amazon, microsoft) or to my blog (hehe, or even smaller websites). All data get the same treatment, none is preferred over the other.]]></description>
			<content:encoded><![CDATA[<p>This poll results did not came unexpected: 41% of all voters stated that they feared the death of net neutrality the most, followed by trojans and virii (17%), spyware, hackers and nothing (10% each), phishing (5%), spam (4%) and finally Worms with 3%.</p>
<p>This is an overwhelming result and I thought I explain the net(work) neutrality concept for the ones who do not know what it is. Internet providers do one thing, they provide access to the internet and make sure that you receive all the data that you request. It does not matter if you surf to the website of a big company like eBay (amazon, Microsoft) or to my blog (hehe, or even smaller websites). All data get the same treatment, none is preferred over the other.</p>
<p>The providers (Verizon, AT&#038;T, Time Warner, Comcast, and others) want to change the way the internet works. They want to decide which sites get a fast data transfer, which sites get a slow one and which get none. What this means is clear, the more you pay the faster you go. This also means that they cold favor their own services over the ones of their competition.</p>
<p><span id="more-645"></span>Take a look at this funny video of the daily show.</p>
<p><video>http://www.youtube.com/watch?v=-YedWtX9tKE</video></p>
<p>Take a look at the save the internet website if you are living in the USA and want to help fight this.</p>
<p>The new poll wants to know about your main activity on the internet: Communicating (like icq, chats, forums), Content (creating websites, animations), downloading (Linux distributions, freeware), Gaming (online gaming, casinos, poker), Research (university, work, school) or Shopping.</p>

	Tags: <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/microsoft/" title="microsoft" rel="tag">microsoft</a>, <a href="http://www.ghacks.net/tag/net-neutrality/" title="net-neutrality" rel="tag">net-neutrality</a>, <a href="http://www.ghacks.net/tag/providers/" title="providers" rel="tag">providers</a>, <a href="http://www.ghacks.net/tag/save-the-internet/" title="save the internet" rel="tag">save the internet</a>, <a href="http://www.ghacks.net/tag/usa/" title="usa" rel="tag">usa</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (20)</li>
	<li><a href="http://www.ghacks.net/2006/11/14/triple-boot-vista-xp-and-ubuntu/" title="Triple Boot Vista, XP and Ubuntu (November 14, 2006)">Triple Boot Vista, XP and Ubuntu</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/12/09/things-to-check-before-switching-to-vista-part-3/" title="Things to check before switching to Vista Part 3 (December 9, 2006)">Things to check before switching to Vista Part 3</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/12/preparing-myself-for-linux-and-vista/" title="Preparing myself for Linux and Vista (December 12, 2006)">Preparing myself for Linux and Vista</a> (9)</li>
	<li><a href="http://www.ghacks.net/2006/12/15/how-to-repair-the-vista-bootloader/" title="How to Repair the Vista Bootloader (December 15, 2006)">How to Repair the Vista Bootloader</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/07/21/death-of-net-neutrality-the-clear-number-1-fear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poll Results and New Poll</title>
		<link>http://www.ghacks.net/2006/07/11/poll-resukts-and-new-poll/</link>
		<comments>http://www.ghacks.net/2006/07/11/poll-resukts-and-new-poll/#comments</comments>
		<pubDate>Tue, 11 Jul 2006 05:29:11 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/07/11/poll-resukts-and-new-poll/</guid>
		<description><![CDATA[I asked you in the last poll if you had the intention to buy a next-gen console system and if so which. 34% of all voters want to buy a Sony Playstation 3 despite the high price which is astounding to me. The Nintendo Wii is on the second place with 24% and the Microsoft Xbox 360 third making it to 17%. The rest has no intention to buy a console system. I will definatly stick with the Wii and see how the other systems perform. I don´t see much news about the Xbox 360 despite being on the market for a while.]]></description>
			<content:encoded><![CDATA[<p>I asked you in the last poll if you had the intention to buy a next-gen console system and if so which. 34% of all voters want to buy a Sony Playstation 3 despite the high price which is astounding to me. The Nintendo Wii is on the second place with 24% and the Microsoft Xbox 360 third making it to 17%. The rest has no intention to buy a console system. I will definatly stick with the Wii and see how the other systems perform. I don´t see much news about the Xbox 360 despite being on the market for a while.</p>
<p>What do you fear most on the internet is the next poll. Options include Hacker, Phishing, Spam, Spyware, Trojans and Virii, Worms or None. It is hackers for me. If I would not have internet sites I would not fear (malicous) hackers but the risk of losing all data on the websites is great. I´am well prepared for all other types mentioned in the poll. What about you ?</p>
<p><span id="more-621"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/" title="Week 37 Poll Results and New Poll (September 13, 2006)">Week 37 Poll Results and New Poll</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/" title="Week 35 Poll Results and new Poll (September 1, 2006)">Week 35 Poll Results and new Poll</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/" title="Week 33 Poll Results and new Poll (August 20, 2006)">Week 33 Poll Results and new Poll</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/07/11/poll-resukts-and-new-poll/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>What would you like to see on ghacks poll results</title>
		<link>http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/</link>
		<comments>http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/#comments</comments>
		<pubDate>Tue, 04 Jul 2006 05:27:23 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/</guid>
		<description><![CDATA[Okay the results are in and a new poll is online. I´d like to thank everyone who participated in the last poll and would like to comment shortly on the outcome. 27% of all voters would like to see more free stuff on ghacks, 23% more freeware and 21% Howtos. I guess those three already are a main focus on my site and I will continue to post articles covering those subjects. (don´t worry I will still post other articles as well.)]]></description>
			<content:encoded><![CDATA[<p>Okay the results are in and a new poll is online. I´d like to thank everyone who participated in the last poll and would like to comment shortly on the outcome. 27% of all voters would like to see more free stuff on ghacks, 23% more freeware and 21% Howtos. I guess those three already are a main focus on my site and I will continue to post articles covering those subjects. (don´t worry I will still post other articles as well.)</p>
<p>The next poll has just a few options and is called: What next-gen system will you buy. The choices are Xbox 360, Nintendo Wii, Sony PS3 and None. If you intend to buy more than one select the one you will (or did) buy first. Oh, for those who can´t seem to find the poll, its located on the right column of my site.</p>
<p><span id="more-605"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/" title="Who is going to win the World Cup Poll Results (June 21, 2006)">Who is going to win the World Cup Poll Results</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/" title="Week 37 Poll Results and New Poll (September 13, 2006)">Week 37 Poll Results and New Poll</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/" title="Week 35 Poll Results and new Poll (September 1, 2006)">Week 35 Poll Results and new Poll</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/" title="Week 33 Poll Results and new Poll (August 20, 2006)">Week 33 Poll Results and new Poll</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/11/10/we-all-hate-mondays/" title="We all hate mondays (November 10, 2006)">We all hate mondays</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who is going to win the World Cup Poll Results</title>
		<link>http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/</link>
		<comments>http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/#comments</comments>
		<pubDate>Wed, 21 Jun 2006 07:03:19 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Polls]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/</guid>
		<description><![CDATA[We have seen lots of great matches so far that have been played at the Worldcup 2006 in Germany. Some teams like Argentina look in real great shape while others like Brasil play disappointingly. 597 visitors have voted and here are the results:]]></description>
			<content:encoded><![CDATA[<p>We have seen lots of great matches so far that have been played at the Worldcup 2006 in Germany. Some teams like Argentina look in real great shape while others like Brasil play disappointingly. I would like to thank all voters for taking part in the vote. 597 visitors have voted and here are the results:</p>
<p>Brasil is the main favorit for 21% of the voters followed by Argentina with 16% and Germany with 14%. Italy made it to 12%, England to 8%, Netherlands to 7%, the Czechs to 5% and France got a disappointing 3% of all votes. I missed Spain by the way when I created the poll, I suppose lots of the 15% of the other category belong to Spain (and maybe Mexico). It will be great to find out if the vote is going to prove true or if we are going to witness a different outcome.</p>
<p><span id="more-576"></span>The next poll asks you what you would like to see on ghacks. The poll includes the following options:</p>
<p><strong> Free Stuff</strong>: means articles like how to find mp3s with google<br />
<strong> Firefox: </strong>Extensions, tips and tricks<br />
<strong> Freeware: </strong>Freeware Recommendations<br />
<strong> Fun: </strong>Funny Videos and Stories<br />
<strong> Howtos: </strong>Tips and Tricks, online and offline<br />
<strong> MySpace: </strong>Myspace Tips<br />
<strong> Security: </strong>Security Related Topics</p>

	Tags: <a href="http://www.ghacks.net/tag/poll/" title="poll" rel="tag">poll</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/07/04/what-would-you-like-to-see-on-ghacks-poll-results/" title="What would you like to see on ghacks poll results (July 4, 2006)">What would you like to see on ghacks poll results</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/13/week-37-poll-results-and-new-poll/" title="Week 37 Poll Results and New Poll (September 13, 2006)">Week 37 Poll Results and New Poll</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/09/01/week-35-poll-results-and-new-poll/" title="Week 35 Poll Results and new Poll (September 1, 2006)">Week 35 Poll Results and new Poll</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/08/20/week-33-poll-results-and-new-poll/" title="Week 33 Poll Results and new Poll (August 20, 2006)">Week 33 Poll Results and new Poll</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/11/10/we-all-hate-mondays/" title="We all hate mondays (November 10, 2006)">We all hate mondays</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/06/21/who-is-going-to-win-the-world-cup-poll-results/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
