La llama que llama!

Hoy me enteré gracias a un compañero de trabajo que la carne de la llama es muy buena!!:

http://ar.geocities.com/lamamalal/carne.htm  (esto es de Berazategui!)

“VALE DESTACAR LA CALIDAD DE LA CARNE DE LLAMA CONOCIDA ANCESTRALMENTE POR SU SABOR AGRADABLE Y SUAVE Y POR  CARECER  DE COLESTEROL.  ES MUY BAJO SU CONTENIDO DE GRASA Y POR EL CONTRARIO TIENE UN EXCELENTE CONTENIDO DE PROTEÍNAS Y OMEGA 3, TODOS ASPECTOS MUY REQUERIDOS POR LA NUTRICIÓN MODERNA. “

Ya pienso en asados todos los días!, la soja es un poroto al lado de esto!!! 😀

July 21, 2006 at 5:14 pm Leave a comment

Saludo!

Hoy es el día del amigo, acá en Argentina y en otros países de latinoamerica (link), asi que aprovecho este medio para mandarles un saludo muy grande a todos mis amigos (pasados, presentes y futuros!)

July 20, 2006 at 10:54 am Leave a comment

Pensamiento…

Asi como los que no conocen la historia estan condenados a repetirla, los que no conocen los sistemas y librerias open source estan condenados a perder mucho tiempo escribiendo codigo 😉

July 14, 2006 at 10:00 am Leave a comment

Peli: The cat returns (Neko no ongaeshi)

Una muy buena película de animación para ver es Neko no ongaeshi

IMDB link

Muy linda y entretenida. Para todas las edades.

May 28, 2006 at 5:41 pm Leave a comment

Google Picasa para Linux

Google acaba de liberar una version para Linux de su programa de graficos Picasa!

Funciona con WINE, que viene incluido en la descarga. Está muy bueno, identico al original!

+1 

Descarga: 

http://picasa.google.com/linux/

Review: 

http://linuxhelp.blogspot.com/2006/05/first-impressions-of-picasa-googles.html 

May 26, 2006 at 7:07 pm Leave a comment

RubyOnRails y el piano vs el violin!

Extraje esto de un articulo que hablaba de Ruby on Rails, me parecio muy interesante como comparaba ambas cosas.

Fuente original

Violinist Itzhak Perlman has described the difference between the
violin and the piano in these terms – not that one is easy and the
other difficult, over the long haul, but specifically that the piano,
unlike the violin, gets out of your way. Says Perlman:

Violinists have a harder time to make pure music than pianists,
because pianists … are immediately forced to turn the phrase. They
don’t have to deal with vibrato, they don’t have to deal with shifting,
they don’t have to deal with sliding, they don’t have to deal with
bow-speed …. [On the piano,] basically you put down the key and you
get a sound…. You have to deal with music immediately.

In this light, the piano emerges as the Ruby or Rails of the musical instrument kingdom

Perlman characterizes the low entry barrier as a responsibility:
pianists can’t postpone their responsibility to produce beautiful
music, because they don’t have the excuse of mechanical difficulty with
the instrument. (That’s not to say it’s easy to play the piano well,
but only that you can literally drop a book on a piano and get
something. You can’t do that with a violin.)

Hay algo de cierto en esto no?

May 26, 2006 at 10:11 am Leave a comment

Nadia!


IMG00045.JPG

Originally uploaded by Megaman.

Otra foto de mi hija Nadia!
…personaje!

April 6, 2006 at 9:41 am Leave a comment

Instalando Ruby on Rails 1.1 en mi Ubuntu Dapper

Luego de haber reinstalado mi Ubuntu (esta vez, instalando la ultima version en desarrollo, Dapper Drake) me decidi a instalar Ruby on rails version 1.1 que salió hace pocos días.

Ya habia instalado por synaptic el lenguage Ruby 1.8 (paquetes ruby,libruby,rdoc,ri,etc)

Me base del blog post de acá.

Comencemos:

Voy a instalarRubyOnRais de un GEM, que es un sistema de paquetes de programas/libs ruby.

sudo apt-get install libzlib-ruby


Me bajo el rubygems (rubygems-0.8.11.tgz)

Descomprimo el paquete tgz y lo instalo:

cd rubygems-0.8.11

sudo ruby setup.rb

Ya tenemos instalado el gem y podemos instalar rails:

sudo gem install rails –include-dependencies

Attempting local installation of 'rails'Local gem file not found: rails*.gemAttempting remote installation of 'rails'
Updating Gem source index for: http://gems.rubyforge.org
Successfully installed rails-1.1.0
Successfully installed rake-0.7.0
Successfully installed activesupport-1.3.0
Successfully installed activerecord-1.14.0
Successfully installed actionpack-1.12.0
Successfully installed actionmailer-1.2.0
Successfully installed actionwebservice-1.1.0
Installing RDoc documentation for rake-0.7.0…
Installing RDoc documentation for activesupport-1.3.0…
Installing RDoc documentation for activerecord-1.14.0…
Successfully installed actionpack-1.12.0
Successfully installed actionmailer-1.2.0
Successfully installed actionwebservice-1.1.0
Installing RDoc documentation for rake-0.7.0…
Installing RDoc documentation for activesupport-1.3.0…
Installing RDoc documentation for activerecord-1.14.0…
Installing RDoc documentation for actionpack-1.12.0…
Installing RDoc documentation for actionmailer-1.2.0…
Installing RDoc documentation for actionwebservice-1.1.0…

rails miproyecto
create
create app/controllers
create app/helpers
create app/models
create app/views/layouts
create config/environments
create components
create db
create doc
create lib
create lib/tasks
create log
create public/images
create public/javascripts
create public/stylesheets
create script/performance
create script/process
create test/fixtures
create test/functional
create test/integration
create test/mocks/development
create test/mocks/test
create test/unit
create vendor
create vendor/plugins
create tmp/sessions
create tmp/sockets
create tmp/cache
create Rakefile
create README
create app/controllers/application.rb
create app/helpers/application_helper.rb
create test/test_helper.rb
create config/database.yml
create config/routes.rb
create public/.htaccess
create config/boot.rb
create config/environment.rb
create config/environments/production.rb
create config/environments/development.rb
create config/environments/test.rb
create script/about
create script/breakpointer
create script/console
create script/destroy
create script/generate
create script/performance/benchmarker
create script/performance/profiler
create script/process/reaper
create script/process/spawner
create script/runner
create script/server
create script/plugin
create public/dispatch.rb
create public/dispatch.cgi
create public/dispatch.fcgi
create public/404.html
create public/500.html
create public/index.html
create public/favicon.ico
create public/robots.txt
create public/images/rails.png
create public/javascripts/prototype.js
create public/javascripts/effects.js
create public/javascripts/dragdrop.js
create public/javascripts/controls.js
create public/javascripts/application.js
create doc/README_FOR_APP
create log/server.log
create log/production.log
create log/development.log
create log/test.log

cd miproyecto/

ruby script/server

=> Booting WEBrick…=> Rails application started on http://0.0.0.0:3000=> Ctrl-C to shutdown server; call with –help for options
[2006-04-01 09:19:16] INFO WEBrick 1.3.1
[2006-04-01 09:19:16] INFO ruby 1.8.4 (2005-12-24) [i486-linux]
[2006-04-01 09:19:16] INFO WEBrick::HTTPServer#start: pid=24597 port=3000
127.0.0.1 – – [01/Apr/2006:09:19:31 ART] "GET / HTTP/1.1" 200 7552

Screenshot obligatorio:

mi pc on Rails

April 1, 2006 at 3:32 pm 1 comment

Frase de Guido Van Rossum

Hoy vi en un blog una frase del creador de Python que me gusto mucho:

Features of a programming language, whether syntactic or semantic, are all part of the language’s user interface. And a user interface can handle only so much complexity or it becomes unusable.

February 10, 2006 at 3:03 pm 2 comments

Mi ultima semana en mi laburo en el banco


IMG00008.JPG

Originally uploaded by Megaman.

Esta es mi ultimo mes laburando con ITR en el Banco Río. Fueron como 15 meses en este puesto.
Me llevo buenos recuerdos.

December 21, 2005 at 10:02 am 5 comments

Older Posts


Categories

  • Blogroll

  • Feeds