Just experienced a cool Suspend-to-RAM (S3 ACPI state) working perfectly on my box. Initially I tried suspending with i810 Xorg driver, but unfortunately there is no display, though OS resumed properly. Then I followed this HAL Quirks, and found that I need to use intel Xorg driver instead. So, just did a sudo sed -e 's/i810/intel/g' -i /etc/X11/xorg.conf and restarted Xorg. After logging in, I again suspended it. To my surprise, this time it worked :-D . For the first time, I’m seeing Suspend-to-RAM working and that too on my box. Fedora 7 Moonshine rocks :)
20070614
Suspend-to-RAM works on my box :)
20070611
X-Google-Chat-* email headers
While going through the source of an email reply (sent via Gmail web interface) to a chat message received from (xxxxxxxxxxxxxxxx@gmail.com, obviously xmpp id changed) while I’m offline, found some interesting email headers:
X-Google-Chat-Start: 1181389943000 X-Google-Chat-End: 1181389943000 X-Google-Chat-With: xxxxxxxxxxxxxxxx@gmail.com
Here is some python stuff:
[wahjava@chatteau ~]$ python Python 2.5 (r25:51908, Apr 10 2007, 10:27:40) [GCC 4.1.2 20070403 (Red Hat 4.1.2-8)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import time >>> print time.ctime(1181389943000/1000) Sat Jun 9 17:22:23 2007 >>>