Improve usability of your GNOME desktop

Howto Improve usability of your GNOME desktop is not an article, this is a big post in the Ubuntu forum. The author described some common problems with using GNOME as desktop and gave ways to resolve them. Personally, I like and use KDE. In my mind currently it’s the best desktop environment for Linux. I’m wating release of KDE 4 also known as Plasma. Hope it won’t make me and others KDE admirers disappointed.

Fedora Core 4 Tips

Problem: cannot find /dev/modem
Solution:
Create a file modem.rules tn the directory /etc/udev/rules.d and put there a following code:

KERNEL="ttyS1", SYMLINK="modem"

where ttyS1 is a modem port. You can find it using utility wvconf:

wvdialconf /etc/wvdial.conf

Note: you have to be root to do that!

Problem: KPPP need to be executed from root.
Solution:

  1. Change symlink /usr/bin/kppp – it should point to /usr/sbin/kppp instead of consolehelper
  2. Set SUID on /usr/bin/kppp:
    chmod +s /usr/bin/kppp

Speed Up Your Firefox!

Hacking Firefox: Speed Up Your Browser is an article about options of Firefox – the fastest growing browser of the world! Those specific options allow you to make your browser really faster. To change their values you need to modify a file user.js. But on my computer I’ve found the options in the pref.js. All tips have reference on documentation pages. In that way, you’ll have detailed infomation about customization of each option.

Open Office 2.0 vs. MS Office

Open Office 2.0 Kicks MS Office Around the Block is an article by Alice Hill. I’m agree Open Office 2.0 is much much better than Open Office 1.1. I remember my first impression of it: terrible slowly, poor compatibility with MS Office documents, ugly interface. But during 2 years Open Office has grown and it continues to grow. Now we can compare it with MS Office. One of useful features of OO is convertion documents in the different formats like PDF, XML, DocBook etc. MS Office cannot do it without installation of specific plugins.
But there is an one thing which presents in MS Office and which is lacking in Open Office (I need that when I copy some artcle from browser to the text editor). It’s an intergration with web browser. Try to copy some text with tables, styles and pictures from Firefox to OO Writer. You’ll see only text! In my mind it’s useful feature and it’ll be great if Open Office developers implement it.
Try OpenOffice.org 2.0 Beta 2 now! It’s available for Linux, FreeBSD, Solaris, Windows and Macintosh

Yet Another DBI Extention

Recently I’ve found a simple DBI wrapper – DBIx::DWIW – Do What I Want. It seems this module contains a set of methods which have more native syntax and original features.
There are a couple methods which I have seen and found interesting:

  • FlatArray(sql_string) – passes a SQL string and returns a record set as simple flat array. It’s very useful for example if a query returns one column and many rows (SHOW TABLE)
  • Scalar(sql_string) – passes a SQL string and returns a simple scalar. It’s a case when query returns only one value (SELECT count(*) FROM table)
  • CSV(sql_string) – passes a SQL string and returns values as CSV (Comma Separated Value) string.

Have a look that module. Hope it will help you in your work.