<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>m3n3chm0's Place ©</title>
	<atom:link href="http://m3n3chm0.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://m3n3chm0.wordpress.com</link>
	<description>Life is killing me</description>
	<lastBuildDate>Sat, 19 Sep 2009 13:51:30 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='m3n3chm0.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/3bc1ba7960e81ddb48424e4c3e493c6b?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>m3n3chm0's Place ©</title>
		<link>http://m3n3chm0.wordpress.com</link>
	</image>
			<item>
		<title>Speedyfox en linux, mac, windows&#8230; Agilizar el inicio de Firefox</title>
		<link>http://m3n3chm0.wordpress.com/2009/09/19/speedyfox-en-linux-mac-windows-agilizar-el-inicio-de-firefox/</link>
		<comments>http://m3n3chm0.wordpress.com/2009/09/19/speedyfox-en-linux-mac-windows-agilizar-el-inicio-de-firefox/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 13:33:38 +0000</pubDate>
		<dc:creator>m3n3chm0</dc:creator>
				<category><![CDATA[Informática,internet,frikadas...noticias]]></category>

		<guid isPermaLink="false">http://m3n3chm0.wordpress.com/?p=2377</guid>
		<description><![CDATA[Increase Firefox 3.* Performance by Optimizing the SQLite Databases [Windows, Linux and Mac OSX]
Since version 3.0, Firefox changed the way it saves your bookmarks, history, cookies, passwords and so on &#8211; it now uses SQLite databases. This has some advantages but also disadvantages because over time, the databases are growing in size and become fragmented [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2377&subd=m3n3chm0&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Increase Firefox 3.* Performance by Optimizing the SQLite Databases [Windows, Linux and Mac OSX]</p>
<p>Since version 3.0, Firefox changed the way it saves your bookmarks, history, cookies, passwords and so on &#8211; it now uses SQLite databases. This has some advantages but also disadvantages because over time, the databases are growing in size and become fragmented and this affects the time Firefox needs to start. But the SQLite databases can be optimized which improves the Firefox startup time and from my experience, also improves the awasomebar performance which becomes much more responsive and faster!</p>
<p>How to optimize the SQLite databases in Firefox<br />
-For Linux:</p>
<p>Before we get started, make sure you have sqlite3 installed. For Ubuntu:</p>
<p>CODE<br />
sudo apt-get install sqlite3</p>
<p><strong>Close Firefox and run the following command in a terminal:</p>
<p>-For Firefox 3.0.*:</p>
<p>CODE<br />
for f in ~/.mozilla/firefox/*/*.sqlite; do sqlite3 $f &#8216;VACUUM;&#8217;; done</p>
<p>-For Firefox 3.5.*:</p>
<p>CODE<br />
for f in ~/.mozilla/firefox-3.5/*/*.sqlite; do sqlite3 $f &#8216;VACUUM;&#8217;; done<br />
</strong></p>
<p>I suggest you make it a script and then put it in startup so that it will optimize your SQLite databases on each computer startup. To do this, create a new file in your home folder, let&#8217;s call it: speed_ff.sh, and paste this in the file:</p>
<p>-For Firefox 3.0.*:</p>
<p>CODE<br />
#!/bin/sh<br />
for f in ~/.mozilla/firefox/*/*.sqlite; do sqlite3 $f &#8216;VACUUM;&#8217;; done</p>
<p>-For Firefox 3.5.*:</p>
<p>CODE<br />
#!/bin/sh<br />
for f in ~/.mozilla/firefox-3.5/*/*.sqlite; do sqlite3 $f &#8216;VACUUM;&#8217;; done</p>
<p>Then me have to make it executable. To do this, use the terminal to navigate to the folder where you created the speed_ff.sh file and:</p>
<p>CODE<br />
chmod +x speed_ff.sh</p>
<p>Now, to run the script on every startup, go to System &gt; Preferences &gt; Startup Applications, click &#8220;Add&#8221;, in the NAME field enter whatever you want and in the COMMAND field enter the full path to the newly created speed_ff.sh file.</p>
<p>-For Windows</p>
<p>Download IniFox which containts 2 files and extact the archive in the Firefox profile folder. The Firefox profile folder is in the following location:</p>
<p>* Windows XP: C:\Documents and Settings\[username]\Application Data\Mozilla\Firefox\Profiles\[randomcharacters.default]<br />
* Windows Vista: C:\Users\[username]\AppData\Roaming\Mozilla\Firefox\Profiles\[randomcharacters.default]<br />
* Windows 7: C:\Users\[username]\AppData\Roaming\Mozilla\Firefox\Profiles\[randomcharacters.default]</p>
<p>Then you must close Firefox and run the IniFox.bat file. When you start Firefox again you can see that the browser starts quicker. You can also check the .sqlite file size before and after running IniFox, and you will see a noticeable difference.</p>
<p>Windows users &#8211; you may also want to check out this post about speeding Firefox 3.5 startup too.</p>
<p>Credits for IniFox: infospyware</p>
<p>-For Mac OSX:</p>
<p>Close Firefox and run the following command:</p>
<p>CODE<br />
cd ~/Library/Application\ Support/Firefox/Profiles/<br />
for f in */*.sqlite; do sqlite3 $f &#8216;VACUUM;&#8217;; done</p>
Posted in Informática,internet,frikadas...noticias  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/m3n3chm0.wordpress.com/2377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/m3n3chm0.wordpress.com/2377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/m3n3chm0.wordpress.com/2377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/m3n3chm0.wordpress.com/2377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/m3n3chm0.wordpress.com/2377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/m3n3chm0.wordpress.com/2377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/m3n3chm0.wordpress.com/2377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/m3n3chm0.wordpress.com/2377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/m3n3chm0.wordpress.com/2377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/m3n3chm0.wordpress.com/2377/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2377&subd=m3n3chm0&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://m3n3chm0.wordpress.com/2009/09/19/speedyfox-en-linux-mac-windows-agilizar-el-inicio-de-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ac0b0d8b4e59f566ccce8880adb3b07d?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">m3n3chm0</media:title>
		</media:content>
	</item>
		<item>
		<title>Buscador / downloads mp3 &#124; Beemp3.com</title>
		<link>http://m3n3chm0.wordpress.com/2009/09/15/buscador-downloads-mp3-beemp3-com/</link>
		<comments>http://m3n3chm0.wordpress.com/2009/09/15/buscador-downloads-mp3-beemp3-com/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 07:41:49 +0000</pubDate>
		<dc:creator>m3n3chm0</dc:creator>
				<category><![CDATA[Informática,internet,frikadas...noticias]]></category>

		<guid isPermaLink="false">http://m3n3chm0.wordpress.com/?p=2371</guid>
		<description><![CDATA[Buscar, encontrar, descargar !!!

www.beemp3.com
Posted in Informática,internet,frikadas...noticias       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2371&subd=m3n3chm0&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Buscar, encontrar, descargar !!!</p>
<p><img class="alignnone" src="http://beemp3.com/images/02.jpg" alt="" width="165" height="156" /><img class="alignnone" src="http://beemp3.com/images/03.jpg" alt="" width="277" height="156" /></p>
<p><a href="http://www.beemp3.com"><strong>www.beemp3.com</strong></a></p>
Posted in Informática,internet,frikadas...noticias  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/m3n3chm0.wordpress.com/2371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/m3n3chm0.wordpress.com/2371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/m3n3chm0.wordpress.com/2371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/m3n3chm0.wordpress.com/2371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/m3n3chm0.wordpress.com/2371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/m3n3chm0.wordpress.com/2371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/m3n3chm0.wordpress.com/2371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/m3n3chm0.wordpress.com/2371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/m3n3chm0.wordpress.com/2371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/m3n3chm0.wordpress.com/2371/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2371&subd=m3n3chm0&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://m3n3chm0.wordpress.com/2009/09/15/buscador-downloads-mp3-beemp3-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ac0b0d8b4e59f566ccce8880adb3b07d?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">m3n3chm0</media:title>
		</media:content>

		<media:content url="http://beemp3.com/images/02.jpg" medium="image" />

		<media:content url="http://beemp3.com/images/03.jpg" medium="image" />
	</item>
		<item>
		<title>m3n3chm0 Star Effects Bodyboard</title>
		<link>http://m3n3chm0.wordpress.com/2009/09/10/m3n3chm0-star-effects-bodyboard/</link>
		<comments>http://m3n3chm0.wordpress.com/2009/09/10/m3n3chm0-star-effects-bodyboard/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 09:11:47 +0000</pubDate>
		<dc:creator>m3n3chm0</dc:creator>
				<category><![CDATA[Bodyboard]]></category>

		<guid isPermaLink="false">http://m3n3chm0.wordpress.com/?p=2369</guid>
		<description><![CDATA[


Posted in Bodyboard       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2369&subd=m3n3chm0&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><img class="aligncenter" src="http://img5.imageshack.us/img5/9849/dkm3n3chm0.gif" alt="" width="400" height="300" /></p>
<p style="text-align:center;"><img class="aligncenter" src="http://img29.imageshack.us/img29/2852/airrollom3n3chm0.gif" alt="" width="400" height="300" /></p>
<p style="text-align:center;"><img class="aligncenter" src="http://www.mediafire.com/imgbnc.php/9ec2a785d2c2f4e3129d1e7680c2f5c56g.jpg" alt="" width="400" height="300" /></p>
Posted in Bodyboard  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/m3n3chm0.wordpress.com/2369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/m3n3chm0.wordpress.com/2369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/m3n3chm0.wordpress.com/2369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/m3n3chm0.wordpress.com/2369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/m3n3chm0.wordpress.com/2369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/m3n3chm0.wordpress.com/2369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/m3n3chm0.wordpress.com/2369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/m3n3chm0.wordpress.com/2369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/m3n3chm0.wordpress.com/2369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/m3n3chm0.wordpress.com/2369/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2369&subd=m3n3chm0&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://m3n3chm0.wordpress.com/2009/09/10/m3n3chm0-star-effects-bodyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ac0b0d8b4e59f566ccce8880adb3b07d?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">m3n3chm0</media:title>
		</media:content>

		<media:content url="http://img5.imageshack.us/img5/9849/dkm3n3chm0.gif" medium="image" />

		<media:content url="http://img29.imageshack.us/img29/2852/airrollom3n3chm0.gif" medium="image" />

		<media:content url="http://www.mediafire.com/imgbnc.php/9ec2a785d2c2f4e3129d1e7680c2f5c56g.jpg" medium="image" />
	</item>
		<item>
		<title>IBA Doniños 2009 PRO &#8211; Ferrol &#8211; Bodyboard</title>
		<link>http://m3n3chm0.wordpress.com/2009/09/09/iba-doninos-2009-pro-ferrol-bodyboard/</link>
		<comments>http://m3n3chm0.wordpress.com/2009/09/09/iba-doninos-2009-pro-ferrol-bodyboard/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 08:07:47 +0000</pubDate>
		<dc:creator>m3n3chm0</dc:creator>
				<category><![CDATA[Bodyboard]]></category>

		<guid isPermaLink="false">http://m3n3chm0.wordpress.com/?p=2350</guid>
		<description><![CDATA[

m3n3chm0 DK 

m3n3chm0 invert


INVERT &#8211; animación GIF &#8211; m3n3chm0

Bea &#8211; m3n3chm0  &#8211; Bego 

Con los PROS

Yo y Dave Winchester


Yo y Ben Player

Yo y Brad Hughes


Yo y Mitch Rawlings

Yo y Tamega

Nosotros y Ryan Hardy


Nosotros y Dave Hubbard

Nosotros y Dave Winchester






The family



Mitch Rawlings


Dave Winchester y Terry Mckenna





Dave Winchester


 
Ardiel Jimenez

Ardiel Jimenez

Ardiel Jimenez

Ben Player

Brad Huhges


Yiyi Obenza

Yiyi Obenza

Dave [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2350&subd=m3n3chm0&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://m3n3chm0.es/imagenes/doninos09/with%20dave%20hubbard.jpg"><br />
</a></p>
<p style="text-align:center;"><strong>m3n3chm0 DK </strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/DK%20m3n3chm0.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/DK%20m3n3chm0.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>m3n3chm0 invert</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/air-rollo%20m3n3chm0.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/air-rollo%20m3n3chm0.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/INVERT%20m3n3chm0.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/INVERT%20m3n3chm0.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>INVERT &#8211; animación GIF &#8211; m3n3chm0</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/animacion%20invert-m3n3chm0.gif"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/animacion%20invert-m3n3chm0.gif" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Bea &#8211; m3n3chm0  &#8211; Bego </strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/ferroll%20doninos%20bea%20-%20bego%20-%20pro%20m3n3.JPG"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/ferroll%20doninos%20bea%20-%20bego%20-%20pro%20m3n3.JPG" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Con los PROS</strong></p>
<p style="text-align:center;">
<p style="text-align:center;"><strong>Yo y Dave Winchester<br />
</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20y%20yo.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20y%20yo.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Yo y Ben Player</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/ben%20player%20y%20yo.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/ben%20player%20y%20yo.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Yo y Brad Hughes</strong></p>
<p style="text-align:center;">
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/brad%20hughes%20y%20yo.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/brad%20hughes%20y%20yo.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Yo y Mitch Rawlings</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/mitch%20rawlings%20y%20yo.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/mitch%20rawlings%20y%20yo.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Yo y Tamega</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/tamega%20y%20yo.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/tamega%20y%20yo.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Nosotros y Ryan Hardy<br />
</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/with%20Hardy.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/with%20Hardy.jpg" alt="" width="400" height="450" /></a></p>
<p style="text-align:center;"><strong>Nosotros y Dave Hubbard</strong></p>
<p style="text-align:center;"><strong><a href="http://m3n3chm0.es/imagenes/doninos09/with%20dave%20hubbard.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/with%20dave%20hubbard.jpg" alt="" width="400" height="300" /></a></strong></p>
<p style="text-align:center;"><strong>Nosotros y Dave Winchester</strong></p>
<p style="text-align:center;"><strong><a href="http://m3n3chm0.es/imagenes/doninos09/with%20dave%20winchester.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/with%20dave%20winchester.jpg" alt="" width="400" height="300" /></a><br />
</strong></p>
<p style="text-align:center;"><strong><br />
</strong></p>
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;"><strong>The family</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/The%20Family.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/The%20Family.jpg" alt="" width="400" height="450" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/subiendo%20playa%20todos.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/subiendo%20playa%20todos.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/todos%20subiendo%20playa2.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/todos%20subiendo%20playa2.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Mitch Rawlings</strong></p>
<p style="text-align:center;">
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/mitch%20rawlings%20entrando.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/mitch%20rawlings%20entrando.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Dave Winchester y Terry Mckenna</strong></p>
<p style="text-align:center;">
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/mitch%20rawlings%20entrando.jpg"></a><a href="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20y%20terry%20mckenna.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20y%20terry%20mckenna.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20y%20terry%20mckenna2.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20y%20terry%20mckenna2.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/winchester%20tamega.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/winchester%20tamega.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/winchester%20tamega2.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/winchester%20tamega2.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Dave Winchester</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/Winchester%20in%20prone.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/Winchester%20in%20prone.jpg" alt="" width="400" height="450" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/amauryfloat0227Amaury%20Laverhne.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/amauryfloat0227Amaury%20Laverhne.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/amaurysnaptorevers0236Amaury%20Laverhne.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/amaurysnaptorevers0236Amaury%20Laverhne.jpg" alt="" width="400" height="300" /></a><strong> </strong></p>
<p style="text-align:center;"><strong>Ardiel Jimenez</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/ardielsnap0218.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/ardielsnap0218.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Ardiel Jimenez</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/ardielsnapup0238ardieljimenez.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/ardielsnapup0238ardieljimenez.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Ardiel Jimenez</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/ardieltapa0212.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/ardieltapa0212.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Ben Player</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/benplayer.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/benplayer.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Brad Huhges</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/brad%20hughes.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/brad%20hughes.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20licra.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20licra.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Yiyi Obenza</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/yiyifloat0243Yiyi%20Obenza.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/yiyifloat0243Yiyi%20Obenza.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Yiyi Obenza</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/yiyitubo0215Yiyi%20Obenza.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/yiyitubo0215Yiyi%20Obenza.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Dave Hubbard</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/dubbfloat0257.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/dubbfloat0257.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/dubbfloatback0275.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/dubbfloatback0275.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Dave Hubbard</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/dubbretr0283.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/dubbretr0283.jpg" alt="" width="394" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/dubbsnapback1.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/dubbsnapback1.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/dubbsnapback2.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/dubbsnapback2.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Dave Hubbard</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/dubbwall0255.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/dubbwall0255.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Mike Stewart</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/mikerolo0194.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/mikerolo0194.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Cristian Pérez</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/tuboCristianPerez.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/tuboCristianPerez.jpg" alt="" width="400" height="450" /></a></p>
<p style="text-align:center;"><strong>Dave Winchester y su family</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/winchester%20con%20hija.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/winchester%20con%20hija.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Winchester Ganador Doniños 09 IBA </strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/winchester%20saliendo%20al%20ganar.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/winchester%20saliendo%20al%20ganar.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/winchester%20saliengo.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/winchester%20saliengo.jpg" alt="" width="400" height="450" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/winnyofflip0276.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/winnyofflip0276.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/winnytailslid10248.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/winnytailslid10248.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/winnytailslid20271.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/winnytailslid20271.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Entrega de premios</strong></p>
<p style="text-align:center;">
<p style="text-align:center;"><strong>Nosotros en la entraga</strong></p>
<p style="text-align:center;"><strong><a href="http://m3n3chm0.es/imagenes/doninos09/nosotros%20entrega%20premios.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/nosotros%20entrega%20premios.jpg" alt="" width="520" height="211" /></a><br />
</strong></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio1.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio1.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio2.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio2.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio3.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio3.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio4.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio4.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio5.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio5.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio6.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio6.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio7.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio7.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><strong>Dave Hubbard </strong>hablando in spanish <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  que CRACK !!</p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio8.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio8.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio9.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio9.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio10.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio10.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio11.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio11.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio12.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio12.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;"><a href="http://m3n3chm0.es/imagenes/doninos09/podio13.jpg"><img class="aligncenter" src="http://m3n3chm0.es/imagenes/doninos09/podio13.jpg" alt="" width="400" height="300" /></a></p>
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
Posted in Bodyboard  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/m3n3chm0.wordpress.com/2350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/m3n3chm0.wordpress.com/2350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/m3n3chm0.wordpress.com/2350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/m3n3chm0.wordpress.com/2350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/m3n3chm0.wordpress.com/2350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/m3n3chm0.wordpress.com/2350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/m3n3chm0.wordpress.com/2350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/m3n3chm0.wordpress.com/2350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/m3n3chm0.wordpress.com/2350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/m3n3chm0.wordpress.com/2350/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2350&subd=m3n3chm0&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://m3n3chm0.wordpress.com/2009/09/09/iba-doninos-2009-pro-ferrol-bodyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ac0b0d8b4e59f566ccce8880adb3b07d?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">m3n3chm0</media:title>
		</media:content>

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/DK%20m3n3chm0.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/air-rollo%20m3n3chm0.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/INVERT%20m3n3chm0.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/animacion%20invert-m3n3chm0.gif" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/ferroll%20doninos%20bea%20-%20bego%20-%20pro%20m3n3.JPG" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20y%20yo.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/ben%20player%20y%20yo.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/brad%20hughes%20y%20yo.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/mitch%20rawlings%20y%20yo.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/tamega%20y%20yo.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/with%20Hardy.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/with%20dave%20hubbard.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/with%20dave%20winchester.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/The%20Family.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/subiendo%20playa%20todos.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/todos%20subiendo%20playa2.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/mitch%20rawlings%20entrando.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20y%20terry%20mckenna.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20y%20terry%20mckenna2.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/winchester%20tamega.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/winchester%20tamega2.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/Winchester%20in%20prone.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/amauryfloat0227Amaury%20Laverhne.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/amaurysnaptorevers0236Amaury%20Laverhne.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/ardielsnap0218.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/ardielsnapup0238ardieljimenez.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/ardieltapa0212.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/benplayer.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/brad%20hughes.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/dave%20winchester%20licra.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/yiyifloat0243Yiyi%20Obenza.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/yiyitubo0215Yiyi%20Obenza.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/dubbfloat0257.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/dubbfloatback0275.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/dubbretr0283.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/dubbsnapback1.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/dubbsnapback2.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/dubbwall0255.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/mikerolo0194.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/tuboCristianPerez.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/winchester%20con%20hija.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/winchester%20saliendo%20al%20ganar.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/winchester%20saliengo.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/winnyofflip0276.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/winnytailslid10248.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/winnytailslid20271.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/nosotros%20entrega%20premios.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio1.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio2.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio3.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio4.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio5.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio6.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio7.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio8.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio9.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio10.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio11.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio12.jpg" medium="image" />

		<media:content url="http://m3n3chm0.es/imagenes/doninos09/podio13.jpg" medium="image" />
	</item>
		<item>
		<title>ver justin TV  toda la liga gratis sin comprar cuenta premium</title>
		<link>http://m3n3chm0.wordpress.com/2009/09/02/ver-justin-tv-toda-la-liga-gratis-sin-comprar-cuenta-premium/</link>
		<comments>http://m3n3chm0.wordpress.com/2009/09/02/ver-justin-tv-toda-la-liga-gratis-sin-comprar-cuenta-premium/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 08:13:05 +0000</pubDate>
		<dc:creator>m3n3chm0</dc:creator>
				<category><![CDATA[Informática,internet,frikadas...noticias]]></category>

		<guid isPermaLink="false">http://m3n3chm0.wordpress.com/?p=2344</guid>
		<description><![CDATA[
Lo único que tenemos que hacer cuando nos aparece el limite máximo de usuarios gratis por pais en JUSTIN.TV, es usar un proxy de algun país que no vea mucho futbol xDDDD &#8230; así estaremos seguros de que nunca nos va a &#8220;petar&#8221; y nunca nos pedirá cuenta premium.

Configuráis vuestro navegador,  o utilizando foxyproxy, el [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2344&subd=m3n3chm0&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><img class="aligncenter" src="http://www.angelux.net/wp-content/uploads/2009/07/justintv.jpg" alt="" width="319" height="297" /></p>
<p style="text-align:left;">Lo único que tenemos que hacer cuando nos aparece el limite máximo de usuarios gratis por pais en JUSTIN.TV, es usar un proxy de algun país que no vea mucho futbol xDDDD &#8230; así estaremos seguros de que nunca nos va a &#8220;petar&#8221; y nunca nos pedirá cuenta premium.</p>
<p style="text-align:left;">
<p style="text-align:left;">Configuráis vuestro navegador,  o utilizando foxyproxy, el addon de firefox con un proxy de japón por ejemplo, USA, Canadá&#8230;. y a ver toda la liga gratis de nuevo.</p>
<p style="text-align:left;">
<p style="text-align:left;"> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
Posted in Informática,internet,frikadas...noticias  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/m3n3chm0.wordpress.com/2344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/m3n3chm0.wordpress.com/2344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/m3n3chm0.wordpress.com/2344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/m3n3chm0.wordpress.com/2344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/m3n3chm0.wordpress.com/2344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/m3n3chm0.wordpress.com/2344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/m3n3chm0.wordpress.com/2344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/m3n3chm0.wordpress.com/2344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/m3n3chm0.wordpress.com/2344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/m3n3chm0.wordpress.com/2344/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2344&subd=m3n3chm0&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://m3n3chm0.wordpress.com/2009/09/02/ver-justin-tv-toda-la-liga-gratis-sin-comprar-cuenta-premium/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ac0b0d8b4e59f566ccce8880adb3b07d?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">m3n3chm0</media:title>
		</media:content>

		<media:content url="http://www.angelux.net/wp-content/uploads/2009/07/justintv.jpg" medium="image" />
	</item>
		<item>
		<title>Pantallazo azul  &#8220;Unmountable Boot Volume&#8221;</title>
		<link>http://m3n3chm0.wordpress.com/2009/08/08/pantallazo-azul-unmountable-boot-volume/</link>
		<comments>http://m3n3chm0.wordpress.com/2009/08/08/pantallazo-azul-unmountable-boot-volume/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 14:50:30 +0000</pubDate>
		<dc:creator>m3n3chm0</dc:creator>
				<category><![CDATA[Informática,internet,frikadas...noticias]]></category>

		<guid isPermaLink="false">http://m3n3chm0.wordpress.com/?p=2342</guid>
		<description><![CDATA[

A algunos nos ha pasado este error en la PC y se da el caso que
nos aparece una pantalla azul en Windows mencionando este
error &#8220;Unmountable Boot Volume&#8221; y la computadora se nos
reinicia.
Normalmente para resolver el problema muchos formatean y
vuelven a instalar Windows, cosa que se hace bastante tediosa
ya que volver a poner la configuración como [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2342&subd=m3n3chm0&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div>
<p><a href="http://4.bp.blogspot.com/_Ehyy-FCG89o/Rv-zuYHpi1I/AAAAAAAAAfw/GT569v9rmrA/s1600-h/Unmountable_Boot_Volume.jpg"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://4.bp.blogspot.com/_Ehyy-FCG89o/Rv-zuYHpi1I/AAAAAAAAAfw/GT569v9rmrA/s400/Unmountable_Boot_Volume.jpg" border="0" alt="" /></a><br />
A algunos nos ha pasado este error en la PC y se da el caso que<br />
nos aparece una pantalla azul en Windows mencionando este<br />
error &#8220;<span style="font-size:85%;"><span style="font-weight:bold;">Unmountable Boot Volume</span></span>&#8221; y la computadora se nos<br />
reinicia.</p>
<p>Normalmente para resolver el problema muchos formatean y<br />
vuelven a instalar Windows, cosa que se hace bastante tediosa<br />
ya que volver a poner la configuración como uno quiere instalar<br />
todos los programas que bajamos de internet, es más trabajo del<br />
que necesitamos para resolver este error.</p>
<p>Si tienes tu disco de instalación de Windows XP puedes seguir los<br />
siguientes pasos para resolver este error:</p>
<p>1- Inserta tu disco de instalación y bootea por medio del CD.</p>
<p>2- En la instalación de XP, cuando veas pantalla de bienvenida<br />
debes presionar la tecla <span style="font-weight:bold;">R</span> la cual te pondrá en modo de<br />
recuperación.</p>
<p>3- Ahora escribe <span style="font-size:85%;"><span style="font-weight:bold;">chkdsk /p </span></span>y presiona enter. Esto activara un<br />
utilitario que reparara los errores en tu disco duro.</p>
<p>4- Después de que termine este proceso, escribe <span style="font-weight:bold;">fixboot</span> y<br />
presiona enter para reparar algunos archivos de inicio que han<br />
sido corrompidos. Cuando te pregunte debes responder que Si,<br />
presionando la tecla <span style="font-weight:bold;">S </span>del teclado.</p>
<p>5- Escribe <span style="font-weight:bold;">exit</span> y presiona la tecla enter, la computadora de<br />
reiniciara.</p>
<p>Después de estos pasos tu PC volverá a la normalidad,<br />
suerte.</p>
<p>Fuente | <a href="http://tecnometro.blogspot.com/2007/09/reparar-error-unmountable-boot-volume.html">http://tecnometro.blogspot.com/2007/09/reparar-error-unmountable-boot-volume.html</a></div>
Posted in Informática,internet,frikadas...noticias  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/m3n3chm0.wordpress.com/2342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/m3n3chm0.wordpress.com/2342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/m3n3chm0.wordpress.com/2342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/m3n3chm0.wordpress.com/2342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/m3n3chm0.wordpress.com/2342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/m3n3chm0.wordpress.com/2342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/m3n3chm0.wordpress.com/2342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/m3n3chm0.wordpress.com/2342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/m3n3chm0.wordpress.com/2342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/m3n3chm0.wordpress.com/2342/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2342&subd=m3n3chm0&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://m3n3chm0.wordpress.com/2009/08/08/pantallazo-azul-unmountable-boot-volume/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ac0b0d8b4e59f566ccce8880adb3b07d?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">m3n3chm0</media:title>
		</media:content>

		<media:content url="http://4.bp.blogspot.com/_Ehyy-FCG89o/Rv-zuYHpi1I/AAAAAAAAAfw/GT569v9rmrA/s400/Unmountable_Boot_Volume.jpg" medium="image" />
	</item>
		<item>
		<title>ZATTOO en linux de nuevo gracias a WineHQ + winetricks.</title>
		<link>http://m3n3chm0.wordpress.com/2009/08/02/zattoo-en-linux/</link>
		<comments>http://m3n3chm0.wordpress.com/2009/08/02/zattoo-en-linux/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 21:35:33 +0000</pubDate>
		<dc:creator>m3n3chm0</dc:creator>
				<category><![CDATA[Informática,internet,frikadas...noticias]]></category>

		<guid isPermaLink="false">http://m3n3chm0.wordpress.com/?p=2334</guid>
		<description><![CDATA[Getting winetricks
The script is maintained and hosted by DanKegel at http://www.kegel.com/wine/winetricks.   Right-click on that link and use &#8217;save as&#8217; to save a fresh copy.
Al error del sh winetricks flash, se arregla comentando los sha1sum tal que:
load_flash() {
# www.adobe.com/products/flashplayer/
# Active X plugin
# http://blogs.adobe.com/psirt/2008/03&#8230;lash_play.html
# http://fpdownload.macromedia.com/get&#8230;r_active_x.msi
# 2008-04-01: old version sha1sum f4dd1c0c715b791db2c972aeba90d3b78372996a
# 2008-04-18: new version sha1sum 04ac79c4f1eb1e1ca689f27fa71f12bb5cd11cc2
# [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2334&subd=m3n3chm0&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2 id="head-f55227e0bf31117044a964639fc1a71b2e67c6eb">Getting winetricks</h2>
<p>The script is maintained and hosted by <a href="http://wiki.winehq.org/DanKegel">DanKegel</a> at <a href="http://www.kegel.com/wine/winetricks">http://www.kegel.com/wine/winetricks</a>.   Right-click on that link and use &#8217;save as&#8217; to save a fresh copy.</p>
<p>Al error del sh winetricks flash, se arregla comentando los sha1sum tal que:</p>
<p>load_flash() {<br />
# <a href="http://www.adobe.com/products/flashplayer/" target="_blank">www.adobe.com/products/flashplayer/</a><br />
# Active X plugin<br />
# <a href="http://blogs.adobe.com/psirt/2008/03/preparing_for_april_flash_play.html" target="_blank">http://blogs.adobe.com/psirt/2008/03&#8230;lash_play.html</a><br />
# <a href="http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_active_x.msi" target="_blank">http://fpdownload.macromedia.com/get&#8230;r_active_x.msi</a><br />
# 2008-04-01: old version sha1sum f4dd1c0c715b791db2c972aeba90d3b78372996a<br />
# 2008-04-18: new version sha1sum 04ac79c4f1eb1e1ca689f27fa71f12bb5cd11cc2<br />
# Version 10 <a href="http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax.exe" target="_blank">http://fpdownload.macromedia.com/get&#8230;_player_ax.exe</a><br />
# 2008-11-27: 10 sha1sum 7f6850ae815e953311bb94a8aa9d226f97a646dd<br />
download . <a href="http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax.exe" target="_blank">http://fpdownload.macromedia.com/get&#8230;_player_ax.exe</a> <strong><span style="color:#993300;"><strong><strong><span style="text-decoration:underline;">#</span></strong></strong></span></strong>7f6850ae815e953311bb94a8aa9d226f97a646dd<br />
try $WINE ?$WINETRICKS_CACHE?/install_flash_player_ax.exe $WINETRICKS_S<br />
# Mozilla / Firefox plugin<br />
# 2008-07-22: sha1sum 1e6f7627784a5b791e99ae9ad63133dc11c7940b<br />
# 2008-11-27: sha1sum 20ec0300a8cae19105c903a7ec6c0801e016beb0<br />
download . <a href="http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player.exe" target="_blank">http://fpdownload.macromedia.com/get&#8230;ash_player.exe</a> <strong><span style="color:#993300;"><strong><span style="text-decoration:underline;"><strong>#</strong></span></strong></span></strong>20ec0300a8cae19105c903a7ec6c0801e016beb0<br />
try $WINE ?$WINETRICKS_CACHE?/install_flash_player.exe $WINETRICKS_S<br />
}</p>
<p>Luego</p>
<p>http://appdb.winehq.org/objectManager.php?bShowAll=true&amp;bIsQueue=false&amp;bIsRejected=false&amp;sClass=version&amp;sTitle=&amp;sReturnTo=&amp;iId=17343</p>
<div>
<div>Selected Test Results (selected in &#8216;Test Results&#8217; table below)</div>
<div>
<p><strong>What works</strong><br />
Installation and running of the application including swapping and viewing TV stations.  Standard and full screen works flawlessly.<br />
<strong>What does not</strong><br />
The TV scheduler does not work<br />
<strong>What was not tested</strong><br />
Tested as much of the application as possible.<br />
<strong>Additional Comments</strong></p>
<pre>To install follow the following instructions:

1. sh winetricks flash ie6 dotnet20
2. winecfg - select audio tab and ensure driver emulation is checked
3. regedit
4. create the key HKCU\AppEvents\Schemes\Apps\Explorer\Navigating\.current
5. wine Zattoo-3.3.4beta.exe to install but uncheck "Run Zattoo now" after installation.
6. Navigate to the wine - Programs - Zattoo - Zattoo menu option to run Zattoo.

i.e. do not run Zattoo from either the command line or when "Run Zattoo now" on installation because this will crash your X session.</pre>
<h2>Y FUNCIONANDO DE NUEVO ZATTOO EN LINUX !!!</h2>
<p>Pinchar encima para ver tamaño original de la imagen.</p>
<p><a href="http://www.mediafire.com/imgbnc.php/f0f459f77f8ab1c056dc0a8c0d49d93a4g.jpg"><img class="alignnone" src="http://www.mediafire.com/imgbnc.php/f0f459f77f8ab1c056dc0a8c0d49d93a4g.jpg" alt="" width="515" height="322" /></a></div>
</div>
Posted in Informática,internet,frikadas...noticias  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/m3n3chm0.wordpress.com/2334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/m3n3chm0.wordpress.com/2334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/m3n3chm0.wordpress.com/2334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/m3n3chm0.wordpress.com/2334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/m3n3chm0.wordpress.com/2334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/m3n3chm0.wordpress.com/2334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/m3n3chm0.wordpress.com/2334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/m3n3chm0.wordpress.com/2334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/m3n3chm0.wordpress.com/2334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/m3n3chm0.wordpress.com/2334/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2334&subd=m3n3chm0&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://m3n3chm0.wordpress.com/2009/08/02/zattoo-en-linux/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ac0b0d8b4e59f566ccce8880adb3b07d?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">m3n3chm0</media:title>
		</media:content>

		<media:content url="http://www.mediafire.com/imgbnc.php/f0f459f77f8ab1c056dc0a8c0d49d93a4g.jpg" medium="image" />
	</item>
		<item>
		<title>LiberKey: 200 programas gratis para tu memoria USB</title>
		<link>http://m3n3chm0.wordpress.com/2009/07/28/liberkey-200-programas-gratis-para-tu-memoria-usb/</link>
		<comments>http://m3n3chm0.wordpress.com/2009/07/28/liberkey-200-programas-gratis-para-tu-memoria-usb/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 23:10:25 +0000</pubDate>
		<dc:creator>m3n3chm0</dc:creator>
				<category><![CDATA[Informática,internet,frikadas...noticias]]></category>

		<guid isPermaLink="false">http://m3n3chm0.wordpress.com/2009/07/28/liberkey-200-programas-gratis-para-tu-memoria-usb/</guid>
		<description><![CDATA[
Si eres de los que les gusta tener todos los programas en 1 USB, este programa es para ti, LiberKey es una suite de programas portables con más de 200 de aplicaciones, tiene de todo, desde programas para ver vídeos, abrir documentos, comprimir archivos, ver imágenes, bajar torrents, entre muchos otros más.
Lo mejor de todo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2333&subd=m3n3chm0&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="aligncenter" src="http://tecnologia21.com/wp-content/uploads/2009/06/liberkey.jpg" alt="" width="300" height="335" /></p>
<p>Si eres de los que les gusta tener todos los programas en 1 USB, este programa es para ti, <strong>LiberKey</strong> es una suite de programas portables con más de 200 de aplicaciones, tiene de todo, desde programas para ver vídeos, abrir documentos, comprimir archivos, ver imágenes, bajar torrents, entre muchos otros más.</p>
<p>Lo mejor de todo es que esta suite es de código abierto, por lo que no deberás preocuparte por limitaciones, esto permite que se puedan descargar y actualizar los programas en la memoria USB, o incluso desde el disco duro externo.</p>
<p>Estas son las versiones de la suite:</p>
<p>01. LiberKey Ultimate: 202 aplicaciones (179MB Setup y 575MB de espacio)</p>
<p>02. LiberKey Standard: 106 aplicaciones (144MB Setup y 410MB de espacio)</p>
<p>03. LiberKey Basic: 28 aplicaciones (56MB Setup y 179MB de espacio)</p>
<p>Descargar: <a href="http://www.liberkey.com/en/"><strong>LiberKey</strong></a></p>
<p>Fuente | <a href="http://tecnologia21.com/liberkey-250-programas-gratis-para-tu-memoria-usb">http://tecnologia21.com/liberkey-250-programas-gratis-para-tu-memoria-usb</a></p>
Posted in Informática,internet,frikadas...noticias  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/m3n3chm0.wordpress.com/2333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/m3n3chm0.wordpress.com/2333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/m3n3chm0.wordpress.com/2333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/m3n3chm0.wordpress.com/2333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/m3n3chm0.wordpress.com/2333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/m3n3chm0.wordpress.com/2333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/m3n3chm0.wordpress.com/2333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/m3n3chm0.wordpress.com/2333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/m3n3chm0.wordpress.com/2333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/m3n3chm0.wordpress.com/2333/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2333&subd=m3n3chm0&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://m3n3chm0.wordpress.com/2009/07/28/liberkey-200-programas-gratis-para-tu-memoria-usb/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ac0b0d8b4e59f566ccce8880adb3b07d?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">m3n3chm0</media:title>
		</media:content>

		<media:content url="http://tecnologia21.com/wp-content/uploads/2009/06/liberkey.jpg" medium="image" />
	</item>
		<item>
		<title>Mensaje de error: Las directivas locales de este sistema no le permiten iniciar una sesión interactiva</title>
		<link>http://m3n3chm0.wordpress.com/2009/07/09/mensaje-de-error-las-directivas-locales-de-este-sistema-no-le-permiten-iniciar-una-sesion-interactiva/</link>
		<comments>http://m3n3chm0.wordpress.com/2009/07/09/mensaje-de-error-las-directivas-locales-de-este-sistema-no-le-permiten-iniciar-una-sesion-interactiva/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 09:37:28 +0000</pubDate>
		<dc:creator>m3n3chm0</dc:creator>
				<category><![CDATA[Informática,internet,frikadas...noticias]]></category>

		<guid isPermaLink="false">http://m3n3chm0.wordpress.com/?p=2331</guid>
		<description><![CDATA[Inicio-&#62; Panel de control-&#62;Herramientas administrativas-&#62; Directiva de seguridad local-&#62;Directivas locales-&#62;asignaciones de derechos de usuario-&#62;inicio sesión local.
Modifica en el grupo de políticas apropiado en sus variables de entorno para otorgar al usuario el permiso
Posted in Informática,internet,frikadas...noticias       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2331&subd=m3n3chm0&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Inicio</strong>-&gt; <strong>Panel de control</strong>-&gt;<strong>Herramientas administrativas</strong>-&gt; <strong>Directiva de seguridad local</strong>-&gt;<strong>Directivas locales</strong>-&gt;<strong>asignaciones de derechos de usuario</strong>-&gt;<strong>inicio sesión local</strong>.<br />
Modifica en el grupo de políticas apropiado en sus variables de entorno para otorgar al usuario el permiso</p>
Posted in Informática,internet,frikadas...noticias  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/m3n3chm0.wordpress.com/2331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/m3n3chm0.wordpress.com/2331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/m3n3chm0.wordpress.com/2331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/m3n3chm0.wordpress.com/2331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/m3n3chm0.wordpress.com/2331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/m3n3chm0.wordpress.com/2331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/m3n3chm0.wordpress.com/2331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/m3n3chm0.wordpress.com/2331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/m3n3chm0.wordpress.com/2331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/m3n3chm0.wordpress.com/2331/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2331&subd=m3n3chm0&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://m3n3chm0.wordpress.com/2009/07/09/mensaje-de-error-las-directivas-locales-de-este-sistema-no-le-permiten-iniciar-una-sesion-interactiva/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ac0b0d8b4e59f566ccce8880adb3b07d?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">m3n3chm0</media:title>
		</media:content>
	</item>
		<item>
		<title>Gmail ahora permite adjuntar archivos de hasta 25 MB</title>
		<link>http://m3n3chm0.wordpress.com/2009/06/29/gmail-ahora-permite-adjuntar-archivos-de-hasta-25-mb/</link>
		<comments>http://m3n3chm0.wordpress.com/2009/06/29/gmail-ahora-permite-adjuntar-archivos-de-hasta-25-mb/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 08:08:31 +0000</pubDate>
		<dc:creator>m3n3chm0</dc:creator>
				<category><![CDATA[Informática,internet,frikadas...noticias]]></category>

		<guid isPermaLink="false">http://m3n3chm0.wordpress.com/2009/06/29/gmail-ahora-permite-adjuntar-archivos-de-hasta-25-mb/</guid>
		<description><![CDATA[
Una de las cosas que muchos usuarios se preguntan es por qué los webmails como Gmail, Yahoo y Hotmail han aumentado de forma exponencial el almacenamiento, y al mismo tiempo se han quedado en el pasado con respecto al tamaño máximo de los archvos adjuntos, que desde hace varios años se estancó en los 10MB [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2330&subd=m3n3chm0&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div>
<p><img src="http://img.genbeta.com/2009/06/gmail25mb.jpg" alt="Archivos adjuntos de 25MB en Gmail" />Una de las cosas que muchos usuarios se preguntan es por qué los webmails como Gmail, Yahoo y Hotmail han aumentado de forma exponencial el almacenamiento, y al mismo tiempo <strong>se han quedado en el pasado con respecto al tamaño máximo de los archvos adjuntos</strong>, que desde hace varios años se estancó en los 10MB por correo.</p>
<p>En Google parece que se han dado cuenta de que eso no tiene sentido, y por ello <strong>han aumentado a 25MB el tamaño máximo de los archivos adjuntos</strong> (aunque en realidad el aumento no es tan grande si consideramos que el límite anterior de Gmail era de 20MB). Eso sí, este nuevo límite vale solo para los correos que enviemos hacia destinatarios que también usen Gmail. Para el resto de los mensajes, tendremos que ceñirnos al tope de 10MB que imponen servicios como Hotmail o Yahoo Mail. De lo contrario, el correo no se enviará correctamente.</p>
<p>Por mientras, seguimos a la espera de Microsoft incorpore en Hotmail la <strong>integración con SkyDrive</strong> que supuestamente iba a estar disponible el año pasado, y que le permitiría a los usuarios <strong>adjuntar archivos de hasta 50MB</strong> cada uno, desde su cuenta de SkyDrive (lo que se adjunta es el link, por lo que no importaría que el destinatario use un servicio de correo más limitado). Algo que defintivamente suena interesante, aun respecto al límite de 25MB que ha empezadoa ofrecer Gmail, pero que <strong>no servirá de mucho a los usuarios mientras siga siendo una promesa incumplida</strong>.</p>
<p>Fuente | <a href="http://www.genbeta.com/web/gmail-ahora-permite-adjuntar-archivos-de-hasta-25-mb">http://www.genbeta.com/web/gmail-ahora-permite-adjuntar-archivos-de-hasta-25-mb</a></div>
Posted in Informática,internet,frikadas...noticias  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/m3n3chm0.wordpress.com/2330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/m3n3chm0.wordpress.com/2330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/m3n3chm0.wordpress.com/2330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/m3n3chm0.wordpress.com/2330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/m3n3chm0.wordpress.com/2330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/m3n3chm0.wordpress.com/2330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/m3n3chm0.wordpress.com/2330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/m3n3chm0.wordpress.com/2330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/m3n3chm0.wordpress.com/2330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/m3n3chm0.wordpress.com/2330/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=m3n3chm0.wordpress.com&blog=622121&post=2330&subd=m3n3chm0&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://m3n3chm0.wordpress.com/2009/06/29/gmail-ahora-permite-adjuntar-archivos-de-hasta-25-mb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ac0b0d8b4e59f566ccce8880adb3b07d?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">m3n3chm0</media:title>
		</media:content>

		<media:content url="http://img.genbeta.com/2009/06/gmail25mb.jpg" medium="image">
			<media:title type="html">Archivos adjuntos de 25MB en Gmail</media:title>
		</media:content>
	</item>
	</channel>
</rss>