<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pedro Proença &#187; Projects</title>
	<atom:link href="http://pedroproenca.info/category/projects/feed" rel="self" type="application/rss+xml" />
	<link>http://pedroproenca.info</link>
	<description>delphi, php, mysql, css, html</description>
	<lastBuildDate>Tue, 15 Dec 2009 21:01:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Router Cracker Application</title>
		<link>http://pedroproenca.info/router-cracker-application</link>
		<comments>http://pedroproenca.info/router-cracker-application#comments</comments>
		<pubDate>Tue, 17 Nov 2009 01:24:02 +0000</pubDate>
		<dc:creator>Pedro</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[crack]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[megaupload]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[rapidshare]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[speedtouch]]></category>
		<category><![CDATA[SSID]]></category>
		<category><![CDATA[thomson]]></category>
		<category><![CDATA[WAP]]></category>

		<guid isPermaLink="false">http://pedroproenca.info/?p=13</guid>
		<description><![CDATA[Recently I&#8217;ve read a internet article on &#8220;How To Crack Thomson/Speedtouch Password&#8221;, I got pretty surprise for the simplicity and how easy you could retrieve the router default password + SSID, using the serial number. Of course if you want to steal your neighbor&#8217;s internet it won&#8217;t be as much simple has you think, it [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve read a internet article on &#8220;How To Crack Thomson/Speedtouch Password&#8221;, I got pretty surprise for the simplicity and how easy you could retrieve the router default password + SSID, using the serial number. Of course if you want to steal your neighbor&#8217;s internet it won&#8217;t be as much simple has you think, it requires that you know your neighbor router serial number OR that you find a online website which already generated a hand full of serials, from all years (07-09) and this way you can get the default password using the SSID (usually appears next to the wireless network name).</p>
<p>After reading carefully the explanation about cracking the router I decided to quickly code a application capable of retrieving the router Default Password and SSID, unfortunately it will work only if you know the routers serial number. Maybe in a future version you will be able to get the data using only the SSID. Subscribe to this post if you want to get updates.</p>
<p>Below I leave you with the details:</p>
<p><img title="Mais..." src="http://vsgl.net/report/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<h3>My Application + Download</h3>
<p>The application I developed is fairly simple:</p>
<p><img class="alignnone size-full wp-image-4" title="Thomson Cracking Application" src="http://pedroproenca.info/wp-content/uploads/2009/11/thomson-cracking.jpg" alt="Thomson Cracking Application" width="512" height="321" /></p>
<p>Once you&#8217;ve inserted the serial in the first box, you will be able to get both password and SSID.<br />
I included also a feature which let&#8217;s you Add/Save/Load a list with all of your serials.</p>
<h3>Download APP</h3>
<p><strong>Size: </strong>335.99kb<strong><br />
MD5:</strong> e208a1f851b8acf01f7f3ff4fe6436b0<strong><br />
Link: </strong><a href="http://pedroproenca.info/wp-content/uploads/2009/11/CrackThom.zip">Thomson Cracking Application</a></p>
<h3>Serial Number Explanation</h3>
<p>Using the Thomson/Speedtouch serial number (example: CP<span style="color: #993300;">08</span><span style="color: #666699;">17</span><span style="color: #000000;">AH</span><span style="color: #ff6600;">1AB</span> (A1) ), we are able to discover, not only the default password of the router but also the SSID</p>
<p>CP<span style="color: #993300;"> YY</span><span style="color: #666699;"> WW</span><span style="color: #000000;"> PP </span><span style="color: #ff6600;">XXX</span> (CC)</p>
<p>Each item has it&#8217;s own significance:</p>
<p><span style="color: #993300;">YY</span> <span style="color: #000000;">- </span>Year of Production<br />
<span style="color: #666699;">WW</span><span style="color: #000000;"> – Production Week<br />
</span>PP – Product Code<br />
<span style="color: #ff6600;">XXX</span> <span style="color: #000000;">- Unkown<br />
</span>CC – Configuration Code</p>
<p>The XXX value, is unknown and must always be composed by capital letters and numbers.</p>
<h3>Cracking Step-by-step</h3>
<p>Let&#8217;s use the serial number &#8220;CP<span style="color: #993300;">08</span><span style="color: #666699;">17</span><span style="color: #000000;">AH</span><span style="color: #ff6600;">1AB</span>&#8221; as an example:</p>
<ul>
<li>Remove the PP (AH) and it will result in CP<span style="color: #993300;">08</span><span style="color: #666699;">17</span><span style="color: #ff6600;">1AB</span></li>
<li>Convert the <span style="color: #ff6600;">1AB </span>to hexadecimal (below is a delphi example)</li>
</ul>
<pre class="brush:delphi">code := '1AB';
for I := 1 to strlen(PChar(code)) do
begin
c := ord(code[i]);
hex := hex + IntToHex(c,1);
end;</pre>
<ul>
<li>The c0nverstion will result in <span style="color: #ff6600;">314142</span>, add this to the part we left behind CP<span style="color: #993300;">08</span><span style="color: #666699;">17</span><span style="color: #ff6600;">314142 </span></li>
<li>Now you need to create the SHA1 hash code of the last result (CP<span style="color: #993300;">08</span><span style="color: #666699;">17</span><span style="color: #ff6600;">314142</span>), which will be <span style="color: red;"><strong>bc8c18aec9</strong><span style="color: #000000;">e740c37be79e7f2058c50fd9</span><strong>22e4bb</strong></span>
<ul>
<li><span style="color: red;"><strong>bc8c18aec9 </strong></span>-Is the default router password (WEP/WPA)</li>
<li><span style="color: red;"><strong>22e4bb </strong></span>-Is the SSID of the router</li>
</ul>
</li>
</ul>
<p>These few steps are all that&#8217;s necessary to crack a Thomson/Speedtouch router.</p>
<p><strong>Source: </strong><a title="Algoritmo Chaves Wireless" href="http://fodi.me/internet/algoritmo-chaves-wireless-thomson-meo/" target="_blank">http://fodi.me/internet/algoritmo-chaves-wireless-thomson-meo/</a> (Portuguese)</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d13').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d13" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://pedroproenca.info/router-cracker-application&amp;submitHeadline=Router+Cracker+Application&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://pedroproenca.info/router-cracker-application&amp;title=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://pedroproenca.info/router-cracker-application&amp;title=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://pedroproenca.info/router-cracker-application" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://pedroproenca.info/router-cracker-application&amp;title=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://pedroproenca.info/router-cracker-application&amp;bm_description=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://pedroproenca.info/router-cracker-application&amp;T=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://pedroproenca.info/router-cracker-application&amp;title=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://pedroproenca.info/router-cracker-application&amp;title=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://pedroproenca.info/router-cracker-application" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://pedroproenca.info/router-cracker-application" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Router+Cracker+Application+@+http://pedroproenca.info/router-cracker-application" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://pedroproenca.info/router-cracker-application&amp;t=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d13').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d13').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://pedroproenca.info/router-cracker-application/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>New Blog + Recent Project</title>
		<link>http://pedroproenca.info/new-blog-recent-project</link>
		<comments>http://pedroproenca.info/new-blog-recent-project#comments</comments>
		<pubDate>Sun, 15 Nov 2009 21:29:28 +0000</pubDate>
		<dc:creator>Pedro</dc:creator>
				<category><![CDATA[Hacking Report]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[ace online]]></category>
		<category><![CDATA[cheaters]]></category>
		<category><![CDATA[cheating]]></category>
		<category><![CDATA[confusing]]></category>
		<category><![CDATA[crossfire]]></category>
		<category><![CDATA[flowchart]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[metin 2]]></category>
		<category><![CDATA[priston tale 1]]></category>
		<category><![CDATA[priston tale 2]]></category>
		<category><![CDATA[report]]></category>
		<category><![CDATA[useless]]></category>

		<guid isPermaLink="false">http://pedroproenca.info/?p=8</guid>
		<description><![CDATA[Welcome to my new blog, I never though ending up creating one, though I&#8217;m tired of coding my own website, this time I decided to try out this magical CMS, simply amazing, I&#8217;m really impressed with WordPress capabilities.
You might end up asking yourself what&#8217;s the whole idea behind this, don&#8217;t give it much though as [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to my new blog, I never though ending up creating one, though I&#8217;m tired of coding my own website, this time I decided to try out this magical CMS, simply amazing, I&#8217;m really impressed with WordPress capabilities.</p>
<p>You might end up asking yourself what&#8217;s the whole idea behind this, don&#8217;t give it much though as it&#8217;s plain simple, recently I started a new project entitled <strong>&#8220;Hacking Report&#8221;</strong>, it&#8217;s  a &#8220;remake&#8221; of a older project which surprisingly became very famous among the <strong>Cross Fire</strong> community, consists in developing a application capable of guiding, efficiently, the players, through some easy-steps, on how to report a hacker. Of course this project is pointed to work only with the most famous online games, the ones which are currently having, the biggest, issues with those who prefer to cheat, instead of playing fair. It may sound confusing or useless, though it&#8217;s not, below there is a better explanation:</p>
<p><img title="Mais..." src="http://vsgl.net/report/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<h2><strong>Hacking Report (Explanation)</strong></h2>
<p><strong>What are the steps?</strong></p>
<ol>
<li>Login with your Hacking Report user account credentials (this is necessary so you can keep track of your reports, etc).</li>
<li>Enter the cheater(s) name and the reason(s) why you are making this report.</li>
<li>Browse for the files which prove that the player(s), referred in the step above, cheated. Usually screen-shots + replay file, it depends on the game.</li>
<li>Write a small report of what you saw, how the player cheated and  preferably reference the moments in which the player cheats, on the replay file.</li>
<li>The application will compile together, into a single ZIP file, both HTML generated report and the rest of the files you added.</li>
<li>The compiled file will be sent to our servers and once this task is done it will return a link which points to the location of your file, enabling you to download it.  Also a delectation link will be given so that, once the GM reads and downloads the report, he can delete the file.  <span style="color: #ff0000;"><strong>(WARNING: AFTER A MONTH THE FILES ARE DELETED AUTOMATICALLY)</strong></span></li>
<li><strong>(optional step)</strong> A new window will appear asking that you login into the game website and once you&#8217;ve done it, you will be redirected to the PM page. So that you can submit your report file.</li>
</ol>
<p><img title="Games List" src="http://vsgl.net/report/wp-content/uploads/2009/11/gameslist.png" alt="Games List" width="212" height="132" /></p>
<p><strong>Flow-charts:</strong></p>
<p><img title="Hacking Report Flow-Chart" src="http://pedroproenca.info/wp-content/uploads/2009/11/APP.jpg" alt="HR Flow-Chart" width="477" height="593" /></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d8').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d8" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://pedroproenca.info/new-blog-recent-project&amp;submitHeadline=New+Blog+%2B+Recent+Project&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://pedroproenca.info/new-blog-recent-project&amp;title=New+Blog+%2B+Recent+Project" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://pedroproenca.info/new-blog-recent-project&amp;title=New+Blog+%2B+Recent+Project" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://pedroproenca.info/new-blog-recent-project" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://pedroproenca.info/new-blog-recent-project&amp;title=New+Blog+%2B+Recent+Project" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://pedroproenca.info/new-blog-recent-project&amp;bm_description=New+Blog+%2B+Recent+Project" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://pedroproenca.info/new-blog-recent-project&amp;T=New+Blog+%2B+Recent+Project" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://pedroproenca.info/new-blog-recent-project&amp;title=New+Blog+%2B+Recent+Project" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://pedroproenca.info/new-blog-recent-project&amp;title=New+Blog+%2B+Recent+Project" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://pedroproenca.info/new-blog-recent-project" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://pedroproenca.info/new-blog-recent-project" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+New+Blog+%2B+Recent+Project+@+http://pedroproenca.info/new-blog-recent-project" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://pedroproenca.info/new-blog-recent-project&amp;t=New+Blog+%2B+Recent+Project" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d8').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d8').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://pedroproenca.info/new-blog-recent-project/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
