<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2598690859544452118</id><updated>2024-10-24T19:30:02.251-07:00</updated><category term="code"/><category term="function"/><category term="php"/><category term="programming"/><category term="remote"/><category term="timeout"/><title type='text'>More&#39;s</title><subtitle type='html'>Bienvenidos al espaciomore.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://espaciomore.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>19</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-7552041867017873168</id><published>2013-09-21T11:38:00.000-07:00</published><updated>2013-09-21T11:41:09.534-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="code"/><category scheme="http://www.blogger.com/atom/ns#" term="function"/><category scheme="http://www.blogger.com/atom/ns#" term="php"/><category scheme="http://www.blogger.com/atom/ns#" term="remote"/><category scheme="http://www.blogger.com/atom/ns#" term="timeout"/><title type='text'>PHP: Implementing timed-out remote calls</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;
&amp;nbsp;In the PHP programming languages there are a set of method calls that might make you web application unresponsive. For example, in the case of requesting a file from a remote site, the resource might not exist, be broken or be just too large.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
In order to avoid the unresponsive, halt or idle scenarios, all web applications must be designed to respond in the time interval it takes for a user to decide whether to give up or try again. Here&#39;s one work around that maybe helpful for PHP users.&lt;/div&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;   $get_resource= function( $uri, $timeout=2 ){
     set_time_limit( $timeout );
     return get_file_contents( $uri );
   };
   $image= $get_resource( &#39;http://tinyurl.com/nkkgk8d&#39; );&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;/pre&gt;
</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/7552041867017873168'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/7552041867017873168'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2013/09/php-implementing-timed-out-remote-calls.html' title='PHP: Implementing timed-out remote calls'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-617765567653763664</id><published>2013-07-16T13:45:00.002-07:00</published><updated>2013-07-16T13:55:35.047-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="programming"/><title type='text'>the MVC right from scratch !</title><content type='html'>After a long time without (hardcore) web development, I find myself in the seat of an intern trying to give some live to a static web application intended to handle thousands of data records stored somewhere in the cloud.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;The final work is hard to predict at the moment, and the reason for that is the challenge of having to take every decision concerning the architecture of the website. 

Let&#39;s go back to the beginning.&lt;br /&gt;
&lt;br /&gt;
Scenario:&lt;br /&gt;
- intranet application / front-end layout provided&lt;br /&gt;
- data services via a public API&lt;br /&gt;
- stateless user session control &lt;br /&gt;
- back-end routing management&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
Firstly, the fact that it is an intranet application gave me that feeling of &#39;oh, boy, I&#39;d better do this right !&#39; but it&#39;s just a website. The second thing that should not be considered harmless is the used of a public API for managing data. The latter can be as dangerous as querying the database with root privilege. Third, to add a level of anxiety, all users will have access to the application without any user information being store at the server nor the client side. At last, all the different user interfaces have to be nicely routed!.&lt;br /&gt;
&lt;br /&gt;
Then of course, It seems as It all fits beautifully into an MVC (Model View Controller). Every UI will have its own controller and view, and the data sets will be matched with one or various API calls very easily.&lt;br /&gt;
&lt;br /&gt;
For Fucks Sakes !, the MVC is like having three freaking levels of complexity and every day they complicate the whole model.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;I will continue, my goal is DRY (Don&#39;t Repeat Yourself) and stick to the principals; Controllers provide, Models produce, Views consume.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Language chosen: PHP (mother of god!)</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/617765567653763664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/617765567653763664'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2013/07/the-mvc-right-from-scratch.html' title='the MVC right from scratch !'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-3423868251160956676</id><published>2012-12-21T05:45:00.000-08:00</published><updated>2012-12-21T06:03:34.717-08:00</updated><title type='text'>The Epic Software Testing Experience</title><content type='html'>So, I&#39;ve been working as a test engineer for almost a year now and I had never found a way to explain how does it feel to do this job. It&#39;s been an amazing experience that I want to sum up like this:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;http://cartoontester.blogspot.com/2012/12/bugs-anyone.html&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;192&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgGKHpKbLKoEWrpQPW0S-BiNDB53ow5MfF-OrCc15KP6MD-7WipCOo5XJGLTUOeTRUU9Fb5GHcVAYXtcl4ze1pV0cn1hq75_o_NM-EGZSeTwkJw4IwkWvcqSuv2wd992HWBkNYNSEKKSOFG/s400/te_bugs_bugs.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/3423868251160956676'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/3423868251160956676'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2012/12/the-epic-software-testing-experience.html' title='The Epic Software Testing Experience'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgGKHpKbLKoEWrpQPW0S-BiNDB53ow5MfF-OrCc15KP6MD-7WipCOo5XJGLTUOeTRUU9Fb5GHcVAYXtcl4ze1pV0cn1hq75_o_NM-EGZSeTwkJw4IwkWvcqSuv2wd992HWBkNYNSEKKSOFG/s72-c/te_bugs_bugs.png" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-8940574615269498907</id><published>2012-05-27T19:33:00.002-07:00</published><updated>2012-05-27T19:33:45.682-07:00</updated><title type='text'>then again &lt;&lt; Hello World !</title><content type='html'>Después de muchisimos meses fuera del blog, regreso con un nuevo diseño, más integración con las redes sociales y con mucho más experiencia !&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/8940574615269498907'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/8940574615269498907'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2012/05/then-again-hello-world.html' title='then again &lt;&lt; Hello World !'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-7915148701522027791</id><published>2011-12-04T09:58:00.000-08:00</published><updated>2011-12-05T18:44:21.840-08:00</updated><title type='text'>MoreAccesoInalámbrico</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;Es una nueva aplicación tipo Soft&lt;i&gt;-&lt;/i&gt;AP y la primera que estoy publicando para descargar gratuitamente. &lt;a name=&#39;more&#39;&gt;&lt;/a&gt;Actualmente, considerándola como la versión Beta 1.0&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;El enlace esta en la sección Aplicaciones. Prueben y si tienen alguna pregunta o les interesa desarrollar más a fondo solo dejen sus comentarios.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Bon chance !&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;PD: no hay virus ni anda de eso !&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/7915148701522027791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/7915148701522027791'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2011/12/moreaccesoinalambrico.html' title='MoreAccesoInalámbrico'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-8340817269779433169</id><published>2011-11-01T08:19:00.000-07:00</published><updated>2011-11-01T08:42:46.270-07:00</updated><title type='text'>Recreando Buscadores de Contenido</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt; Vengo de leer acerca de como se están implementando mejores algoritmos para buscar contenidos en la internet. Lamentablemente, no se logra el éxito deseado debido a que la información encontrada es calificada como aceptablemente buena, dejando al lector con poca confianza hacia los autores a veces inexpertos en el tema.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Podría cualquiera cuestionarse si yo soy algún experto, pues no lo soy y es que de eso se trata este articulo. Les diré como considero el buscador de la próxima generación.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Es bien simple, como no sabemos quien es tan sabio, basemos nuestro criterio en la reputación del contenido y no en su autor. Al mismo tiempo que la publicación gana publicidad, logra mas aceptación, a ese mismo ritmo quien publica alcanzará la reputación necesaria para sembrar en el lector la confianza en el contenido.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Para conseguir esos resultados, esas variables (reputación, confianza), tendríamos que pensar de nuevo en algoritmos socialmente inteligentes. Allí esta la respuesta, espero que si no termino yo el proyecto alguien se interese y se haga dueño. &lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Mucha suerte !&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/8340817269779433169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/8340817269779433169'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2011/11/recreando-buscadores-de-contenido.html' title='Recreando Buscadores de Contenido'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-7027025016805980870</id><published>2011-11-01T08:10:00.000-07:00</published><updated>2011-11-01T08:18:18.314-07:00</updated><title type='text'>Reporte del Proyecto</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt; Estuve muy alejado del blog por mucho tiempo, ahora estoy de vuelta y voy a presentar los resultados del ultimo proyecto que les presenté. Aunque, todavía no lo termino 100%, está en su fase final. Pronto pondré en linea la aplicación y todas informaciones de la misma para que quienes iniciar algo similar tengan un buen punto de partida.&lt;/div&gt;&lt;br /&gt;Hasta la próxima !</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/7027025016805980870'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/7027025016805980870'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2011/11/reporte-del-proyecto.html' title='Reporte del Proyecto'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-3747083705509365150</id><published>2010-07-23T22:39:00.000-07:00</published><updated>2010-07-23T22:49:24.519-07:00</updated><title type='text'>Mi Proyecto</title><content type='html'>&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div align=&quot;justify&quot;&gt;La necesidad de estar conectados en todo momento y en todo lugar es el motor que ha impulsado la elaboración de un proyecto que permita extender las redes inalámbricas específicamente las que operan sobre el estándar 802.11. Este será un proyecto presentado para optar por el titulo de Ingeniero Telemático en la Pontificia Universidad Católica Madre y Maestra. A partir de trabajos previos y conceptos básicos aplicados a las redes inalámbricas, algoritmos de plantificación y de control, se presentará un trabajo con una metodología orientada a la estandarización que sea flexible, capaz de adaptarse a nuevas tecnologías.&lt;br /&gt;&lt;br /&gt;Comenzaremos por analizar las herramientas disponibles y de estudiarlas desde lo más simple hasta lo más complicado. Para entender mejor hay que situar cada etapa sobre el modelo OSI desde la capa física hasta la capa de aplicación tomando muy en cuenta la capa de enlace de datos más específicamente la subcapa superior de control lógico de enlace. En esta ultima parte, se pretende controlar las conexiones lógicas y el direccionamiento de tramas. La programación se hará en el sistema operativo Windows por tanto se utiliza el lenguaje C++ y las interfaces de programación de aplicaciones; Native Wi-Fi y Windows Connect Now.&lt;br /&gt;&lt;br /&gt;Estandarizado significa que debe ser una implementación que sea independiente del controlador de red inalámbrica que se tenga instalado. De esta manera podremos realizar procesos transparentes a las capas inferiores y superiores, seria mejor como un servicio.&lt;br /&gt;&lt;br /&gt;Finalmente, el proyecto presentará una red inalámbrica Wi-Fi donde cada uno de los equipos conectados a una red, démosle el nombre de red madre, es capaz por si mismo de iniciar una subred de la misma para dar cobertura a otros equipos que no estén dentro del alcance de la red madre. &lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/3747083705509365150'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/3747083705509365150'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/07/mi-proyecto.html' title='Mi Proyecto'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-7937258187074098620</id><published>2010-07-07T10:17:00.000-07:00</published><updated>2012-05-27T21:53:28.684-07:00</updated><title type='text'>Propuesta de Proyecto o Tesis</title><content type='html'>&lt;div align=&quot;justify&quot;&gt;Actualmente, la tecnología de transmisión inalámbrica utilizada localmente es Wi-Fi. Esta tiene una topología en estrella, es decir, que cada equipo solo puede conectarse a una red externa como la internet vía un único equipo de acceso llamado punto de acceso. Dicha puerta de acceso puede servir a varias conexiones simultáneas para formar la red en estrella. Por tanto, para que la red tenga mayor alcance se podrian interconectar varias redes mediante la creación de una infraestructura distribuida entre dos o más puntos de acceso donde solo uno tendrá el enlace a la red externa mientras que los demás solo redireccionaran la información. &lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/7937258187074098620'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/7937258187074098620'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/07/propuesta-de-proyecto-o-tesis.html' title='Propuesta de Proyecto o Tesis'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-4792678198185406049</id><published>2010-05-21T17:52:00.000-07:00</published><updated>2010-05-21T18:44:16.147-07:00</updated><title type='text'>Google también es penalizado</title><content type='html'>&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div align=&quot;justify&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXiTqU588ofKk4PSyXA4rYEyeA97Tm_v3L5Kq6tZ7QjRfOEiIQw6Z3NhnZC3rMdBSrTEsxC49Kg9wyioOlyvTuzUcTgcjBUaqX9pK04Va_Yoq0eoJ1iqGfY55pl1u9WyxE837kYzuc5wLE/s1600/google.png&quot;&gt;&lt;img style=&quot;MARGIN: 0px 0px 10px 10px; WIDTH: 200px; FLOAT: right; HEIGHT: 130px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5473891433733015378&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXiTqU588ofKk4PSyXA4rYEyeA97Tm_v3L5Kq6tZ7QjRfOEiIQw6Z3NhnZC3rMdBSrTEsxC49Kg9wyioOlyvTuzUcTgcjBUaqX9pK04Va_Yoq0eoJ1iqGfY55pl1u9WyxE837kYzuc5wLE/s200/google.png&quot; /&gt;&lt;/a&gt;&lt;span style=&quot;color:#333333;&quot;&gt;Una nueva violación a la información personal sale a la luz. Esta vez, el acusado es el gigante de Internet&lt;/span&gt; &lt;strong&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;G&lt;/span&gt;&lt;span style=&quot;color:#cc0000;&quot;&gt;o&lt;/span&gt;&lt;span style=&quot;color:#ffcc00;&quot;&gt;o&lt;/span&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;g&lt;/span&gt;&lt;span style=&quot;color:#009900;&quot;&gt;l&lt;/span&gt;&lt;span style=&quot;color:#cc0000;&quot;&gt;e&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color:#000000;&quot;&gt;.&lt;span style=&quot;color:#333333;&quot;&gt; Desde que esta empresa empezara su proyecto&lt;/span&gt; &lt;a href=&quot;http://en.wikipedia.org/wiki/Google_Street_View&quot;&gt;Google Street View&lt;/a&gt; &lt;/span&gt;&lt;span style=&quot;color:#333333;&quot;&gt;a principios del 2007 utilizando móviles (carros, triciclos, etc) equipados con cámaras digitales con programas &lt;em&gt;sniffers&lt;/em&gt; capaces de escanear en busca de redes WiFi públicas o privadas de las cuales se podrían extraer cualquier tipo de información en transmisión como paquetes de datos, voz o video. &lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;br /&gt; &lt;/div&gt;&lt;/span&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;Los problemas legales generados que la empresa misma describió en primera instancia como &quot;&lt;em&gt;algo de lo cual ellos no estaban informados&lt;/em&gt;&quot;, son más que suficientes para provocar la intervención por parte de las autoridades encargadas de la protección de la información en toda la Unión Europea. &lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;br /&gt; &lt;/div&gt;&lt;/span&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;Google admitiría luego que uno de sus ingenieros creó un programa capaz de recolectar información en redes inalámbricas. El programa fue entonces introducido en el proyecto sin ninguna autorización de los ejecutivos de la compañía. &lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;br /&gt; &lt;/div&gt;&lt;/span&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;Las autoridades reclaman que les informe sobre que tipo de información se estaba colectando, donde se almacena&lt;/span&gt;&lt;span style=&quot;color:#333333;&quot;&gt;, quien tiene acceso,&lt;/span&gt;&lt;span style=&quot;color:#333333;&quot;&gt; por cuanto tiempo se ha llevado a cabo y si la data ha sido compartida con terceros. &lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;br /&gt; &lt;/div&gt;&lt;/span&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;Las amenazas contra los usuarios son cada vez mayores, ya hemos visto otros casos como el de Facebook que atentan contra la privacidad de los usuarios. Esperemos tener el apoyo de todas las organizaciones internacionales para proteger nuestros derechos en el mundo virtual.&lt;/span&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/4792678198185406049'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/4792678198185406049'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/05/google-tambien-es-penalizado.html' title='Google también es penalizado'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXiTqU588ofKk4PSyXA4rYEyeA97Tm_v3L5Kq6tZ7QjRfOEiIQw6Z3NhnZC3rMdBSrTEsxC49Kg9wyioOlyvTuzUcTgcjBUaqX9pK04Va_Yoq0eoJ1iqGfY55pl1u9WyxE837kYzuc5wLE/s72-c/google.png" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-2611249167740596605</id><published>2010-05-07T16:13:00.000-07:00</published><updated>2010-05-07T17:08:51.863-07:00</updated><title type='text'>Expansión de Facebook - lado negativo</title><content type='html'>&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div align=&quot;justify&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjApoDv4nfEaWYY1HQm2hKPqgsvBHgbiBiHwtBMPz5muyV4IxANWJUw6aYeMiTc3nO4sLb0xC3xAd-el76Vs0croiAWaXcJovGu0u6aR3pJgYhh-JUcevEe3Utc3748Md3HTyS7PZMjlzKP/s1600/facebook-icon.png&quot;&gt;&lt;img style=&quot;MARGIN: 0px 10px 10px 0px; WIDTH: 147px; FLOAT: left; HEIGHT: 138px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5468679015261767618&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjApoDv4nfEaWYY1HQm2hKPqgsvBHgbiBiHwtBMPz5muyV4IxANWJUw6aYeMiTc3nO4sLb0xC3xAd-el76Vs0croiAWaXcJovGu0u6aR3pJgYhh-JUcevEe3Utc3748Md3HTyS7PZMjlzKP/s200/facebook-icon.png&quot; /&gt;&lt;/a&gt; Desde que Facebook comenzó su expansión por la Web, lo que algunos clasifican como la batalla contra Google, la preocupación de muchos usuarios ha aumentado significativamente. El motivo es que no se sabe el uso que se le da a la información que compartimos públicamente. &lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Para la cuarta parte de las personas que usan Facebook diariamente, los datos personales pueden ser bien compartidos con todos. Este grupo de usuarios, a penas sabe que cuenta con restricciones de seguridad para protegerse. Ahora bien, el grupo restante tampoco puede evitar las violaciones a su privacidad siendo este el temor principal.&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Pero no todo es negativo, una vez que compartimos nuestros datos estos pueden ser utilizados para realizar modelos de decisiones que faciliten la experiencia del usuario en los diferentes sitios Web. Esto es posible para los administradores de esos sitios gracias a las aplicaciones técnica de la minería de datos. Entonces, con suficiente información cada usuario podría llegar a tener un espacio personalizado, es decir, sitios que se adapten a los requerimientos y necesidades del visitante.&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Más información sobre este tema puede ser encontrada en el sitio de &lt;a href=&quot;http://en.wikipedia.org/wiki/Criticism_of_Facebook&quot;&gt;Wikipedia&lt;/a&gt; y también en el de la revista &lt;a href=&quot;http://www.nytimes.com/2010/05/06/technology/internet/06facebook.html?ex=1288756800&amp;amp;en=24bd1af6bcef24c8&amp;amp;ei=5087&amp;amp;WT.mc_id=TE-D-I-NYT-MOD-MOD-M148-ROS-0510-HDR&amp;amp;WT.mc_ev=click&quot;&gt;NY Times&lt;/a&gt;.&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/2611249167740596605'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/2611249167740596605'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/05/expansion-de-facebook-lado-negativo.html' title='Expansión de Facebook - lado negativo'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjApoDv4nfEaWYY1HQm2hKPqgsvBHgbiBiHwtBMPz5muyV4IxANWJUw6aYeMiTc3nO4sLb0xC3xAd-el76Vs0croiAWaXcJovGu0u6aR3pJgYhh-JUcevEe3Utc3748Md3HTyS7PZMjlzKP/s72-c/facebook-icon.png" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-2367285218701704694</id><published>2010-05-05T18:40:00.000-07:00</published><updated>2010-05-07T14:57:22.656-07:00</updated><title type='text'>Neutralidad de la Red</title><content type='html'>&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div align=&quot;justify&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhevYLWFGeqAZ4eNE6bCV2GOiRW-IWA_gFiyDaA43M3RqWn7CDuw8jXYtNy9IN495ay2OptS_qEV-IKCmtqMpjgq6gk05RJjWN_aJYDVB52dF3MTjYtgGqG_tni89sn2sQiJ3Hd3YKpgt4_/s1600/filter.png&quot;&gt;&lt;img style=&quot;MARGIN: 0px 0px 10px 10px; WIDTH: 128px; FLOAT: right; HEIGHT: 128px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5467973851893171618&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhevYLWFGeqAZ4eNE6bCV2GOiRW-IWA_gFiyDaA43M3RqWn7CDuw8jXYtNy9IN495ay2OptS_qEV-IKCmtqMpjgq6gk05RJjWN_aJYDVB52dF3MTjYtgGqG_tni89sn2sQiJ3Hd3YKpgt4_/s200/filter.png&quot; /&gt;&lt;/a&gt;Desde que comencé a estudiar redes aprendí que para la seguridad, confiabilidad y el mejor rendimiento de la red es necesario controlar el tipo de información circulante. Esto es exactamente lo que han estado haciendo por años los proveedores de servicios. Ahora, la &lt;a href=&quot;http://www.fcc.gov/&quot;&gt;FCC&lt;/a&gt; (Federal Communications Commission) está tratando de cambiar este paradigma que atenta sobre los derechos de acceso a los servicios de internet.&lt;br /&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Los derechos cíviles desde el nacimiento de la era digital deben proteger a los cibernautas que utilizan la Internet; una red común, libre y en igualdad de acceso para todos. Al contrario, las compañías proveedoras del servicio limitan el tráfico hacia la Internet basándose en varios criterios que según ellos son mas que necesarios para brindar la calidad del servicio.&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Recientemente, la compañía &lt;a href=&quot;http://www.comcast.com/default.cspx&quot;&gt;Comcast&lt;/a&gt; fue llevada a corte por la &lt;a href=&quot;http://www.fcc.gov/&quot;&gt;FCC&lt;/a&gt; por bloquear el tráfico de una aplicación de descargas peer-to-peer debido a la congestión que esta generaba. Todo terminó a favor de la empresa en la defensa, por no haber leyes suficientes que sustentaran el caso. Además, la &lt;a href=&quot;http://www.fcc.gov/&quot;&gt;FCC&lt;/a&gt; todavía no tiene el poder de decidir sobre que deben hacer las empresas telefónicas y de cable con el tráfico en sus infraestructuras.&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;La &lt;a href=&quot;http://www.fcc.gov/&quot;&gt;FCC&lt;/a&gt; sigue luchando para defender los derechos de aquellos que no pueden hacer nada al respecto. Pueden encontrar más información sobre esto en &lt;a href=&quot;http://www.nytimes.com/2010/05/06/technology/06broadband.html?ref=technology&quot;&gt;NY Times Technology&lt;/a&gt;.&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/2367285218701704694'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/2367285218701704694'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/05/neutralidad-la-red.html' title='Neutralidad de la Red'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhevYLWFGeqAZ4eNE6bCV2GOiRW-IWA_gFiyDaA43M3RqWn7CDuw8jXYtNy9IN495ay2OptS_qEV-IKCmtqMpjgq6gk05RJjWN_aJYDVB52dF3MTjYtgGqG_tni89sn2sQiJ3Hd3YKpgt4_/s72-c/filter.png" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-6695171793898620146</id><published>2010-05-02T16:47:00.000-07:00</published><updated>2010-05-07T14:30:29.059-07:00</updated><title type='text'>Elaboración de Proyecto :*(</title><content type='html'>&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgShgjDGD10kFs3-CLHDZ1rMESOx3CxOkGUQvhHEyextAGkqSkcoP5a86GTkHahAz9aRSkwInsIWLEbtp4CF9UYjcmjcMz0Fyl-dJNkaowq0Ca-3NRFp5D9dxaEBQHwM_BHv21DP7XiKOW9/s1600/waldo.png&quot;&gt;&lt;img style=&quot;MARGIN: 0px 10px 10px 0px; WIDTH: 125px; FLOAT: left; HEIGHT: 221px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5466830773610855266&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgShgjDGD10kFs3-CLHDZ1rMESOx3CxOkGUQvhHEyextAGkqSkcoP5a86GTkHahAz9aRSkwInsIWLEbtp4CF9UYjcmjcMz0Fyl-dJNkaowq0Ca-3NRFp5D9dxaEBQHwM_BHv21DP7XiKOW9/s320/waldo.png&quot; /&gt;&lt;/a&gt; &lt;div align=&quot;justify&quot;&gt;No se si empezar por decir que no funcionará porque talvez me estoy dando por vencido demasiado pronto. &lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Tengo la maravillosa idea de hacer un sistema para localizar amigos que estén online a través de la extensa red de Internet, es decir, no más preguntar &quot;donde estas ?&quot; sino poder decir &quot;Aquí estas !&quot;. Por favor, no estén pensando en la privacidad porque cada quién puede restringir el acceso a su información. Además, este proyecto parece ser muy bueno y podría pensar en muchísimas aplicaciones ahora mismo.&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Bien, el problema es que las computadoras de hoy están demasiado protegidas como para permitir el acceso remoto necesario para obtener información de nivel físico, y esto es importante porque cada dispositivo tiene un identificador único que puede ser utilizarlo para mapearlo a una ubicación georeferenciada como en el caso de un Punto de Acceso.&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Ahora digamos que podemos hacerlo, entonces cada equipo con acceso a una red Wi-Fi puede mediante una aplicación (estoy pensado en la Web porque se que de otra manera es posible) informar cual es su identificación y la de su puerta de enlace. De esta manera, podríamos construir un mapa físico a partir de una red virtual.&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Si alguno quisiera interesarse en el proyecto podriamos empezar desde ahora. También, se agradecen de antemano todas sus opiniones !&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/6695171793898620146'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/6695171793898620146'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/05/elaboracion-de-proyecto.html' title='Elaboración de Proyecto :*('/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgShgjDGD10kFs3-CLHDZ1rMESOx3CxOkGUQvhHEyextAGkqSkcoP5a86GTkHahAz9aRSkwInsIWLEbtp4CF9UYjcmjcMz0Fyl-dJNkaowq0Ca-3NRFp5D9dxaEBQHwM_BHv21DP7XiKOW9/s72-c/waldo.png" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-8026317662269922413</id><published>2010-04-26T08:29:00.000-07:00</published><updated>2010-05-07T14:32:31.551-07:00</updated><title type='text'>IPv4 se reduce a 8%</title><content type='html'>&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div align=&quot;justify&quot;&gt;   Según las &lt;a href=&quot;http://www.nro.net/documents/presentations/jointstats-mar10.pdf&quot;&gt;estadísticas&lt;/a&gt; de la NRO (&lt;a href=&quot;http://www.nro.net/about/index.html&quot;&gt;National Resource Organization&lt;/a&gt;) hasta este primer cuatrimestre del año 2010 los cuatro RIR (Regional Internet Registries) - APNIC, ARIN, LACNIC y RIPE NCC - solo cuentan con un 8% de las direcciones &lt;a href=&quot;http://es.wikipedia.org/wiki/IPv4&quot;&gt;IPv4 &lt;/a&gt;/8&#39;s. &lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;br /&gt; &lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;El &lt;a href=&quot;http://lacnic.net/sp/sobre-lacnic/&quot;&gt;LACNIC&lt;/a&gt;, organización encargada de regular la implementación de las direcciones IP en toda Latinoamérica y el Caribe, ya ha mencionado en sus &lt;a href=&quot;http://www.6deploy.org/workshops/cuba_20081015/Consumo%20de%20IPv4%20y%20la%20transicion%20a%20IPv6.pdf&quot;&gt;publicaciones&lt;/a&gt; su interés por la preparación de las industrias ante la migración global hacia &lt;a href=&quot;http://es.wikipedia.org/wiki/IPv6&quot;&gt;IPv6&lt;/a&gt;. &lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;br /&gt; &lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;Ahora, podemos pensar si la República Dominicana esta realmente preparada para el cambio. Nos preguntamos si nuestras empresas ya están adoptando las políticas necesarias para que tanto &lt;a href=&quot;http://es.wikipedia.org/wiki/IPv4&quot;&gt;IPv4&lt;/a&gt; e &lt;a href=&quot;http://es.wikipedia.org/wiki/IPv6&quot;&gt;IPv6&lt;/a&gt; puedan coexistir. También, nos interesa saber si los equipos electrónicos que adquirimos tienen capacidad para &lt;a href=&quot;http://es.wikipedia.org/wiki/IPv6&quot;&gt;IPv6&lt;/a&gt;, si están nuestros proveedores de servicio listos y muchas otras cuestiones.&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/8026317662269922413'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/8026317662269922413'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/04/ipv4-se-reduce-8.html' title='IPv4 se reduce a 8%'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-2520529824076801967</id><published>2010-04-21T23:21:00.000-07:00</published><updated>2010-05-07T14:33:31.684-07:00</updated><title type='text'>Un Facebook más Ambisioso</title><content type='html'>&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div align=&quot;justify&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1hGt34lZ3FoxyFCmpzeO1eYFMsgzw8uNJsxqU21QFJyK1awkCKENGC_uscO34gS-W7BfsNkWc_uI6YfmilWBmOfRXSpfFJ6uulLCUmCBQ1-usWmiwaNOnu0gugZjA25FM9pm6AkzPKriG/s1600/facebook.png&quot;&gt;&lt;img style=&quot;MARGIN: 0px 0px 10px 10px; WIDTH: 178px; FLOAT: right; HEIGHT: 200px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5462848076207625282&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1hGt34lZ3FoxyFCmpzeO1eYFMsgzw8uNJsxqU21QFJyK1awkCKENGC_uscO34gS-W7BfsNkWc_uI6YfmilWBmOfRXSpfFJ6uulLCUmCBQ1-usWmiwaNOnu0gugZjA25FM9pm6AkzPKriG/s200/facebook.png&quot; /&gt;&lt;/a&gt; El gigante de las redes sociales, &lt;a href=&quot;http://facebook.com/f8&quot;&gt;Facebook&lt;/a&gt;, esta buscando expandirse por todas partes tras un concepto que ellos denominan &lt;a href=&quot;http://developers.facebook.com/docs/opengraph&quot;&gt;OpenGraph&lt;/a&gt;. &lt;/div&gt;&lt;p align=&quot;justify&quot;&gt;El fundador de la empresa &lt;a href=&quot;http://en.wikipedia.org/wiki/Mark_Zuckerberg&quot;&gt;Mark Zuckerberg&lt;/a&gt; habló frente a unos 800 desarrolladores en el Centro de Diseño de San Francisco. La idea que se promueve es lograr que muchas de las actividades que realizamos dentro y fuera del website de &lt;a href=&quot;http://facebook.com/f8&quot;&gt;Facebook&lt;/a&gt;, puedan ser registradas y compartidas con los amigos.&lt;/p&gt;&lt;div align=&quot;justify&quot;&gt;Una propuesta más aterradora es la de utilizar los &lt;a href=&quot;http://es.wikipedia.org/wiki/RFID&quot;&gt;RFID&lt;/a&gt;, identificador por radiofrecuencia, para registrarnos en lugares que visitamos frecuentemente. Por ejemplo, uno va al bar con los amigos y al llegar allí pasa la tarjeta identificadora, seguido el sistema publica en su estado de &lt;a href=&quot;http://facebook.com/f8&quot;&gt;Facebook&lt;/a&gt; la frase; &quot;Estoy en el Fogón bebiendome una cerveza !&quot;. &lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/2520529824076801967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/2520529824076801967'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/04/el-gigante-de-las-redes-sociales.html' title='Un Facebook más Ambisioso'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1hGt34lZ3FoxyFCmpzeO1eYFMsgzw8uNJsxqU21QFJyK1awkCKENGC_uscO34gS-W7BfsNkWc_uI6YfmilWBmOfRXSpfFJ6uulLCUmCBQ1-usWmiwaNOnu0gugZjA25FM9pm6AkzPKriG/s72-c/facebook.png" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-3465219840489778963</id><published>2010-04-20T21:18:00.000-07:00</published><updated>2010-05-07T14:34:04.300-07:00</updated><title type='text'>El Misterioso iPhone 4G</title><content type='html'>&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div align=&quot;justify&quot;&gt; &lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSqQG9-mp6NNieNenXDJbXqmDbLGfkFZIWsqYHk-8yNiMNet_EHPswICnbxDHG7w2d3NH11TMM4yruV_kJvWwE0l5U58RYihB911vYw3H4XcBbBgh5Ly2nMj8Y_ca3sEw4hfMo38w7xMUS/s1600/bits-appleiphone4.png&quot;&gt;&lt;img style=&quot;MARGIN: 10px 10px 10px 0px; WIDTH: 200px; FLOAT: left; HEIGHT: 138px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5462448690218608338&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSqQG9-mp6NNieNenXDJbXqmDbLGfkFZIWsqYHk-8yNiMNet_EHPswICnbxDHG7w2d3NH11TMM4yruV_kJvWwE0l5U58RYihB911vYw3H4XcBbBgh5Ly2nMj8Y_ca3sEw4hfMo38w7xMUS/s200/bits-appleiphone4.png&quot; /&gt;&lt;/a&gt; Después de un &lt;a href=&quot;http://www.nytimes.com/2010/04/20/technology/companies/20apple.html?ref=technology&quot;&gt;artículo&lt;/a&gt; publicado por el New York Times, se tiene ahora conocimiento de que &lt;a href=&quot;http://www.apple.com/&quot;&gt;Apple &lt;/a&gt;esta trabajando en un nuevo &lt;a href=&quot;http://www.apple.com/iphone/&quot;&gt;iPhone&lt;/a&gt;. &lt;/div&gt;&lt;div align=&quot;justify&quot;&gt; &lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;br/&gt;Un empleado de la empresa pasó por un Bar de Silicon Valley en el poblado de Redwood City y ocurrió que se le olvidó su celular. La persona que encontró el dispositivo lo vendió por $5,000 dólares a &lt;a href=&quot;http://gizmodo.com/tag/iphone4&quot;&gt;Gizmodo&lt;/a&gt; quienes comprobaron la autenticidad del aparato como un &lt;a href=&quot;http://www.apple.com/iphone/&quot;&gt;iPhone&lt;/a&gt; del cual nadie sabe aún nada.&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt; &lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;br/&gt;De este curioso &lt;a href=&quot;http://www.apple.com/iphone/&quot;&gt;iPhone&lt;/a&gt; se sabe que es más delgado, liviano, tiene una batería que alargará el tiempo de uso del teléfono portátil y una cámara en la parte frontal para hacer video llamadas. Características que solo integran los móviles de cuarta generación.&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/3465219840489778963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/3465219840489778963'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/04/el-misterioso-iphone.html' title='El Misterioso iPhone 4G'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSqQG9-mp6NNieNenXDJbXqmDbLGfkFZIWsqYHk-8yNiMNet_EHPswICnbxDHG7w2d3NH11TMM4yruV_kJvWwE0l5U58RYihB911vYw3H4XcBbBgh5Ly2nMj8Y_ca3sEw4hfMo38w7xMUS/s72-c/bits-appleiphone4.png" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-1286060995438494315</id><published>2010-04-19T21:56:00.000-07:00</published><updated>2010-05-07T14:37:04.526-07:00</updated><title type='text'>Los iPads presentan falla</title><content type='html'>&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYS4Kbq8fqHdwslbgqoP68AuYJ8jYsA-eF4-nfTUSNW1ZL1DCfFqWPQdLf8_lFWbbkCjSqIGAd0-20IDiBEztI3V3D_p5Wxme__GT3Gco0pQBvZkbP-sGxZOMjAKv2j-mr-LikBOWD368r/s1600/welcome-ipad.png&quot;&gt;&lt;img style=&quot;MARGIN: 0px 0px 10px 10px; WIDTH: 166px; FLOAT: right; HEIGHT: 200px; CURSOR: hand&quot; id=&quot;BLOGGER_PHOTO_ID_5462084483836981330&quot; border=&quot;0&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYS4Kbq8fqHdwslbgqoP68AuYJ8jYsA-eF4-nfTUSNW1ZL1DCfFqWPQdLf8_lFWbbkCjSqIGAd0-20IDiBEztI3V3D_p5Wxme__GT3Gco0pQBvZkbP-sGxZOMjAKv2j-mr-LikBOWD368r/s200/welcome-ipad.png&quot; /&gt;&lt;/a&gt; &lt;div align=&quot;justify&quot;&gt;Algunos problemas son dificiles de detectar pero, la universidad de Princeton ya descubrió un pequeño defecto de conexión a servidores DHCP para los dispositivos &lt;a href=&quot;http://es.wikipedia.org/wiki/IPad&quot;&gt;iPads&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Mediante un &lt;a href=&quot;http://www.net.princeton.edu/announcements/ipad-iphoneos32-stops-renewing-lease-keeps-using-IP-address.html&quot;&gt;reporte&lt;/a&gt; enviado por la universidad a la compañia Apple, se espera que pueda solucionarse este problema con una simple actualización del SO 3.2 utilizado por los &lt;a href=&quot;http://es.wikipedia.org/wiki/IPad&quot;&gt;iPads&lt;/a&gt; actualmente.&lt;br /&gt;&lt;br /&gt;Mientras tanto se publicaron también unos &lt;a href=&quot;http://www.net.princeton.edu/ipad/ipad-iphoneos32-dhcp-workaround.html&quot;&gt;tips&lt;/a&gt; para que los usuarios eviten que se reproduzcan los errores y/o posibles amenazas en la seguridad de las redes WiFi. &lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/1286060995438494315'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/1286060995438494315'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/04/los-ipads-presentan-falla-poco-despues.html' title='Los iPads presentan falla'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYS4Kbq8fqHdwslbgqoP68AuYJ8jYsA-eF4-nfTUSNW1ZL1DCfFqWPQdLf8_lFWbbkCjSqIGAd0-20IDiBEztI3V3D_p5Wxme__GT3Gco0pQBvZkbP-sGxZOMjAKv2j-mr-LikBOWD368r/s72-c/welcome-ipad.png" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-5318611396036759495</id><published>2010-04-14T10:04:00.000-07:00</published><updated>2010-04-14T10:12:10.935-07:00</updated><title type='text'>Actualizaciones !!</title><content type='html'>Hey,&lt;br /&gt;&lt;br /&gt;Estuve probando algunos widgets para que ustedes puedan disfrutar de archivos que yo tengo para compartir, también agregué unos news feeds de mis deportes favoritos.&lt;br /&gt;&lt;br /&gt;Ahora tenemos un buscador orientado a mis deportes favoritos (tennis, soccer, formula1 y motogp).&lt;br /&gt;&lt;br /&gt;Para que se entretengan además pueden tocar un poco de música de la que a mi me gusta :)&lt;br /&gt;&lt;br /&gt;Esperamos mas innovaciones ;)&lt;br /&gt;&lt;br /&gt;arri vederci,&lt;br /&gt;&lt;em&gt;More&lt;/em&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/5318611396036759495'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/5318611396036759495'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/04/actualizaciones.html' title='Actualizaciones !!'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-2598690859544452118.post-3292853249605104790</id><published>2010-04-05T19:04:00.000-07:00</published><updated>2010-04-14T14:52:04.170-07:00</updated><title type='text'>Bienvenidos</title><content type='html'>&lt;div&gt;Saludos a todos,&lt;br /&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Sean todos muy bienvenidos a mi blog personal donde encontraran información relevante sobre mi, mis proyectos, mis pasiones y todo para compartir con ustedes.&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;justify&quot;&gt;Quiero invitarlos a participar en todas mis publicaciones y de antemano les doy las gracias por formar parte de este mi espaciomore dedicado para todos ustedes.&lt;/div&gt;&lt;br /&gt;Sinceramente,&lt;br /&gt;&lt;em&gt;&lt;span style=&quot;font-family:georgia;&quot;&gt;More&lt;/span&gt;&lt;/em&gt; &lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/3292853249605104790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2598690859544452118/posts/default/3292853249605104790'/><link rel='alternate' type='text/html' href='http://espaciomore.blogspot.com/2010/04/bienvenidos.html' title='Bienvenidos'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/09846439377230533030</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry></feed>