[PLUG] [OT] a question!

2007-07-17 Thread ಓಂ
I know it maybe bit difficult to understand this need and an unusual request for the forum but is there any (internet) resource on pronunceations of words of many languages of the world? something equivalent of babelfish translations but w.r.t. pronounceations.. I am looking for two things..

[PLUG] novel ways

2007-07-17 Thread ಓಂ
i noticed this only few days back... and i am still wondering about what must be the reason... PLUG's link of available Free Software CD's webpage does not even have the mention of distribution OpenSUSE. Indeed this is a Novel way to protest about Novell's signing the business agreement with Mic

[PLUG] Re: Linux techies needed for night shift

2007-07-17 Thread Amogh Desai
Hi im Amogh Desai currently working with BPO called Vcustomer for process Linksys (Division of Cisco Systems) we provide tech support for wired/wireless routers & networking devices. I my self use Ubuntu 7.04 on my home pc & have tried my hands on Redhat 9 & fedora core 1 & 3 before. Im not a Expe

Re: [PLUG] Dawn small linux

2007-07-17 Thread Roshan
--- Vishal Gaurav wrote: > Hello, > Have any one is useing dawn small linux. What do you want to know about it? If you have a CD-RW, try it. Damn small Linux is 50 MB in size and based on Debian GNU/Linux. -- FSF of India Associate Fellow - http://www.gnu.org.in http://www.somaiya.edu/sksasc

Re: [PLUG] Weird Output of a C program in Linux

2007-07-17 Thread Aditya Godbole
On 7/17/07, Pranav Peshwe <[EMAIL PROTECTED]> wrote: IMHO, it does send the data to the buffer. Due to the fork, the new task(child) gets a copy of the buffer (which already contains the 'Hello World!' string). This(fork()) is where the duplication occurs. Further printfs in the two tasks lead

Re: [PLUG] Optimal Use of Fonts in Linux [link]

2007-07-17 Thread sudhanwa Jogalekar
On 7/17/07, ಓಂ <[EMAIL PROTECTED]> wrote: I feel this may be helpful to some people http://avi.alkalay.net/linux/docs/font-howto/Font.html Excellent !! Thanks for the link -Sudhanwa !~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~!~ Have you tried the new "FREE" Mara

[PLUG] Dawn small linux

2007-07-17 Thread Vishal Gaurav
Hello, Have any one is useing dawn small linux. -- Vishal Gaurav -- __ Pune GNU/Linux Users Group Mailing List: (plug-mail@plug.org.in) List Information: http://plug.org.in/cgi-bin/mailman/listinfo/plug-mail Send 'help' to

[PLUG] Optimal Use of Fonts in Linux [link]

2007-07-17 Thread ಓಂ
I feel this may be helpful to some people http://avi.alkalay.net/linux/docs/font-howto/Font.html -- __ Pune GNU/Linux Users Group Mailing List: (plug-mail@plug.org.in) List Information: http://plug.org.in/cgi-bin/mailman/l

Re: [PLUG] Weird Output of a C program in Linux

2007-07-17 Thread Pranav Peshwe
On 7/17/07, Pramod Sonar <[EMAIL PROTECTED]> wrote: Hi Ashu you are right ! Hello world should be print only ones! but it's printing twice as when printf executes it does not send data to output buffer. IMHO, it does send the data to the buffer. Due to the fork, the new task(child) gets a co

Re: [PLUG] Weird Output of a C program in Linux

2007-07-17 Thread Devendra Laulkar
Hi, On 7/17/07, Ashutosh Adkar <[EMAIL PROTECTED]> wrote: int main () { printf ("Hello World!"); if (fork == 0) printf ("I'm the child!\n"); else printf ("I'm the parent!\n"); } The output of the above program is : Hello World!I'm the child! Hello World!I'm the parent! How did y

Re: [PLUG] Weird Output of a C program in Linux

2007-07-17 Thread Pramod Sonar
Hi Ashu you are right ! Hello world should be print only ones! but it's printing twice as when printf executes it does not send data to output buffer. so if use \n their or fflush(stdout); after printf ,or see the comment that I have put in your code, it will print Hello World single times. Rega

[PLUG] Weird Output of a C program in Linux

2007-07-17 Thread Ashutosh Adkar
int main () { printf ("Hello World!"); if (fork == 0) printf ("I'm the child!\n"); else printf ("I'm the parent!\n"); } The output of the above program is : Hello World!I'm the child! Hello World!I'm the parent! Why is "Hello World" being printed twice? Only the parent should print it