<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Manuales de programacion</title>
	<atom:link href="http://manualesdeprogramacion.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://manualesdeprogramacion.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 04 Dec 2011 20:38:42 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='manualesdeprogramacion.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Manuales de programacion</title>
		<link>http://manualesdeprogramacion.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://manualesdeprogramacion.wordpress.com/osd.xml" title="Manuales de programacion" />
	<atom:link rel='hub' href='http://manualesdeprogramacion.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Un nuevo tipo de Captcha</title>
		<link>http://manualesdeprogramacion.wordpress.com/2010/12/08/un-nuevo-tipo-de-captcha/</link>
		<comments>http://manualesdeprogramacion.wordpress.com/2010/12/08/un-nuevo-tipo-de-captcha/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 13:00:42 +0000</pubDate>
		<dc:creator>lindsayben</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[Mala tu Wea]]></category>

		<guid isPermaLink="false">http://tinyurl.com/77yjkm4blog/?p=14228</guid>
		<description><![CDATA[Hemos comentado antes que los Captcha, esas molestas imágenes deformadas que se supone evitan que los spammers usen un servicio determinado, simplemente no sirven para nada. Usando sólo un poco de ingenio se pueden encontrar muchas maneras de resolverlos mediante &#8230; <a href="http://manualesdeprogramacion.wordpress.com/2010/12/08/un-nuevo-tipo-de-captcha/"><em>Continuar&#160;leyendo&#160;<span class="meta-nav">&#8594;</span></em></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=14228&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Hemos comentado antes que los <a title="Que es Captcha" href="http://tinyurl.com/77yjkm4blog/que-es-un-captcha/" target="_blank">Captcha</a>, esas molestas imágenes deformadas que se supone evitan que los spammers usen un servicio determinado, <a title="Los captcha no sirven de nada" href="http://tinyurl.com/77yjkm4blog/por-que-siguen-existiendo-los-captcha/" target="_blank">simplemente no sirven para nada</a>. Usando sólo un poco de ingenio se pueden encontrar muchas maneras de resolverlos mediante software, lo que implica que aunque las personas que usan un servicio de manera legítima tienen que mirar varias veces la pantalla para descifrarlos, los spammers los superan sin dificultad.</p>
<p style="text-align:justify;">Es raro ver entonces un captcha como el siguiente:</p>
<p style="text-align:center;"><img class="size-full wp-image-14253 aligncenter" title="Captcha Basado en HTML 2" src="http://tinyurl.com/77yjkm4blog/wp-content/uploads/2010/11/Captcha-Basado-en-HTML-2.png" alt="Captcha Basado en HTML 2" width="278" height="164" /></p>
<p style="text-align:justify;">Se ve bastante simple, incluso para una persona, por lo que en primera instancia uno creería que los spammers la tienen fácil, porque el texto se ve de manera plana. Pero no es así. Al ver el código fuente, nos damos cuenta que el Captcha es engañoso, porque utiliza una mezcla de CSS y HTML</p>
<p style="text-align:center;">
<p style="text-align:center;"><img class="size-full wp-image-14252 aligncenter" title="Captcha Basado en HTML y CSS" src="http://tinyurl.com/77yjkm4blog/wp-content/uploads/2010/11/Capctha-Basado-en-HTML.png" alt="" width="514" height="317" /></p>
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:justify;">Parece una idea excelente. Al ser HTML y CSS puros, no se puede utilizar un programa OCR para identificar los caracteres, y tampoco se puede capturar el código para enviarlo a un servicio de reconocimiento de captchas con personas.</p>
<h3 style="text-align:justify;">Pero los Spammers nunca duermen</h3>
<p style="text-align:justify;">Aunque la idea parece excelente, en realidad no lo es. El Captcha está hecho de etiquetas bold (&lt; b&gt;) de un pixel de ancho que se muestra mediante CSS. Algunas etiquetas están coloreadas y otras no. El resultado es un montón de puntitos que juntos parecen una imagen para el ojo humano, tal como el servicio que permite <a title="Imagen a caracteres" href="http://tinyurl.com/77yjkm4blog/pasar-foto-a-simbolos-numeros-o-caracteres/" target="_blank">pasar una imagen a caracteres</a>.</p>
<p style="text-align:justify;">Pero un pequeño código permite mostrar el captcha como imagen y pasarlo por un programa de reconocimiento de caracteres. De este modo, se pueden usar bots para llenar el servicio de spam. No voy a poner el código porque seguro que no les interesa, el punto es que saltarse este tipo de catpchas es más facil que <a title="Bajar windows 7" href="http://tinyurl.com/y9ppxuw" target="_blank">descargar windows 7</a> desde <a title="Reparación dePC" href="http://reparaciondepc.cl" target="_blank">Reparación de PC</a>. Sí, así de fácil.</p>
<p style="text-align:center;"><img class="alignnone size-full wp-image-14255" title="Captcha resuelto" src="http://tinyurl.com/77yjkm4blog/wp-content/uploads/2010/11/Captcha-resuelto.jpg" alt="Captcha resuelto" width="407" height="75" /></p>
<p style="text-align:justify;">La moraleja de esto es que mientras un humano pueda resolver un captcha, una máquina podrá hacerlo también. Hasta que a alguien no se le ocurra un método mejor de filtrar el spam, estamos jodidos.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manualesdeprogramacion.wordpress.com/14228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manualesdeprogramacion.wordpress.com/14228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manualesdeprogramacion.wordpress.com/14228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manualesdeprogramacion.wordpress.com/14228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manualesdeprogramacion.wordpress.com/14228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manualesdeprogramacion.wordpress.com/14228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manualesdeprogramacion.wordpress.com/14228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manualesdeprogramacion.wordpress.com/14228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manualesdeprogramacion.wordpress.com/14228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manualesdeprogramacion.wordpress.com/14228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manualesdeprogramacion.wordpress.com/14228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manualesdeprogramacion.wordpress.com/14228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manualesdeprogramacion.wordpress.com/14228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manualesdeprogramacion.wordpress.com/14228/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=14228&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://manualesdeprogramacion.wordpress.com/2010/12/08/un-nuevo-tipo-de-captcha/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d3e2b6422c69c2a873ee343b74765bfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindsayben</media:title>
		</media:content>

		<media:content url="http://tinyurl.com/77yjkm4blog/wp-content/uploads/2010/11/Captcha-Basado-en-HTML-2.png" medium="image">
			<media:title type="html">Captcha Basado en HTML 2</media:title>
		</media:content>

		<media:content url="http://tinyurl.com/77yjkm4blog/wp-content/uploads/2010/11/Capctha-Basado-en-HTML.png" medium="image">
			<media:title type="html">Captcha Basado en HTML y CSS</media:title>
		</media:content>

		<media:content url="http://tinyurl.com/77yjkm4blog/wp-content/uploads/2010/11/Captcha-resuelto.jpg" medium="image">
			<media:title type="html">Captcha resuelto</media:title>
		</media:content>
	</item>
		<item>
		<title>How to delete cookies from browsers</title>
		<link>http://manualesdeprogramacion.wordpress.com/2010/11/01/how-to-delete-cookies-from-browsers/</link>
		<comments>http://manualesdeprogramacion.wordpress.com/2010/11/01/how-to-delete-cookies-from-browsers/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 20:22:31 +0000</pubDate>
		<dc:creator>lindsayben</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://isansar.com/?p=1881</guid>
		<description><![CDATA[CooKies Google Chrome Click on the &#8221;Tools&#8221; menu and select &#8220;Options&#8221;. Click the &#8220;Under the Bonnet&#8221; tab, locate the &#8220;Privacy&#8221; section and click the &#8220;Clear browsing data&#8221; button. Select &#8220;Delete cookies and other site data&#8221; to delete all cookies from the &#8230; <a href="http://manualesdeprogramacion.wordpress.com/2010/11/01/how-to-delete-cookies-from-browsers/"><em>Continuar&#160;leyendo&#160;<span class="meta-nav">&#8594;</span></em></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=1881&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>CooKies<br />
Google Chrome<br />
Click on the &#8221;Tools&#8221; menu and select &#8220;Options&#8221;.<br />
Click the &#8220;Under the  Bonnet&#8221; tab, locate the &#8220;Privacy&#8221; section and click the &#8220;Clear browsing data&#8221;  button.<br />
Select &#8220;Delete cookies and other site data&#8221; to delete all cookies  from the list (alternatively, you can remove all cookies created within a  specific time period by selecting the period you want from the dropdown  list).<br />
Select &#8220;Clear browsing history&#8221; to delete traces of which websites  you&#8217;ve visited.<br />
Select &#8220;Clear download history&#8221; to delete records of which  files and programs you&#8217;ve downloaded.<br />
Select &#8220;Empty the cache&#8221; to delete  cached website pages.<br />
You can also delete saved passwords (which log you into  websites) and saved form data (such as your name and address).<br />
Then click on  the &#8220;Clear browsing data&#8221; button.<br />
Click on the Close button when you&#8217;ve  finished.<br />
Internet Explorer 8<br />
Click &#8220;Safety&#8221; on the Command bar<br />
Select &#8220;Delete  Browsing History&#8221;<br />
Select the option for cookies and click Delete</p>
<p>Alternatively, Internet Explorer 8&#8242;s new InPrivate browsing  feature allows users to browse the internet without recording information from  visited sites (including cookies). To use InPrivate mode:</p>
<p>Click &#8220;Safety&#8221; on the Command bar<br />
Select &#8220;InPrivate Browsing&#8221;<br />
Internet Explorer 7.x<br />
Exit Internet Explorer 7, and then exit any instances of Windows  Explorer<br />
Click Start, click Run, type inetcpl.cpl, and then press ENTER<br />
On  the General tab, click Delete under Browsing History in the Internet Properties  dialog box<br />
In the Delete Browsing History dialog box, click Delete  Cookies<br />
In the Delete Cookies dialog box, click Yes.<br />
Internet Explorer (all other versions)<br />
Internet Explorer saves cookies in more than one location, depending on the  version of the browser and the version of Microsoft Windows being used.</p>
<p>The best way to find and delete them is to close Internet Explorer then use  your file management software (such as Windows Explorer) and search for a folder  called &#8216;cookies&#8217;.</p>
<p>AOL 8 and 9<br />
Sign on and select Settings from the  toolbar.<br />
Version 9.0 users should select the By Category tab and click the  Internet  Options link, while for Version 8.0 and below click Internet  Properties (WWW).<br />
Click Settings.<br />
Note: Windows Vista will see more than  one Settings button. Click the button in the Browsing history section.<br />
Click  View Files. Your list of cookies (plus your other temporary internet files) will  be displayed.<br />
If you wish to delete any of the cookies or files, right-click  on them and choose Delete.</p>
<p>Mozilla<br />
Choose Cookie Manager from the Tools menu.<br />
Choose Manage Stored  Cookies.<br />
Remove any cookie from the list, or remove all cookies.</p>
<p>Mozilla Firebird<br />
Click on Tools, then Options<br />
Select the Privacy icon in the left-hand  panel<br />
Click on Cookies<br />
Click on Stored Cookies<br />
To remove a single  cookie click on the entry in the list and click on the Remove Cookie  button<br />
To remove all cookies click on the Remove All Cookies button<br />
Mozilla Firefox<br />
Click on Tools, then Options (or Edit | Preferences on Linux)<br />
Select  Privacy<br />
In the Cookies panel, click on Show Cookies<br />
To remove a single  cookie click on the entry in the list and click on the Remove Cookie  button<br />
To remove all cookies click on the Remove All Cookies button</p>
<p>Netscape Navigator 7.x</p>
<p>Choose Cookie Manager from the Tools menu.<br />
Choose Manage Stored  Cookies.<br />
Remove any cookie from the list, or remove all cookies.</p>
<p>Netscape Navigator 6.x<br />
Choose Cookie Manager from the Tools menu.<br />
Choose Manage Stored  Cookies.<br />
Remove any cookie from the list, or remove all cookies.<br />
Netscape Navigator 4.x<br />
In Netscape, all cookies are stored into one file, called Cookies.txt, in the  user preferences folder, making them easy to find and delete. The folder can be  located by using your file management software to search your hard disk drive  for &#8220;cookies.txt&#8221;.</p>
<p>Users of Netscape Navigator 4.x may also stop cookies from being written to  the hard drive, by making the cookies file read only. However, even if the  browser can&#8217;t &#8220;write&#8221; cookies to the hard drive, it can still cache them, and it  may create a new cookie file.<br />
Opera<br />
To delete all cookies at the end of every session, select it in the privacy  settings under Tools &gt; Preferences.<br />
Click on Manage cookies to delete  specific cookies or cookies from specific domains.</p>
<p>To delete all cookies immediately, go to Delete private data on the Tools  menu.<br />
Deepnet Explorer 1.1+<br />
Choose Tools and then Internet Options<br />
Click the Privacy tab<br />
Move the  slider to choose your preferred settings.</p>
<p>Apple Macintosh<br />
Microsoft Internet Explorer 5 (MacOS X)<br />
Choose Preferences from Explorer menu<br />
Select Receiving Files  options<br />
Select Cookies<br />
Select the Cookies to be deleted from the  list<br />
Press Delete button<br />
Microsoft Internet Explorer 5 (MacOS 9)<br />
Choose Preferences from Edit menu<br />
Select Receiving Files options<br />
Select  Cookies<br />
Select the Cookies to be deleted from the list<br />
Press Delete  button<br />
Mozilla<br />
Choose Cookie Manager from the Tools menu.<br />
Choose Manage Stored  Cookies.<br />
Remove any cookie from the list, or remove all cookies.</p>
<p>Netscape Navigator 7.x<br />
Choose Cookie Manager from the Tools menu.<br />
Choose Manage Stored  Cookies.<br />
Remove any cookie from the list, or remove all cookies.<br />
Netscape Navigator 6.x<br />
Choose Cookie Manager from the Tools menu.<br />
Choose Manage Stored  Cookies.<br />
Remove any cookie from the list, or remove all cookies.<br />
Safari 1.0 (MacOS X)<br />
Choose Preferences from Safari menu<br />
Select Security icon<br />
Press Show  Cookies button<br />
Select the Cookies to be deleted from the list<br />
Press Delete  button</p>
<p>Opera<br />
To delete all cookies at the end of every session, select it in the privacy  settings under Opera &gt; Preferences<br />
Click on Manage cookies to delete  specific cookies or cookies from specific domains.</p>
<p>To delete all cookies immediately, go to Delete private data on the Tools  menu.</p>
<p>Other<br />
WebTV<br />
From the Home page, select Help<br />
Select Utilities Tool<br />
Select Reset  Cookies<br />
Power off the WebTV for 60 seconds<br />
Cookies should be deleted when  you turn the WebTV back on again<br />
MSNTV2<br />
From the Home page, select Settings<br />
Select Web Appearance and  Security<br />
Select Delete Cookies</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manualesdeprogramacion.wordpress.com/1881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manualesdeprogramacion.wordpress.com/1881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manualesdeprogramacion.wordpress.com/1881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manualesdeprogramacion.wordpress.com/1881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manualesdeprogramacion.wordpress.com/1881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manualesdeprogramacion.wordpress.com/1881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manualesdeprogramacion.wordpress.com/1881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manualesdeprogramacion.wordpress.com/1881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manualesdeprogramacion.wordpress.com/1881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manualesdeprogramacion.wordpress.com/1881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manualesdeprogramacion.wordpress.com/1881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manualesdeprogramacion.wordpress.com/1881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manualesdeprogramacion.wordpress.com/1881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manualesdeprogramacion.wordpress.com/1881/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=1881&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://manualesdeprogramacion.wordpress.com/2010/11/01/how-to-delete-cookies-from-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	

		<media:content url="http://1.gravatar.com/avatar/d3e2b6422c69c2a873ee343b74765bfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindsayben</media:title>
		</media:content>
	</item>
		<item>
		<title>WWE Smackdown 15th October 2010</title>
		<link>http://manualesdeprogramacion.wordpress.com/2010/10/16/wwe-smackdown-15th-october-2010/</link>
		<comments>http://manualesdeprogramacion.wordpress.com/2010/10/16/wwe-smackdown-15th-october-2010/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 13:31:07 +0000</pubDate>
		<dc:creator>lindsayben</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Entertainment]]></category>

		<guid isPermaLink="false">http://isansar.com/?p=203</guid>
		<description><![CDATA[Watch Online &#8211; DailyMotion WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 1 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 2 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 3 WWE Smackdown 15th &#8230; <a href="http://manualesdeprogramacion.wordpress.com/2010/10/16/wwe-smackdown-15th-october-2010/"><em>Continuar&#160;leyendo&#160;<span class="meta-nav">&#8594;</span></em></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=203&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Watch Online &#8211; DailyMotion<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 1<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 2<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 3<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 4<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 5<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 6<br />
Watch Online &#8211; YouTube<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 1<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 2<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 3<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 4<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 5<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 6<br />
Watch Online &#8211; zSHARE<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 1<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 2<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 3<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 4<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 5<br />
 WWE Smackdown 15th October 2010 Video Watch Online &#8211; Part 6<br />
Watch Online &#8211; Single Link<br />
Duckload: Click Here<br />
Movshare: Click Here</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manualesdeprogramacion.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manualesdeprogramacion.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manualesdeprogramacion.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manualesdeprogramacion.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manualesdeprogramacion.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manualesdeprogramacion.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manualesdeprogramacion.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manualesdeprogramacion.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manualesdeprogramacion.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manualesdeprogramacion.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manualesdeprogramacion.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manualesdeprogramacion.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manualesdeprogramacion.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manualesdeprogramacion.wordpress.com/203/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=203&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://manualesdeprogramacion.wordpress.com/2010/10/16/wwe-smackdown-15th-october-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	

		<media:content url="http://1.gravatar.com/avatar/d3e2b6422c69c2a873ee343b74765bfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindsayben</media:title>
		</media:content>
	</item>
		<item>
		<title>Hum Tum Aur Ghost</title>
		<link>http://manualesdeprogramacion.wordpress.com/2010/10/11/hum-tum-aur-ghost/</link>
		<comments>http://manualesdeprogramacion.wordpress.com/2010/10/11/hum-tum-aur-ghost/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 23:50:32 +0000</pubDate>
		<dc:creator>lindsayben</dc:creator>
				<category><![CDATA[Entertainment]]></category>

		<guid isPermaLink="false">http://isansar.com/?p=187</guid>
		<description><![CDATA[Watch Online – DailyMotion Hum Tum Aur Ghost 2010 Watch Online Part 1 Hum Tum Aur Ghost 2010 Watch Online Part 2 Hum Tum Aur Ghost 2010 Watch Online Part 3 Hum Tum Aur Ghost 2010 Watch Online Part 4 &#8230; <a href="http://manualesdeprogramacion.wordpress.com/2010/10/11/hum-tum-aur-ghost/"><em>Continuar&#160;leyendo&#160;<span class="meta-nav">&#8594;</span></em></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=187&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Watch Online – DailyMotion<br />
Hum Tum Aur Ghost 2010 Watch Online Part 1<br />
Hum Tum Aur Ghost 2010 Watch Online Part 2<br />
Hum Tum Aur Ghost 2010 Watch Online Part 3<br />
Hum Tum Aur Ghost 2010 Watch Online Part 4<br />
Hum Tum Aur Ghost 2010 Watch Online Part 5<br />
Hum Tum Aur Ghost 2010 Watch Online Part 6<br />
Hum Tum Aur Ghost 2010 Watch Online Part 7</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manualesdeprogramacion.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manualesdeprogramacion.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manualesdeprogramacion.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manualesdeprogramacion.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manualesdeprogramacion.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manualesdeprogramacion.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manualesdeprogramacion.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manualesdeprogramacion.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manualesdeprogramacion.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manualesdeprogramacion.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manualesdeprogramacion.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manualesdeprogramacion.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manualesdeprogramacion.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manualesdeprogramacion.wordpress.com/187/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=187&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://manualesdeprogramacion.wordpress.com/2010/10/11/hum-tum-aur-ghost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	

		<media:content url="http://1.gravatar.com/avatar/d3e2b6422c69c2a873ee343b74765bfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindsayben</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Record From DVR to DVD</title>
		<link>http://manualesdeprogramacion.wordpress.com/2010/09/24/163/</link>
		<comments>http://manualesdeprogramacion.wordpress.com/2010/09/24/163/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 22:29:42 +0000</pubDate>
		<dc:creator>lindsayben</dc:creator>
				<category><![CDATA[Entertainment]]></category>

		<guid isPermaLink="false">http://isansar.com/?p=163</guid>
		<description><![CDATA[Every Digital Video Recorder (DVR) has a limit, a full-to-capacity point where it refuses to record anymore. Alternatively, the DVR can simply start dumping the old recordings to make room for the new recordings, but this can be a problem &#8230; <a href="http://manualesdeprogramacion.wordpress.com/2010/09/24/163/"><em>Continuar&#160;leyendo&#160;<span class="meta-nav">&#8594;</span></em></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=163&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Every Digital Video Recorder (DVR) has a limit, a full-to-capacity point where it refuses to record anymore. Alternatively, the DVR can simply start dumping the old recordings to make room for the new recordings, but this can be a problem for those who like to keep their favorite shows and movies around for quick access. Luckily there is a way to keep your favorite shows and not lose them. You must do a simple transfer of information from your DVR to your DVD player.</p>
<p>Difficulty: Moderate<br />
Instructions<br />
Things You&#8217;ll Need:</p>
<p>	TV<br />
	Video cables<br />
	DVR player<br />
	Recordable DVD disc (such as DVD + R/RW)<br />
	DVD player</p>
<p>Record From DVR to DVD</p>
<p>	1  Record the show first on the DVR as you normally would.</p>
<p>	2 Turn on everything including the DVR, DVD player and the television.</p>
<p>	3 Connect an S-Video cable from the DVD player to the DVR player. The cable will be red and white.</p>
<p>	4 Change the inputs on the DVD player. Since you are using an S-video input, the correct setting would be L1.</p>
<p>	5 Change the TV setting to match the settings of your DVD. If you are watching what you are recording, the setting on the TV should be &#8220;Video 2.&#8221;</p>
<p>	6 Play the show back to test that all the cables are connected correctly and the inputs are congruent with each other. If while playing back you can hear and see your show, you are good to proceed. If not, check your cables and make sure the inputs agree.</p>
<p>	7  Place a DVD + R/RW disc into your DVD player.</p>
<p>	8 Set the recoding time according to the DVR instructions. Two hours of recording time is usually a safe amount of time, unless quality is not your number one priority. For example, a show you do not plan on keeping or a sporting event you will simply watch once and tape over would be conducive to longer recording times. Otherwise the 2-hour setting will give you the best quality you can expect, and it should mirror the quality of the original DVR recording.<br />
	9 Push &#8220;Play&#8221; on the DVR player and &#8220;Record&#8221; on the DVD player. If you want to build a playlist of shows or record multiple shows, simply push &#8220;Stop&#8221; on the DVD player while you set up each new recording.</p>
<p>Tips &amp; Warnings</p>
<p>	If you plan on doing this often, consider purchasing an additional DVD player that is set up especially for this purpose since you will not be able to watch DVDs with this setup. You would need to constantly switch the cables and change the inputs with only one DVD player.</p>
<p>Comments</p>
<p>on 2/23/2010 you say &#8220;since you will not be able to watch DVDs with this setup. &#8221; ?? and then you say &#8220;If while playing back you can hear and see your show, you are good to proceed. &#8221; If the audio video signal is passing through the recorder to the TV ,then you CAN use that set up to PLAY DVDs. Your article is full of miss leading mistakes.</p>
<p>______________________________________________</p>
<p>If you own a Digital Video Recorder, such as TiVo, or a DVR from a Cable or Satellite provider, then you know you can record to the device&#8217;s hard drive to view TV shows at a later time, much like the old VCR. However, saving those TV shows becomes difficult as the Hard Drive starts to fill up. The answer to saving your shows is to record them to DVD! This can be accomplished easily by hooking up a DVD Recorder to your DVR.</p>
<p>Difficulty: Easy</p>
<p>Time Required: Depends on length of source video</p>
<p>Here&#8217;s How:</p>
<p>	Record a TV show on your DVR that you want to save to DVD!<br />
	Turn on the DVR, DVD Recorder and the TV that the DVD Recorder is connected to. In my case, I have my Samsung DVD Recorder (no hard drive) hooked up to my TV via an RCA Audio/Video cable from the rear outputs on the DVD Recorder to the rear RCA inputs on my TV. I use a seperate DVD Player for playing DVDs, but if you use your DVD Recorder as a player as well, use the best cable connections you can to connect to the TV. See the article Types of A/V Cables for more info.<br />
	Connect an S-Video or RCA video cable and composite stereo cables (red and white RCA plugs) from the DVR to the inputs on your DVD Recorder. If your TV has Component inputs, connect the Component Out from the DVD Recorder to the Component In on the TV, otherwise you can use S-Video or Composite. You will still need to use RCA audio with your video connection.<br />
	Change the input on your DVD Recorder to match the inputs you are using. Since I&#8217;m using the rear S-Video input, I change my input to &#8220;L1&#8243;, which is the input for recording using the rear S-Video input. If I was recording using the front analog cables it would be &#8220;L2&#8243;, the front Firewire input, &#8220;DV&#8221;. The input select can typically be changed using the DVD Recorder remote.<br />
	You&#8217;ll also need to change the input select on the TV to match the inputs you are using to connect the DVD Recorder. In my case, I&#8217;m using rear inputs that correspond to &#8220;Video 2&#8243;. This allows me to view what I&#8217;m recording.<br />
	You can now perform a test to make sure the video signal is coming through to the DVD Recorder and the TV. Simply start playing the recorded TV show back from the Digital Video Recorder and see if the video and audio is being played back on the TV. If you have everything connected properly, and the correct input select, you should be seeing and hearing your video. If not, check your cable connections, power, and input select.<br />
	Now you&#8217;re ready to record! First, determine the type of disc you&#8217;ll need, either DVD+R/RW or DVD-R/RW. For more info on Recordable DVDs read the article Types of Recordable DVD Formats. Second, change the record speed to the desired setting. For me it&#8217;s &#8220;SP&#8221;, which allows up to two hours of record time.<br />
	Place the recordable DVD into the DVD Recorder.<br />
	Start playing the Recorded TV Show back while pressing record on either the DVD Recorder itself, or by using the remote. If you want to record more than one show on a DVD, just pause the recorder while you switch to the other show, and then resume by hitting pause on the recorder or remote a second time after you start playing the next tape. However, make sure you have enough space on the disc for the shows you are recording.</p>
<p>10. Once you have recorded your TV show (or shows) hit stop on the recorder or the remote. DVD Recorders require that you &#8220;finalize&#8221; the DVD in order to make it a DVD-Video, capable of playback in other devices. The method for finalizing varies by DVD Recorder, so consult the owner&#8217;s manual for information on this step.</p>
<p>11. Once your DVD is finalized, it is now ready for playback.</p>
<p>12. While you can purchase a DVR that includes a built-in DVD Recorder, those can be expensive. By hooking up a seperate DVD Recorder, you can save some money, while taking advantage of backing up you TV shows to DVD, without the need for a DVR with a built-in DVD Recorder.</p>
<p>13. On the other hand, having the convenience of a built-in DVD Recorder is the right choice for those who don&#8217;t want to hook up an extra A/V device to their home theater set-up.</p>
<p>Tips:</p>
<p>	Make sure you use the DVD format that works with your DVD Recorder.<br />
	When using analog cables to record from a Digital Video Recorder to a DVD Recorder make sure you use highest quality cables that the DVD Recorder accepts, and that the DVR outputs.<br />
	When selecting a recording speed on the DVD Recorder use 1 hour or 2 hour mode. The 4 and 6 hour modes should only be used when recording TV shows you don&#8217;t plan to keep, or long sporting events.<br />
	Make sure you set the correct input select for the inputs you are using on the DVD Recorder. Typically, DV for a Firewire connection and L1 and L2 for analog inputs.<br />
	Make sure to Finalize your DVD for playback in other DVD devices.</p>
<p>What You Need:</p>
<p>	DVD Recorder<br />
	Digital Video Recorder &#8211; such as TiVo<br />
	Audio/Video Cables<br />
	DVD Recordable Media of the correct format<br />
	TV hooked up to the DVD Recorder to monitor the recording</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manualesdeprogramacion.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manualesdeprogramacion.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manualesdeprogramacion.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manualesdeprogramacion.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manualesdeprogramacion.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manualesdeprogramacion.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manualesdeprogramacion.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manualesdeprogramacion.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manualesdeprogramacion.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manualesdeprogramacion.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manualesdeprogramacion.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manualesdeprogramacion.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manualesdeprogramacion.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manualesdeprogramacion.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=163&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://manualesdeprogramacion.wordpress.com/2010/09/24/163/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d3e2b6422c69c2a873ee343b74765bfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindsayben</media:title>
		</media:content>
	</item>
		<item>
		<title>Hindi Song Copied</title>
		<link>http://manualesdeprogramacion.wordpress.com/2010/09/20/hindi-song-copied/</link>
		<comments>http://manualesdeprogramacion.wordpress.com/2010/09/20/hindi-song-copied/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 23:40:35 +0000</pubDate>
		<dc:creator>lindsayben</dc:creator>
				<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://isansar.com/?p=117</guid>
		<description><![CDATA[1. Hindi Song: Koi Yahan Naache Naache(Disco Dancer) Music Director: Bappi Lahiri Copied From: Video Killed The Radio Star (The Buggles) Koi Yahan Naache Naache(Disco Dancer) Video Killed The Radio Star (The Buggles) 2 Hindi Song: Tumne Jo Kaha (Laawaris) &#8230; <a href="http://manualesdeprogramacion.wordpress.com/2010/09/20/hindi-song-copied/"><em>Continuar&#160;leyendo&#160;<span class="meta-nav">&#8594;</span></em></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=117&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1.<br />
Hindi Song: Koi Yahan Naache Naache(Disco Dancer)<br />
Music Director: Bappi Lahiri<br />
Copied From: Video Killed The Radio Star (The Buggles)<br />
Koi Yahan Naache Naache(Disco Dancer)</p>
<p>Video Killed The Radio Star (The Buggles)</p>
<p>2<br />
Hindi Song: Tumne Jo Kaha (Laawaris)<br />
Music Director: Rajesh Roshan<br />
Copied From: Barbie Girl (Aqua)<br />
Barbie Girl (Aqua)</p>
<p>Tumne Jo Kaha (Laawaris)</p>
<p>PLEASE LEAVE COMMENTS</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manualesdeprogramacion.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manualesdeprogramacion.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manualesdeprogramacion.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manualesdeprogramacion.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manualesdeprogramacion.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manualesdeprogramacion.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manualesdeprogramacion.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manualesdeprogramacion.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manualesdeprogramacion.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manualesdeprogramacion.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manualesdeprogramacion.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manualesdeprogramacion.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manualesdeprogramacion.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manualesdeprogramacion.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=117&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://manualesdeprogramacion.wordpress.com/2010/09/20/hindi-song-copied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d3e2b6422c69c2a873ee343b74765bfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindsayben</media:title>
		</media:content>
	</item>
		<item>
		<title>Nepali Music Director Copy from Hindi</title>
		<link>http://manualesdeprogramacion.wordpress.com/2010/09/20/nepali-music-director-copy-from-hindi/</link>
		<comments>http://manualesdeprogramacion.wordpress.com/2010/09/20/nepali-music-director-copy-from-hindi/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 22:51:19 +0000</pubDate>
		<dc:creator>lindsayben</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://isansar.com/?p=103</guid>
		<description><![CDATA[Hindi Song from Hindi Bollywood Movie .. THIS SONG FROM NEPALI MOVIE: SAPUT Nepali Movie Beginning Music Copy from top hindi bollywood Movie Song PLEASE LEAVE COMMENTS<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=103&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hindi Song from Hindi Bollywood Movie ..</p>
<p>THIS SONG FROM NEPALI MOVIE:<br />
SAPUT Nepali Movie</p>
<p>Beginning Music Copy from top hindi bollywood Movie Song</p>
<p>PLEASE LEAVE COMMENTS</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manualesdeprogramacion.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manualesdeprogramacion.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manualesdeprogramacion.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manualesdeprogramacion.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manualesdeprogramacion.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manualesdeprogramacion.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manualesdeprogramacion.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manualesdeprogramacion.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manualesdeprogramacion.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manualesdeprogramacion.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manualesdeprogramacion.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manualesdeprogramacion.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manualesdeprogramacion.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manualesdeprogramacion.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=103&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://manualesdeprogramacion.wordpress.com/2010/09/20/nepali-music-director-copy-from-hindi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d3e2b6422c69c2a873ee343b74765bfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindsayben</media:title>
		</media:content>
	</item>
		<item>
		<title>Descargar manual de iniciación a la base de datos</title>
		<link>http://manualesdeprogramacion.wordpress.com/2010/09/02/descargar-manual-de-iniciacion-a-la-base-de-datos/</link>
		<comments>http://manualesdeprogramacion.wordpress.com/2010/09/02/descargar-manual-de-iniciacion-a-la-base-de-datos/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 13:30:11 +0000</pubDate>
		<dc:creator>lindsayben</dc:creator>
				<category><![CDATA[Descargas]]></category>
		<category><![CDATA[Manuales]]></category>
		<category><![CDATA[Programación]]></category>

		<guid isPermaLink="false">http://tinyurl.com/77yjkm4blog/?p=12281</guid>
		<description><![CDATA[Resumen del temario: Presentación Entorno de trabajo de la base de datos Seleccionar la información. Filtros Edición de una base de datos en la presentación de lista Edición en la presentación en formulario y en el diseño de formulario Impresión &#8230; <a href="http://manualesdeprogramacion.wordpress.com/2010/09/02/descargar-manual-de-iniciacion-a-la-base-de-datos/"><em>Continuar&#160;leyendo&#160;<span class="meta-nav">&#8594;</span></em></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=12281&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="alignnone size-full wp-image-12282" title="Descargar manual de iniciación a la base de datos" src="http://tinyurl.com/77yjkm4blog/wp-content/uploads/2010/08/Descargar-manual-de-iniciación-a-la-base-de-datos.jpg" alt="" width="300" height="450" /></p>
<p style="text-align:justify;">Resumen del temario:</p>
<ul style="text-align:justify;">
<li>Presentación</li>
<li>Entorno de trabajo de la base de datos</li>
<li>Seleccionar la información. Filtros</li>
<li>Edición de una base de datos en la presentación de lista</li>
<li>Edición en la presentación en formulario y en el diseño de formulario</li>
<li>Impresión de una base de datos. Informes</li>
<li>Creación de una base de datos</li>
<li style="text-align:justify;">Diseño de una base de datos</li>
</ul>
<p style="text-align:justify;">MegaUpload <strong><a title="Descargar manual de iniciación a la base de datos" rel="nofollow" href="http://www.megaupload.com/?d=5XV1W3GW" target="_blank">Descargar manual de iniciación a la base de datos</a></strong></p>
<p style="text-align:justify;"><strong>MegaUpload:</strong> http://www.megaupload.com/?d=5XV1W3GW</p>
<p style="text-align:justify;">378 Páginas, Formato: PDF, Idioma: Español.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manualesdeprogramacion.wordpress.com/12281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manualesdeprogramacion.wordpress.com/12281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manualesdeprogramacion.wordpress.com/12281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manualesdeprogramacion.wordpress.com/12281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manualesdeprogramacion.wordpress.com/12281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manualesdeprogramacion.wordpress.com/12281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manualesdeprogramacion.wordpress.com/12281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manualesdeprogramacion.wordpress.com/12281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manualesdeprogramacion.wordpress.com/12281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manualesdeprogramacion.wordpress.com/12281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manualesdeprogramacion.wordpress.com/12281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manualesdeprogramacion.wordpress.com/12281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manualesdeprogramacion.wordpress.com/12281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manualesdeprogramacion.wordpress.com/12281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=12281&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://manualesdeprogramacion.wordpress.com/2010/09/02/descargar-manual-de-iniciacion-a-la-base-de-datos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d3e2b6422c69c2a873ee343b74765bfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindsayben</media:title>
		</media:content>

		<media:content url="http://tinyurl.com/77yjkm4blog/wp-content/uploads/2010/08/Descargar-manual-de-iniciación-a-la-base-de-datos.jpg" medium="image">
			<media:title type="html">Descargar manual de iniciación a la base de datos</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook Become a Drug? or What?</title>
		<link>http://manualesdeprogramacion.wordpress.com/2010/08/23/facebook-become-a-drug-or-what/</link>
		<comments>http://manualesdeprogramacion.wordpress.com/2010/08/23/facebook-become-a-drug-or-what/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 02:38:19 +0000</pubDate>
		<dc:creator>lindsayben</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://isansar.com/?p=88</guid>
		<description><![CDATA[Facebook become a drug or What? Now Everyone Spent More of  Their Time on Facebook. Now, They are Making Facebook Like Drug  They Check Facebook as a Dozz&#8230; Now, it is in your hand how you use you use as &#8230; <a href="http://manualesdeprogramacion.wordpress.com/2010/08/23/facebook-become-a-drug-or-what/"><em>Continuar&#160;leyendo&#160;<span class="meta-nav">&#8594;</span></em></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=88&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Facebook become a drug or What? Now Everyone Spent More of  Their Time on Facebook. Now, They are Making Facebook Like Drug  They Check Facebook as a Dozz&#8230; Now, it is in your hand how you use you use as a drug or to communicate Friends and in good thing . What you Making Facebook As.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manualesdeprogramacion.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manualesdeprogramacion.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manualesdeprogramacion.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manualesdeprogramacion.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manualesdeprogramacion.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manualesdeprogramacion.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manualesdeprogramacion.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manualesdeprogramacion.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manualesdeprogramacion.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manualesdeprogramacion.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manualesdeprogramacion.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manualesdeprogramacion.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manualesdeprogramacion.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manualesdeprogramacion.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=88&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://manualesdeprogramacion.wordpress.com/2010/08/23/facebook-become-a-drug-or-what/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d3e2b6422c69c2a873ee343b74765bfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindsayben</media:title>
		</media:content>
	</item>
		<item>
		<title>Manual SQL en español</title>
		<link>http://manualesdeprogramacion.wordpress.com/2010/08/18/manual-sql-en-espanol/</link>
		<comments>http://manualesdeprogramacion.wordpress.com/2010/08/18/manual-sql-en-espanol/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 00:10:48 +0000</pubDate>
		<dc:creator>lindsayben</dc:creator>
				<category><![CDATA[Descargas]]></category>
		<category><![CDATA[Manuales]]></category>
		<category><![CDATA[Programación]]></category>

		<guid isPermaLink="false">http://tinyurl.com/77yjkm4blog/?p=11550</guid>
		<description><![CDATA[Mejora todas tus habilidades en la administración de base de datos con es manual de SQL en español.   1.Introduccion a sql 2-Tipos de datos 3. INTRODUCCIÓN A SQL PLUS 3.1 COMANDOS SQL PLUS DE EDICIÓN 3.2 FICHEROS DE COMANDOS &#8230; <a href="http://manualesdeprogramacion.wordpress.com/2010/08/18/manual-sql-en-espanol/"><em>Continuar&#160;leyendo&#160;<span class="meta-nav">&#8594;</span></em></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=11550&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Mejora todas tus habilidades en la administración de base de datos con es <strong>manual de SQL en español.</strong></p>
<p style="text-align:center;"> <img class="size-full wp-image-11557   aligncenter" title="Manual SQL en español" src="http://tinyurl.com/77yjkm4blog/wp-content/uploads/2010/08/Manual-SQL-en-español.jpg" alt="" width="300" height="225" /></p>
<p><strong>1.Introduccion a sql</strong></p>
<p><strong>2-Tipos de datos</strong></p>
<p><strong>3. INTRODUCCIÓN A SQL PLUS</strong></p>
<p style="padding-left:30px;">3.1 COMANDOS SQL PLUS DE EDICIÓN<br />
3.2 FICHEROS DE COMANDOS<br />
3.3 CONSULTA DE DATOS<br />
3.4. OPERADORES ARITMÉTICOS<br />
3.5.Operaciones de comparación y lógicas<br />
3.6 OPERADORES DE COMPARACION DE CADENAS DE CARACTERES<br />
3.7.Comprobación con conjunto de valores<br />
3.8.SUBCONSULTAS<br />
3.8.1 Consultas que genera valores simples/lista<br />
3.9 Combinación de Tablas</p>
<p><strong>4. FUNCIONES</strong></p>
<p style="padding-left:30px;">4.1 Introducción<br />
4.2 Funciones Aritméticas<br />
4.2.1 Funciones de Grupo de valores<br />
4.2.2. Funciones de valores simples<br />
4.2.3. Funciones de Lista<br />
4.3 FUNCIONES DE CADENAS DE CARACTERES<br />
4.3.1 Funciones que devuelves valores carácter<br />
4.4 Funciones para el manejo de fecha<br />
4.5. FUNCIONES DE CONVERSION<br />
4.6. OTRAS FUNCIONES</p>
<p><strong>5.CLAUSULAS AVANZADAS DE SELECCIÓN</strong></p>
<p style="padding-left:30px;">5.1. Introducción<br />
5.2. Agrupación de elementos. GRUOP BY y HAVING<br />
5.3.Combinación externa ( outer joins<br />
5.4. Unión, intersección y minus<br />
5.4.1. Reglas para los operadores de conjunto</p>
<p><strong>6. MANIPULACION DE DATOS: INSERT, UPDATE Y DELETE</strong></p>
<p style="padding-left:30px;">6.1 Inserción de datos. Orden INSERT<br />
6.1.1.inserción con select<br />
6.3.Modificacion UPDATE<br />
6.3.1.UPDATE con SELECT<br />
6.4.Borrado de filas: DELETE<br />
6.5.ROLLBACK, COMMIT, AUTOCOMMIT</p>
<p><strong>7. CREACIÓN, SUPRESIÓN Y MODIFICACIÓN DE TABLAS Y DE VISTAS EN LA EMPRESA</strong></p>
<p style="padding-left:30px;">7.1. INTRODUCCION<br />
7.2. CREACIÓN DE UNA TABLA<br />
7.2.1.integridad de datos<br />
7.3.Supresión de tablas<br />
7.3.1.Orden truncate<br />
7.4.Modificación de tablas<br />
7.4.Adicción de restricciones<br />
7.5. CREACIÓN Y USO DE VISTAS<br />
7.5.1. Borrado de vistas<br />
7.5.2. Operaciones sobre vistas<br />
7.6 CREACIÓN DE SINÓNIMOS<br />
7.6.1 Borrado de sinónimos<br />
7.7 CAMBIO DE NOMBRE</p>
<p><strong>8.Generación de informes en SQL plus</strong></p>
<p style="padding-left:30px;">8.1.Introducción<br />
8.3.Ordenes para generar informes<br />
8.3.1.Orden REMARK (REM)<br />
8.3.2.Configuración de variables del entorno SQL plus con orden SET<br />
8.3.4.ORDEN COLUMN. Formato columnas<br />
8.3.5.Orden BREAK ON. Ruptura de control<br />
8.3.6. Orden COMPUTE. Cálculos<br />
8.3.7. Orden SPOOL. Generador de informes</p>
<p><strong>9.Administración de Oracle</strong></p>
<p style="padding-left:30px;">9.2. Herramienta de Oracle<br />
9.3.estructura de la base de datos<br />
9.4.Arquitectura de Oracle<br />
9.4.1.Componentes de la base de datos<br />
9.4.2.Estructura de la memoria<br />
9.4.3.Procesos de soporte de la base de datos<br />
9.4.4.¿Qué es una instancia oracle?<br />
9.5.Gestión de seguridad<br />
9.5.1.Usuarios<br />
9.5.2 PRIVILEGIOS<br />
9.5.3.Roles<br />
9.6.Gestión de Tablespaces<br />
9.7.Secuencias</p>
<p>MegaUpload <a title="Descargar manual SQL en español" rel="nofollow" href="http://www.megaupload.com/?d=Q0M1HD07" target="_blank"><strong>Descargar manual SQL en español</strong></a></p>
<p><strong>MegaUpload</strong>: http://www.megaupload.com/?d=Q0M1HD07</p>
<p>101 Páginas, Formato: PDF, Idioma: Español.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manualesdeprogramacion.wordpress.com/11550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manualesdeprogramacion.wordpress.com/11550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manualesdeprogramacion.wordpress.com/11550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manualesdeprogramacion.wordpress.com/11550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manualesdeprogramacion.wordpress.com/11550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manualesdeprogramacion.wordpress.com/11550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manualesdeprogramacion.wordpress.com/11550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manualesdeprogramacion.wordpress.com/11550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manualesdeprogramacion.wordpress.com/11550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manualesdeprogramacion.wordpress.com/11550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manualesdeprogramacion.wordpress.com/11550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manualesdeprogramacion.wordpress.com/11550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manualesdeprogramacion.wordpress.com/11550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manualesdeprogramacion.wordpress.com/11550/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=manualesdeprogramacion.wordpress.com&amp;blog=29845486&amp;post=11550&amp;subd=manualesdeprogramacion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://manualesdeprogramacion.wordpress.com/2010/08/18/manual-sql-en-espanol/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d3e2b6422c69c2a873ee343b74765bfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindsayben</media:title>
		</media:content>

		<media:content url="http://tinyurl.com/77yjkm4blog/wp-content/uploads/2010/08/Manual-SQL-en-español.jpg" medium="image">
			<media:title type="html">Manual SQL en español</media:title>
		</media:content>
	</item>
	</channel>
</rss>
