Dear Mr. MeEs,
The GNOME Foundation would like to extend an invitation for you to participate in our annual GNOME Summit to be held on November 22nd, 23rd and 24th. The conference will be held at Brooklyn College in New York City.
The conference committee recognizes your work as software maintainer and main developer of GNU FriBidi and your membership on the Unicode Committee, as well as your Persian translation work for GNOME. It would be most valuable for the GNOME project, if you are able to join the other key software developers and educators.
Please do not hesitate to contact me for any additional information.
Sincerely
Timothy Ney
Executive Director
After doing two distro upgrades, you may come up with some duplicated packages. Here's where this script came handy:
rpm -qa |
awk -F- '{OFS=FS; if (NF>1) NF-=2; print $0'} |
sort |
uniq -c |
grep -v " 1" |
grep -v gpg-pubkey |
cut -f 2 |
grep -v kernel |
while read x;
do
rpm -q $x |
awk '{if(i)print s; i=1; s=$0}';
done |
xargs rpm -e
Yes, it's a real pipeline!
This post on /. contains links to many projects I'm studying these days. Right now I'm reading Gnome HIG, next would be to read freedesktop.org. Still upgrading to Fedora Core 0.95 using friendly 'yum upgrade'. Fullstop.
Man, the way fedora-devel list is going, in a release or two we sould have a completely different desktop. One that beats anything like XP or so. I mean in package management, MIME association, accessablity, hardware detection, hotplug handling, ... Cool!
Shoot, Fedora.us finally released Wine RPM for rh9. Waiting for 0.94 one: Waiting - / | \ - / | \ - / | - ...
Livna.org is distributing the cool packages that were put out of Fedora.us due to legal problems in between the merger with Red Hat. These packages include, but are not limited to, xine, mplayer, and xmule.
I'm having fun with these repo concept that has got it's way in Fedora. So debian beats in package management no more. Currently I have the following repos, configured for up2date, yum, and apt-get (apt-rpm):
[base]
name=Red Hat Linux $releasever - $basearch - Base
baseurl=http://mirror.dulug.duke.edu/pub/yum-repository/redhat/$releasever/$basearch/
gpgcheck=1
[updates]
name=Red Hat Linux $releasever - Updates
baseurl=http://mirror.dulug.duke.edu/pub/yum-repository/redhat/updates/$releasever/
gpgcheck=1
[fedora-stable]
name=Fedora Linux / stable for Red Hat Linux $releasever ($basearch)
baseurl=http://download.fedora.us/fedora/redhat/$releasever/$basearch/yum/stable/
gpgcheck=1
[fedora-testing]
name=Fedora Linux / testing for Red Hat Linux $releasever ($releasever)
baseurl=http://download.fedora.us/fedora/redhat/$releasever/$basearch/yum/testing/
gpgcheck=1
[fedora-unstable]
name=Fedora Linux / unstable for Red Hat Linux $releasever ($basearch)
baseurl=http://download.fedora.us/fedora/redhat/$releasever/$basearch/yum/unstable/
gpgcheck=1
[livna-stable]
name=Livna.org Fedora Compatible Packages (stable)
baseurl=http://rpm.livna.org/fedora/$releasever/$basearch/yum/stable
gpgcheck=1
[livna-unstable]
name=Livna.org Fedora Compatible Packages (unstable)
baseurl=http://rpm.livna.org/fedora/$releasever/$basearch/yum/unstable
gpgcheck=1
[livna-testing]
name=Livna.org Fedora Compatible Packages (testing)
baseurl=http://rpm.livna.org/fedora/$releasever/$basearch/yum/testing
gpgcheck=1
[2.6testkernels]
name=Test Linux 2.6-test prerelease kernels for RHL9/rawhide
baseurl=http://people.redhat.com/arjanv/2.5/
One of the wonderful tools in this new GNOME 2.4, is the tool called Zenity. It's done by Glynn Foster, and replaces the old gdialog. Have a look at it yourself, in short, it provides user input dialogs in shell scripts, kind of what the old dialog tool does, but really enhanced.
It rebooted, and the hard part started: Porting all my hacks and configurations to the new one. I was really wondered how these Red Hat have fixed what I used to fix myself in Red Hat Linux 9! After configuring small things here and there, I went to patch the boot script /etc/rc.d/rc.sysinit which I hack for many things, and guess what? Many of my hacks have been already done there, or were nonissues!
One more thing: Some small things I never couldn't configure to work, started working! DRI for XFree86 on a 2.4 kernel is one of them. BTW, the bad thing is that after a week and a dozen of tries, I still cannot compile their kernel :(.
Well, long time man I didn't write here. Important thing happened: I spent three hours in my Theory of Distributed Computing class on Sep 26 to install Fedora Core 0.94 (aka Red Hat Linux Severn Beta 2) that was released on Sep 25 on my Vaio laptop. The down side is that I missed the class, so I have to read the paper tomorrow before the class. Actually I'm having lots of fun with this new thing. The cool parts include a recent cool configured 2.4 kernel, and state-of-the-art GNOME 2.4!