Sunday, May 06, 2007

Microsoft Invents Split Screen PC

Again got this from slashdot. One of the nice features. Sometimes when working with my friends (parallel programming), I'll be thinking what if we had two keyboards connected to a machine. I tried it once :), connecting two keyboards on both linux and windows boxes. Both OS accepted inputs from both the keyboards simultaneously. Thought about what if they accepted inputs for different applications. ie. Each application receiving inputs from each keyboard. :)

Now Microsoft has come up with a software that splits a computer screen in two halves, each side with its own operating system, desktop, applications, cursor and keyboard. Really a cool software from M$.

Wednesday, February 21, 2007


Open Source Replacing M$???

Im back...

Again I got this information from Slashdot. Previously Mono had support for .NET platforms. Now they have support for VB WITHOUT any code changes. For every software we use in Windows, we have a equivalent (sometimes even better :)) FREE open source software.

IE - Firefox,Mozilla......
Office - Open Office
Outlook (Express) - KMail, Evolution.....
Media Player - xine

U name it... there will be an equivalent open source software.

So what does M$ going to do, to keep it unique in market??? Lets C...

Saturday, February 03, 2007

After a loooooooong time :)

Recently I installed Adobe Reader 7.0.8 on my Fedora 6. There is a known bug with this release of Adobe Reader. "expr: syntax error". As usual, I googled for the solution and fixed it by changing a couple of lines. But still, adobe reader didn't open. Whenever i start, it terminated. No error messages. No windows :(

Later I came across this link. It instructed me to export a variable. Habbaaadaaaa.... Atlast, it is working now.

When i started my career 2 yrs back, before each release, my Manager always ask the testers to do some smoke test and stop us from touching the code (even adding comments). At those times, i felt like, why he is doing this!!! Now I understand the complete reason. No bug should creep while doing even a minor change. Especially, when a product is released to thousands/millions of people, we should take some extra care. Otherwise, it will affect the customer b'coz, he has to spend some sleepless nights trying to fix, and this in turn affects the manufacturer.

Monday, December 11, 2006

My Experiments with Mandriva (Not with Truth :) )

Lately (2 days back) I got the Mandriva DVD from one of my friend. I was fascinated with the 3D effects it provides and installed in my machine. I faced a lot of issues.



1) Gaim - I was chatting with my friend. In the middle, i opened another window and started reading something. After a couple of minutes, when i saw the chat window a whole bunch of messages were waiting for me. He was about to scold me. I was NOT NOTIFIED about any new messages. Felt really bad :(



2) The X server crashes when i try to login for the second time. Seems like X server is not yet stable... im not sure. When I switch between the virtual consoles also, sometimes it crashes.



3) I installed netbeans. After installation when i attempted to start it, i could see only the netbeans window without any contents inside it. No menus, nothing. The reason being, AIGLX conflicts with netbeans. When I disabled the 3D effects, it launched fine.



4) I dont think Mandriva has to advertise that their linux is Free throughout from the booting screen to login screen, KDE start menu. It is really annoying...

Thursday, November 09, 2006

Firefox trusts Google in Linux a lot?????

Most of you might have known the feature provided by Google. Using your id you can save your search and use other services offered by Google. I'll do it regularly. I am using a dual boot (FC5, XP) machine. I was logged into my Google account using Firefox on my linux. Without signing out, I closed my browser and rebooted to Windows. When I logged in to linux again and opened Firefox, I saw that im logged in to my Google account. I could not believe it. I tried it multiple times. It was happening repeatedly. But this does not happen in Windows.

Seems like the session information is serialized by firefox in linux and it is used subsequently. This happens only with Google and not with any other sites like Yahoo, Hotmail....

Can anybody explain why??

Wednesday, November 08, 2006

Export Variables from Shell scripts

This time, I got a script that sets some environment variables. They had suggested to run as . script . I noticed it, but I didn't cared about that and ran it in the traditional way as ./script . When I echoed the variable, it was not displayed. Then I tried as they have mentioned (Obviously after meddling with the scripts :)). Wow, I got the values. But how????? I googled and then found out that

"When we run a script using ./script it creates a separate shell and then run it. So, since the variable is exported in that shell, it is not available to the parent shell after completion.

When we run a script using . script it runs the script in the same shell which makes the variables available even after the completion of the script."


In Tamil, we have a saying "Katradhu kai mann alavu. Kallaadhadhu ulahalavu". Meaning, Whatever you know is the amount of sand you can have in your hand. Whatever you dont know is as huge as the world. :)

Saturday, October 14, 2006

More on VIM

I was bored and just browsing through del.icio.us. And got a link saying that VIM is easy than you think. Got interested and Wanted to know what they are telling about vim. They said that VIM 7.0 supports tabs. Here is the link

Browsers, editors in linux and now???? vim.
Everybody is after tabs... :) For people like me, who don't like to see the desktop cluttered with windows, like in some operating systems, it will be gud to use.

And will those OS introduce tab based explorers for browsing the local file systems in future????

Wednesday, October 11, 2006

Power/Weakness (???) of Reflection in Java

Blogging after a loooooooooooooooooong time. :)

I got this question and answer from somebody else and thought of sharing:

public class test{
  private String id;
    public String getId() {
      return id;
    }
}


In this class, how to set value to id?

The answer is "Reflection"

Use the following code:

test obj = new test();
Field myfields[] = test.class.getDeclaredFields();
for (int i = 0; i < myfields.length; ++i) {
  if ("id".equals(myfields[i].getName())) {
    Field f = myfields[i];
    //This is important , otherwise u get a access denied exception
    f.setAccessible(true);
    f.set(obj,"I modified it");
  }
}


Seems like this is a security issue in Java. I read that if we used SecurityManager, this can be avoided. ( Have to learn about SecurityManager :) )

Thursday, July 13, 2006

Finding Symbolic Links in Java

This time, I had to list all the files in my PC using Java. I wrote a java program and while running it, I got a error saying, "too many levels of symbolic links". I searched in Google, and found that, I can eliminate the symbolic links using the following code.

File system listing shows (b.txt -> a.txt).

File f = new File("b.txt");
System.out.println("Canonical : "+f.getCanonicalPath());
System.out.println("Absolute : "+f.getAbsolutePath());

Output :
Canonical : a.txt
Absolute : b.txt

Here, if both the path are not same, then the file pointed by Absolute path is a link or may be present inside a folder which is a link to another.

This didn't told me whether a file is sym link or not. coz, if the file is present inside a directory which is a link to another, then I this code will say that the file is a sym link.
ie. if dirB is a link to dirA and the file is present in dirA, then this code will tell me that the file is a sym link, which is not true.

But I will know that, there is a path without any sym links to access this file.

Sunday, July 02, 2006

Devices can generate smells

I was going through Slashdot and I found that devices can be used to generate smells. I got interested and went to the following link. It explained me more. Some time back, My friend has asked me for some object. I just jokingly told him that I'll send him thru attachment of an e-mail. He said that, there are things which are tangible and untangible. But after seeing this, I feel that that the day by which we can send objects through emails is not tooooooooooooo far... :) :)

Tuesday, June 27, 2006

Adobe Reader can READ

This time I got a mail saying the above subject. I can't believe it. I tried and it worked...
But it is only for windows. :(

Short cut keys for making Adobe to Read a pdf file for you:

Ctrl+shift+b - to hear the entire Document
Ctrl+shift+v - to hear the page
Ctrl+shift+c - to resume
Ctrl+shift+e - to stop

There are lot of ways to make people lazy... This is one among them...
Just kidding. :) :)

Joining lines in sed

I copied some text from a web page. I wanted to print the doc. It was pre aligned. When I copied it to my word processor, it was not aligned properly and it ate up lot of space. I wanted to combine the lines to a single paragraph. Since Im not much familier with the word processor, I decided to use sed. After googling, I found

sed -e :a -e '$!N;s/\n\([a-zA-Z]\)/\1/;ta' -e 'P;D'

Done...

Friday, May 05, 2006

CAT or REDIRECT

Today I had a strange problem. Let me explain...

I want to read a property file and assign values to variables.
My code was like cat prop_file | while read line ; do value=$line; done
print $value


Guess the output I got !!!!
Output: (Nothing) :(

I and my collegue fought for a looooooooooooooooooooooooong time. Then he asked me to use as follows. Modify the code as:
while read line ; do value=$line; done
print $value


and asked it to run as ./myfile.sh prop_file
Hurraaaaaaaaaaaaaaaaaaaaayyyyyyyyyyy!!!!!!!!!!!!!!
I got the output.

Reason: After some trials he told me that the reason might be: The cat might spawn a new shell and execute the entire while loop inside the shell. So the value might not persist after the end of while.

And this entry is dedicated to Vaidhy (my collegue) ... :) Thanks Vaidhy...

Thursday, March 23, 2006

Recording in VIM

Today I had to do something like moving a text following a pattern to a next line.

Eg: sometext; othertext

I didn't wanted to go through all the lines individually and move it
to next line. At that time, I heard something called as "recording"
from one of my friends. As per that I did the following and I felt in
very deeeeeeeeeeeeeeeeeep love with VIM.

  • Entered recording mode by pressing "q" followed by a letter say "a"
  • Then searched for ";" using "/" and then went to insert mode
  • Inserted a new line and then moved down to next line.
  • Pressed "q" again to quit recording mode.
  • Then pressed "@a" and it replaced the first occurance of the pattern to next line.
  • To repeat 10 times, I used "10@a"
Once we are in recording mode, vim stores all the key strokes with the name we give. Then replays all the actions when we use "@". Similar to "play" in a tape recorder.
The number (10) indicates the number of times to replay.

Really a nice feature of VIM...

Thursday, February 23, 2006

Tips

From today, I like to add new some useful tips that I came across in "Tips" title.

  • Check Folder size in Unix thru console : du -h
  • Check disk free space in Unix thru console : df -h
  • List all open ports : nmap -sT < host name >
  • Read file contents through bash : cat file.lst |while read line; do echo "${line}"; done
  • We know that top gives the information about the CPU, MEMORY usage of a process in a Linux Box. For Solaris, we have prstat command. This gives the similar information.
  • Setting priority for a process in Linux : nice -n -20 <command>. Starts the "command" with highest priority. 19 is the lowest priority.
  • Setting priority for a running process : renice <priority> -p <pid>
  • Listing directory structure in tree format (I stole it from a website ;) ) : ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'

List will grow as and when I learn new things... :)


Monday, January 02, 2006

Creating Shared Libraries using GCC

I have used a lot of shared libraries. Then thought of building one with gcc. Before building, I thought that it will be difficult thing to do. After creating one, I felt like "Is that all we have to do ?????". I followed the steps:
  • Created a function in a file (myshared.c) without a main() function.

  • Compiled it with -enable-shared option and renamed to libmyshared.so. Thatz all. I have created a shared library.

  • For using it, I updated the LD_LIBRARY_PATH to the location where the .so is present. The other option is to run ldconfig.

  • To use it, I used gcc -lmyshared myfile.c.
    • -l option searches for libmyshared.so in the library path.
    • myfile.c is the one that uses the function that I have created in the myshared.c
  • Done.....

Thursday, November 24, 2005

Cache-Busting with Javascript

Got an opportunity to work with Javascript. On reading, got this information.

What it is?

As we all know, when we are browsing the pages fetched by the browser will be stored in the browser's cache. If we want to get the page from the server and not from the cache, using Javascript, it is very simple. Just add a random key-value pair to the URL. This should be unique for each request.

How to do?
Set your request URL as :
URL +"?rand=" + (Math.random() * 99999999);

How it works?

I assume that, the browser MAY maintain a key-value pair (Something like a HashTable), that contains the "URL of the requested page" as the key and the "contents of the page" as its value. So when a request is made, it first checks its cache and if it finds a page it returns it, else fetches from the server. In our case, since random() generates different values for each call, the browser will assume that this is a new request for a page and fetches it from the server. This in no way affect the server. Since the server may not know about the additional parameter, it will discard the variable.

Wednesday, November 09, 2005

printf(_"string") - What does that "_" mean?

Most of us might have encountered a code like the one mentioned above. What does this mean? Goooogling gave me its meaning.

Actually, a macro by name _(str) will be defined as follows:
#define _(str) gettext(str)

What gettext() does?

The gettext function translates the "str" from the natural language message into the user's language by looking up the translation in a message catalog.
From this, what I understand is, suppose I am using Latin language in my machine. And the string "str" is in English. So whenever printing, the gettext() translates English to Latin gives it to printf(). So I'll be seeing the messages in Latin.

Hope Microsoft also uses a similar kind of macro "_T" for displaying strings in multi-byte format.

Wednesday, October 05, 2005

Retrieve deleted mails in Microsoft Outlook

Today I SHIFT + Deleted all my mails from Outlook 2000 by mistake. I somewhere read that there is a way to recover the deleted mails. I Gooooooogled for sometime and I got a page that told me how to retrieve SHIFT + Deleted mails. As per that, I did the following steps.
  • I downloaded XVI32 and Hexadecimal editor.
  • Opened the "Personal Folders.pst" file with that.
  • Replaced some characters with space and saved the file. (Corrupted the existing pst file. Hopefully the headers)
  • Ran "scanpst.exe" on that file. (Comes with Windows. Recovers a corrupted pst file.)
  • Started outlook.
Wooooooooooooooooooooow.... All my mails were back in my Inbox.

Thursday, September 22, 2005

Is BMTC paying their conductors???????????

I am staying in Bangalore for the past 1 year and travelling in BMTC frequently for the past 6 months. I can count the number of times I got tickets from the conductors when I am going to office. My bus fare is Rs 3. When I give the amount, they will return me Re. 1. without giving me the ticket. Whenever I ask for ticket, the conductors will shake their head in such a way that it is not a problem. Or they will murmer something. (It is obvious that they are non-parlimentary).
Since I don't know Kannada, I am unable to argue with them for getting the ticket. Luckily???? or Unluckily checking inspectors never came into the busses at these times.

Lets do a simple calculation....

Assume that a conductor gets a minimum of
Rs. 60/- like this per day and there are 50 such conductors.
So the Govt. looses Rs 3000/- per day and for a month it is Rs. 90,000/-.

I am sure that the above amount is definitely less than the original amount. This money can be saved and the bus fare can be reduced a bit which will be helpful for thousands of people travelling allover Bangalore.

Will concerned people look into this??????