1. google-code-prettify: a tool for prettify code in your site

    Example: Python


    def fib():  '''  a generator that produces the elements of the fibonacci series  '''  a = 1  b = 1  while True:    a, b = a + b, a    yield adef nth(series, n):  '''  returns the nth element of a series,  consuming the earlier elements of the series  '''  for x in series:    n = n - 1    if n <= 0: return x  print nth(fib(), 10)


    Code from prettifier test_page.html


    How to Google-Code-Prettify in Blogger:

    1. Edit HTML template code, an add this two lines to head tag:

    <link href="prettify.css" type="text/css" rel="stylesheet" /><script type="text/javascript" src="prettify.js"></script>


    2. Add on the body tag onload=”prettyPrint()”, in case you have onload event used, add it in this way onalod=”your actual code; prettyPrint()”.
    This is all!!

    How to use it:

    Put code snippets in <pre class=”prettyprint”>…</pre> or
    <code class=”prettyprint”>…</code>
    and it will automatically be pretty printed.
    Information extracted from Google Code Prettify Project.

     
  2. Bjarne Stroustrup Interview


    He say, the coolest software made in c++ is
    Interview Link

     
  3. Unix makes Computer Science easy

    Excelent post about Unix and its utilities, and how it make the computer science more easy! Also, says that It’s a great way to learn some dificults computer science aspects.
    http://glomek.blogspot.com/2007/12/unix-makes-computer-science-easy.html

     
  4. Merry Christmas!Merry Christmas! For all my readers and for everybody that not read my blog!¡Feliz Navidad! Para todos los que leen este blog y para todos los que no!

    Merry Christmas!

    Merry Christmas! For all my readers and for everybody that not read my blog!
    ¡Feliz Navidad! Para todos los que leen este blog y para todos los que no!

     
  5. Ausencia en el blog &#8230;Estuve de unas mini-vacaciones y estoy con mucho estudio. Me es casi imposible poder bloggear. La verdad que lo lamento, pero no tengo otra opción. Supongo que luego de las Fiestas de Fin de año, podre continuar con la rutina bloggera.

    Ausencia en el blog …


    Estuve de unas mini-vacaciones y estoy con mucho estudio. Me es casi imposible poder bloggear. La verdad que lo lamento, pero no tengo otra opción. Supongo que luego de las Fiestas de Fin de año, podre continuar con la rutina bloggera.

     
  6. Text Processing in Python by David MertzLooking in the famous IBM developerWorks Section, I found some articles, called &#8220;Charming in Python&#8221; by David Mertz. Searching in google for the author, I found his web http://gnosis.cx . It&#8217;s incredible that I don&#8217;t know anything about it, and It&#8217;s incredible that I don&#8217;t know his excellent book Text Proccesing in Python.   The good news is that you can download the book, in eight .txt files. Go there and download it. You must.

    Text Processing in Python by David Mertz

    Looking in the famous IBM developerWorks Section, I found some articles, called “Charming in Python” by David Mertz. Searching in google for the author, I found his web http://gnosis.cx . It’s incredible that I don’t know anything about it, and It’s incredible that I don’t know his excellent book Text Proccesing in Python. The good news is that you can download the book, in eight .txt files. Go there and download it. You must.

     
  7. Blogging from my cellphone

    It’s incredible but i’m blogging from my cellphone!


    Andrés Moreira.
    “Si el universo fuera un programa estaría escrito en C
    y correría bajo Unix”
    Anónimo

     
  8. Lindo día hoy &#8230;Hoy llovía, hoy salve BD, hoy fue un lindo día&#8230;.

    Lindo día hoy …

    Hoy llovía, hoy salve BD, hoy fue un lindo día….

     
  9. image: Download

    Google is creating an Encyclopedia&#8230;Google yesterday announce a new service called Knol. It&#8217;s a kind of Wikipedia  powered by Google and written by experts. In the Google Official blog&#8230;. we started inviting a selected group of people to try a new, free tool that we are calling &#8220;knol&#8221;, which stands for a unit of knowledge. Our goal is to encourage people who know a particular subject to write an authoritative article about it. The tool is still in development and this is just the first phase of testing. For now, using it is by invitation only. But we wanted to share with everyone the basic premises and goals behind this project.The key idea behind the knol project is to highlight authors. Books have authors&#8217; names right on the cover, news articles have bylines, scientific articles always have authors &#8212; but somehow the web evolved without a strong standard to keep authors names highlighted. We believe that knowing who wrote what will significantly help users make better use of web content. At the heart, a knol is just a web page; we use the word &#8220;knol&#8221; as the name of the project and as an instance of an article interchangeably. It is well-organized, nicely presented, and has a distinct look and feel, but it is still just a web page. Google will provide easy-to-use tools for writing, editing, and so on, and it will provide free hosting of the content. Writers only need to write; we&#8217;ll do the rest.Google is innovating everyday and I believe that one day MULTIVAC return! Asmiov was a really genius!

    Google is creating an Encyclopedia…

    Google yesterday announce a new service called Knol. It’s a kind of Wikipedia powered by Google and written by experts. In the Google Official blog
    …. we started inviting a selected group of people to try a new, free tool that we are calling “knol”, which stands for a unit of knowledge. Our goal is to encourage people who know a particular subject to write an authoritative article about it. The tool is still in development and this is just the first phase of testing. For now, using it is by invitation only. But we wanted to share with everyone the basic premises and goals behind this project.
    The key idea behind the knol project is to highlight authors. Books have authors’ names right on the cover, news articles have bylines, scientific articles always have authors — but somehow the web evolved without a strong standard to keep authors names highlighted. We believe that knowing who wrote what will significantly help users make better use of web content. At the heart, a knol is just a web page; we use the word “knol” as the name of the project and as an instance of an article interchangeably. It is well-organized, nicely presented, and has a distinct look and feel, but it is still just a web page. Google will provide easy-to-use tools for writing, editing, and so on, and it will provide free hosting of the content. Writers only need to write; we’ll do the rest.
    Google is innovating everyday and I believe that one day MULTIVAC return! Asmiov was a really genius!

     
  10. Habemus CPU RISC 8 bit approved

    Por fin he terminado la tarea de Arquitectura de Computadores 1, y hemos aprobado. Como hicimos 2 tareas simultaneamente voy a publicar para su completo uso la que hice! Esta tarea si bien esta probada, no esta completamente probada!
    Para utilizarla tienen que tener instalado el software Max+ Plus de Atlera.
    El archivo principal es el cpu_ram.gdf. Tampoco es un diseño sencillo, si bien intente seguir los lineamientos de la construcción de las CPU RISC, se puede simplificar ampliamente! Pero para entender como funciona, creo que esta bastante clara.Para acceder al archivo, bajenlo de aca: http://elkpichico.googlepages.com/resources