Thank you for subscribing to the linux-bangalore-programming mailing list. This message is to give you some information about this list and other lists we...
linux-bangalore-progr...
linux-bangalore-progr...
Jul 1, 2005 2:05 pm
6733
This is a reminder to members of this list about the posting rules: 1. Do not top-post 2. Do not over-quote 3. Do not post HTML messages 4. Do not recycle...
linux-bangalore-progr...
linux-bangalore-progr...
Jul 3, 2005 1:16 pm
6734
Hi Guys This is the first time i am working in Linux. I am working on GUI where the programming language is C++. the problem is purely related to C++. I have...
... So what does valgrind tell you? Ganesan -- Ganesan Rajagopal (rganesan at debian.org) | GPG Key: 1024D/5D8C12EA Web: http://employees.org/~rganesan...
... You might have done SDL_Init(SET_INIT_VIDEO) in the beginning. Have you done SDL_Quit() before exiting? ... How does valgrind output look like? --jaimon...
All: The next seven days are going to be crucial to some of the plans being now carved in stone for the event. We have looked at the suggestions and comments...
Hi, Can anybody explain why it has been taken to be 8kb instead of 4kb. As I feel searching for 1 page chances of getting 1 page free is higher than 2 pages (...
... Have you tried searching the web for your answer? http://lwn.net/Articles/84583/ -- 'The only reason we're still alive now is that we're more fun alive...
I tried creating an rpm from the source of a package which had a few perl scripts in a scripts directory . The package uses automake so all scripts make it to...
===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Jul 17, 2005 1:46 pm
6743
Hi folks, Iam trying to do a stuff as below: . . . my $list1 = [$this, $other]; my $list2 = [$other, $this]; my $result = cc_cds::req::_diff ($list1, $list2); ...
Hi, I compile my user level application code on my host machine with the appropiate cross compiler. It generates the .bb and .bbg files plus the executable. I...
hi, anyone can point me to an algorithm for conversion of numbers to the indian format? -- regards kg http://www.livejournal.com/users/lawgon tally ho!...
... I assume, you meant 1,00,00,000. Since you're a python fan, here's what I came up with import re def indianformat(n): n = re.sub(r"([+-]?\d+)(\d{3})$",...
... I based it on a perl version for US comma syntax, so it has some leftovers. This can be simplified as ===== def indianformat(n): # add comma before last...
... nice - i keep telling myself to use re, but get a headache when i try. My solution was about 12 lines. One thing, how do we write hundred crores and...
... right ... algorithms by their nature are language independant ... input float, output string -- regards kg http://www.livejournal.com/users/lawgon tally...
... I doubt if it is the latter. I do not know where to find the standard or if it is even defined. But in common usage, we have thousand, then lakh, then...
... I think the former is correct because you can't go higher than crores. You normally say 100 crores or a 1000 crores. There is no trillion equivalent. ...
Hi, I'm planning to buy 1 good book on 2.6 linux TCP/IP stack. Can any body suggest me for that?? The level I'm looking for is beginner/intermediate. Thanks, ...
... for what its worth, here is my version without using re. One benefit is that by changing the numbers in 'commas' it can be easily customised to american,...