<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>MeetTheGeeks.Org Official Forums</title>
		<link>http://forum.meetthegeeks.org/forum/</link>
		<description><![CDATA[MeetTheGeeks.org Forums are the #1 source for online computer and technology chat. Featuring thousands of pages of Computer Babes, Hardware news & information, including advice, Troubleshooting information, articles, Reviews, General data, technical news and much, much more. It more than satisfies your Hardware lust. Definitely the ULTIMATE HARDWARE FORUM. Come on in, Meet The Geeks!]]></description>
		<language>en</language>
		<lastBuildDate>Fri, 30 Jul 2010 12:10:52 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forum.meetthegeeks.org/forum/images/misc/rss.jpg</url>
			<title>MeetTheGeeks.Org Official Forums</title>
			<link>http://forum.meetthegeeks.org/forum/</link>
		</image>
		<item>
			<title>Russian hackers jam traffic with porn video</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13596&amp;goto=newpost</link>
			<pubDate>Sun, 25 Jul 2010 19:07:04 GMT</pubDate>
			<description>Drivers in the Russian capital, Moscow, were given an unexpected show courtesy of a 30-by-20 foot electronic highway billboard when an explicit...</description>
			<content:encoded><![CDATA[<div>Drivers in the Russian capital, Moscow, were given an unexpected show courtesy of a 30-by-20 foot electronic highway billboard when an explicit pornographic video was played for nearly twenty minutes in place of the paid advertisement clips that are usually shown. The incident happened near the entrance into Serpukovskiy tunnel on Sadovoe Ring Road, about 2 kilometers south of the Kremlin.<br />
<br />
<br />
&quot;Within three minutes we found it out, and within fifteen minutes the screen was shut off,&quot; the deputy head of the Moscow city advertising committee, Alexander Menchuk, said in a statement to Interfax. A passerby told the Associated Press that she was &quot;so shocked that I couldn't even shoot video or take a picture of it.&quot;<br />
<br />
The display screen's owner, the Three Stars Advertising Agency of Panno.ru, said that computer hackers attempting to execute a practical joke were likely to blame. Viktor Laptev, commercial director for the firm said, &quot;They were either acting out of hooliganism or were from a rival company.&quot;<br />
<br />
Although a city official has been quoted as telling local media that Moscow would increase security of data transmission in light of what happened, local police say they have yet to receive a single complaint about the incident, and thereby have not opened an investigation. Nudity on television is officially banned in Russia.</div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=40">Bizarre News</category>
			<dc:creator>MissMuffet</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13596</guid>
		</item>
		<item>
			<title>Two arrests at Liverpool airport after attempt to smuggle corpse onto flight</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13595&amp;goto=newpost</link>
			<pubDate>Sun, 25 Jul 2010 19:04:59 GMT</pubDate>
			<description>Anke Anusic, age 44, and her mother Gitta, age 66, were arrested at Liverpool John Lennon Airport last Saturday for attempting to smuggle the body of...</description>
			<content:encoded><![CDATA[<div>Anke Anusic, age 44, and her mother Gitta, age 66, were arrested at Liverpool John Lennon Airport last Saturday for attempting to smuggle the body of their deceased 91-year-old relative, &quot;Willi&quot; Curt Jaran, on a flight to Berlin, Germany.<br />
The women tried to take the body on to the plane in a wheelchair wearing sunglasses, and they claimed that the person was asleep. They had previously used a taxi to bring the corpse from their home in Oldham.<br />
<br />
The deception was discovered by check-in staff; both airport staff and the taxi driver are said to be upset by the events. Though they have not explained their actions, the costs of transporting a body can be several thousand pounds. They have been arrested on suspicion of failing to report a death. Both women are German nationals.<br />
<br />
The two women, however, claim that Mr Jaran was alive until check in.</div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=40">Bizarre News</category>
			<dc:creator>MissMuffet</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13595</guid>
		</item>
		<item>
			<title>Daily News (Tech) Some Foundations: Variables and stuff</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13594&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:55:34 GMT</pubDate>
			<description>In some of the earlier tutorials I’ve been using variables without actually explaining what they are.  Strict Python-Zen: within Python there are no...</description>
			<content:encoded><![CDATA[<div>In some of the earlier tutorials I’ve been using variables without actually explaining what they are.  Strict Python-Zen: within Python there are no variables everything is an object*.   On the assumption that that is too abstract for you, I will explain it a different way, through the use of containers (like trays and buckets) which, if I’m lucky, will preserve at least a little bit of the Python-Zen.<br />
<br />
Variables allow you to be flexible.  They are a way of storing something in the computer, much like having a bucket for putting your Lego in.  If you need to go do some chores and just drop your toys, you might not be able to find them again later – or if your parents clean up the toys might get thrown out in the course of garbage collection.   If, instead, you get a plastic bucket out and put them in there, you can rest safe in the knowledge that they’ll be there later after you finish your chores.  Variables are a bit similar.  They’re somewhere that you can put data that the program is using and label it for future reference.  Just like a bucket with the word “My Toys” on the side, you know that, assuming you put it in there earlier, your toys  will be in there next time you look.<br />
<br />
Indeed, the name you put on the outside of the bucket doesn’t really affect what you put in it.  You could have the words “toy cars” on a bucket and yet put all your trading cards in there instead.   The point is that the bucket is a safe place to keep your toys.  Variables are a safe place to keep the program’s data.<br />
<br />
When you do something like this:<br />
<br />
a = 1<br />
<br />
It is like putting 1 into a bucket marked a.   You can call variables almost anything – their name can’t contain spaces and can’t start with a number.  There are different conventions used to name things which really should have spaces in them, typically by capitalising a letter:<br />
<br />
&gt;&gt;&gt; 2a = 1<br />
 File &quot;&lt;stdin&gt;&quot;, line 1<br />
 2a = 1<br />
 ^<br />
SyntaxError: invalid syntax<br />
&gt;&gt;&gt; a b = 1<br />
 File &quot;&lt;stdin&gt;&quot;, line 1<br />
 a b = 1<br />
 ^<br />
SyntaxError: invalid syntax<br />
&gt;&gt;&gt; myToys = 1<br />
&gt;&gt;&gt; myToys<br />
1<br />
&gt;&gt;&gt; mytoys = 2<br />
&gt;&gt;&gt; mytoys<br />
2<br />
&gt;&gt;&gt; myToys<br />
1<br />
&gt;&gt;&gt;<br />
<br />
There are a couple of things happening here that I want you to notice.  First up are some examples of names which don’t work.  These are 2a (starts with a number) and a b (has a space).   Second I’ve shown another variable name which has a capital in the middle of it (myToys).  Do you see how the middle capital helps you to betterUnderstandWhereTheWordsAreSupposedToBeSplit?  – that is hard to read, but not as hard as betterunderstandwherethewordsaresupposedtobesplit.  I’ve also shown you another variable name with no capitals in it (mytoys).  Can you see that myToys and mytoys are different buckets?  If you put something in the myToys bucket, you won’t find it in the mytoys bucket and vice versa.  Variable names are said to be “case senstive”, because whether you use upper case or lower case matters.<br />
<br />
Also, you can’t give variables names which are the same as words in the Python language:<br />
<br />
&gt;&gt;&gt; for = 1<br />
 File &quot;&lt;stdin&gt;&quot;, line 1<br />
 for = 1<br />
 ^<br />
SyntaxError: invalid syntax<br />
&gt;&gt;&gt; if = 1<br />
 File &quot;&lt;stdin&gt;&quot;, line 1<br />
 if = 1<br />
 ^<br />
SyntaxError: invalid syntax<br />
&gt;&gt;&gt; while = 1<br />
 File &quot;&lt;stdin&gt;&quot;, line 1<br />
 while = 1<br />
 ^<br />
SyntaxError: invalid syntax<br />
&gt;&gt;&gt;<br />
<br />
With buckets you can put different toys in them at different times.   A bucket marked “Cars” might have cars in, or equally it might have some other collection of stuff in it.  The bucket itself doesn’t have a character.  It just holds things.  So, you can put different ‘types’ into a bucket without causing any ruckus:<br />
<br />
&gt;&gt;&gt; a = 1<br />
&gt;&gt;&gt; a<br />
1<br />
&gt;&gt;&gt; a = 'hi there'<br />
&gt;&gt;&gt; a<br />
'hi there'<br />
&gt;&gt;&gt;<br />
<br />
In this example, we first put a number (1) into a.  Then we put a string (‘hi there’) into it.  In some programming languages this causes a problem, but it doesn’t bother Python.<br />
<br />
Finally, I should demonstrate to you that the variable stores the data:<br />
<br />
&gt;&gt;&gt; a = 'This is some data.  Will it still be here at the end of the program?'<br />
&gt;&gt;&gt; for i in range(5):<br />
...    print 'doing stuff, time number ',i<br />
...<br />
doing stuff, time number  0<br />
doing stuff, time number  1<br />
doing stuff, time number  2<br />
doing stuff, time number  3<br />
doing stuff, time number  4<br />
&gt;&gt;&gt; a<br />
'This is some data.  Will it still be here at the end of the program?'<br />
<br />
The program first put data into a, then did some stuff, then saw that the data was still there, just as we’d expected.  Buckets and other containers play a vital role in keeping your room, the living room, the dining room, the kitchen, the bathroom, the library, the sun room, the garage, the front yard, the back yard, the attic, the space in our bedroom that you sometimes seem to think is yours, that area beside the stairs, and the family room clean of your toys (which seem to have a life of their own in the way they spread themselves around the floor).   So too, variables are extremely useful and play a fundamental role in all Python programs other than the most most basic.<br />
<br />
* In Python, variables are actually references to objects.  They are an index telling the computer where in storage to find an object.   This is why you can change the ‘type’ of the thing being ‘held’ by a variable because it’s not really holding anything, it’s just pointing somewhere, and you can change what it’s pointing at.<br />
<br />
<a href="http://python4kids.wordpress.com/2010/07/07/some-foundations-variables-and-stuff/" target="_blank">http://python4kids.wordpress.com/201...les-and-stuff/</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=41">News In Short (Tech)</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13594</guid>
		</item>
		<item>
			<title>Daily News (Tech) Improved Calculator App in Ubuntu 10.10</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13593&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:48:10 GMT</pubDate>
			<description>Today we are proud to introduce you guys to the revamped calculator application that will be part of the upcoming GNOME 3.0.0 desktop environment and...</description>
			<content:encoded><![CDATA[<div>Today we are proud to introduce you guys to the revamped calculator application that will be part of the upcoming GNOME 3.0.0 desktop environment and Ubuntu 10.10 (Maverick Meerkat) operating system. The application is called GCalctool and it's a powerful utility that can be used to solve simple and<br />
mid-level mathematical problems. Compared to the calculator found in the Ubuntu 10.04 (Lucid Lynx) distribution, the new version of GCalctool has a redesigned user interface and brings support for complex arithmetics, complex trigonometry, additional functions (Integer and Fractional Component, Round, Floor, Ceiling and Sign) to the advanced mode, currency conversion and many more.<br />
<br />
Most of the new changes in GCalctool were added when the development for version 5.31.x started. Among these we can mention, faster startup times, unification of the scientific mode with the advanced one, color buttons, new layout of the buttons, answer is shown in bold, reimplemented redo and undo functions, and lots of other small modifications, and bug fixes.<br />
<br />
Below you can see some screenshots we took of the new GCalctool 2.31.5, present in the Ubuntu 10.10 Alpha 2 operating system...<br />
<br />
<img src="http://i1-news.softpedia-static.com/images/extra/LINUX/small/ubuntu1010calculator-small_001.png" border="0" alt="" /><br />
<br />
<img src="http://i1-news.softpedia-static.com/images/extra/LINUX/small/ubuntu1010calculator-small_002.png" border="0" alt="" /><br />
<br />
<img src="http://i1-news.softpedia-static.com/images/extra/LINUX/small/ubuntu1010calculator-small_003.png" border="0" alt="" /><br />
<br />
<img src="http://i1-news.softpedia-static.com/images/extra/LINUX/small/ubuntu1010calculator-small_004.png" border="0" alt="" /><br />
<br />
On October 10th, 2010, Ubuntu 10.10 (Maverick Meerkat) will become the thirteenth release of the Ubuntu operating system. Maverick Meerkat will be light and fast! Make sure that you visit our website regularly, for more news about the upcoming release of the Ubuntu 10.10 operating system. Alpha 3 will be available in three weeks, on Thursday, August 5th.<br />
<br />
About Ubuntu:<br />
<br />
Ubuntu is a Linux distribution for your desktop or server, with a fast and easy install, regular releases, a tight selection of excellent packages installed by default, every other package you can imagine available from the network, and professional technical support from Canonical Ltd and hundreds of other companies around the world. <br />
<br />
<a href="http://news.softpedia.com/news/Improved-Calculator-App-in-Ubuntu-10-10-147637.shtml" target="_blank">http://news.softpedia.com/news/Impro...0-147637.shtml</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=41">News In Short (Tech)</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13593</guid>
		</item>
		<item>
			<title>Daily News (Tech) Linux Phones To Dominate Mobile Market</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13592&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:44:43 GMT</pubDate>
			<description><![CDATA[With Google's Android platform and its Chrome OS leading the way, Linux-enabled mobile devices are expected to account for 62% of the operating...]]></description>
			<content:encoded><![CDATA[<div>With Google's Android platform and its Chrome OS leading the way, Linux-enabled mobile devices are expected to account for 62% of the operating systems on non-smartphone mobile devices by 2015, according to a market research report released Wednesday.<br />
<br />
ABI Research made the prediction based largely on the growing momentum of Linux-based mobile phones currently reaching the marketplace.<br />
<br />
&quot;The number of Linux-oriented initiatives recently seen in the mobile industry indicates that Linux will be a key technology in the next generation of netbooks, media tablets, and other mobile devices,&quot; said senior analyst Victoria Fodale in a statement.<br />
<br />
The mobile phone marketplace may look scattered, she indicated, but most mobile devices are actually unified by Linux and its upstream components, particularly the Linux kernel, which enables most providers to share the cost of research and development.<br />
<br />
Their final consumer offerings, of course, are differentiated by the providers individual application and OS environments including Google's Android platform and Chrome OS, Intel-Nokia's MeeGo and Palm's webOS.<br />
<br />
Conspicuous by its absence is Apple's iPhone and Research in Motion's BlackBerry OS which use their own proprietary operating systems.<br />
<br />
The lineup of Linux-based phones includes several from the LiMo Foundation, which to date hasn't made a major impact in the market. However, more LiMo handsets are likely to appear in accelerating numbers as more and more members introduce their phones. The LiMo foundation offers a modular platform that is plug-in-based and hardware-independent while built around Linux software. The food chain ranges all the way from chipsets to third-party software developers.<br />
<br />
ABI Research noted that it has prepared a separate report on smartphones using Linux. <br />
<br />
<a href="http://www.informationweek.com/news/software/linux/showArticle.jhtml?articleID=225800196" target="_blank">http://www.informationweek.com/news/...leID=225800196</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=41">News In Short (Tech)</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13592</guid>
		</item>
		<item>
			<title>Daily News (Tech) Clementine: A triumph of Free Software</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13591&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:41:14 GMT</pubDate>
			<description>Ages ago, in the long-forgotten days of 2008, there was Amarok 1.4. And it was good. Then KDE4 came along and Amarok was rewritten, reshaped,...</description>
			<content:encoded><![CDATA[<div>Ages ago, in the long-forgotten days of 2008, there was Amarok 1.4. And it was good. Then KDE4 came along and Amarok was rewritten, reshaped, becoming something... different. Something unsettling. Something not  altogether  pleasant.<br />
<br />
Fear not. Today we have Clementine.<br />
<br />
<img src="http://briancarper.net/random/clementine-0.4.png" border="0" alt="" /><br />
<br />
I consider Clementine a triumph of Free Software. A great project fell off the rails, so someone else picked up the pieces, forked it and kept the spirit alive.<br />
Features present<br />
<br />
Clementine embodies everything good about Amarok 1.4, in a shiny Qt4 package. The layout is eminently pleasant to use. It uses the classic &quot;spreadsheet&quot; playlist view that saw so much success in Amarok 1.4. If you care about cramming as much information about your music as possible onto the screen, this is as good as it gets. It's boring, and that's a good thing. It gets the job done.<br />
<br />
Like Amaork, 1.4, in Clementine you can very quickly drill into your music collection, filter it, view recently added tracks, group songs by artist or album or year or genre or a combination of those things. Clementine also handles all of the edge cases correctly: it lists albums with Various Artists exactly how I'd want (exactly like Amarok 1.4). It correctly handles songs with non-Latin tag text.<br />
<br />
Clementine detects additions and changes to my music collection instantly, without the massive scan-lags on startup that plague some other music players. Clementine doesn't bat an eye at my 7,000 song collection. There's no MySQL integration, but I don't need it. Clementine's SQLite backend supposedly handles 300k songs without much problem, which is good enough for me.<br />
<br />
Clementine has Last.FM integration. It has three different styles of desktop notification. It has visualizations. It handles USB devices. It understands reply gain. It has cross-fading. It has an equalizer. It has a transcoder. It has a cover manager.<br />
<br />
I'm tired of listing features. Let's just say it has every useful feature you'd ever want. And if you don't need a feature, it stays out of your way.<br />
<br />
And for a program under such active development, it's rock solid. I have yet to see a crash. And speaking of active development, if you follow the activity in Clementine's SVN repo, you will find that this program is updated almost daily. How the devs find the time, I don't know, but I'm grateful. This program has gone from non-existent to awesome in record time.<br />
<br />
Clementine can use gstreamer, so it even works cross-platform. I fired it up on Windows 7 the other day and I was amazed at how good it looked and felt. It supposedly also works on OS X.<br />
<br />
Clementine doesn't cook your breakfast for you, but that might be in the works.<br />
How to make a good UI<br />
<br />
A perfect example of the polish of Clementine's UI: Tagging. How do you tag a whole album worth of music at once? You can select some songs and right click and go into a dialog, like most music players allow.<br />
<br />
Or:<br />
<br />
   1. Edit a tag for a single song (inline) by clicking the field. Let's say you edit Artist.<br />
   2. Select multiple songs in your playlist. (Click and drag, CTRL-click, Shift-click, CTRL-A, whatever.)<br />
   3. Right click the Artist tag in the song you edited, select Set Artist to &quot;XXXXX&quot;, and now all the songs you selected will be updated.<br />
<br />
<br />
<img src="http://briancarper.net/random/clementine-0.4_2.png" border="0" alt="" /><br />
.<br />
This is the kind of UI innovation that I like. It's simple, it's useful, and it's predictable. You can get things done without going through dialog windows, without a million clicks, without spending a minute scratching your head figuring things out.<br />
<br />
(Meanwhile Amarok 2 is busy getting rid of the Stop button and making the volume control circular.)<br />
Features missing<br />
<br />
Admittedly, Clementine is missing a couple of features I wouldn't mind having. You can't skin or theme Clementine. You can't rate songs. You can't display song lyrics. You can't &quot;queue&quot; songs. But oh well. I can live without these features because the rest of the program is so darned good. For all I know, these features might pop up next week. I wouldn't be surprised.<br />
<br />
The Clementine devs seem to be very friendly and responsive to feature requests and feedback, which is also great.<br />
<br />
Clementine is also missing a few features/bloat that I'm glad to see NOT ported from Amarok. Wikipedia integration? Good riddance.<br />
I would pay money for this program.<br />
<br />
In November 2009 I had this to say:<br />
<br />
    (Anyone out there reading this, if you port Amarok 1.4 to Qt4 intact, I will pay you. Seriously. I will pay you money.)<br />
<br />
The offer still stands. I will pay money for Clementine. I'm still waiting for a Donate link so I can do so. (Clementine devs, are you reading this?)<br />
<br />
Why do I care about this so much? Because I have music playing whenever I'm using this computer, and when you add up work plus free time, I'm at this computer 8-10 hours per day. Music keeps me sane during multi-hour debug sessions. Music is an integral part of my life, and a music app is an integral part of playing music.<br />
<br />
It's very important to me that the programs and tools I use all day are comfortable. Otherwise I become cranky. If you were a carpenter, would you want to use a hammer with a wobbly handle all day? I'm a programmer, and I want to use comfortable computer programs.<br />
<br />
Clementine is very comfortable.<br />
<br />
<a href="http://briancarper.net/blog/553/clementine-a-triumph-of-free-software" target="_blank">http://briancarper.net/blog/553/clem...-free-software</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=41">News In Short (Tech)</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13591</guid>
		</item>
		<item>
			<title>Daily News (Tech) PowerColor Announces Radeon HD 5770 Vortex Edition</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13590&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:36:04 GMT</pubDate>
			<description>PowerColor announced today its first video card equipped with the Vortex cooler, which allows the user to manually adjust the fan and make it rise a...</description>
			<content:encoded><![CDATA[<div>PowerColor announced today its first video card equipped with the Vortex cooler, which allows the user to manually adjust the fan and make it rise a bit in order get a better airflow. According to the manufacturer, the Vortex cooler can cool down the temperature of the video card up to 15 °C when compared to the stock cooler. The card in question, dubbed PCS+ HD5770 Vortex Edition, is a factory-overclocked model. It works internally at 900 MHz (5.88% above stock clock of 850 MHz), has 1 GB GDDR5 accessed at 4.9 GHz QDR (2.08% above stock clock of 4.8 GHz QDR), and comes with DVI, HDMI, and DisplayPort connectors. If you buy this card you’ll also get a coupon for free download of the game Call of Duty: Modern Warfare 2. The PowerColor PCS+ HD5770 Vortex edition will be available on July 28th.<br />
<br />
More Info: <a href="http://www.powercolor.com/global/News.asp?id=1039" target="_blank">http://www.powercolor.com/global/News.asp?id=1039</a><br />
<br />
<img src="http://www.hardwaresecrets.com/imageview.php?image=27016" border="0" alt="" /><br />
<br />
<img src="http://www.hardwaresecrets.com/imageview.php?image=27018" border="0" alt="" /></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=41">News In Short (Tech)</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13590</guid>
		</item>
		<item>
			<title>Daily News (Tech) Hybrid WiGig-Wi-Fi Chip Planned by Atheros, Wilocity</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13589&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:32:45 GMT</pubDate>
			<description><![CDATA[Atheros and Wilocity, which represent the Wi-Fi and 60-GHz wireless HDMI camps, have agreed to work together to develop hybrid "tri-band" chipsets. 
...]]></description>
			<content:encoded><![CDATA[<div>Atheros and Wilocity, which represent the Wi-Fi and 60-GHz wireless HDMI camps, have agreed to work together to develop hybrid &quot;tri-band&quot; chipsets.<br />
<br />
The two companies could develop their first product samples by early 2011, and ship them later that year, said Tal Tamir, chief executive of Wilocity, in an interview.<br />
<br />
To date, Wi-Fi and the wireless multimedia technologies such as WirelessHD, WiGig, and others have been in quasi-competition with one another, as both vie to be the home's main wireless network technology. The battleground has been the living room, with the eventual elimination of the HDMI cable that currently serves as the transport mechanism for encrypted multimedia data.<br />
<br />
But the path toward the Atheros and Wilocity partnership follows a partnership struck between the WiGig Alliance and the Wi-Fi Alliance in May, with each specification pledging to interoperate with the other over the long term.<br />
<br />
&quot;The basic idea in developing a triband solution is to kind of enjoy both worlds: the coverage and performance of 802.11n, and the uncompromised performance of 60-GHz,&quot; Tamir said.<br />
<br />
Although the WiGig technology claims to have ranges beyond ten meters, the technology still can't quite match the coverage of 802.11n, roughly 70 meters (230 feet) indoors. Likewise, even the 150-Mbps maximum throughput 802.11n allows can't compete with the 7-Gbps throughput the WiGig specification defines.<br />
<br />
Tamir also said that Wilocity is developing a low-power version its WiGig technology to allow it to be integrated into mobile devices. <br />
<br />
<a href="http://www.extremetech.com/article2/0,2845,2366460,00.asp" target="_blank">http://www.extremetech.com/article2/...2366460,00.asp</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=41">News In Short (Tech)</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13589</guid>
		</item>
		<item>
			<title>Technology News- Google Revenue, Profits Up From Last Year</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13588&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:31:15 GMT</pubDate>
			<description>Google  revenue for the second quarter increased 24 percent from last year, while profits were up slightly year-over-year but down from the first...</description>
			<content:encoded><![CDATA[<div>Google  revenue for the second quarter increased 24 percent from last year, while profits were up slightly year-over-year but down from the first quarter.<br />
<br />
Google on Thursday reported revenue of $6.82 billion for the second quarter, up 24 percent from the same time period last year, and up from $6.77 billion last quarter.<br />
<br />
Profits, meanwhile, jumped to $1.84 billion from $1.48 billion during the same time period last year, but they were down from the $1.96 billion in profits recorded during the first quarter of this year.<br />
<br />
&quot;Google had a strong second quarter,&quot; Google CEO Eric Schmidt said in a statement. &quot;Solid growth in our core business and very strong growth in our emerging businesses drove 24 percent revenue growth year over year. We saw strength in every major product area, as more and more traditional brand advertisers embraced search advertising and as large advertisers increasingly ran integrated campaigns across search, display, and mobile. We feel confident about our future, and plan to continue to invest aggressively in our core areas of strategic focus.&quot;<br />
<br />
Google-owned sites accounted for 66 percent of total revenues with $4.5 billion. This is a 23 percent increase from the same time period last year, and a slight increase from last quarter's $4.44 billion total.<br />
<br />
Google partner sites, meanwhile, generated $2.06 billion via AdSense, a 30 percent increase from last year, and up slightly from the $2.04 billion earned last revenue.<br />
<br />
Google has added more than 1,000 new employees globally since March 31 for a total of 21,805 full-time staffers.<br />
<br />
The company also said it has $30.1 billion in cash, cash equivalents, and short-term marketable securities on hand, up from $26.5 billion on March 31.<br />
<br />
About 300 of those new hires came from the companies Google acquired during the quarter. The remaining new employees were primarily in engineering and sales, with a focus on search, Android, applications, and display.<br />
<br />
&quot;For us, the recession is over,&quot; said Patrick Pichette, chief financial officer. It therefore makes sense to &quot;fuel this eco-system&quot; around search, mobile, and display. &quot;That's why we're investing aggressively.&quot;<br />
<br />
When it comes to Google's recent acquisitions, the company has looked at companies from the perspective of talent, intellectual property, and price, Pichette said.<br />
<br />
&quot;We have debates about it … and we often say no&quot; to certain companies, he said.<br />
<br />
Executives said that Android search grew 300 percent in the first half of 2010.<br />
<br />
The most popular application on smartphones is the browser, and people are using the browser to search, which is the &quot;formula for how Google succeeds,&quot; said Jonathan Rosenberg, senior vice president of product management for Google.<br />
<br />
The Android market now has 70,000 apps, up from 30,000 in April.<br />
<br />
When asked how Android might compare to Chrome OS, Rosenberg said it's still too early to tell. &quot;We're mostly focused on Android, on building out the platform, on getting more smartphones out, and on the Chrome side, it's still too early to say.&quot;<br />
<br />
Google declined to talk about YouTube's profitability, except to say that with two billion views per day, the video Web site is a &quot;great business for us.&quot;<br />
<br />
Google said it spent $100 million defending itself against Viacom, a case on which it recently prevailed. Viacom is appealing, so Pichette declined to comment too much on the specifics, but he did say that the ruling has given YouTube &quot;more clarity.&quot;<br />
<br />
&quot;It gives us more room for experimentation,&quot; he said, pointing to the recent Old Spice YouTube campaign as an &quot;absolutely phenomenal&quot; way advertisers can leverage the site.<br />
<br />
When asked about the current situation in China, Nikesh Arora, president of global sales operations and business development, said that given the &quot;sensitivities&quot; involved in the situation, &quot;I hope you understand why I don't want to talk more about it.&quot;<br />
<br />
Arora did stress, however, that from a financial standpoint, China is not material to Google's revenue, though Google had &quot;decent&quot; revenue in the region for the second quarter.<br />
<br />
<a href="http://www.extremetech.com/article2/0,2845,2366559,00.asp" target="_blank">http://www.extremetech.com/article2/...2366559,00.asp</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=39">Techno News</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13588</guid>
		</item>
		<item>
			<title><![CDATA[News (Global) AMD to Pull In 'Fusion' Ship Date]]></title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13587&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:29:54 GMT</pubDate>
			<description>Advanced Micro Devices reported a small net loss for its second quarter, although the chipmaker saw revenues increase both sequentially and compared...</description>
			<content:encoded><![CDATA[<div>Advanced Micro Devices reported a small net loss for its second quarter, although the chipmaker saw revenues increase both sequentially and compared to a year ago.<br />
<br />
AMD also said that it would pull in shipments of its &quot;Ontario&quot; accelerated processing unit (APU), the first of its &quot;Fusion&quot; hybrid of graphics cores and CPUs. Ontario, a lower-power APU designed for small-form-factor devices combining two &quot;Bobcat&quot; cores and a DirectX 11 GPU, will ship during the fourth quarter, with first system shipments expected during the first quarter of 2010.<br />
<br />
&quot;It's a game-changer that significantly expands the market,&quot; said Dirk Meyer, AMD's chief executive officer.<br />
<br />
AMD will swap the production priority of its APUs, however, relegating &quot;Llano,&quot; the more mainstream version of the Fusion line, to a 2010 launch.<br />
<br />
AMD executives began setting the stage for Fusion and its related CPU cores (based on the &quot;Bulldozer&quot; platform) in its conference call, but also celebrated the company's current success as well. The only down note? AMD's graphics business did so well that the company couldn't keep up with demand, a trend that will diminish over the subsequent quarters, Meyer said. But for now, AMD prioritized OEM customers, and left the add-on board business somewhat wanting.<br />
<br />
For the second quarter, AMD reported a net loss of $43 million on record revenue of $1.65 billion. AMD reported a net loss of $330 million on revenue of $1.18 billion for the same period a year ago.<br />
<br />
AMD reported operating income of $125 million.<br />
<br />
&quot;Robust demand for our latest mobile platforms and solid execution drove record second quarter revenue and a healthy gross margin,&quot; said Dirk Meyer, AMD's president and chief executive. &quot;Our unmatched combination of microprocessor and graphics capabilities resulted in customers launching a record number of new mobile and desktop platforms. We added Sony as a microprocessor customer and continue to see our existing customers expand their AMD-based platform offerings.&quot;<br />
<br />
AMD reported a 4 percent sequential revenue increase in its Computing Solutions segment, which covers its mainstream CPU business. Year-over-year growth was 31 percent, as AMD's revenue in that segment grew to $1.21 billion. In graphics, AMD reported revenue of $440 million, nearly double that from a year ago, when the segment recorded revenue of $235 million.<br />
<br />
AMD took a cautiously vague outlook for the third quarter, stating only that it expects revenue to be &quot;up&quot; for the third quarter.<br />
<br />
<a href="http://www.extremetech.com/article2/0,2845,2366560,00.asp" target="_blank">http://www.extremetech.com/article2/...2366560,00.asp</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=41">News In Short (Tech)</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13587</guid>
		</item>
		<item>
			<title>Technology News- iPhone 4 drops more calls than 3GS</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13586&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:03:25 GMT</pubDate>
			<description><![CDATA[Steve Jobs has admitted Apple's new handsets are dropping more calls than its predecessor. 
 
At an impromptu press conference, Apple has taken the...]]></description>
			<content:encoded><![CDATA[<div>Steve Jobs has admitted Apple's new handsets are dropping more calls than its predecessor.<br />
<br />
At an impromptu press conference, Apple has taken the extraordinary step to offer free cases to all users to alleviate the reception issues plaguing the iPhone 4.<br />
<br />
However, during the course of his presentation, Jobs admitted that the iPhone 4 dropped more calls than the 3GS, albeit less than 1 per 100 more.<br />
<br />
&quot;This is hard data... the iPhone 4 drops less than one additional call per 100 than the 3GS. Less than one.&quot;<br />
<br />
&quot;Even though we think the iPhone 4 is superior to the 3GS antenna... it drops more calls per 100 than the 3GS. We're being transparent. So how many more does it drop than the 3GS?<br />
<br />
Hard data<br />
<br />
&quot;This is hard data... the iPhone 4 drops less than one additional call per 100 than the 3GS. Less than one.&quot;<br />
<br />
Still, it's odd that issue has come to light now - reviews of the iPhone 4 have shown that the device seems to drop fewer calls, so Apple coming out to say it's being 'transparent' is weird.<br />
<br />
But given the inevitable media fallout regarding the case issue, this is probably the least of Jobs' worries, so Apple might as well mention it now.<br />
<br />
Read more: <a href="http://www.techradar.com/news/phone-and-communications/mobile-phones/iphone-4-drops-more-calls-than-3gs-703829#ixzz0trzdLl4U" target="_blank">http://www.techradar.com/news/phone-...#ixzz0trzdLl4U</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=39">Techno News</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13586</guid>
		</item>
		<item>
			<title>Technology News- Jobs offers free cases to all iPhone 4 users</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13585&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:02:07 GMT</pubDate>
			<description><![CDATA[Steve Jobs has taken to the stage in Cupertino to offer free cases to all disgruntled iPhone 4 users. 
 
Apple has acknowledged there's a problem...]]></description>
			<content:encoded><![CDATA[<div>Steve Jobs has taken to the stage in Cupertino to offer free cases to all disgruntled iPhone 4 users.<br />
<br />
Apple has acknowledged there's a problem with the antenna and has offered users a free case as a way to rectify the issue.<br />
<br />
However, Jobs said Apple can't make enough Bumpers to offer everyone one of those, so will be offering alternatives:<br />
<br />
&quot;We're going to send you a free case. We can't make enough bumpers. No way we can make enough in the quarter. So we're going to source some cases and give you a choice.&quot;<br />
<br />
iPhone 4 refunds too<br />
<br />
Users who have bought an iPhone 4 bumper will be able to get a refund, and the refunds will apply to all iPhone 4s bought from opening day to 30 September.<br />
<br />
Users will also be able to return (undamaged) iPhone 4s to Apple stores for a full refund with no restocking fee up to 30 days after purchase, as the company clearly goes into damage limitation mode.<br />
<br />
Early estimates predict this could cost Apple up to £120 million if everyone eligible for the case takes up the offer, but this is miniscule compared to the cost of a full product recall.<br />
<br />
You can see the full report of the Apple iPhone 4 press conference here.<br />
<br />
TechRadar has contacted a number of Apple iPhone case and peripherals manufacturers to guage their response to the latest news.<br />
<br />
Stay tuned for updates.<br />
<br />
Read more: <a href="http://www.techradar.com/news/phone-and-communications/mobile-phones/jobs-offers-free-bumpers-to-all-iphone-4-users-703824#ixzz0trzJiRdg" target="_blank">http://www.techradar.com/news/phone-...#ixzz0trzJiRdg</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=39">Techno News</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13585</guid>
		</item>
		<item>
			<title>Daily News (Tech) AMD shipped 16 million DX11 cards in 9 months</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13584&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 19:00:22 GMT</pubDate>
			<description>AMD has shipped a whopping 16 million DirectX 11-capable graphics cards in the last 9 months, the company has revealed. 
 
Although it posted a net...</description>
			<content:encoded><![CDATA[<div>AMD has shipped a whopping 16 million DirectX 11-capable graphics cards in the last 9 months, the company has revealed.<br />
<br />
Although it posted a net loss of $1.65 billion for the second quarter of 2010, the buoyant nature of its ATI Radeon HD 5000 series was hugely encouraging for the chip giant.<br />
<br />
&quot;Robust demand for our latest mobile platforms and solid execution drove record second quarter revenue and a healthy gross margin,&quot; said Dirk Meyer, AMD President and CEO.<br />
<br />
Steady platform<br />
<br />
&quot;Our unmatched combination of microprocessor and graphics capabilities resulted in customers launching a record number of new mobile and desktop platforms,&quot; he continued.<br />
<br />
&quot;We added Sony as a microprocessor customer and continue to see our existing customers expand their AMD-based platform offerings.&quot;<br />
<br />
According to AMD's report the graphics card segment of the company showed an eight per cent increase over the last quarter and 87 per cent year on year.<br />
<br />
&quot;In just three quarters, AMD has shipped more than 16 million Microsoft DirectX 11-capable GPUs,&quot; said AMD.<br />
<br />
&quot;The ATI Radeon HD 5000 series remains the industry's only complete top-to-bottom family of DirectX11-compatible graphics solutions.&quot;<br />
<br />
Read more: <a href="http://www.techradar.com/news/computing-components/graphics-cards/amd-shipped-16-million-dx11-cards-in-9-months-703763#ixzz0trysTGZH" target="_blank">http://www.techradar.com/news/comput...#ixzz0trysTGZH</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=41">News In Short (Tech)</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13584</guid>
		</item>
		<item>
			<title>Technology News- Revealed: What goes into Google real-time searc</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13583&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 18:59:22 GMT</pubDate>
			<description>Google has outlined exactly what elements go into its real time search, explaining that a judgement on what should show in the search results are...</description>
			<content:encoded><![CDATA[<div>Google has outlined exactly what elements go into its real time search, explaining that a judgement on what should show in the search results are made in a matter of seconds.<br />
<br />
Speaking to TechRadar, Google Fellow and search expert Amit Singhal explained that bringing real-time search to Google was both thrilling and the toughest thing that he had done in his career.<br />
<br />
&quot;Real time has been the one of the most exciting projects I've undertaken in my 20 years of search, and it has been the toughest thing I have undertaken in 20 years of search,&quot; said Singhal.<br />
<br />
Month to seconds<br />
<br />
&quot;When I started out as a grad student and in the early days of Google we would crawl a web page every month,&quot; he added.<br />
<br />
&quot;We would get an article and we would have 15 days on it in average where that article is on our disc and we can parse that article, we can tokenise the article, we can find all the keywords and we can figure out what this article is saying<br />
<br />
&quot;That was a thousand word article or something like that but in real time I get 140 characters and three seconds. That's what we have to judge the relevance of this thing. So it's been incredibly hard.&quot;<br />
<br />
Two key elements<br />
<br />
Singhal says that there are two key elements to applying real-time trends to search.<br />
<br />
&quot;What we have done is two distinctive properties of real-time search our number one is integration into the results page - no-one else has done it basically because it's infinitely hard to do it!<br />
<br />
&quot;Secondly there is the comprehensiveness [of what we look at]. So we have Twitter updates, we have MySpace status updates we have Facebook page updates, we have all the blogs we get for our blog search and all the news crawls we do and everything shows up on real -ime search integrated into the results page.<br />
<br />
&quot;It's been an amazing experience and our jobs are definitely not done.<br />
<br />
&quot;We are still working hard to further sharpen the relevance of this product because everyone can improve and so can this product.&quot;<br />
<br />
The factors involved<br />
<br />
Singhal showed off a slide in his presentation that showed off the wealth of different factors considered by Google's algorithm before it puts the real time results into the page.<br />
<br />
That list is: language model, tweet quality, author quality, probability of relevance, semantics, real time URL resolution (ie checking the bit.ly link actually goes to a relevant page), query registration, query hotness, query volume fluctuation and tipicality.<br />
<br />
So, to get a tweet on the Google page you need to be talking about a major topic that is trending, at the right time, your link needs to go to a relevant page and matters like your wording and how many followers/friends and how many have retweeted/liked you are taken in to account.<br />
<br />
As Singhal suggests, no mean feat.<br />
<br />
Read more: <a href="http://www.techradar.com/news/internet/revealed-what-goes-into-google-real-time-search-703687#ixzz0trycBaP7" target="_blank">http://www.techradar.com/news/intern...#ixzz0trycBaP7</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=39">Techno News</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13583</guid>
		</item>
		<item>
			<title><![CDATA[Technology News- No 3D for Wii 2, says Nintendo's Miyamoto]]></title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13582&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 18:57:47 GMT</pubDate>
			<description>Nintendo has shot down rumour and speculation that the next iteration of the Wii (unsurprisingly dubbed Wii 2) will use 3D technology. 
 
In an...</description>
			<content:encoded><![CDATA[<div>Nintendo has shot down rumour and speculation that the next iteration of the Wii (unsurprisingly dubbed Wii 2) will use 3D technology.<br />
<br />
In an interview for German website Spiegel.de and picked up by CrunchGear, Nintendo's general manager Shigeru Miyamoto has said he is doubtful that 3D will be used on the console and it is all down to most consumers not yet owning a 3D TV.<br />
<br />
Not our next step<br />
<br />
In the translated interview, Miyamoto says: &quot;For [3D in] the living room, you would need a 3D TV and it will take some time before enough households have 3D TVs,&quot; continuing with &quot;I do not think this next step will be ours.&quot;<br />
<br />
This slightly contradicts what Nintendo President Satoru Iwata said at E3, which was that Nintendo may consider 3D on the Wii 2 if adoption rates of TVs hit 30 per cent.<br />
<br />
A 30 per cent adoption rate is unlikely to happen before the Wii 2 is launched, so it's more than likely Nintendo will opt to release the Wii 3D once/if the market has truly established itself.<br />
<br />
For now, it seems that Nintendo is happy to keep its 3D side of the business strictly to the handheld market and the Nintendo 3DS.<br />
<br />
<a href="http://3dradar.techradar.com/3d-tech/no-3d-wii-2-says-nintendos-miyamoto-16-07-2010" target="_blank">http://3dradar.techradar.com/3d-tech...oto-16-07-2010</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=39">Techno News</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13582</guid>
		</item>
		<item>
			<title><![CDATA[Daily News (Tech) Acer announces world's slimmest LCD displays]]></title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13581&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 18:56:01 GMT</pubDate>
			<description>Acer has this week announced its new S1 Series LCD displays, ranging from 18.5 inches to 23 inches and measuring a tiny 13mm to 15mm thick. 
 
The...</description>
			<content:encoded><![CDATA[<div>Acer has this week announced its new S1 Series LCD displays, ranging from 18.5 inches to 23 inches and measuring a tiny 13mm to 15mm thick.<br />
<br />
The four new models offer up full HD, a contrast ratio of 12,000,000:1 and a 5ms response time, as well as packing an attractive, glossy black design.<br />
<br />
&quot;Designed from scratch to combine an eye-catching design with excellent video graphic performance, this series is a real jewel, including innovative display technologies to deliver crisp and clear images,&quot; the says Acer about the products.<br />
<br />
&quot;With clean lines, a polished black bezel and graceful glossy foot stand, the S1 series is the perfect blend of ultra slim, sophistication and style.&quot;<br />
<br />
Keeping it green<br />
<br />
Keeping to its green credentials, Acer continues its EcoDisplay campaign with a logo on the display indicating low environmental impact, made possible by using environmentally friendly materials and achieving low power consumption.<br />
<br />
The S1 displays include VGA and DVI ports with HDCP encryption, so you'll be able to watch all of your purchased HD content with their tedious DRM protection. An HDMI port is available on the 21 and 23 inch models only.<br />
<br />
That contrast ratio is constantly altered with every frame by Acer's Adaptive Contrast Management to achieve ultra-sharp images.<br />
<br />
The Acer S1 Series displays retail from £119.99 for the 18.5inch model, up to £169.99 for the 23 inch.<br />
<br />
Read more: <a href="http://www.techradar.com/news/computing/acer-announces-world-s-slimmest-lcd-displays-703555#ixzz0trxlQIQT" target="_blank">http://www.techradar.com/news/comput...#ixzz0trxlQIQT</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=41">News In Short (Tech)</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13581</guid>
		</item>
		<item>
			<title>Technology News- Google expert outlines future of search</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13580&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 18:54:40 GMT</pubDate>
			<description><![CDATA[One of Google's most senior search experts has outlined the future of search, believing that 'searching without searching' will begin to organise our...]]></description>
			<content:encoded><![CDATA[<div>One of Google's most senior search experts has outlined the future of search, believing that 'searching without searching' will begin to organise our lives.<br />
<br />
Speaking to TechRadar, Google Fellow Amit Singhal outlined how he believes search can progress – although he is keen to underline the pressing need for offering people transparency and control of the information and their own privacy.<br />
<br />
Singhal explains that the components are all there to begin to offer us the right information at the right place and time, without the need to search for it.<br />
<br />
Searching without searching<br />
<br />
&quot;One thing that I am very excited about is the possibility of searching without searching,&quot; said Singhal, giving an example of what he means.<br />
<br />
&quot;What we have today is these wonderful components; my calendar is on the cloud, my calendar knows that after I am done here today I will have dinner with my family, my calendar also knows my to do list.<br />
<br />
&quot;One of the things on my to do list is to buy a cricket bat because my old one is going dry.<br />
<br />
&quot;So my calendar knows when I have free time, my [GPS-enabled] phone knows where I am, my to do list has a list of things I need to accomplish and time is expensive.<br />
<br />
&quot;On top of that Google local knows the map of this place and it knows where all the sports shops are - so why cant this thing tell me 'you have 45 minutes free in your agenda, there's a sports shop 300 metres away go and buy a cricket bat'.<br />
<br />
&quot;And by the way 'get out turn right walk 200 metres turn right 100 metres and it's there'.<br />
<br />
&quot;This is based on things that are already there.&quot;<br />
<br />
Birthday blues<br />
<br />
Singhal gives another example where search should be able to provide even more relevant information based on calendar, events and to do lists.<br />
<br />
&quot;There is no reason why search cannot go to that step where it knows that, back in May my wife's birthday was coming up, I wanted to buy an iPad and being the busy man that I am I walked up to the Apple store on the day of her birthday before we were due to go out for dinner.<br />
<br />
&quot;I said 'can I buy an iPad' and he looked at me and almost laughed, 'Sir, you can order one and get it in three weeks'.<br />
<br />
&quot;So why can't this thing tell me that an event is coming up based on the calendar, and why can't it tell me what I can afford and base what I might want on my search history.<br />
<br />
&quot;Why can't it tell me that my friend [Google's] Matt Cutts has reviewed the iPad, and know that he is my friend because of my social networks, and why can't it say it needs to be ordered three weeks in advance?<br />
<br />
&quot;Why can't it stop me from having to sleep on the couch.&quot;<br />
<br />
Read more: <a href="http://www.techradar.com/news/internet/google-expert-outlines-future-of-search-703536#ixzz0trxRJkBt" target="_blank">http://www.techradar.com/news/intern...#ixzz0trxRJkBt</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=39">Techno News</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13580</guid>
		</item>
		<item>
			<title>Daily News (Tech) Gateway and Acer tout eco-friendly monitors</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13579&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 18:53:23 GMT</pubDate>
			<description>Gateway has unveiled its 16:10 ratio MW19 and MW19V LCD monitors designed for professional office use. 
 
The 19in monitors come with a dynamic...</description>
			<content:encoded><![CDATA[<div>Gateway has unveiled its 16:10 ratio MW19 and MW19V LCD monitors designed for professional office use.<br />
<br />
The 19in monitors come with a dynamic contrast ratio of 50,000:1, allowing buyers to view heavy data files or computer-aided design applications with precision and sharply defined lines, the firm claimed.<br />
<br />
The displays have a 5ms response time, and come with a number of ports, including VGA, DVI and HDCP, to ensure connectivity to a wide range of devices.<br />
<br />
All Gateway displays feature a two-lamp system which consumes up to 50 per cent less power, and are PVC and BFR free, according to the vendor. The monitors will be released on 1 August. Pricing has yet to be confirmed.<br />
<br />
Meanwhile, Acer has released its S1 monitor range, two of which are the thinnest flat screens on the market at 13mm, according to the vendor. The range comprises the 18in S191HQL, 20in S201HL, 21in S221HQL and 23in S231HL.<br />
<br />
The monitors, available now, have a contrast ratio of 12,000,000:1 and 5ms response times, Acer said, while the 'EcoDisplays' are compliant with EnergyStar 5.0 and the latest ISO 9241-307 standard.<br />
<br />
The displays offer low power consumption, are made from environmentally friendly materials, and are PVC and BFR free.<br />
<br />
Acer's eColor Management technology enables the panels to adapt to different light conditions, and allows users to fine-tune the display settings. Adaptive Contrast Management adjusts the contrast ratio to achieve ultra-sharp images, Acer added.<br />
<br />
The firm's eDisplay Management provides advanced colour calibration and display management options, and each personalised setting can be stored and recalled for different applications and light conditions.<br />
<br />
The Acer S1 display series comes with a three-year return-to-base warranty. Prices start at £119.99 for the S191HQL rising to £169.99 for the S231HL.<br />
Permalink: <a href="http://www.v3.co.uk/2266631" target="_blank">http://www.v3.co.uk/2266631</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=41">News In Short (Tech)</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13579</guid>
		</item>
		<item>
			<title>Technology News- HP delays Android-based Slate tablet</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13578&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 18:51:51 GMT</pubDate>
			<description><![CDATA[HP has reportedly pushed back the launch date of its first tablet device to run Google's Android operating system. 
 
The delay is down to HP's...]]></description>
			<content:encoded><![CDATA[<div>HP has reportedly pushed back the launch date of its first tablet device to run Google's Android operating system.<br />
<br />
The delay is down to HP's focusing on the webOS platform acquired with its $1.2bn (£794m) purchase of Palm earlier this year.<br />
<br />
The rumours surfaced late yesterday, when sources close to HP said that the Android tablet will not ship until next year, The Wall Street Journal reported.<br />
<br />
HP had said after the Palm acquisition that the Android-based Slate would be ready to ship in the last quarter of this year.<br />
<br />
However, in line with repeated statements of its commitment to the research and development arm of Palm, sources now say that the Android device is unlikely to make an appearance in the rapidly growing tablet market anytime soon.<br />
<br />
Jim Burns, vice president of investor relations at HP, said in a call to discuss the acquisition of Palm that the company will look to broaden the reach of webOS.<br />
<br />
&quot;We are going to take this platform, which today exists for smartphones only, and make it much broader than that,&quot; he said at the time. But the firm has remained tight-lipped so far on any detail.<br />
<br />
HP is, of course, hedging its bets by developing a Windows 7-based tablet as well. But it remains to be seen whether its efforts with Windows will also be affected by the prioritisation of its own webOS development.<br />
<br />
HP had not responded to a V3.co.uk request for comment at the time of writing.<br />
Permalink: <a href="http://www.v3.co.uk/2266602" target="_blank">http://www.v3.co.uk/2266602</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=39">Techno News</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13578</guid>
		</item>
		<item>
			<title>Technology News- Losing bidders for Palm revealed</title>
			<link>http://forum.meetthegeeks.org/forum/showthread.php?t=13577&amp;goto=newpost</link>
			<pubDate>Fri, 16 Jul 2010 18:50:51 GMT</pubDate>
			<description>A report on BusinessInsider claims that a large number of companies had registered an interest in purchasing Palm earlier this year. 
 
Around 16...</description>
			<content:encoded><![CDATA[<div>A report on BusinessInsider claims that a large number of companies had registered an interest in purchasing Palm earlier this year.<br />
<br />
Around 16 firms were in discussions, with five leading to more &quot;serious&quot; talks, the report suggests.<br />
<br />
These five were Apple, Google, Research in Motion (RIM), another unspecified bidder, and the eventual victor HP. BusinessInsider cited an unnamed source for its claims, but has provided a number of details.<br />
<br />
Apple was after Palm's intellectual property and patent assets, which apparently number almost 900. Apple may also have been interested in propping the firm up, particularly to &quot;challenge RIM's dominance in the keyboarded segment of the smartphone industry&quot;.<br />
<br />
Apple did not bid high enough, however, and neither did RIM, which was a high bidder and would have &quot;had to work incredibly hard to blow it&quot;, according to the source. However, the firm apparently fell out of the running after HP upped its bid.<br />
<br />
Google, the last also-ran, could live to regret its role in the deal, the report said, because it may have wanted to stop Apple buying Palm.<br />
<br />
&quot;Google supposedly didn't know Apple was actually bidding for Palm, so it didn't proceed,&quot; the insider said.<br />
<br />
HP eventually acquired Palm for $1.2bn (£794m).<br />
Permalink: <a href="http://www.v3.co.uk/2266599" target="_blank">http://www.v3.co.uk/2266599</a></div>

]]></content:encoded>
			<category domain="http://forum.meetthegeeks.org/forum/forumdisplay.php?f=39">Techno News</category>
			<dc:creator>Guy00</dc:creator>
			<guid isPermaLink="true">http://forum.meetthegeeks.org/forum/showthread.php?t=13577</guid>
		</item>
	</channel>
</rss>
