June 27th, 2008 by diegoe
Yay!. I’ll be seeing all you hippies from Saturday 5th (11pm) till Wednesday 16th (6am)!. I’ll be at the sponsored hotel as the cheap bastard I am.

Can’t wait to smellsee you all!
Tags: guadec, travel, woo
Posted in GNOME, life | No Comments »
June 5th, 2008 by diegoe
Like just published in evolution-hackers list:
I spent the last few days hacking a plugin to reply messages with
predefined replies, templates in my faulty english.
I don’t know what would be the ideal steps to follow now, should I try
to get it inside Evolution I guess? So far I have seen that I need to
anyway, given that it requires full evo source to build.
I didn’t want to import it in GNOME’s svn because I think I should get
it into Evolution rather than an independent module in svn, I
published it here:
https://launchpad.net/evolution-templates-plugin
Code is here:
http://bazaar.launchpad.net/~diegoe/evolution-templates-plugin/trunk/files
And I uploaded a .deb for Ubuntu hardy, i386 here:
http://www.gnome.org/~diegoe/stuff/evolution-plugins-templates_20080604-2_i386.deb
md5: a39118cd944032cbb844560b2a37b704
I’m anxious to get comments about it :).
Update: gunther asks for a screenshot.

Tags: evolution, plugin, stock answer, templates
Posted in GNOME | Comments Off
May 18th, 2008 by diegoe
Just do:
$ echo $?
and that’s it.
Tags: bash, commands, return value, tips
Posted in tips | Comments Off
May 15th, 2008 by diegoe
So I have a loyal R50e, thing is that resuming from suspend breaks graphics, I had that working back in the days but recent upgrades of drivers and stuff broke it for some months, I didn’t care to fix it since I didn’t have battery anyway.
But now I fixed it again, trick is to edit /usr/share/acpi-support/IBM.config:
# R50e
1834*|1842*|2670*)
ACPI_SLEEP=true;
SAVE_VIDEO_PCI_STATE=true;
# toggled false ->; true
SAVE_VBE_STATE=true;
POST_VIDEO=true;
;;
There! You must make those two vars be true. Maybe some tweaking to /etc/defaults/acpi-support would be needed. Most of time this should be all you need to do.
Tags: resume, suspend, thinkpad, tips, vbe
Posted in tips | Comments Off
May 15th, 2008 by diegoe
Just for the records, gmail’s SMTP server uses port 465 for SSL and the 567 (or a similar number, too lazy to search for it) TLS, I had SSL + port 567 and I have been wondering why Evolution didn’t send my mails. Now I found out.
Tags: evolution, gmail, smtp
Posted in tips | Comments Off
May 9th, 2008 by diegoe
I totally forgot how to fix this, so to not forget it again, here is it:
Add “$include /etc/inputrc” to your ~/.inputrc.
From lp #89235
Tags: bugs, fixes, gnome-terminal, shell
Posted in GNOME, bugs | Comments Off
April 23rd, 2008 by diegoe
I updated my ephy extensions page.
Go ahead, try them and send some comments!. I set up bzr repos for them, you can find instructions and urls in the page.
Also I must say that bzr is quite nice and simple, I’m using it to manage some projects and files and it’s quite cool. The push_and_update plugin is highly recommended.
Tags: bzr, epiphany, epiphany-extensions
Posted in GNOME, epiphany | Comments Off
April 21st, 2008 by diegoe
The results of this year soc has been published: GNOME SoC projects.
And I’ll be mentoring Johan Svedberg in his project: Modern download manager for GNOME.
My frog bro was selected for Mono: Visual XAML Editor.
It will be a great experience!
Tags: , soc, summerofcode
Posted in GNOME | Comments Off
April 14th, 2008 by diegoe
Everything slow when using X with the sis driver? Well, here it’s awfully slow, made me want to trash my old pc… but then I discovered this bug in Launchpad : lp #26637.
Turns out that vesafb and vga16fb modules are responsible for this chaos. They seem to be stealing the memory managemen and hence making sis driver impossible to use due to it’s lack of descent performance.
What’s the fix? Blacklist vesafb and vga16fb and add sisfb to /etc/modules. You can try to add video=sisfb in the boot line of the kernel (grub’s menu.lst) too.
Note that Fedora doesn’t have sisfb built and is forcing vesafb into the kernel for it’s graphical boot. Ubuntu is doing the same, but they also build sisfb as a module.
So if you are using Fedora, you are screwed unless you rebuild your kernel, if you are using Ubuntu or Debian, make sure vesafb is not loaded (nor vga16fb) and have sisfb loaded sometime before X starts.
How can you be sure it worked? Grep /var/log/Xorg.0.log for ‘memcpy’ and see if the MB/s rate is descent, you can try with and then without the sisfb module to check if it’s making a difference. Here it does.
Tags: fix, googleme, sis, sisfb, slow, tip, xorg
Posted in bugs | Comments Off