<?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>Info Freaking</title>
	<atom:link href="http://www.infofreaking.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.infofreaking.com</link>
	<description>The Best Info Weblog</description>
	<pubDate>Tue, 06 Jan 2009 11:31:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Beginner&#8217;s tutorial for Camtasia studio</title>
		<link>http://www.infofreaking.com/tips-and-tricks/beginners-tutorial-for-camtasia-studio/</link>
		<comments>http://www.infofreaking.com/tips-and-tricks/beginners-tutorial-for-camtasia-studio/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 11:19:44 +0000</pubDate>
		<dc:creator>superD</dc:creator>
		
		<category><![CDATA[Tips and Tricks]]></category>

		<category><![CDATA[begginer's]]></category>

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

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

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

		<guid isPermaLink="false">http://www.infofreaking.com/?p=123</guid>
		<description><![CDATA[Camtasia studio is well known screen recorder software, developed by Tech Smith company. It offers many features for screen recording and for video editing also. Although is not a free software, it will turn your recordings in a polished videos, better than most free video recorders or editors.
Working with Camtasia can be really easy with [...]]]></description>
			<content:encoded><![CDATA[<p>Camtasia studio is well known screen recorder software, developed by Tech Smith company. It offers many features for screen recording and for video editing also. Although is not a free software, it will turn your recordings in a polished videos, better than most free video recorders or editors.</p>
<p>Working with Camtasia can be really easy with some practice. For starters I will show you the first steps in recording your videos, and explain some of the main features.</p>
<p><a href="http://www.infofreaking.com/wp-content/uploads/2009/01/cam_studio.jpg"><img class="alignnone size-medium wp-image-124" title="camtasia_studio" src="http://www.infofreaking.com/wp-content/uploads/2009/01/cam_studio-300x198.jpg" alt="Camtasia studio" width="300" height="198" /></a></p>
<p>When you open your Camtasia studio (mine is version 5) you will see a pop-up window that will ask you with what do you want to start:</p>
<p>- New Screen Recording<br />
- New Voice Recording<br />
- New PowerPoint Recording<br />
- Import Media</p>
<p>Besides that, you also have options for video tutorials on the right, and an option to choose if you want to open some of your recent projects. I suppose you are probably a beginner so click at the New Screen Recording button.</p>
<p>After that a new window will appear, the same as below:</p>
<p><a href="http://www.infofreaking.com/wp-content/uploads/2009/01/cam-recorder.jpg"><img class="alignnone size-full wp-image-125" title="camtasia_recorder" src="http://www.infofreaking.com/wp-content/uploads/2009/01/cam-recorder.jpg" alt="Camtasia recorder" width="400" height="277" /></a></p>
<p>As you can see on the picture, a microphone is selected which means that it will record sounds too (good for video tutorials). If you put a mark below the “Camera” option on the picture, it will record a video from your web cam too, and include it in a screen recording. Your next step is to click on the “Select area to record” button. After that you only have to choose what part of the screen do you want to record, what size (width/height) do you want it to be and just press the “Record” button.</p>
<p>When you’re done recording your screen press the Stop button and preview your video. If you like it, save it, and if you don’t, delete it.</p>
<p>Congratulations! Your first video screen recording is done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infofreaking.com/tips-and-tricks/beginners-tutorial-for-camtasia-studio/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MySQL SSH tunnel with Putty</title>
		<link>http://www.infofreaking.com/technology/mysql-ssh-tunnel-with-putty/</link>
		<comments>http://www.infofreaking.com/technology/mysql-ssh-tunnel-with-putty/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 10:24:00 +0000</pubDate>
		<dc:creator>superZ</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.infofreaking.com/technology/mysql-ssh-tunnel-with-putty/</guid>
		<description><![CDATA[You can create SSH tunnel with Putty in few easy steps. 
First create SSH connection as you usually do or load existing one.
Then scroll down in Category section and choose Tunnels. In Source Port text field enter local port number which will be open for tunnel connection (we choose port 8600). In Destination field enter [...]]]></description>
			<content:encoded><![CDATA[<p>You can create SSH tunnel with Putty in few easy steps. </p>
<p>First create SSH connection as you usually do or load existing one.<br /><img style="max-width: 800px;" src="http://www.infofreaking.com/wp-content/uploads/2009/01/putty-create-connection.jpg" /></p>
<p>Then scroll down in Category section and choose Tunnels. In Source Port text field enter local port number which will be open for tunnel connection (we choose port 8600). In Destination field enter 127.0.0.1 and remote port number as shown in the following screenshot:<br /><img style="max-width: 800px;" src="http://www.infofreaking.com/wp-content/uploads/2009/01/putty-ssh-tunnel.jpg" /></p>
<p>127.0.0.1 is loopback address of remote machine. We choose 3306 for the remote port. It&#8217;s standard MySQL port. Basically we created tunnel for MySQL which can be very useful. You can keep high level of protection since you&#8217;ve disabled network connections on your remote MySQL server but using SSH tunnel you can still easily access your remote server from any local application.</p>
<p>Back to the procedure. Once you&#8217;ve entered Source port and Destination parameters click Add button then return on your connection and click Save button to save changes on your connection.</p>
<p>Now you&#8217;re ready to test your SSH tunnel. First connect to remote server using Putty as you usually do. Then use localhost and port 8600 (or any other you used during configuration) as MySQL host and port <br />for desired application which requires direct MySQL access.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infofreaking.com/technology/mysql-ssh-tunnel-with-putty/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is considered as slow MySQL query?</title>
		<link>http://www.infofreaking.com/tips-and-tricks/what-is-considered-as-slow-mysql-query/</link>
		<comments>http://www.infofreaking.com/tips-and-tricks/what-is-considered-as-slow-mysql-query/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 12:22:00 +0000</pubDate>
		<dc:creator>superZ</dc:creator>
		
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.infofreaking.com/uncategorized/what-is-considered-as-slow-mysql-query/</guid>
		<description><![CDATA[It&#8217;s pretty hard question. What you will consider as slow query execution depends on many factors. Those factors may include your server&#8217;s CPU, RAM, even disk space or simply the query design. While designing and constructing MySQL queries for your application you should always keep in mind that it&#8217;s always better to split one big [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s pretty hard question. What you will consider as slow query execution depends on many factors. Those factors may include your server&#8217;s CPU, RAM, even disk space or simply the query design. While designing and constructing MySQL queries for your application you should always keep in mind that it&#8217;s always better to split one big query, over bloated with many joins, to few simpler queries. Eat your geeky pride and write usable queries.<br /><img style="max-width: 800px;" src="http://www.infofreaking.com/wp-content/uploads/2008/12/spy-mysql-slow-queries.jpg" /><br />Back to main theme, how to detect slow queries. Well, first you have to turn on slow query tracking on your MySQL server. Do it by putting these lines in [mysqld] section inside your /etc/my.cnf file:</p>
<p>log-slow-queries = slow.log<br />long_query_time = 20</p>
<p>First line defines name of the log file as well as tell MySQL server to log slow queries. Second line defines time in seconds. MySQL server will consider query as slow if its execution exceeds time defined. Don&#8217;t forget to restart your server to make these changes effective.</p>
<p>Once you&#8217;re set up you should periodically inspect slow.log. If it&#8217;s empty you should consider decreasing long_query_time. Happy hunting!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infofreaking.com/tips-and-tricks/what-is-considered-as-slow-mysql-query/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Meet the iPhone’s granddaddy: Apple Newton</title>
		<link>http://www.infofreaking.com/technology/meet-the-iphone%e2%80%99s-granddaddy-apple-newton/</link>
		<comments>http://www.infofreaking.com/technology/meet-the-iphone%e2%80%99s-granddaddy-apple-newton/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 20:36:38 +0000</pubDate>
		<dc:creator>superM</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.infofreaking.com/?p=113</guid>
		<description><![CDATA[ 

It was introduced back in 1993. and is considered to be first PDA (Personal digital assistant) ever. With its handwriting recognition screen, auto rotating display for usage in horizontal and vertical mode, and some AI features Apple Newton was device way ahead its time. Many of the iPhone&#8217;s icons are reminiscent of the Newton [...]]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if !mso]><span class="mceItemObject"   classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></span></p>
<style>
st1\:*{behavior:url(#ieooui) }
</style>
<p><![endif]--> <!--[if gte mso 10]></p>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";
	mso-ansi-language:#0400;
	mso-fareast-language:#0400;
	mso-bidi-language:#0400;}
</style>
<p><![endif]--></p>
<p class="MsoNormal"><img class="alignnone size-medium wp-image-114" title="newton" src="http://www.infofreaking.com/wp-content/uploads/2008/11/newton-201x300.jpg" alt="" width="187" height="279" /></p>
<p class="MsoNormal">It was introduced back in 1993. and is considered to be first PDA (Personal digital assistant) ever. With its handwriting recognition screen, auto rotating display for usage in horizontal and vertical mode, and some AI features Apple Newton was device way ahead its time. Many of the iPhone&#8217;s icons are reminiscent of the Newton soft icons at the bottom of the screen. When introduced, in 2007. iPhone, was described by wired.com as &#8220;surprisingly close to what a current-generation Newton might look like if Jobs hadn&#8217;t killed the line in 1997&#8243;.</p>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if !mso]><span class="mceItemObject"   classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></span></p>
<style>
st1\:*{behavior:url(#ieooui) }
</style>
<p><![endif]--> <!--[if gte mso 10]></p>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";
	mso-ansi-language:#0400;
	mso-fareast-language:#0400;
	mso-bidi-language:#0400;}
</style>
<p><![endif]--></p>
<p class="MsoNormal">Although it had many advanced features Newton did not become mainstream gadget. Some of the reasons for this were high price tag of <span> </span>$1000 and large size (it failed the ‘pocket test’). Another factor which limited the Newton&#8217;s appeal was that desktop connectivity was not included in the basic retail package, a problem that was later solved for iPods and iPhones with the iTunes software.</p>
<p class="MsoNormal"><img class="alignnone size-medium wp-image-116" title="newton3" src="http://www.infofreaking.com/wp-content/uploads/2008/11/newton3-257x300.jpg" alt="" width="186" height="217" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infofreaking.com/technology/meet-the-iphone%e2%80%99s-granddaddy-apple-newton/feed/</wfw:commentRss>
		</item>
		<item>
		<title>RIP Yugo</title>
		<link>http://www.infofreaking.com/celebrity/rip-yugo/</link>
		<comments>http://www.infofreaking.com/celebrity/rip-yugo/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 23:56:54 +0000</pubDate>
		<dc:creator>superM</dc:creator>
		
		<category><![CDATA[Celebrity]]></category>

		<guid isPermaLink="false">http://www.infofreaking.com/?p=111</guid>
		<description><![CDATA[According to paper from Serbian car manufacturer Zastava, factory is going to close production of one of the world&#8217;s most infamous cars - Yugo.

First Yugo cars were delivered to US in 1985. and until 1990. company sold 141,511 Yugo cars to Americans.  Car very quickly developed a very poor reputation for reliability, there were occurrences [...]]]></description>
			<content:encoded><![CDATA[<p>According to paper from Serbian car manufacturer <a href="http://zastavanacionale.com/"><em>Zastava</em></a>, factory is going to close production of one of the world&#8217;s most infamous cars - Yugo.</p>
<p><img class="alignnone size-medium wp-image-112" title="yugicc" src="http://www.infofreaking.com/wp-content/uploads/2008/11/yugicc-300x215.jpg" alt="" width="300" height="215" /></p>
<p>First Yugo cars were delivered to US in 1985. and until 1990. company sold 141,511 Yugo cars to Americans.  Car very quickly developed a very poor reputation for reliability, there were occurrences with even new car&#8217;s headlights drop away if you push the brake too quickly.</p>
<p>That, and many other manifestations of poor quality pulled a numerous jokes with the Yugo as main actor. One of my favorites is &#8220;- Why do Yugos have heated rear windows? - To keep your hands warm while you are pushing them in the winter!&#8221;. Yugo was driven by Bruce Willis in <em>Die Hard</em>, and due to its charisma and low price it inspired works of many conceptual artists and car enthusiasts,</p>
<p><img class="alignnone" src="http://farm3.static.flickr.com/2363/1622948670_46009a03f3.jpg?v=1192745266" alt="" /></p>
<p>To not be all that negative for Yugo, there were and still are car enthusiasts who appreciates Yugo&#8217;s responsiveness and breezy starts, when the semaphore turns green. There are yugo fan clubs, and virtual clubs on flickr, facebook and other social communities. Yugo is now officially gone, but it still lives in hearts of many!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infofreaking.com/celebrity/rip-yugo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Qmail RBL - How to whitelist IP address or class</title>
		<link>http://www.infofreaking.com/technology/qmail-rbl-how-to-whitelist-ip-address-or-class/</link>
		<comments>http://www.infofreaking.com/technology/qmail-rbl-how-to-whitelist-ip-address-or-class/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 04:44:00 +0000</pubDate>
		<dc:creator>superZ</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.infofreaking.com/technology/rbl-whitelist-specific-ip-address-or-class-qmail-standard-installation/</guid>
		<description><![CDATA[If your internet provider set some stupid, paranoid email protocol policies which block external smtp usage you might be forced to use their smtp server to send email. Range of activities to prevent you from using external smtp can vary. Sometimes providers block port 25 and sometimes they list their own IP classes on spamhaus.org [...]]]></description>
			<content:encoded><![CDATA[<p>If your internet provider set some stupid, paranoid email protocol policies which block external smtp usage you might be forced to use their smtp server to send email. Range of activities to prevent you from using external smtp can vary. Sometimes providers block port 25 and sometimes they list their own IP classes on spamhaus.org so if external smtp use RBL blocking it will filter out your IP. </p>
<p>If you have access to target smtpd you can easily whitelist internet provider IP classes so they wont be checked by RBL. My smrp server is standard Qmail installation (qmailrocks). All you need to do is to edit /etc/tcp.smtp and to add this instruction to your smtpd:</p>
<p>xxx.xxx.xxx.xxx:allow,RBLSMTPD=&#8221;"</p>
<p>Of course, you will have to replace xxx.xxx.xxx.xxx with your actual IP address, or you might whitelist whole IP classes by simply omiting adequate octets, for example:</p>
<p>xxx.xxx.xxx.:allow,RBLSMTPD=&#8221;"</p>
<p>for C class. At the same time you could backlist IP address by adding response to RBL. Put some comment in between quotation marks, for example:</p>
<p>xxx.xxx.xxx.xxx:allow,RBLSMTPD=&#8221;This is spam IP!&#8221;</p>
<p>I won&#8217;t dive into detailed explanations about inner RBL functioning which is out of scope of this text. It&#8217;s important to know that if you put anything between quotation marks in above RBL configuration instructions smtp will consider related IP address as spam.</p>
<p>Finally, you will have to stop Qmail and recompile tcp.smtp instructions file by issuing following commands:</p>
<p>qmailctl stop<br />qmailctl cdb<br />qmailctl start</p>
<p>Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infofreaking.com/technology/qmail-rbl-how-to-whitelist-ip-address-or-class/feed/</wfw:commentRss>
		</item>
		<item>
		<title>More than 50 Digg users banned - again!</title>
		<link>http://www.infofreaking.com/society/more-than-50-digg-users-banned-again/</link>
		<comments>http://www.infofreaking.com/society/more-than-50-digg-users-banned-again/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 06:19:00 +0000</pubDate>
		<dc:creator>superT</dc:creator>
		
		<category><![CDATA[Society]]></category>

		<guid isPermaLink="false">http://www.infofreaking.com/society/more-than-50-digg-users-banned-again/</guid>
		<description><![CDATA[You may return from a vacation, like optimusprime01 (Away Till End Of October) when something hits you direct in the head -You are banned from Digg, man!
No page profile - the only thing that pops out is announcement: &#8220;What you are looking for, isn&#8217;t here.&#8221;
&#8230;. WTH is then, if it isn&#8217;t here???!!! WTF is my [...]]]></description>
			<content:encoded><![CDATA[<p>You may return from a vacation, like optimusprime01 (Away Till End Of October) when something hits you direct in the head -You are banned from Digg, man!</p>
<p>No page profile - the only thing that pops out is announcement: &#8220;What you are looking for, isn&#8217;t here.&#8221;</p>
<p>&#8230;. WTH is then, if it isn&#8217;t here???!!! WTF is my profile? WTF is my page??? WTF, OMG, &#8230; and so on and so on&#8230; these and many more thought might storm through your mind&#8230;.</p>
<p>Just because of one reason (and I think you know): SCRIPT USE!</p>
<p>If you were using scripts, my dear Digg Friend, you shouldn&#8217;t be as surprised as one might think. Ban spree on Digg.com is not a fresh news and supposedly Digg.com has no mercy. Or as Kevin Rose put it in one of the videos: &#8220;I don&#8217;t care whether is top user or the millionth user. If you are using scripts, you will be banned.&#8221;</p>
<p>And they were&#8230;</p>
<p><a href="http://www.infofreaking.com/wp-content/uploads/2008/10/digg_com_bans_users.jpg"><img class="aligncenter size-full wp-image-109" title="digg_com_bans_users" src="http://www.infofreaking.com/wp-content/uploads/2008/10/digg_com_bans_users.jpg" alt="50 digg users banned again" width="370" height="372" /></a></p>
<p>I am just wondering: were they banned because they used to use scripts or these users continued to use scripts even after the big fuss on Digg (when top users like DiggBoss, Zaibatsu etc.. were banned). If they did - very brave indeed, my friends!</p>
<p>However, if they used to digg with scripts, but stopped violating Digg TOS, personally I see no reason for banning them.</p>
<p>Then again, I hope they will keep the dignity and not come out with the lamest excuse such as&#8230; Oh, I didn&#8217;t know using scripts is agains Digg TOS.</p>
<p>Here is the list of 50 and more lucky winners that were banned:</p>
<ol>
<li>abhim12</li>
<p>	
<li>akpwnzz</li>
<p>	
<li>alexander13</li>
<p>	
<li>alllo</li>
<p>	
<li>americanpyscho</li>
<p>	
<li>CassyEli</li>
<p>	
<li>charbarred</li>
<p>	
<li>cosmikdebris</li>
<p>	
<li>Crackerpat</li>
<p>	
<li>craig081785</li>
<p>	
<li>D14BL0</li>
<p>	
<li>DCapps</li>
<p>	
<li>dreams800</li>
<p>	
<li>FamilyGuyFan</li>
<p>	
<li>guerresoanthony</li>
<p>	
<li>HapSnappy</li>
<p>	
<li>hilariobarbosa</li>
<p>	
<li>Inthenameofmine</li>
<p>	
<li>iraq</li>
<p>	
<li>jaybuster</li>
<p>	
<li>jefflombardo</li>
<p>	
<li>jfreshbloomer</li>
<p>	
<li>jordankasteler</li>
<p>	
<li>LewP</li>
<p>	
<li>lordhuggington1</li>
<p>	
<li>MarkusGarvey</li>
<p>	
<li>Mathieugothax</li>
<p>	
<li>mejaredme</li>
<p>	
<li>miriad</li>
<p>	
<li>MissPoker</li>
<p>	
<li>mpind176</li>
<p>	
<li>NeoConSlayer</li>
<p>	
<li>noupe</li>
<p>	
<li>obeezy</li>
<p>	
<li>Odenized</li>
<p>	
<li>optimusprime01</li>
<p>	
<li>PauloAlbini</li>
<p>	
<li>peetys</li>
<p>	
<li>petsheep</li>
<p>	
<li>PMG2007</li>
<p>	
<li>queenmoweeny</li>
<p>	
<li>rtknox00</li>
<p>	
<li>SocialBanner</li>
<p>	
<li>socialuser</li>
<p>	
<li>starfocus03</li>
<p>	
<li>supernova17</li>
<p>	
<li>sweetnothing</li>
<p>	
<li>tamar</li>
<p>	
<li>ToeCracker</li>
<p>	
<li>umarboy</li>
<p>	
<li>WWMD</li>
<p></ol>
<p>If you have some more information about who was banned and why, please comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infofreaking.com/society/more-than-50-digg-users-banned-again/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Famous movie animals</title>
		<link>http://www.infofreaking.com/celebrity/famous-movie-animals/</link>
		<comments>http://www.infofreaking.com/celebrity/famous-movie-animals/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 10:49:38 +0000</pubDate>
		<dc:creator>superM</dc:creator>
		
		<category><![CDATA[Celebrity]]></category>

		<guid isPermaLink="false">http://www.infofreaking.com/?p=104</guid>
		<description><![CDATA[They are not human, but they are still our celebrities!

Best human friends are usually dogs, but other animals can also make movie superstars: pigs, fishes, dolphins, deers, and even spiders. Put darling animals and kids in a same film and you&#8217;ll get a winning combo. Here are few movies with animals which everybody like:
Free  Willy [...]]]></description>
			<content:encoded><![CDATA[<p>They are not human, but they are still our celebrities!</p>
<p><a href="http://www.infofreaking.com/wp-content/uploads/2008/10/bambi-sm.jpg"><img class="alignnone size-medium wp-image-105" title="bambi-sm" src="http://www.infofreaking.com/wp-content/uploads/2008/10/bambi-sm-300x247.jpg" alt="" width="300" height="247" /></a></p>
<p>Best human friends are usually dogs, but other animals can also make movie superstars: pigs, fishes, dolphins, deers, and even spiders. Put darling animals and kids in a same film and you&#8217;ll get a winning combo. Here are few movies with animals which everybody like:</p>
<p><a href="http://www.imdb.com/title/tt0106965/">Free  Willy</a> - Dangerous killer whales are also very smart and can become family movie superstars.</p>
<p><a href="http://www.imdb.com/title/tt0098536/">Turner and Hooch</a> - Not only pretty dogs can became our heroes, here is a proof.</p>
<p><a href="http://www.imdb.com/title/tt0266543/">Finding Nemo</a> - which has an animal family as a central film figures.</p>
<p><a href="http://www.imdb.com/title/tt0112431/">Babe</a> - Nowadays, pigs are not only lunch ingredients, they are also great actors.</p>
<p><a href="http://www.imdb.com/title/tt0036098/">Lassie</a> - Synonym for a faithful dog.</p>
<p><a href="http://www.imdb.com/title/tt0413895/">Charlotte&#8217;s Web</a> - Believe it or not, spider can become best kid&#8217;s friend.</p>
<p><a href="http://www.imdb.com/title/tt0034492/">Bambi</a> - Wolt Disney&#8217;s classic, it became synonym for touching family movie.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infofreaking.com/celebrity/famous-movie-animals/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Delicious Figs With Pasta</title>
		<link>http://www.infofreaking.com/food-drink/delicious-figs-with-pasta/</link>
		<comments>http://www.infofreaking.com/food-drink/delicious-figs-with-pasta/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 07:05:00 +0000</pubDate>
		<dc:creator>superT</dc:creator>
		
		<category><![CDATA[Food and Drink]]></category>

		<guid isPermaLink="false">http://www.infofreaking.com/food-drink/delicious-figs-with-pasta/</guid>
		<description><![CDATA[


I was never fan of figs&#8230; But since I am considered lucky (my boyfriend loves to cook and btw cooks great!), he was the one who introduced me with this delicious fig recipe. And since then &#8230; I love them  
The recipe is very simple and the meal takes only 20 minutes to prepare. [...]]]></description>
			<content:encoded><![CDATA[<div align="center"><img style="max-width: 800px;" src="http://www.infofreaking.com/wp-content/uploads/2008/10/fig-recipe.jpg" width="197" height="148" /></p>
</div>
<p>
<div align="justify">I was never fan of figs&#8230; But since I am considered lucky (my boyfriend loves to cook and btw cooks great!), he was the one who introduced me with this delicious fig recipe. And since then &#8230; I love them <img src='http://www.infofreaking.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The recipe is very simple and the meal takes only 20 minutes to prepare. </p>
<p>The ingredients you&#8217;ll need (for 2 persons):<br />15 figs <br />2,5 dcl sweet cream (for cooking)<br />5 dg of Gorgonzola *<i><em>Gorgonzola</em> </i>is a veined Italian blue cheese; you may use some other blue cheese<br />1 fist of walnuts <br />Pasta (macaroni or spaghetti) </p>
<p>Pasta: <br />Cook pasta as usual. Set aside. </p>
<p>Fig sauce: <br />Put sweet cream in sauce pan, add cheese and walnuts and then figs (but first cut figs in half). Wait till the sauce gets warm, but do not boil. (about 5 minutes).&nbsp; </p>
<p>And voila! That&#8217;s it! Simple as that - lunch in a fancy restaurant <img src='http://www.infofreaking.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Bon apetit! </div>
<p>&nbsp;<br />&nbsp;</p>
<p>&nbsp; <br />&nbsp;&nbsp; </p>
]]></content:encoded>
			<wfw:commentRss>http://www.infofreaking.com/food-drink/delicious-figs-with-pasta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google’s greed culminates to extremes</title>
		<link>http://www.infofreaking.com/technology/googles-greed-culminates-to-extremes/</link>
		<comments>http://www.infofreaking.com/technology/googles-greed-culminates-to-extremes/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 17:40:25 +0000</pubDate>
		<dc:creator>superB</dc:creator>
		
		<category><![CDATA[Business]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://www.infofreaking.com/?p=103</guid>
		<description><![CDATA[Recently I noticed a strafe Scientology campaign running on a few popular sites I visit quite often. The ads are not offensive that much, but I noticed they don’t have any ‘Google Ads’ tags around. At first I thought they belong to other advertising agency, but when I clicked on the flash ad I saw [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.infofreaking.com/wp-content/uploads/2008/09/scientology_on_google.jpg"><img class="alignleft size-medium wp-image-101" style="margin-left: 10px; margin-right: 10px; float: left;" title="scientology_on_google" src="http://www.infofreaking.com/wp-content/uploads/2008/09/scientology_on_google-81x300.jpg" alt="" width="81" height="300" /></a><a href="http://www.infofreaking.com/wp-content/uploads/2008/09/dating_on_google.jpg"><img class="alignright size-medium wp-image-102" title="dating_on_google" src="http://www.infofreaking.com/wp-content/uploads/2008/09/dating_on_google-59x300.jpg" alt="" width="59" height="300" /></a>Recently I noticed a strafe Scientology campaign running on a few popular sites I visit quite often. The ads are not offensive that much, but I noticed they don’t have any ‘Google Ads’ tags around. At first I thought they belong to other advertising agency, but when I clicked on the flash ad I saw the googlesydnication URL which confirmed my assumption. Obviously the scientologists brand their religion online, so the Christians and Islamists could/should do the same, just to stay in touch with modern religion branding methods.</p>
<p>Therefore we could expect the upcoming rampage of religion online advertisements. Obviously, advertising a religion doesn’t breach Google’s Polices, OR the scientologists pay them so good so it’s worth to change or breach own rules? Personally, I don’t have anything against religion of any kind, even Scientology. Basically, this story is Google related, and has nothing to do with any religion.</p>
<p>Now, I see ‘smiley-download’ and adult dating sites advertise on AdWords as well, which means Google shareholders want MORE, and they can get more only through AdWords and AdSense, since 50% of other Google projects are still non-profitable ‘betas’. The plausible solution to get more is to allow rough websites to advertise their malicious apps on Google Adsense.</p>
<p>Unfortunately, Google AdSense Publishers have much stricter rules then AdWords advertisers. For example if you own a website with content related to penis enlargement, you won’t be able to place AdSense on your website. However, some publishers report that Google contacted them in order to run advertising campaigns for prescription erectile dysfunction drugs on their sites. Such brands as Cialis®, Levitra®, Viagra® and other similar drugs you can see frequently in your inbox or mostly in your SPAMBOX, so from now on they will flood the entire web as well. Isn’t it a paradox to allow advertiser to promote their adult services and forbid publishers to generate relevant content?</p>
<p>What should be their next step? Maybe, allowing advertising of armory and selling weapons through AdWords? I don’t think so, because Google doesn’t do EVIL. Maybe, gambling ads? Who cares, the most important is to skyrocket the <a href="http://finance.google.com/finance?client=ob&amp;q=NASDAQ:GOOG">Google shares</a> which are apparently going down from day to day. Hopefully the <a href="http://www.ft.com/cms/s/0/8dfb0d56-89d2-11dd-8371-0000779fd18c.html" target="_blank">G1 with Android OS</a> will exceed their expectation and satisfy the most of Google shareholders.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infofreaking.com/technology/googles-greed-culminates-to-extremes/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
