<?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"
	>

<channel>
	<title>karlpox</title>
	<atom:link href="http://karlpox.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://karlpox.com</link>
	<description>with GOD all things are possible</description>
	<pubDate>Thu, 08 Jan 2009 06:50:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Protected: what make abz happy??</title>
		<link>http://karlpox.com/2009/01/what-make-abz-happy/</link>
		<comments>http://karlpox.com/2009/01/what-make-abz-happy/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 06:50:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://karlpox.com/?p=174</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://karlpox.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-174">Password:<br />
<input name="post_password" id="pwbox-174" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://karlpox.com/2009/01/what-make-abz-happy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Koreano</title>
		<link>http://karlpox.com/2008/11/koreano/</link>
		<comments>http://karlpox.com/2008/11/koreano/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 05:24:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[UIC]]></category>

		<guid isPermaLink="false">http://karlpox.com/?p=171</guid>
		<description><![CDATA[
Sean the Koreanong ROTC
]]></description>
			<content:encoded><![CDATA[<p><img src="http://dcw-performance.com/files/CIMG0024.JPG" alt="" width="487" height="365" /></p>
<p>Sean the Koreanong ROTC</p>
]]></content:encoded>
			<wfw:commentRss>http://karlpox.com/2008/11/koreano/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Programming Practice Java 1</title>
		<link>http://karlpox.com/2008/11/programming-practice-java-1/</link>
		<comments>http://karlpox.com/2008/11/programming-practice-java-1/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 12:26:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[Programming Practice]]></category>

		<guid isPermaLink="false">http://karlpox.com/?p=167</guid>
		<description><![CDATA[The Closet Pair Problem

import java.io.*;
import java.util.*;
import java.lang.*;
import java.text.*;
public class chuva
{
	public static void main(String args[]) throws IOException
	{
		File 			f	= new File(&#8221;C:\\x\\pair.txt&#8221;);
		FileReader		fr	= new FileReader(f);
		BufferedReader	br	= new BufferedReader(fr);
		StringTokenizer st;
		int limit;
		int ctr =0;
		int x[] = new int[10000];
		int y[] = new int[10000];
		String temp;
		Double value;
		Double answer = 10000.00;
		DecimalFormat Currency = new DecimalFormat(&#8221;#0.0000&#8243;);
		String finalna;
		while (br.ready())
		{
			limit = Integer.parseInt(br.readLine());
			if ( limit == 0 )
			{
				break;
			}
			else if ( [...]]]></description>
			<content:encoded><![CDATA[<p>The Closet Pair Problem<br />
<span id="more-167"></span><br />
<code>import java.io.*;<br />
import java.util.*;<br />
import java.lang.*;<br />
import java.text.*;<br />
public class chuva<br />
{</p>
<p>	public static void main(String args[]) throws IOException<br />
	{<br />
		File 			f	= new File(&#8221;C:\\x\\pair.txt&#8221;);<br />
		FileReader		fr	= new FileReader(f);<br />
		BufferedReader	br	= new BufferedReader(fr);</p>
<p>		StringTokenizer st;<br />
		int limit;<br />
		int ctr =0;</p>
<p>		int x[] = new int[10000];<br />
		int y[] = new int[10000];</p>
<p>		String temp;<br />
		Double value;<br />
		Double answer = 10000.00;<br />
		DecimalFormat Currency = new DecimalFormat(&#8221;#0.0000&#8243;);</p>
<p>		String finalna;</p>
<p>		while (br.ready())<br />
		{<br />
			limit = Integer.parseInt(br.readLine());<br />
			if ( limit == 0 )<br />
			{<br />
				break;<br />
			}<br />
			else if ( limit > -1 &#038;&#038; limit <= 10000 )<br />
			{</p>
<p>				ctr = 0;<br />
				answer = 10000.00;<br />
				for ( int a=0; a
<limit; a++ )<br />
				{<br />
					temp	=	br.readLine();<br />
					st		=	new StringTokenizer(temp);</p>
<p>					x[ctr] = Integer.parseInt(st.nextToken());<br />
					y[ctr] = Integer.parseInt(st.nextToken());</p>
<p>					ctr++;<br />
				}</p>
<p>				for ( int a=0; a<ctr; a++ )<br />
				{<br />
					for ( int b=0; b<ctr; b++ )<br />
					{<br />
						if ( a!=b )<br />
						{<br />
							value = Math.sqrt(Math.pow((x[a]-x[b]),2)+Math.pow((y[a]-y[b]),2));<br />
							if ( value < answer )<br />
							{<br />
								answer = value;<br />
							}<br />
						}<br />
					}<br />
				}</p>
<p>				if ( answer < 10000)<br />
				{<br />
					finalna = Currency.format(answer);<br />
					System.out.println(finalna);<br />
				}<br />
				else{<br />
					System.out.println("INFINITY");<br />
				}</p>
<p>			}<br />
			else if ( limit > 10000){<br />
				for ( int a=0; a
<limit; a++)<br />
				{<br />
					br.readLine();<br />
				}<br />
			}<br />
		}<br />
	}<br />
}</code><br />
]]></content:encoded>
			<wfw:commentRss>http://karlpox.com/2008/11/programming-practice-java-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 Amazing Coincidences</title>
		<link>http://karlpox.com/2008/10/10-amazing-coincidences/</link>
		<comments>http://karlpox.com/2008/10/10-amazing-coincidences/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 00:24:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Humor]]></category>

		<category><![CDATA[amazing]]></category>

		<category><![CDATA[coincidences]]></category>

		<guid isPermaLink="false">http://karlpox.com/?p=162</guid>
		<description><![CDATA[What&#8217;s in a Name?

A computer error gave two women in America called Patricia the same social security number. When the two women were brought together in an office to rectify the blunder they discovered that

They had both been born with the names Patricia Ann Campbell
Both of their fathers were called Robert Campbell
Their birthdays were on [...]]]></description>
			<content:encoded><![CDATA[<h3>What&#8217;s in a Name?</h3>
<p><img src="http://images.stanzapub.com/readers/2008/08/27/0_22.jpg" alt="" /></p>
<p>A computer error gave two women in America called Patricia the same social security number. When the two women were brought together in an office to rectify the blunder they discovered that</p>
<ul>
<li>They had both been born with the names Patricia Ann Campbell</li>
<li>Both of their fathers were called Robert Campbell</li>
<li>Their birthdays were on 13th March 1941</li>
<li>They had both married military men in the year 1959 (within eleven days of each other)</li>
<li>They each had two children aged 19 and 21</li>
<li>They both had an interest in oil painting</li>
<li>Both had studied cosmetics</li>
<li>Both had worked as book-keepers</li>
</ul>
<h3>Bullet With Your Name on It</h3>
<p><img src="http://images.stanzapub.com/readers/2008/08/27/1_8.jpg" alt="" /></p>
<p>In 1893, Henry Ziegland ended a relationship with his girlfriend.</p>
<p>Tragically, his girlfriend took the news very badly, became distraught and took her own life.</p>
<p>Her distressed brother blamed his sister&#8217;s death upon Henry, he went round to Henry&#8217;s house, saw him out in the garden and tried to shoot him.</p>
<p>Luckily, the bullet only grazed Henry&#8217;s face and embedded itself in a nearby tree.</p>
<p>In 1913, twenty years after this incident, Henry decided to use dynamite to uproot a tree in his garden. The explosion propelled the embedded bullet from the tree straight into Henry Ziegland&#8217;s head - killing him immediately.</p>
<h3>Lucky Hughs?</h3>
<p><img src="http://images.stanzapub.com/readers/2008/08/27/297297_0.jpg" alt="" /></p>
<p>On December 5th 1660, a ship sank in the straights of Dover - the only survivor was noted to be Hugh Williams.</p>
<p>On 5th December 1767, another ship sank in the same waters - 127 lost their lives, the only survivor was noted to be Hugh Williams</p>
<p>On 8th August 1820, a picnic boat capsized on the Thames - there was one survivor - Hugh Williams.</p>
<p>On 10th July 1940, a British trawler was destroyed by a German mine - only two men survived, one man and his nephew - they were both called Hugh Williams.</p>
<h3>With a Quack Quack Here</h3>
<p><img src="http://images.stanzapub.com/readers/2008/08/27/3_6.jpg" alt="" /></p>
<p>Mr McDonald was a farmer who lived in Canada - nothing extra-ordinary in that - until you learn that his postcode contained the letter sequence EIEIO.</p>
<h3>&#8216;Til Death Did Them Part</h3>
<p><img src="http://images.stanzapub.com/readers/2008/08/27/5_6.jpg" alt="" /></p>
<p>In 1996, Paris police set out to investigate a late night, high speed car crash, both drivers had been killed instantly.</p>
<p>Investigations revealed that the deceased were in fact man and wife.</p>
<p>Police initially suspected some kind of murder or suicide pact but it became apparent that the pair had been separated for several months - neither could have known that the other would have been out driving that night - it was just a terrible coincidence.</p>
<h3>She&#8217;s Behind You!</h3>
<p><img src="http://images.stanzapub.com/readers/2008/08/27/6_5.jpg" alt="" /></p>
<p>Michael Dick had been travelling around the UK with his family to track down his daughter, Lisa - who he had lost contact with ten years earlier.</p>
<p>After a long fruitless search, he approached the Suffolk Free Press, who agreed to help him by putting an appeal in their newspaper.</p>
<p>Fortunately, his long lost daughter saw the appeal and the pair were reunited. The odd thing was, his daughter had been right behind him when the free paper took the photograph - shown in the photograph above. What are the chances of that!</p>
<h3>Licensed To Thrill</h3>
<p><img src="http://images.stanzapub.com/readers/2008/08/27/7_5.jpg" alt="" /></p>
<p>A fifteen year old pupil at Argoed High School in North Wales was to sit his GCSE examinations in 1990.</p>
<p>His name was James Bond - his examination paper reference was 007.</p>
<h3>What Goes Around….</h3>
<p><img src="http://images.stanzapub.com/readers/2008/08/27/297297_1.jpg" alt="" /></p>
<p>In 1965, at the age of four, Roger Lausier was swimming off a beach in Salem - he got into difficulties and was saved from drowning by a woman called Alice Blaise.</p>
<p>In 1974, on the same beach, Roger was out on a raft when he pulled a drowning man from the water - amazingly, the man he saved was Alice Blaise&#8217;s husband.</p>
<h3>Lightning Never Strikes Twice?</h3>
<p><img src="http://images.stanzapub.com/readers/2008/08/27/297297_2.jpg" alt="" /></p>
<p>British cavalry officer Major Summerford was fighting in the fields of Flanders in the last year of WW1, a flash of lightning knocked him off his horse and paralysed him from his waist down.</p>
<p>He moved to Vancouver, Canada, six years later, whilst out fishing, Major Summerfield was struck by lightning again and the right side of his body became paralysed.</p>
<p>After two years of recovery, it was a summers day and he was out in a local park, a summer storm blew up and Major Summerfield was struck by lightning again - permanently paralysing him.</p>
<p>He died two years after this incident.</p>
<p>However, four years after his death, his stone tomb was destroyed - it was struck by lightning!</p>
<h3>Practice What You Preach</h3>
<p><img src="http://images.stanzapub.com/readers/2008/08/27/297297_3.jpg" alt="" /></p>
<p>Businessman Danie de Toit made a speech to an audience in South Africa - the topic of his speech was - watch out because death can strike you down at any time.</p>
<p>At the end of his speech, he put a peppermint in his mouth, and choked to death on it!</p>
]]></content:encoded>
			<wfw:commentRss>http://karlpox.com/2008/10/10-amazing-coincidences/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pilapil TARUGO!</title>
		<link>http://karlpox.com/2008/10/pilapil-tarugo/</link>
		<comments>http://karlpox.com/2008/10/pilapil-tarugo/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 10:09:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[UIC]]></category>

		<category><![CDATA[bsit]]></category>

		<category><![CDATA[it3a]]></category>

		<category><![CDATA[tarugo]]></category>

		<guid isPermaLink="false">http://karlpox.com/?p=160</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/Vefs2V_cJIE&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/Vefs2V_cJIE&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://karlpox.com/2008/10/pilapil-tarugo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPhone TV Ad Deemed Misleading</title>
		<link>http://karlpox.com/2008/09/iphone-tv-ad-deemed-misleading/</link>
		<comments>http://karlpox.com/2008/09/iphone-tv-ad-deemed-misleading/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 15:48:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://karlpox.com/?p=156</guid>
		<description><![CDATA[
 The British Advertising Standards Authority ruled that a new Apple iPhone TV advertisement misled consumers, and hence should never be aired again.
The advert claims that iPhone gives you access to &#8220;all the parts of the internet are on the iPhone&#8221;, but the ASA ruled that the iPhone&#8217;s lack of Java and Flash support means [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://megagames.com/news/images/iphone-internet.jpg" alt="" /></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"> The British Advertising Standards Authority ruled that a new Apple iPhone TV advertisement misled consumers, and hence should never be aired again.</span></span></p>
<p>The advert claims that iPhone gives you access to <strong>&#8220;all the parts of the internet are on the iPhone&#8221;</strong>, but the ASA ruled that the iPhone&#8217;s lack of Java and Flash support means that this claim is misleading.</p>
<p>Apple had argued its claim referred to availability of webpages, rather than their specific appearance.</p>
<p>The advert <strong>&#8220;gave a misleading impression of the internet capabilities of the iPhone&#8221;</strong>, said Olivia Campbell, a spokesperson for the ASA. <strong>&#8220;Because the iPhone doesn&#8217;t support Flash or Java, you couldn&#8217;t really see the internet in its full glory.&#8221;</strong></p>
<p><strong>&#8220;They made a very general claim that you can see the internet in its entirety, and actually that&#8217;s not quite true - so we&#8217;ve upheld.&#8221;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://karlpox.com/2008/09/iphone-tv-ad-deemed-misleading/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Launches Chrome Web Browser</title>
		<link>http://karlpox.com/2008/09/google-launches-chrome-web-browser/</link>
		<comments>http://karlpox.com/2008/09/google-launches-chrome-web-browser/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 15:47:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[browser]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[google chrome]]></category>

		<guid isPermaLink="false">http://karlpox.com/?p=154</guid>
		<description><![CDATA[
 Google today launched Google Chrome, a new open source browser intended to create a better web experience for users around the world.
Available in beta in more than 40 languages, Google Chrome is a new approach to the browser that&#8217;s based on the simplicity and power that users have come to expect from Google products.
In [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://megagames.com/news/images/chrome_tab_pulled_out.jpg" alt="" width="440" height="318" /></p>
<p><span style="font-size: x-small;"> Google today launched <strong>Google Chrome</strong>, a new open source browser intended to create a better web experience for users around the world.</span></p>
<p>Available in beta in more than 40 languages, Google Chrome is a new approach to the browser that&#8217;s based on the simplicity and power that users have come to expect from Google products.</p>
<p>In the early days of the Internet, web pages were frequently little more than text. But today the web has evolved into a powerful platform that enables users to collaborate with friends and colleagues through email and other web applications, edit documents, watch videos, listen to music, manage finances and much more. Google Chrome was built for today&#8217;s web and for the applications of tomorrow.</p>
<p><strong>&#8220;We think of the browser as the window to the web - it&#8217;s a tool for users to interact with the web sites and applications they care about, and it&#8217;s important that we don&#8217;t get in the way of that experience,&#8221;</strong> said Sundar Pichai, Vice President of Product Management, Google Inc. <strong>&#8220;Just like the classic Google homepage, Google Chrome has a simple user interface with a sophisticated core to enable the modern web.&#8221;</strong></p>
<p>Google Chrome was designed to make it easy for users to search and navigate the web for the content they&#8217;re looking for.<br />
- A combined search and address bar quickly takes users where they want to go, often in just a few keystrokes.<br />
- When users open a new tab in Google Chrome, they&#8217;ll see a page that includes snapshots of their most-visited sites, recent searches and bookmarks, making it even easier to navigate the web.<br />
- Each browser tab operates as a separate process; by isolating tabs, should one tab crash or misbehave, others remain stable and responsive, and users can continue working without having to restart Google Chrome.<br />
- Google also built a new JavaScript engine, V8, which not only speeds up today&#8217;s web applications, but enables a whole new class of web applications that couldn&#8217;t exist on today&#8217;s browsers.</p>
<p><strong>&#8220;While we see this as a fundamental shift in the way people think about browsers, we realize that we couldn&#8217;t have created Google Chrome on our own,&#8221;</strong> said Linus Upson, Director of Engineering, Google Inc. <strong>&#8220;Google Chrome was built upon other open source projects that are making significant contributions to browser technology and have helped to spur competition and innovation.&#8221;</strong></p>
<p>Google Chrome is being released as an open source project under the name Chromium. The intent is that Google will help make future browsers better by contributing the underlying technology in Google Chrome to the market, while continuing to develop additional features.</p>
<p>Google Chrome is being released in beta for Windows in over 100 countries in the following languages: Chinese (Traditional), Chinese (Simplified), Dutch, French, German, Italian, Japanese, Korean, Portuguese (Portugal), Portuguese (Brazil), Russian, Spanish, Spanish (Latin America), Turkish, English (US), English (UK), Arabic, Czech, Danish, Hebrew, Hindi, Norwegian, Polish, Swedish, Indonesian, Ukrainian, Bulgarian, Catalan, Croatian, Filipino, Finnish, Greek, Hungarian, Latvian, Lithuanian, Romanian, Serbian, Slovakian, Slovenian, Thai, Vietnamese, and Estonian.<br />
Google Chrome for Mac and Linux users will be available in the coming months.</p>
<p><span style="font-size: x-small;"> </span></p>
<table border="0" width="100%">
<tbody>
<tr>
<td width="40%" align="left"></td>
<td width="20%"></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://karlpox.com/2008/09/google-launches-chrome-web-browser/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Intel Nehalem Processors Get A New Name: i7</title>
		<link>http://karlpox.com/2008/09/intel-nehalem-processors-get-a-new-name-i7/</link>
		<comments>http://karlpox.com/2008/09/intel-nehalem-processors-get-a-new-name-i7/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 15:46:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[cpu]]></category>

		<category><![CDATA[i7]]></category>

		<category><![CDATA[intel]]></category>

		<category><![CDATA[nehalem]]></category>

		<category><![CDATA[processor]]></category>

		<guid isPermaLink="false">http://karlpox.com/?p=152</guid>
		<description><![CDATA[ Intel announced today that desktop processors based on the company&#8217;s upcoming new microarchitecture (codenamed &#8220;Nehalem&#8221;) will be formally branded Intel Core processor.
The first products in this new family of processors, including an &#8220;Extreme Edition&#8221; version, will carry an i7 identifier and will be formally branded as Intel Core i7 processor. This is the first [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: x-small;"><span style="font-size: x-small;"> Intel announced today that desktop processors based on the company&#8217;s upcoming new microarchitecture (codenamed &#8220;Nehalem&#8221;) will be formally branded <strong>Intel Core processor</strong>.</p>
<p>The first products in this new family of processors, including an &#8220;Extreme Edition&#8221; version, will carry an <strong>i7</strong> identifier and will be formally branded as <strong>Intel Core i7 processor</strong>. This is the first of several new identifiers to come as different products launch over the next year.</p>
<p><strong>&#8220;The Core name is and will be our flagship PC processor brand going forward,&#8221;</strong> said Sean Maloney, Intel Corporation executive vice president and general manager, Sales and Marketing Group. <strong>&#8220;Expect Intel to focus even more marketing resources around that name and the Core i7 products starting now.&#8221;</strong></p>
<p>The Intel Core processor brand name has gained broad awareness, preference, and market momentum over the past several years. The Intel Core name remains the logical choice for Intel&#8217;s latest family of processors. The Intel Core i7 processor brand logo will be available for high-performance desktop PCs with a separate black logo for Intel&#8217;s highest-end &#8220;Extreme Edition.&#8221; Intel will include processor model numbers to differentiate each chip.</p>
<p>Initial products based on this microarchitecture are expected to be in production in the fourth quarter of this year. These processors will feature Intel Hyper-Threading Technology, also known as simultaneous multi-threading, and are capable of handling eight software &#8220;threads&#8221; on four processor cores.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://karlpox.com/2008/09/intel-nehalem-processors-get-a-new-name-i7/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nvidia Unlocks PhysX On GeForce 8 GPUs</title>
		<link>http://karlpox.com/2008/09/nvidia-unlocks-physx-on-geforce-8-gpus/</link>
		<comments>http://karlpox.com/2008/09/nvidia-unlocks-physx-on-geforce-8-gpus/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 15:45:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[geforce]]></category>

		<category><![CDATA[gpu]]></category>

		<category><![CDATA[nvdia]]></category>

		<category><![CDATA[physx]]></category>

		<guid isPermaLink="false">http://karlpox.com/?p=150</guid>
		<description><![CDATA[
 Nvidia released today the GeForce Power Pack a free compilation of games, demos, and mod packs for PC that takes advantage of CUDA and PhysX on GeForce 8 and higher Nvidia graphics cards.
On the PC, PhysX technology harnesses the power of any CUDA-enabled general-purpose parallel computing processor, including any NVIDIA GeForce 8 Series or [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://megagames.com/news/images/nurien_large.jpg" alt="" width="450" height="253" /></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"> Nvidia released today the <strong>GeForce Power Pack</strong> a free compilation of games, demos, and mod packs for PC that takes advantage of CUDA and PhysX on GeForce 8 and higher Nvidia graphics cards.</span></span><span id="more-150"></span></p>
<p>On the PC, PhysX technology harnesses the power of any CUDA-enabled general-purpose parallel computing processor, including any NVIDIA GeForce 8 Series or higher GPU, to handle 10-20 times more visual complexity than what&#8217;s possible on today&#8217;s traditional PC platforms. All of the 80 million plus GeForce 8 Series and higher GPUs in the field are CUDA-enabled, the largest installed base of general-purpose, parallel-computing processors ever created.</p>
<p>PhysX technology can leverage the best of both CPU and GPU architectures to deliver the best end user experience possible. Upcoming PC titles that incorporate PhysX technology include Cryostasis, Backbreaker, Aliens: Colonial Marines, with close to 20 more PC titles expected before the year-end holiday seasons.</p>
<p><strong>&#8220;Game physics is essential in enabling deeper interactivity and real-world effects in any game. Epic is pleased to offer PhysX as a standard feature within Unreal Engine 3 to enable such effects,&#8221;</strong> said Mark Rein, Vice President of Epic Games. <strong>&#8220;The introduction of GPU acceleration for PhysX promises both additional potential effects and faster performance. You can get a glimpse of the possibilities of what PhysX is able to do with the special levels for Unreal Tournament 3 where damage effects greatly enhance the gameplay.&#8221;</strong></p>
<p>The GeForce Power Pack released today is the first of many planned GeForce Power Packs and it includes:<br />
* Warmonger-Full free game! Destroy walls, floors, and whole buildings to open up new paths or close existing ones. Destructive power is more than eye candy here-it&#8217;s a tactical weapon in this ground-breaking action game.<br />
* Unreal Tournament 3 PhysX Mod Pack-includes three maps with amazing effects that fundamentally change the gameplay (requires full version of Unreal Tournament 3)<br />
* A sneak peek at the upcoming Nurien social networking service, based on the Unreal Engine 3 (with built-in benchmark)<br />
* A sneak peek at the upcoming game Metal Knight Zero (with built-in benchmark)<br />
* All new NVIDIA <strong>&#8220;The Great Kulu&#8221;</strong> tech demo that showcases the use of PhysX soft bodies in a real game play environment<br />
* All new NVIDIA <strong>&#8220;Fluid&#8221;</strong> tech demo-a simulation of realistic fluid effects with a variety of liquids</p>
<p>In conjunction with the release of the GeForce Power Pack, NVIDIA has also released new WHQL-certified drivers that enable PhysX acceleration for all GeForce 8, 9, and GTX 200 Series GPUs. This new driver also adds support for PhysX-accelerated features in the commercially available Ghost Recon Advanced Warfighter 2 game.</p>
<p><strong>&#8220;The use of physics in games is highly effective in enabling new levels of interactivity and gameplay options. Gearbox is excited about these developments and we are rapidly finding new ways to use NVIDIA PhysX to improve the game&#8217;s immersive feel and overall excitement factor,&#8221;</strong> said Randy Pitchford, CEO of Gearbox Software. <strong>&#8220;The addition of GPU acceleration allows us to add even more effects whilst maintaining great performance. Gearbox titles, including Borderlands and others, will feature increased use of PhysX and we look forward to developing more with the support of NVIDIA.&#8221;</strong></p>
<p><strong>&#8220;Seeing really is believing and is the reason why we compiled all of this great PhysX content into a free download for our end users,&#8221;</strong> said Ujesh Desai, general manager for GeForce GPUs at NVIDIA. <strong>&#8220;We want GeForce owners to experience for themselves these amazing effects to get an idea how PhysX will make games much more lifelike in the years to come. Physics-accelerated content is already here, and there are a ton more titles on the way. We can&#8217;t wait for our customers to jump in, get wet, and tell us what they think!&#8221;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://karlpox.com/2008/09/nvidia-unlocks-physx-on-geforce-8-gpus/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AT&#038;T: iPhone 3G Faults Affect The Whole Network</title>
		<link>http://karlpox.com/2008/09/att-iphone-3g-faults-affect-the-whole-network/</link>
		<comments>http://karlpox.com/2008/09/att-iphone-3g-faults-affect-the-whole-network/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 15:44:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[3g]]></category>

		<category><![CDATA[at&amp;t]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://karlpox.com/?p=148</guid>
		<description><![CDATA[
 Less than 2 weeks in market and it is no secret that iPhone 3G faces trouble with 3G calls and high rate data transmission.
When the problem was first reported, Apple&#8217;s CEO Steve Jobs belittled it as he declared that it affected only 2% of the iPhone 3G user base i.e. just around 60,000 users. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://megagames.com/news/images/iPhone.jpg" alt="" /></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"> Less than 2 weeks in market and it is no secret that iPhone 3G faces trouble with 3G calls and high rate data transmission.</span></span><span id="more-148"></span></p>
<p>When the problem was first reported, Apple&#8217;s CEO Steve Jobs belittled it as he declared that it affected only 2% of the iPhone 3G user base i.e. just around 60,000 users. Nonetheless, Apple was quick to release update 2.0.1 that failed to solve the problem, followed by update 2.0.2 that did.</p>
<p>As usual with Apple, no details or explanations were given regarding the whole matter, but luckily for us, an AT&amp;T insider agreed to explain it all to RoughlyDrafted Magazine.</p>
<p>Here is what he said (and don&#8217;t worry, we&#8217;ll explain it in simpler words afterwards):<br />
<strong>&#8220;In UMTS (AT&amp;T 3G system) power control is key to the mobile and network success. If the UE (User Equipment = mobile phone) requires too much downlink power then the base station or Node B (base antenna) can run out of transmitter power and this is what was happening&#8221;</strong>.</p>
<p><strong>&#8220;As you get more UEs (phones) on the cell, the noise floor rises and the cell has to compensate by ramping up its power to the UEs. If the UE power control algorithm is faulty then they will demand more power from the cell than is necessary and with multiple users this can cause the cell transmitter to run out of power. The net result is that some UEs will drop their call. I have seen the dropped call graphs that correspond to the iPhone launch and when the 2.0.2 firmware was released. The increase in dropped calls, (were the result of) dropped calls due to a lack of downlink power.&#8221;</strong></p>
<p>Put simply, a bug in iPhone 3G caused it to ask the network for more power than necessary. When several iPhone 3Gs connected to the same node do that, they drain the network&#8217;s power, forcing it to drop calls and use lower transmission bandwidth.</p>
<p><strong>&#8220;This is one of the reasons why AT&amp;T has been sending text messages to users to persuade them to upgrade to the 2.0.2 software. In a mixed environment where users are running 2.0, 2.0.1, and 2.0.2, the power control problems of 2.0 and 2.0.1 will affect the 2.0.2 users.&#8221;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://karlpox.com/2008/09/att-iphone-3g-faults-affect-the-whole-network/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
