<?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: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-5577808998470531183</id><updated>2011-04-21T17:36:39.228-07:00</updated><category term='Detener Procesos con Visual Basic.Net'/><title type='text'>CELLS - TECH</title><subtitle type='html'>Este blog esta dedicado para aquellas personas en la cual estén estudiando el interesante mundo de los lenguajes de programación.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://cells-tech.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://cells-tech.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Cells - Tech</name><uri>http://www.blogger.com/profile/01753807233153725535</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5577808998470531183.post-5957270966742013537</id><published>2008-04-13T15:15:00.000-07:00</published><updated>2008-04-13T15:18:07.803-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Detener Procesos con Visual Basic.Net'/><title type='text'>Detener procesos con Visual Basic.Net</title><content type='html'>&lt;span style="color: rgb(255, 255, 255);"&gt;Public Class Form1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;        &lt;span style="color: rgb(51, 204, 0);"&gt;'Creamos un array para colocar los procesos o subprocesos de lo que se este ejecutando&lt;/span&gt;&lt;br /&gt;        &lt;span style="color: rgb(255, 255, 255);"&gt;Dim ps() As Process = Process.GetProcessesByName("deletedr")&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;        Dim rutaProceso As String&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;     &lt;span style="color: rgb(51, 204, 0);"&gt;   'Nos imprime desde consola la cantidad de procesos expuestos con el nombre anterior&lt;/span&gt;&lt;br /&gt;        &lt;span style="color: rgb(51, 204, 0);"&gt;'En este caso "deletedr"&lt;/span&gt;&lt;br /&gt;        &lt;span style="color: rgb(255, 255, 255);"&gt;Console.WriteLine("El path: {0}", ps(0).MainModule.FileName)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;      &lt;span style="color: rgb(51, 204, 0);"&gt;  'Detiene el proceso permanentemente del equipo&lt;/span&gt;&lt;br /&gt;      &lt;span style="color: rgb(255, 255, 255);"&gt;  ps(0).Kill()&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;    End Sub&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;End Class&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5577808998470531183-5957270966742013537?l=cells-tech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cells-tech.blogspot.com/feeds/5957270966742013537/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5577808998470531183&amp;postID=5957270966742013537' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default/5957270966742013537'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default/5957270966742013537'/><link rel='alternate' type='text/html' href='http://cells-tech.blogspot.com/2008/04/detener-procesos-con-visual-basicnet.html' title='Detener procesos con Visual Basic.Net'/><author><name>Cells - Tech</name><uri>http://www.blogger.com/profile/01753807233153725535</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5577808998470531183.post-7362277910957062437</id><published>2008-04-13T15:09:00.000-07:00</published><updated>2008-04-13T15:14:24.928-07:00</updated><title type='text'>Eliminar Directorios Visual Basic.Net</title><content type='html'>&lt;span style="color: rgb(255, 255, 255);"&gt;Imports System.IO&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;Public Class Form1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;        &lt;span style="color: rgb(51, 204, 0);"&gt;'Creamos un array para almacenar todos los directorios en C:&lt;/span&gt;&lt;br /&gt;        &lt;span style="color: rgb(255, 255, 255);"&gt;Dim vectores() As String = Directory.GetDirectories("C:\")&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;        Dim i As Integer&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;     &lt;span style="color: rgb(51, 204, 0);"&gt;   'Mientras el largo del vector sea menor a i, va almacenar los directorios en el array&lt;/span&gt;&lt;br /&gt;       &lt;span style="color: rgb(255, 255, 255);"&gt; While i &lt;&gt;&lt;br /&gt;&lt;br /&gt;            &lt;span style="color: rgb(51, 204, 0);"&gt;    'Aquí es donde se guardan los elementos del vector&lt;/span&gt;&lt;br /&gt;           &lt;span style="color: rgb(255, 255, 255);"&gt; Me.RichTextBox1.Text = vectores.GetValue(i)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;            i = i + 1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;             &lt;span style="color: rgb(51, 204, 0);"&gt;   'Elimina el elemento, si coincide con lo de RichBox, en este caso "C:\Borrar"&lt;/span&gt;&lt;br /&gt;          &lt;span style="color: rgb(255, 255, 255);"&gt;  If Me.RichTextBox1.Text = "C:\Borrar" Then&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;                Try&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;                    SendKeys.Send("s")&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;                    My.Computer.FileSystem.DeleteDirectory("C:\Borrar", FileIO.UIOption.AllDialogs, FileIO.RecycleOption.SendToRecycleBin)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;                Catch ex As Exception&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;                    MsgBox("No se ha podido borrar el archivo")&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;                End Try&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;            Else&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;            End If&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;        End While&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;    End Sub&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;End Class&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5577808998470531183-7362277910957062437?l=cells-tech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cells-tech.blogspot.com/feeds/7362277910957062437/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5577808998470531183&amp;postID=7362277910957062437' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default/7362277910957062437'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default/7362277910957062437'/><link rel='alternate' type='text/html' href='http://cells-tech.blogspot.com/2008/04/eliminar-directorios-visual-basicnet.html' title='Eliminar Directorios Visual Basic.Net'/><author><name>Cells - Tech</name><uri>http://www.blogger.com/profile/01753807233153725535</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5577808998470531183.post-6927451350126924895</id><published>2008-04-13T15:06:00.000-07:00</published><updated>2008-04-13T15:09:11.477-07:00</updated><title type='text'>Syskey en C#</title><content type='html'>&lt;span style="font-size:180%;"&gt;&lt;span style="color: rgb(255, 255, 102);"&gt;Syskey en C#&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;Como ven, está es la misma aplicación expuesta en Visual Basic.Net, pero como es de esperarse, con otro métodos, para poder llegar al resultado.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;using System;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;using System.Collections.Generic;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;using System.ComponentModel;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;using System.Data;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;using System.Drawing;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;using System.Text;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;using System.Windows.Forms;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;namespace CSharpSyskey&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;    public partial class Form1 : Form&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;    {&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;        public Form1()&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            InitializeComponent();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;        private void Form1_Load(object sender, EventArgs e)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            this.FormBorderStyle = FormBorderStyle.None;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            this.Opacity = 0;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            System.Diagnostics.Process.Start("syskey.exe");&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("a");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("i");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("{TAB}");&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("g");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("a");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("t");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("o");&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("{TAB}");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;                        &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("g");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("a");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("t");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("o");&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("{TAB}");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("{ENTER}");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            SendKeys.Send("{ENTER}");&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;            this.Dispose();&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;    }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 255);"&gt;}&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5577808998470531183-6927451350126924895?l=cells-tech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cells-tech.blogspot.com/feeds/6927451350126924895/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5577808998470531183&amp;postID=6927451350126924895' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default/6927451350126924895'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default/6927451350126924895'/><link rel='alternate' type='text/html' href='http://cells-tech.blogspot.com/2008/04/syskey-en-c-como-ven-est-es-la-misma.html' title='Syskey en C#'/><author><name>Cells - Tech</name><uri>http://www.blogger.com/profile/01753807233153725535</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5577808998470531183.post-4948995181881169713</id><published>2008-03-28T06:37:00.000-07:00</published><updated>2008-07-02T23:27:31.114-07:00</updated><title type='text'>Syskey</title><content type='html'>Syskey es una aplicación incorporada en los sistemas operativos Microsoft Windows, la cual permite agregar una contraseña, aparte de las ya conocidas como "Claves de Sesión".&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A continuación les dejamos el segmento de código en Visual Basic.Net, básicamente consta de enviar de manera virtual y no física una serie de instrucciones desde teclado, con el fin de llegar a la ruta de la aplicación y ejecutarla.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 0);"&gt;&lt;span style="color: rgb(255, 255, 153);"&gt;Public Class Form1&lt;br /&gt;&lt;br /&gt;Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles.Load&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;Dim a As Integer&lt;br /&gt;&lt;br /&gt;        Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None&lt;br /&gt;        Me.Opacity = 0&lt;br /&gt;        a = Shell("syskey", AppWinStyle.NormalFocus)&lt;br /&gt;&lt;br /&gt;        SendKeys.Send("a")&lt;br /&gt;        SendKeys.Send("i")&lt;br /&gt;        SendKeys.Send("{TAB}")&lt;br /&gt;&lt;br /&gt;        SendKeys.Send("g")&lt;br /&gt;        SendKeys.Send("a")&lt;br /&gt;        SendKeys.Send("t")&lt;br /&gt;        SendKeys.Send("o")&lt;br /&gt;&lt;br /&gt;        SendKeys.Send("{TAB}")&lt;br /&gt;        SendKeys.Send("g")&lt;br /&gt;        SendKeys.Send("a")&lt;br /&gt;        SendKeys.Send("t")&lt;br /&gt;        SendKeys.Send("o")&lt;br /&gt;&lt;br /&gt;        SendKeys.Send("{TAB}")&lt;br /&gt;        SendKeys.Send("{ENTER}")&lt;br /&gt;        SendKeys.Send("{ENTER}")&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(255, 255, 153);"&gt;&lt;br /&gt;&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;End Class&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;Usuarios, importante, esto es para dar a conocer algunas de las aplicaciones enfocadas a la seguridad del sistema.&lt;/span&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5577808998470531183-4948995181881169713?l=cells-tech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cells-tech.blogspot.com/feeds/4948995181881169713/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5577808998470531183&amp;postID=4948995181881169713' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default/4948995181881169713'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default/4948995181881169713'/><link rel='alternate' type='text/html' href='http://cells-tech.blogspot.com/2008/03/syskey.html' title='Syskey'/><author><name>Cells - Tech</name><uri>http://www.blogger.com/profile/01753807233153725535</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5577808998470531183.post-564940993343143958</id><published>2008-03-28T06:12:00.000-07:00</published><updated>2008-03-28T06:37:38.627-07:00</updated><title type='text'>Presentación</title><content type='html'>El Team Cells - Tech es un grupo conformado por 3 integrantes, pertenecientes a Duoc UC,  está enfocado a realizar aplicaciones en la plataforma Visual Studio 2005, en el lenguaje Visual basic.Net.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5577808998470531183-564940993343143958?l=cells-tech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cells-tech.blogspot.com/feeds/564940993343143958/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5577808998470531183&amp;postID=564940993343143958' title='1 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default/564940993343143958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5577808998470531183/posts/default/564940993343143958'/><link rel='alternate' type='text/html' href='http://cells-tech.blogspot.com/2008/03/el-team-cells-tech-es-un-grupo.html' title='Presentación'/><author><name>Cells - Tech</name><uri>http://www.blogger.com/profile/01753807233153725535</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
