Çarşamba, Haziran 30, 2010

Bash String Split

I was looking for ways of splitting strings in bash and found and awesome one. If you have a delimited string lets say by an _ you do this
first set IFS="_"
then ar=($string_delimited_by__)
You got an array ar with elements coming from this string.

Çarşamba, Haziran 23, 2010

Awesome Console Posting

From the command line using command line utils for Google Data API

Perşembe, Haziran 17, 2010

Debian Multimedia

As described in http://wiki.debian.org/MultimediaCodecs when you need multimedia codecs for debian you must add this repo for lenny
deb http://debian-multimedia.org/ lenny main non-free.

Pazartesi, Haziran 14, 2010

Debian Lenny Freenx and Pidgin

Recently installed debian lenny on two machines. after using ubuntu much time, debian comes a bit stranger. Correct repos need to be enabled. Everything not as easy as in ubuntu. But debian does its job better.Anyway, the first problem is with pidgin.Pidgin doesnt have MSN support if you install it from the standart repos. After some search I understood that one needs to install it from debian-backports repo by this
apt-get -t lenny-backports install pidgin.
The second one is about freenx. There is some info about this at net. Some non-official repos gives freenx binaries which I didnt want to try. Instead I used ubuntu freenx ppa team's official repo for this. Here is the repos for freenx
deb http://ppa.launchpad.net/freenx-team/ppa/ubuntu intrepid main
deb-src http://ppa.launchpad.net/freenx-team/ppa/ubuntu intrepid main.
Easily installed freenx from these and voila.

Salı, Haziran 01, 2010

OpenBSD AMP install

I continue to work with mysql and php install on openbsd. I made some progress. After installing mysql and php one must install php5-mysql package too. Then making some soft links, mysql extension is made readable by php.Inside /var/www directory there must exist a /tmp directory writable by others for storing session info etc. Adding required directives to apache's,php's config files it began working. I have some minor problems to be solved.