Sunday, June 6, 2010

openbox-crystal

Just to satisfy the "very itch", I am planning to develop some default bindings and configurations for openbox widow manager. People who are intrested in developing the code or contributing on the ideas are most welcome.The source code can be downloaded from the website of openbox-crystal> It will be the home of the development (until further notified) and license will be obviously in GPL.So come on, Give me some sunshine, errr.... gimme some hand.:)

Thursday, March 11, 2010

anyremote : the golden bullet bluetooth remote for computers

Though I already have a remote for my laptop, but this anyremote thing is just awesome. We can use any bluetooth compatible mobiles ( ok, most of the them ) as a remote. I am using ganyremote (gui for anyremote) and blueman (gui for connecting bluetooth devices). So the process is as follows:

# apt-get install ganyremote blueman

Make sure that you can connect your mobile using blueman.

Download the appropriate java client's jar / jad file from http://anyremote.sourceforge.net/dload.html and install it on your mobile. Now start the ganyremote and start its server (can use execute button on the ganyremote applet). And then start anyremote-client on your phone. Then search in anyremote-client for other devices and press connect to connect the computer. Voila ! I was able to control gmusicbrowser from the mobile.
Next aim is to write a config in ganyremot to be able to switch of computer remotely.

Tuesday, March 9, 2010

Colemak layout

Ya I know that this is after a long time. I am sorry as I was busy with some mundane tasks. So here is the news : I have switched my keyboard layout to "colemak". This saves me from RSI and promises to increase my typing speed as well. The speed factor is yet to be verified by me, but the RSI is certainly true. I followed cold turkey approach and it started showing results in 3-4 days. The biggest positive point is remapping Caps key to Backspace key, which itself reduces right pinky movement a lot. In debian it is as easy as these scripts that I am using.

#### file: ~/bin/switch_keyboard_layout_colemak.sh ####
setxkbmap us -variant colemak
xset r 66

#### file: ~/bin/switch_keyboard_layout_qwerty.sh ####
setxkbmap us;
xset -r 66

Reference : http://colemak.com/

Tuesday, December 8, 2009

A new browser based on chromium.

Should check this link. I dont know how much of this is true and how much it is an intrusion in our privacy.

http://www.srware.net/en/software_srware_iron_chrome_vs_iron.php

Besides this if you want to try out a chromium based browser then can download the chromiium iron from the same page. I have not yet tested the browser myself but will certainly do that. It seems that I should read the full agreement before clicking "I Accept".

++EDIT++
A friend of mine sent this link.
http://www.google.com/support/chrome/bin/answer.py?answer=114836&hl=en
So its not a problem anymore, The only thing remains is the default ON options for such things. I thing that while installing chrome, these options should be asked for. And for the iron chromium, they should tell how to disable these options.

Sunday, December 6, 2009

unp : The universal de-compressor

For a person who spends a considerable amount of his time on computers, its really PITA to use different uncompress programs for wide variety of formats like zip, tar, gz etc etc available on the net. So when you download so many packages in so many formats, then just to uncompress them out, you try tar xvzf to find out that Oh! its not a gz archive. I found a better utilty for this purpose which works for almost all the tar/zip formats available. And its available on debian repo.

# aptitude install unp

And use it just like
$ unp x.gz
$ unp x.tar.gz
$ unp x.tgz
$ unp x.zip
$ unp x.bz2

So njoy!

Monday, November 30, 2009

the great Mark

Though this is not about linux/debian or anything like that. But here is the case:

You write a book, put it in GPL and somebody prints it and sells it and makes profit out of it. How will you feel ?

Read out to know how does the writer of dive-into-python thinks. After reading you will feel that the Title of this post is justified.

http://diveintomark.org/archives/2009/10/19/the-point

Wednesday, November 18, 2009

apt-get/aptitude

Many a times we mirror some iso-s of debian and put it on our laptops and/or local LAN to work as a repository. While installing it asks for authenicity of the packages.And we have to press/write 'Yes' all of the time. To get rid of this we can just write the following in /etc/apt/apt.conf

APT::Get::AllowUnauthenticated 1 ;

And please mind the spaces.