Re: [Ilugc] Which Web Server is good?
On Thu, Oct 29, 2009 at 11:02 AM, Natarajan V wrote: > > 1. JFreeChart > 2. http://teethgrinder.co.uk/open-flash-chart/ > > Or, as a previous post suggested, push all chart rendering to the browser using jQPlot, a jQuery plugin. regds, mano ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] LAN Problem
Hi Friends, If your using windows machine, this problem due to virus affected. u can check your net connection with single machine. Bec i am facing this problem in our office 2 months back. Thanks Ramkumar On Wed, Oct 28, 2009 at 8:10 PM, Shrinivasan T wrote: > Hi, > > Check for the cables. > > Can you ping a local machine without any drops? > > > > -- > Regards, > T.Shrinivasan > > > My experiences with Linux are here > http://goinggnu.wordpress.com > > For Free and Open Source Jobs > http://fossjobs.wordpress.com > ___ > To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with > "unsubscribe " > in the subject or body of the message. > http://www.ae.iitm.ac.in/mailman/listinfo/ilugc > -- www.opennetguru.com ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] Which Web Server is good?
On Tue, Oct 27, 2009 at 6:42 PM, Ramkumar wrote: > Hi Friends, > we have a application developed by java.we have mysql DB.our 1. RedHat JBOSS (lighter) 2. Apache TomCat (lightest) 3. Sun GlasFish (light) 4. commercial products -> Weblogic, Websphere (Heavy) But if you are creating a J2EE application, the choice of server can even be at deployment time. you can develop in tomcat and deploy in jBoss. There might be small tweeks that you might have to do though. If you are thinking of using any EJB, then you can't use Tomcat. > application is dynamically shows charts 1. JFreeChart 2. http://teethgrinder.co.uk/open-flash-chart/ > and images depends upon data stored Apache Webserver. > on mysql DB(through query).which web server is good to use in this stage.how All servers are good enough. they follow standards. > to make our application work as fast. Thanks in advance 1. Follow good coding practices (use prepared statements, avoid query in loops, etc...) 2. Use PMD, Check style 3. if the load is more, add more hardware (Clustering, dividing static and dynamic content into webserver and app server) hth Natarajan ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] email notification in irc
Shrinivasan T wrote: Friends. I want to get announced in a irc channel, when I get a mail. Is there any IRC bot who check for email and announce it in a channel? If not, how to develop this? Thanks. i use Rhythmbox announce with xchat have a look at the list http://xchat.org/cgi-bin/script_list.pl/ you may find something useful. -Satya -- satyaakam.net <>___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] email notification in irc
Shrini, I don't understand why do u need an notification in IRC when mail clients ( e.g Evolution ) has the capability of doing so. All you need is a plugin for evolution, to get notified. Regards, Karthik. On Thu, Oct 29, 2009 at 2:15 AM, Shrinivasan T wrote: > Friends. > > I want to get announced in a irc channel, when I get a mail. > > Is there any IRC bot who check for email and announce it in a channel? > > If not, how to develop this? > > Thanks. > > -- > Regards, > T.Shrinivasan > > > My experiences with Linux are here > http://goinggnu.wordpress.com > > For Free and Open Source Jobs > http://fossjobs.wordpress.com > ___ > To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with > "unsubscribe " > in the subject or body of the message. > http://www.ae.iitm.ac.in/mailman/listinfo/ilugc > ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
[Ilugc] Re: .a-tip-a-day. (make -the build tool few tips part II)
I meant part III but the web interface screwed it up. Sorry. -Girish On Thu, Oct 29, 2009 at 7:29 AM, Girish Venkatachalam wrote: > Today is the last part. > > make(1) also has its own for loops and if conditions. > > There is also a BSD make and a GNU make. GNU make is called as > gmake(1) since both > are incompatible in certain ways. > > There is no recursive make in BSD. The syntax also is different. > > By the way make is not used just for program compilation. It is not > just a build tool. > > make is used for keeping targets up to date and doing only whatever > more needs to be done to > achieve a goal. > > Consequently make is used in the BSD world for installing packages called > ports. > > Each of the steps, fetch over HTTP or FTP from Internet, checksum, > extract, build and install are > given as targets in a huge makefile. > > You can include makefiles and you can avail the rules in them. > > Makefiles can also be used for doing audio processing for instance. > You can check whether some > step is performed and then do it for the targets that are missing that. > > -Girish > > -- > Gayatri Hitech > web: http://gayatri-hitech.com > > SpamCheetah Spam filter: > http://spam-cheetah.com > -- Gayatri Hitech web: http://gayatri-hitech.com SpamCheetah Spam filter: http://spam-cheetah.com ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
[Ilugc] .a-tip-a-day. (make -the build tool few tips part II)
Today is the last part. make(1) also has its own for loops and if conditions. There is also a BSD make and a GNU make. GNU make is called as gmake(1) since both are incompatible in certain ways. There is no recursive make in BSD. The syntax also is different. By the way make is not used just for program compilation. It is not just a build tool. make is used for keeping targets up to date and doing only whatever more needs to be done to achieve a goal. Consequently make is used in the BSD world for installing packages called ports. Each of the steps, fetch over HTTP or FTP from Internet, checksum, extract, build and install are given as targets in a huge makefile. You can include makefiles and you can avail the rules in them. Makefiles can also be used for doing audio processing for instance. You can check whether some step is performed and then do it for the targets that are missing that. -Girish -- Gayatri Hitech web: http://gayatri-hitech.com SpamCheetah Spam filter: http://spam-cheetah.com ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] Pycon 2010 Venue!
On Wednesday 28 Oct 2009 11:38:46 am benedict nicholas wrote: > Dear Kenneth and other organizing members of ilugc, > > I saw your mail regarding the venue for Pycon 2010 a month back. If you > have not already fixed the venue, you could consider our college for the > same. > Whatever is your requirement, you could send me and I would take the > necessary permission from my Chairperson. > Our FOSS movement started in 2004 with 2 enthusiastic faculty and 2 > students but now we have grown up. Hope to do more at the advent of the New > Year. first, pycon is not strictly FOSS. Python is open source, but many of the developers are not FOSS people. It is a language conference. We basically need 5-6 halls, with one or two with large seating capacity (5-700 or more). Preferrably AC with wifi facility. If the venue is outside the city - arrangements for transport also. Please join chenna...@googlegroups.com if you are interested further. -- regards kg http://lawgon.livejournal.com ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
[Ilugc] email notification in irc
Friends. I want to get announced in a irc channel, when I get a mail. Is there any IRC bot who check for email and announce it in a channel? If not, how to develop this? Thanks. -- Regards, T.Shrinivasan My experiences with Linux are here http://goinggnu.wordpress.com For Free and Open Source Jobs http://fossjobs.wordpress.com ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
[Ilugc] [OffTopic] Amazon Web Services Cloud Workshop - 10 Nov 2009, Chennai
Amazon Web Services Cloud Workshop - 10 Nov 2009, Chennai > > Workshop for System Integrators and Software Architects conducted by > Amazon Web Services > > Venue: Hall of Guines-'68, Department of Manufacturing Engineering,CEG > Campus, Anna University, Guindy - Chennai 600 025 > > Date: 10 Nov 2009 9:30 AM to 5:30PM > > Free, Open-to-all( Registration Required) > > for more details : http://www.awschennai.in/ > > > Happy to see info about AWS Workshop/unconf info posted in the ILUG-C list. While cloud/AWS leverages FOSS in a big way, there are a few important core aspects of cloud that run counter to the spirit of Free Software. The unconference session is designed to actively solicit talks/demos/showcasing on alternatives of AWS. Talks that will shape the Thought Leadership on FOSS in the context of cloud/AWS most welcome/solicited. One of the barriers faced by the student community in trying out AWS is the creditcard needed for maintaining a functional AWS account. The workshop attempts to address the issue by issueing free credits. Since ILUG-C is popular with students community, I thoght it is appropriate to mention about the free-credits here. I take this opportunity of my maiden post to ILUG-C to invite each one of you in the LUG to take part in AWS Workshop/Unconf and make it a huge community success. -Balaji S Coordinator AWS Workshop/Unconf Chennai Event @labsji ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
[Ilugc] [OffTopic] Amazon Web Services Cloud Workshop - 10 Nov 2009, Chennai
Amazon Web Services Cloud Workshop - 10 Nov 2009, Chennai Workshop for System Integrators and Software Architects conducted by Amazon Web Services Venue: Hall of Guines-'68, Department of Manufacturing Engineering,CEG Campus, Anna University, Guindy - Chennai 600 025 Date: 10 Nov 2009 9:30 AM to 5:30PM Free, Open-to-all( Registration Required) for more details : http://www.awschennai.in/ -- Regards, T.Shrinivasan My experiences with Linux are here http://goinggnu.wordpress.com For Free and Open Source Jobs http://fossjobs.wordpress.com ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] LAN Problem
Hi, Check for the cables. Can you ping a local machine without any drops? -- Regards, T.Shrinivasan My experiences with Linux are here http://goinggnu.wordpress.com For Free and Open Source Jobs http://fossjobs.wordpress.com ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
[Ilugc] LAN Problem
Dear Friends I have been facing network problem last 4 ~ 5 days. I don't have proxy server and i manage around 170 system.We used Airtel and VSNL broadband. I spoke customer care they checked in single system it’s working well but when I connect LAN I got following error every 5 min. How to find Network Problem. Reply from 209.85.231.104: bytes=32 time=57ms TTL=56 Reply from 209.85.231.104: bytes=32 time=66ms TTL=56 Request timed out. Reply from 209.85.231.104: bytes=32 time=56ms TTL=56 Reply from 209.85.231.104: bytes=32 time=56ms TTL=56 Reply from 209.85.231.104: bytes=32 time=59ms TTL=56 Reply from 209.85.231.104: bytes=32 time=56ms TTL=56 Reply from 209.85.231.104: bytes=32 time=67ms TTL=56 Request timed out. Reply from 209.85.231.104: bytes=32 time=57ms TTL=56 Request timed out. Reply from 209.85.231.104: bytes=32 time=57ms TTL=56 Reply from 209.85.231.104: bytes=32 time=56ms TTL=56 By Rajesh ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] Re: big endian and little endian
On Wed, Oct 28, 2009 at 6:49 PM, narendra babu wrote: > Actually i have code which is running on Solaris and i am communicating with > linux app > yes i am reading from network , i have lot of bit shift operators and > bitfield oprs . > > I am looking for more list of issues with endian > > Please let me know if you need any ore input > I haven't done anything like this, so I don't really know. This search seemed to throw up lots of relevant sounding results, http://www.google.com/search?q=porting+C+between+big+endian+and+little+endian+machines You might want to try Google first, hitting the list is fine, but in most cases you will get only generic answers, unless you have a very specific question to which someone can give a specific answer. HTH. Roshan Mathews ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
[Ilugc] Re: big endian and little endian
On Wed, Oct 28, 2009 at 4:19 AM, narendra babu wrote: > I have c/C++ code in Solaris/AIX/HP-UX which is for big endian arch . > > Now i am moving the c/C++ code to Little endian Linux X86 , > > > i would like to know what are issues need to be addressed when moving from > big endian to little endian . > No direct experience here, but C bitfields might be another thing for you to worry about. OTOH, something stand along might just run. Does this code read/write from the network, assuming some binary format? Does it read binary blobs off the disk? Give details, this is interesting. Roshan Mathews Hello Roshan , Thanks for yor inputs , Actually i have code which is running on Solaris and i am communicating with linux app yes i am reading from network , i have lot of bit shift operators and bitfield oprs . I am looking for more list of issues with endian Please let me know if you need any ore input Thanks Naren Keep up with people you care about with Yahoo! India Mail. Learn how. http://in.overview.mail.yahoo.com/connectmore ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] big endian and little endian issues from Solaris to Linux
On Wed, Oct 28, 2009 at 6:20 PM, Girish Venkatachalam wrote: > On Wed, Oct 28, 2009 at 12:11 PM, Roshan Mathews wrote: >> OTOH, something stand along might just run. Does this code read/write >> from the network, assuming some binary format? Does it read binary >> blobs off the disk? > I meant "something standalone". Didn't even see that while scanning ... sheesh. > It was a thoroughly interesting problem to solve. > > Does this satiate your curiosity Rosh? ;) > Actually I was asking the OP, but since you ask, no, it doesn't. All you've said is that you faced a problem, and you solved it. The devil is in the details. :) Roshan Mathews ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] big endian and little endian issues from Solaris to Linux
On Wed, Oct 28, 2009 at 12:11 PM, Roshan Mathews wrote: > On Wed, Oct 28, 2009 at 4:19 AM, narendra babu > wrote: >> i would like to know what are issues need to be addressed when moving from >> big endian to little endian . >> > No direct experience here, but C bitfields might be another thing for > you to worry about. > > OTOH, something stand along might just run. Does this code read/write > from the network, assuming some binary format? Does it read binary > blobs off the disk? I have faced some issues while porting the DES algorithm from Solaris to some other OS on Intel(I dunno if it was Windows NT or Netware). I was working in Novell then. I had a very interesting and very long winded debug session in which I compared the results of the complex crypto algorithm step by step until I figured out that the issue was with the left shift/right shift/rotate function in the DES round key generation. The way I did that was instructive. I knew a lot about the internal workings of DES since I was deep into crypto at that time. I ran the same program on the target machine and on Solaris and I knew which outputs at which step had to match. So I did not have to follow the code much, my knowledge of the expected output helped. It was a long time ago, so I don't recollect many details but I was not good at coding then. I could still solve the issue due to my grasp of the technology and the big picture. It was a thoroughly interesting problem to solve. Does this satiate your curiosity Rosh? ;) -Girish -- Gayatri Hitech web: http://gayatri-hitech.com SpamCheetah Spam filter: http://spam-cheetah.com ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] Free Karaoke Software - Suggestions
On Sun, Oct 25, 2009 at 11:07 AM, Ravi Kumar Tenneti wrote: > Dear All, > > Can you please suggest me an open source mp3 to karaoke software? > > I would like to convert my mp3s to Karaoke and I could not find the right > software. In fact I have recd many when I googled it, but I would like to > know from all of you, what is the best software. > > Any pointers will be appreciated Very sorry for the belated reply. What you are asking is too much. ;) It is like saying that you will mix 3 colors in water and you want to separate the 3 colors. Now you know that soil can be separated in a glass... Anyway sorry for the diversion. You can try this: $ mplayer -af karaoke foo.mp3 That should help you a bit. -Girish -- Gayatri Hitech web: http://gayatri-hitech.com SpamCheetah Spam filter: http://spam-cheetah.com ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] Which Web Server is good?
http://news.netcraft.com/archives/2009/10/17/october_2009_web_server_survey.html you will get an clear idea [?][?][?][?][?] On Wed, Oct 28, 2009 at 3:22 PM, balachandar muruganantham < mbchan...@gmail.com> wrote: > On Tue, Oct 27, 2009 at 6:42 PM, Ramkumar wrote: > > > Hi Friends, > > we have a application developed by java.we have mysql > DB.our > > application is dynamically shows charts and images depends upon data > > stored > > on mysql DB(through query).which web server is good to use in this > > stage.how > > to make our application work as fast. Thanks in advance > > > > are you talking about application server or web server? > > Java based application can be used application server - tomcat, jboss, > websphere > > If its to just serve web pages - apache httpd, iis and others etc. > > which web server is good to use? you can find out by doing benchmarking > your > application response against each of the server i mentioned above. > > how to make application fast - > > 1. caching should page. cache pages, queries, images, chart images. > 2. reduce no. of request to application server from you application after > it > reachs the browser. > > - balachandar muruganantham > உலகம்.net - இலவச தமிழ் வலைப்பதிவுச் சேவை - http://ulagam.net > எனது தமிழ் பக்கங்கள் - http://www.balachandar.net/pakkangal > Beyond Work - http://beyondwork.wordpress.com/ > "அழச்சொல்லி அல்லது இடித்து வழக்கறிய வல்லார்நடபு ஆய்ந்து கொளல். " - குறள் > எண் > : 795 > > ___ > To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with > "unsubscribe " > in the subject or body of the message. > http://www.ae.iitm.ac.in/mailman/listinfo/ilugc > > -- Thank You Best Regards Yuvaraj L <<338.png>>___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] Pycon 2010 Venue!
> > Our FOSS movement started in 2004 with 2 enthusiastic faculty and 2 > students but now we have grown up. Hope to do more at the advent of the New > Year. > just wanted to know if there is any significant achievement from your FOSS movement in your college? - balachandar muruganantham உலகம்.net - இலவச தமிழ் வலைப்பதிவுச் சேவை - http://ulagam.net எனது தமிழ் பக்கங்கள் - http://www.balachandar.net/pakkangal Beyond Work - http://beyondwork.wordpress.com/ "கழாஅக்கால் பள்ளியுள் வைத்தற்றால் சான்றோர் குழாஅத்துப் பேதை புகல். " - குறள் எண் : 840 ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
Re: [Ilugc] Which Web Server is good?
On Tue, Oct 27, 2009 at 6:42 PM, Ramkumar wrote: > Hi Friends, > we have a application developed by java.we have mysql DB.our > application is dynamically shows charts and images depends upon data > stored > on mysql DB(through query).which web server is good to use in this > stage.how > to make our application work as fast. Thanks in advance > are you talking about application server or web server? Java based application can be used application server - tomcat, jboss, websphere If its to just serve web pages - apache httpd, iis and others etc. which web server is good to use? you can find out by doing benchmarking your application response against each of the server i mentioned above. how to make application fast - 1. caching should page. cache pages, queries, images, chart images. 2. reduce no. of request to application server from you application after it reachs the browser. - balachandar muruganantham உலகம்.net - இலவச தமிழ் வலைப்பதிவுச் சேவை - http://ulagam.net எனது தமிழ் பக்கங்கள் - http://www.balachandar.net/pakkangal Beyond Work - http://beyondwork.wordpress.com/ "அழச்சொல்லி அல்லது இடித்து வழக்கறிய வல்லார்நடபு ஆய்ந்து கொளல். " - குறள் எண் : 795 ___ To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc