X86_64
On X86_64 VM Emulation works way better with Xen 3.0 than with Vmware. Xen is pretty awesome compared to Vmware for my use. The only thing i have to figure out is how to get rpmstrap get it workin on Debian base system.
On X86_64 VM Emulation works way better with Xen 3.0 than with Vmware. Xen is pretty awesome compared to Vmware for my use. The only thing i have to figure out is how to get rpmstrap get it workin on Debian base system.
Remind to myself to use the switch -64 on solaris with crle to tell the linker on solaris to get the linker ‘seeing’ 64 libraries. I wonder why everything is not as simple as linux thought where we have everything in one place with /etc/ld.so.config
I have been looking at the What’s new __of Python 2.5. There is some cool features inside it : Conditional Expressions: This stuff basically allow to do standard C idiom (that we found in every kind of derivative language) like a = condition ? “true” : “false” the weird part is that Guido Van-Rossum implemented this syntax : x = true_value if condition else false_value which we will have to get use to....