ACTUALIZACIÓN 3.0 Agosto 2010:
Añadido: Twitter, eBay, Mobile Package Tracker, RockPlayer, MixZing, Advanced Task Killer, ADW Launcher, Opera Mini, Dropbox, BeamReader, Blackmoon AttachSave, SwiftKey, Wapedia, NoteInReader, Extended Controls, Docs Pics, Nimbuzz (Nimbuzzout), Camera 360, DiskUsage, Antennas, ROM Manager, SyncMyPix, Locale, JetVD, PingChat
Eliminado: *AsciiCamera (chorrada), Fring (ya no tiene Skype, mejor Nimbuzz), GDocs (mejor Docs Pics), Internal Memory Widget, Waze (no va muy bien), Startup Auditor (peligroso), Twidroid (prefiero el Twitter oficial), 3Banana (ya no sincroniza con Google Docs sino con su propio servicio, mejor Docs Pics), OI File Manager (Docs Pics tiene explorador de ficheros), Facebook (obvio) *
Other names for the model (for Google): VPC EB 2X5E VPCEB 2X5E
Ubuntu installed fast and flawlessly, including the Windows 7 partition resizing. If you want to get more space you can delete the second partition (the one marked as "Windows Vista") because is the Sony recovery partition (and on this laptop takes a lot of space).
Once installed, I run the propietary driver installation program (is somewhere under Menu->Administration) and it installed the ATI fglrx drivers. A reboot later, I was on a fully 3D accelerated desktop with compiz and the effects automatically enabled. No "beta driver" watermark was shown, no graphical glitches were found and the accelerated effects all work beautifully. Good job on AMD/ATI on this one.
The integrated webcam worked perfectly out of the box (tested with Skype), without needing to install anything. Finally I can show my penguin on Chatroulette!
No network or WIFI problems.
Suspend and hibernate work perfectly. Everything is restored when the computer wakes up.
HDMI output works perfectly with my Samsung TV, but if you want to hear anything on the TV you must remember to select HDMI as audio output: click on the sound icon on the taskbar, click on "Sound Settings" under the volume control, choose the "Output" tab and finally select "Redwoord HDMI Audio [Radeon 5600 Series]".
Of the Fn functions the volume/mute keys work (but see below about sound), as does the suspend and the keys for alternating the output (HDMI/monitor/both) and but the ones for the screen brightness one don't. No problem, since I can changue the gamma of the monitor with xgamma anyway.
The only other problem I found is that the sound didn't work. After a five minutes Google search I found an easy solution; just follow these steps on a terminal:
In order to enable the sound after suspend do:
Put this content:
#!/bin/sh
case "$1" in resume) /home/juanjux/bin/hda-verb /dev/snd/hwC0D0 0x19 SET_PIN_WIDGET_CONTROL 0x22 ;; esac
It seem that this problem has already been fixed on recent kernel versions so maybe you won't need to do it.
I found the screen gamma was to high on the LCD, so testing with the "xgamma" command I found that the setting 0.60 ("xgamma -gamma 0.60") was perfect for me, so I made it permanent adding these lines to /etc/X11/xorg.conf (edit the file as root with sudo):
Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
Gamma 0.6
EndSection
This is a perfect machine to run Linux in.
Pues nada ya puedo decir que se Rails sin experiencia. Conozco todo el ORM, el scaffolding, los helpers de AJAX, las funciones de los controladores, las vistas, etc.
Debo decir que sin duda alguna es más potente que Django en cuanto a funcionalidad; tiene cosas más avanzadas en la parte de ORM (aunque la generación de los modelos es más rústica, pero con los scripts que trae al final tardas menos en generar los modelos), hace migraciones casi automáticas hacia delante y hacia atrás, en las plantillas empotras directamente Ruby (no un lenguaje de plantillas), los helpers de AJAX molan, etc. Si miro los cambios de las versiones 1.1 y 1.2 de Django realmente lo que veo es que juegan a hacer catchup con Rails, pero Rails ya va a sacar la 3.0 que tiene mogollón de cosas nuevas. Lo único que Django tiene que no tenga Rails es el admin; pero en Rails hay un módulo que hace un admin más chulo incluso que el de Django (usando AJAX en todo).
Sin embargo...
Empecé a picar el esqueleto de mi proyecto veraniego. Generé los modelos, controladores y demás (con los scripts estos de scaffolding la verdad es que te ahorras muchísimo tiempo haciendo boilerplate, es algo que tendrían que meter en Django sí o sí), empecé a implementar funcionalidad en los controladores, pero...
Pero entonces miré el código. QUE FEALDAD. Que feo es Ruby, como decía mi amigo Miguel, es como otro Perl. En Django uno mira el código, y ve algo escueto, bonito, que hasta alguien que no conozco Python o Django pero sepa programar en cualquier otro lenguaje prácticamente lo entiende.
Así que mi proyecto veraniego va a ser con mi amado Django. Para el tema de integrar AJAX sin meter mucha basura voy a usar Dajax que ayuda mucho.
I'm learning Ruby, coming from a Python background.
Python is clearer, easier, more mantenible and usually faster.
Ruby is elegant, concise and sometimes misterious.
The thing is clear:
Python is a dog and Ruby is a cat