[Ilugc] Tamil auto txt2unicode converter

2014-08-05 Thread Arulalan T
Dear All,

I have written txt2unicode [1] converter which will convert any type
of encode to unicode. At the moment it will convert only Tamil
encodes.

Supported encodes are
1. anjal, 2. bamini, 3. boomi, 4. dinakaran, 5.dinamani,
6.dinathanthy, 7.kavipriya, 8.murasoli, 9.mylai, 10.nakkeeran,
11.roman, 12.tab, 13.tam  14.tscii

Also I have written auto2unicode function which will find input
text's encode automatically and convert to unicode. It can find 11
encodes out of 14 above encodes.

I took tscii sample input from [2] and tested out.

 auto2unicode function able to find tscii encode and convert to
unicode successfully.

I need remaining 13 encodes sample text to test it.

If anybody have these Tamil encoded sample text files, please send me
offline or share here any link to get sample for the same.

Suggestions are welcome.

[1] https://github.com/arulalant/txt2unicode
[2] http://projectmadurai.org/index.tscii.html

Thanks.

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Github Home : http://arulalant.github.io
My Experiments In Gnu/Linux : http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] python tutorials

2013-08-05 Thread Arulalan T
2013/8/5 vijay siva vijaysiva5...@gmail.com:
 HI to every one...

 i m new in python programming language...

 if any one know which tutorial is best  learning beginner...

http://www.pythontutor.com/


-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] How to get all the posts URL from a blog?

2013-03-05 Thread Arulalan T
2013/3/5 Shrinivasan T tshriniva...@gmail.com:

 For example, I want to get the URL of all the posts from a blog.

 Example.
 http://kaniyam.com
 or
 http://365process.blogspot.in/


 How can we get the URL of all the posts?


You may try with spider (web-scrapping) !
I done this one time using python with pagination.



-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Linux DC++ going berserk in RAM usage

2012-10-18 Thread Arulalan T
2012/10/18 Jhana Murugan jhana.muru...@gmail.com

 Hi,
   I am using ubuntu linux for around 6 months now. I am using Linux
 DC++ to share and download files directly in the LAN.


I am using Valknut in ubuntu for past one and half years. Till now I
didn't face any problem.
Try it out !

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] help on libglade with python

2012-08-21 Thread Arulalan T
2012/8/21 Aravindhan aravindlinu...@gmail.com:
[..snip..]
 Help me to solve this. I am just trying to show window with a button and
 label.

Give a try to Quickly !

To Install :
 # apt-get install quickly*

Links :
 https://wiki.ubuntu.com/Quickly

 http://taekdar.blogspot.in/

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Sad demise of our dear KG (Keneth Gonsalvas)

2012-08-03 Thread Arulalan T
Yesterday I have seen him in #ilugc-irc chat list.

Couldn't digest it easily.

so sad :-(

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] OAOD (Roxbird)

2012-01-15 Thread Arulalan T
2012/1/15 Velmurugan Moorthy velmurugan1...@gmail.com

 hey bro do you belong to kaanchi?Me too.And i wanna join in kanchi lug.how
 to do it tell me plzzz.


Hai Velmurugan Moorthy,

We appreciate your interest.
You must understand few things about the mailing list.

If you want to reply some thing to any individual person, then you should
have mail to him/them only, not to the whole mailing list.

ilugc mailing list having more the 1000 people. Your reply goes to all the
people, unnecessarily when you are asking some personal doubts.

You can get the most of the details about kanchilug here
http://kanchilug.wordpress.com/

Read and follow the mailing list guidelines here
http://www.ilugc.in/content/mailinglist-guidelines

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Can we access the SWAP SPACE in Python

2011-10-10 Thread Arulalan T
Hai,

2011/10/7 Raja Subramanian rajasuper...@gmail.com



  Is there any way to store some data in SWAP (but not in RAM) and get the
  data from the SWAP partition whenever we need it in Python or C language
 ?
  yup. It may be slower to access the swap area rather than RAM, but it is
  much faster than access the data of files which are stored in the hard
 disk.

 Use mmap to map a file directly into your processes address space. When
 you reference the memory address, the kernel will read/write data from the
 file using the same mechanisms it uses to swap.  You will bypass all file
 IO buffering and have direct access to the files.  This is how all DB
 engines
 handle IO.  mmap() vs read() will give you a 3 x speedup for IO bound jobs.

 Advanced Programming in the Unix Environment by Stevens has a good
 example of file copy implemented using mmap.


I couldnt use mmap( ) function in my case, since I am accessing the binary
file like NetCDF, PP, HDF, Grads which contains data
in formats of numpy.float32, numpy.float64 and some meta data also.

These files cant read it as like normal text file object such as
fileobj.readlines( ). i.e. These files are not string type.
So I cant use mmap( ) in this case.




 Mechanisms to speed up scientific code:

 1. Make fewer passes over your data.  Ideally you want to read the
 data once, complete all processing and never have to read it again.
 Do not make several passes over data doing a little processing each
 time.

 2. Use efficient IO like mmap.

 3. Use the correct algorithms suitable for your data size and work.

 4. Profile your code to understand which step takes the most time.
 Then start fine tuning.

 5. Run a 64bit OS, you'll sometimes need to use more RAM if you
 want faster performance.  It's a trade-off.

 6. Code the hot spots in C if you need more speed.


Thanks for above suggestions.

I will use all the above in my project.

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Can we access the SWAP SPACE in Python

2011-10-10 Thread Arulalan T
Hai,

2011/10/7 Bharathi Subramanian bharathi.l...@gmail.com

   yup. It may be slower to access the swap area rather than RAM, but it is
  much faster than access the data of files which are stored in the hard
 disk.

 Swap is in HDD. So much improvement. You can try the mmap option
 suggested by Raja. But you need to manage the data handling. Another
 option, Create RamFS, load data files into it. So that you can access
 it as if from HDD file and get the maximum speed. Remember, RamFS eat
 a fixed amount the RAM and handle the data persistence.


RamFS is really awesome.

Thanks for your suggestion. It should help me a lot.

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Can we access the SWAP SPACE in Python

2011-10-10 Thread Arulalan T
2011/10/7 Akilan R akila...@gmail.com

 On Fri, Oct 7, 2011 at 5:16 PM, Arulalan T arulal...@gmail.com wrote:

  yup. It may be slower to access the swap area rather than RAM, but it is
  much faster than access the data of files which are stored in the hard
  disk.
 

 Could you clarify? You initially said you wanted to store in swap instead
 of
 RAM. Now you want to store in swap(which is essentially a 2nd class RAM)
 instead of files in file-system. Do you mean to say you don't want in RAM
 because you don't want to use precious RAM space but want to use swap as it
 is faster than accessing other files?


Yes. Correctly...
I hope RamFS, TmpFS should help me to handle this problem.

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] How to install dhvani in ubuntu 11.04?

2011-10-07 Thread Arulalan T
2011/10/7 Shrinivasan T tshriniva...@gmail.com

 I am trying to install dhvani, the TTS system from
 http://dhvani.sourceforge.net/


[..snip..]


 How to proceed now?


I downloaded the source of dhvani version 0.95 and installed in ubuntu
11.04.

In ubuntu it need the following dependencies,

sudo apt-get install zlib1g-dev libzlcore-dev liblz-dev libgsm1-dev
libghc6-gstreamer-dev ripit alsa-base  alsa-utils libalsaplayer-dev
libclalsadrv-dev fp-units-multimedia libsoundtouch-dev

Then it should be installed.

But I am getting the following error when try to invoke that dhvoni command.

dhvani: error while loading shared libraries: libdhvani.so.0: cannot open
shared object file: No such file or directory


I suggest you to install the deb file by pre-installing the package called
libsoundtouch-dev .

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] SFD 2011 Stalls Suggestions

2011-09-14 Thread Arulalan T
Dear All,

Here I posted about the sfd suggestions.

Still we have few days to prepare to put stalls in SFD'11.

If you want to get some ideas to make simple stalls in sfd,
visit this post.

http://tuxcoder.wordpress.com/2011/09/14/sfd-2011-stalls-suggestions/

Thanks.

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] SFD'11 Stalls Suggestions

2011-09-13 Thread Arulalan T
If you have any idea to put stalls in ILUGC SFD'11, please add you stall
details in the ilugc wiki page here.

http://wiki.ilugc.in/index.php?title=Sfd2011

Thanks.

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Fwd: [OT][Video] How to Create Slide-Castings

2011-08-26 Thread Arulalan T
Dear Folks,

I feel, this is really great one.

-- Forwarded message --
From: Narendra Sisodiya naren...@narendrasisodiya.com
Date: 2011/8/26
Subject: [LUG@IITD:14629] [OT][Video] How to Create Slide-Castings
To: The Linux-Delhi mailing list il...@lists.linux-delhi.org, IITDLUG 
iitd...@googlegroups.com, edu...@googlegroups.com


How to Create Slidecastings ?  -
http://code.narendrasisodiya.com/slidecast/Tutorial-SlideCasting.ogv

So next time When we create organise workshop we can use this tool.
This is under development so expect lots of bugs.

Related Blog :
http://blog.narendrasisodiya.com/2011/08/some-new-eduvid-demos.html
Slidecasting Recorder - http://code.google.com/p/slidecasting-recorder/

-- 
┌─┐
│Narendra Sisodiya
│http://narendrasisodiya.com
└─┘

-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT] dvorak keyboard

2011-06-03 Thread Arulalan T
2011/6/3 Kenneth Gonsalves law...@thenilgiris.com:
 hi

Hai,

 After a discussion on Delhi mailing list, I have switched to the dvorak
 keyboard. Very comfortable. Try it.

Did you reorder your keyboard keys or pasted the stickers on the keys
to switch to the dvorak keyboard ?


-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Inclusion of FOSS in MCA curriculum

2011-03-16 Thread Arulalan T
16 மார்ச், 2011 7:55 pm அன்று, சுதன் | suthan 83su...@gmail.com எழுதியது:

 Dear all,

  There was a workshop on curriculum revision for MCA recently held
 at Anna University, Chennai. The main aim of the workshop was to revise the
 curriculum for MCA which has not been revised for the past 10 years. As
 Head
 of MCA, Dr.Sivanthi aditanar college of Engineering, i attend the workshop.
 We discussed about the various subjects that need to be included into the
 curriculum. I suggested Opensource as one, and more others did the same. So
 FOSS found its way into the syllabus.


Thanks a lot sir. :-)
-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [Announcement] Delhi/NCR Python Users Group India - Started

2011-02-14 Thread Arulalan T
Dear All,
  I am happy to announce that a new  Python usergroup is
created for  Nation Capital Region consisting  of * NCT Delhi *
Haryana * Rajasthan *Uttar Pradesh .

Do join us on the mailing list for  NCR Python Users Group India .

Mailing List : http://mail.python.org/mailman/listinfo/ncr-python.in

Wiki Page : http://wiki.python.org/moin/Ncr-Python.in

This mailing list is for all those who want to know about  What is
Python?, How to learn it? as a beginner etc..

If you are a  Python Geek, then please join with us and share your
Python coding stuff. So that all of us can improve our Python
knowledge.


-- 
Regards,
Arulalan.T
Project Associate
Centre for Atmospheric Sciences
Indian Institute of Technology Delhi

My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] creating a FOSS alternate for Teamviewer

2010-12-26 Thread Arulalan T
Dear All,

2010/12/17 Shrinivasan T tshriniva...@gmail.com

 Friends,

 Is it possible for us to create a FOSS alternate for Teamviewer?

 Shall we start working on this?


Yesterday I have attended the FOSS meetup in Delhi.

In that many people presented/discussed about some good things.

One student (Anuvrat - cced in this thread) presented his college 3rd year
project and demonstrated.

The project is Desktop sharing to remote machine(s) over the LAN/WAN .

He almost completed that project by using g++ , Qt and some more stuff.

He hosted his code and documents here https://github.com/bhanuvrat

I think, he has finished the ground work for creating alternate of
TeamViewer.

If we people guiding him and working together means, surely we can achieve
our goal soon.

I told him about ilugc mailing list and discussion over the alternate for
teamviewer.

He is willing to do this project.

Quote : Once we started to think to do something, that something has already
started by someone
in some where.
  -- said by
   T.Shrinivasan


 Thanks.
 --
 Regards,
 T.Shrinivasan


 My Life with GNU/Linux : http://goinggnu.wordpress.com
 Free/Open Source Jobs : http://fossjobs.in
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] what is Big Blue Button??

2010-12-23 Thread Arulalan T
2010/12/23 Rahul Singh rahulbdme...@gmail.com:
 please tell me more about big blue button. and what are its use. or provide
 with some useful links to read about it.

Read here.

http://www.bigbluebutton.org/

http://demo.bigbluebutton.org/

Source here.
http://code.google.com/p/bigbluebutton/wiki/Source?tm=4

It is using to conduct online [virtual] class room.
In server only we need to install. Client need only browser.

We can install in our machine  and conduct some virtual class with
help of slides,audio/video support.



 Regards,

 Rahul Kumar Singh

 *Do it know it
 *
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] creating a FOSS alternate for Teamviewer

2010-12-22 Thread Arulalan T
2010/12/20 Sathishkumar Duraisamy flowers...@gmail.com:
 On Sat, Dec 18, 2010 at 7:42 AM, Kenneth Gonsalves
 law...@thenilgiris.com wrote:
 On Fri, 2010-12-17 at 16:10 +0530, Shrinivasan T wrote:
 How to start this?

 set up a repository and start writing the code and commit it.

 Let we start the project.

 Here is comparison of various project hosting sites

 http://en.wikipedia.org/wiki/Comparison_of_open_source_software_hosting_facilities.

 and My vote is for Launchpad.

 Let we give a good name for the project. Shall we create a poll for this...

 I wish to be a one of developer/team member(c++/python). Here I am
 very interested in this, because, this is going to be my first
 experience in opensource projects. Also, it is supposed we are going
 to start from scratch, so I expecting I will get very good experience.
  Please interested people take some responsibilities like TL , PL ,
 PM, team member, Admin

I want to contribute to this project in Python.

Also we have to consider the BigBlueButton concept.

My friends and I used BigBlueButton. Its LAN Slideshow, audio,video
sharing over LAN itself.


 regards
 KG
 http://lawgon.livejournal.com
 Coimbatore LUG rox
 http://ilugcbe.techstud.org/

 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




 --
 Regards,
 Sathishkumar
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] My ubuntu 10.X getting crash in my Laptop while installing the following jasper packages

2010-12-21 Thread Arulalan T
Dear All,

When I installed these packages alone and restarted my ubuntu os on Hp
Pavilion dv2700 laptop, ubuntu got crashed.

Its like, I can see only the tty1. but cant type anything to login.


   1. jasper
   2. libjasper-dev
   3. libjasper-java
   4. libjasper-runtime
   5. openjpeg-tools

My ubuntu got crashed more than 8 times, whenever I installed the above
packages.

Last time, I checked with Linux Mint distro on IBM Lennova laptop also. That
also crashed.

But last time, I recovered the Linux Mint back to normal, by removing those
packages completely
by using live cd.

I need to install jasper library for installing pygrib [1]  [2].

Do any one experienced like this problem.

Do any one know more about jasper ?

If anybody willing to install these packages and will try it means,
please post your experience too.

So that we can report about those packages to ubuntu development team.


[1] http://code.google.com/p/pygrib/
[2] http://code.google.com/p/pygrib/wiki/LinuxMacInstallation
-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ubuntu not supporting to HP laptop - Pavilion dv2700

2010-12-17 Thread Arulalan T
2010/12/16 akila...@gmail.com akila...@gmail.com

 On Thu, Dec 16, 2010 at 3:01 PM, Yogesh Girikumar yogeshg1...@gmail.com
 wrote:

  I've always asked people to stay clear of HP and Compaq laptops. They're
  crap IMHO. But that's because of my bitter experiences with HP systems.
  They're serious when they say they recommend Microsoft Windows.
 

 I agree with this view completely. In recent past I've had problems with
 them sometimes in even recognizing wifi, correct monitor settings etc in
 Ubuntu as well as Debian. Dell is better in terms of GNU/Linux as far as my
 experiences go.

 @OP: In any case, can you check if the problem appears after you go into
 windows once or just by repeatedly restarting into Ubuntu itself?


I didnt login to the M$ Windows. I just restarted the ubuntu. it self makes
problem.

 --
 *அகிலன்* (Akilan R)
 (http://www.coding-aviator.blogspot.com)
 *I should have no use for a paradise in which I should be deprived of the
 right to prefer hell.*
  --Jean Rostand
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ubuntu not supporting to HP laptop - Pavilion dv2700

2010-12-17 Thread Arulalan T
2010/12/16 Mohan R mohan...@gmail.com

 On Thursday 16 December 2010 02:46 PM, Arulalan T wrote:
  the next day, I can not see the login screen. Its always showing the
 ubuntu
  logo only.
 
  In recovery mode, it says setting fstab.

 may be dmesg output and your /var/log/messages can help to detect the
 problem. what your /var/log/messages file says about your last boot?
 where it stuck?


It didnt write any messages in /var/log/... . I already look over those
files.

It has only my last shutdown messages.

Other than that, it didnt have even today login messages.

@ others: I will reply on monday once I will get the same laptop again to
work. :-)
please wait.

Thanks



 Thanks,
 Mohan R

 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] ubuntu not supporting to HP laptop - Pavilion dv2700

2010-12-16 Thread Arulalan T
Dear All,

I have problem with ubuntu 10.04 and 10.10 in laptop Hp Pavilion dv2700.

for past three days, I am installing, re-installing, re-installing . . .

On Tuesday I have installed ubunuu 10.10 with dual boot.

After installed it, it was working properly.

the next day, I can not see the login screen. Its always showing the ubuntu
logo only.

In recovery mode, it says setting fstab.

My fstab has no problem.

Also I was run the fsck /dev/... [all]


On wednesday again I reinstalled with ubuntu 10.04.

/ on /dev/sda7 , /home on /dev/sda6 and swap on /dev/sda5 with 'ext4' type.

It was working perfectly on that day fully. I mounted USB drive, CD-ROM.

But today when I switch on the system, I got the same problem like ,
'setting fstab'.

I cant login in tty1 and all. i.e. I cant login in anyway.

I was run fsck from live cd and checked the fstab many times. it has no
problem/error.




ubu...@ubuntu:~$ sudo fdisk -l

Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xb759f9a0

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   *   1  13  1024007  HPFS/NTFS
Partition 1 does not end on cylinder boundary.
/dev/sda2  137649613365767  HPFS/NTFS
/dev/sda37650   19458948490255  Extended
/dev/sda5   10139   10637 3998720   82  Linux swap / Solaris
/dev/sda6   10637   1945870849536   83  Linux
/dev/sda77650   1013919998720   83  Linux

Partition table entries are not in disk order
ubu...@ubuntu:~$


ubu...@ubuntu:~$ sudo fsck /dev/sda7
fsck from util-linux-ng 2.17.2
e2fsck 1.41.11 (14-Mar-2010)
/dev/sda7: clean, 162967/1250928 files, 967671/4999680 blocks
ubu...@ubuntu:~$




Now again going to re-install it with 'ext3' type.


I dont know where is the problem.

Either hard disk failure or os cd failure. The thing is, if the os cd has
problem means, how can I do all the works after installed successfully.

Or Laptop itself has problem ... ?

Any suggestions ...



-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] ubuntu not supporting to HP laptop - Pavilion dv2700

2010-12-16 Thread Arulalan T
2010/12/16 Yogesh Girikumar yogeshg1...@gmail.com

 2010/12/16 Arulalan T arulal...@gmail.com

  I dont know where is the problem.
 
  Either hard disk failure or os cd failure. The thing is, if the os cd has
  problem means, how can I do all the works after installed successfully.
 
  Or Laptop itself has problem ... ?
 
 
 I've always asked people to stay clear of HP and Compaq laptops. They're
 crap IMHO. But that's because of my bitter experiences with HP systems.
 They're serious when they say they recommend Microsoft Windows.

 That said, you can see if some other Linux distro works fine on the laptop.
 Something like Fedora might cut it. Although it's unlikely that your media
  is corrupt, it's a good idea to do a md5sum check to verify integrity of
 the installation media.

 Are you dual booting alongside Windows? WUBI?


Windows7.

This is not my laptop. My professor's lap. Its genuine version. so cant
format disk fully.


 Yogesh.
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] India Map by State for Viz

2010-12-01 Thread Arulalan T
Hai,

2010/12/1 Venkatraman S venka...@gmail.com

 I was wondering whether there is anything similar for India(which allows us
 to show viz by state):

 http://code.google.com/apis/visualization/documentation/gallery/intensitymap.html


Thanks for the info. :-)


 (The above does at the country level)

 Also, is there anything similar for mapping countries, other than that of
 Google?


For mapping countries , you can use CDAT which has
created meteorological  field.
Its a python library. More over its desktop application.

http://www2-pcmdi.llnl.gov/cdat

http://www2-pcmdi.llnl.gov/cdat/screenshots

Here you can see the India map which is generated  by CDAT.

http://tuxcoder.wordpress.com/2010/08/30/103-weather-symbols-markers-are-created-by-me-infor-cdat/



 -V-
 http://twitter.com/venkasub
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] November Month Php Live meet cancelled

2010-11-05 Thread Arulalan T
Dear All,

This month Php Live meet has been cancelled due to diwali celebration.

Next meet will be held on 3rd Dec, in MIT.

-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [kanchilug] Introduction to Jquery

2010-10-25 Thread Arulalan T
2010/10/25 Baskar Selvaraj bas...@linuxpert.in

 He had Finished his Final year B.Tech IT in Meenatchi Sundaram College

  of Engineering.
 

 I never heard of such engg. college name in Tamilnadu.



That is Meenakshi Sundararajan Engineering College

http://www.msec.edu.in/

And the OP wrongly cross posted (cc) to ilugc.

we sorry for that.





 S. Baskar
 LinuXpert Systems
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Final year project

2010-10-25 Thread Arulalan T
Hai Balaji Sivanath,

2010/10/25 balaji sivanath starbala2...@gmail.com

 Hi,


[...]

 If other means, Is there any company or project centre to train for
 projects in opensource.

Here is the [foss] project guiding center for final year students

http://openvidya.fossfactory.in/

You may contact Mr.Thyagarajan Shanmugham (mentioned in the above
site) to get guidance for final year
project in open source.

He will give the ideas and guiding to the final year students to do
their own project in foss.

[Hope this helps to other students also . . . ]

My wishes.!.

Do the best.



 Regards,
 Balaji sivanath.
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc



--
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Is our ILUGC mailing list for some entertainment?

2010-10-07 Thread Arulalan T
Dear Ilugc Members,


Is our mailing list for some entertainment?

http://twitter.com/kmanikandan/statuses/26055560696

Why its happening ?

Lets change.

We have the full responsibility to take care the goodwill of our mailing
list .

Do we ?

Add your thoughts, comments and ideas to change others' thoughts which is
posted in twitter.

-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Ideas regarding an automated chat system

2010-09-13 Thread Arulalan T
2010/9/12 Richy Gerard idbis...@gmail.com

 *Hi,*
 *
 *
 *This is Richy. I have ever dreamt of an automated artificial intelligence
 based system which can quickly give us response to what ever we ask it.
 This
 will be a vital help to those people who wish to have someone beside them
 and do some basic operations and teaching them how to do's. *
 *
 *
 *this can be interpreted on a large scale providing some basic help
 opportunities to the newbies who wish to create a deb package or who wish
 to
 install software in their linux machines. *
 *
 *
 *In short, I wish to build an automated chat system based on artificial
 intelligence to help users to use ubuntu. Can anyone guide me on this??*



In the terminal type *emacs* and hit enter. When the editor has loaded, hold
shift and hit the escape key. Then type *xdoctor* and hit return. Answer the
first question and proceed from there. When you're done, control-X control-C
will quit the editor.

This make interaction between user and system (xdoctor). If you type
something, it (psychotherapist) will return some answer depends upon your
question.

This may help you to understand the automated chat.



-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [FYI] RMS will give a talk in St. Joseph's College, kerala on 09.09.2010

2010-09-09 Thread Arulalan T
For all those who couldn't make  up to the talk by RMS, here is a briefing
of a part of his talk at SJCET,Palai

http://djnetworkz.com/2010/09/08/linux-in-schools-why-not-give-students-their-freedom/



Some Pictures of the event

1. ilug-cochin meets ilug-tvm
http://groups.google.com/group/ilug-tvm/web/Ilug-cochin-meets-tvm.JPG?hl=en_US
2. Swathantrahttp://groups.google.com/group/ilug-tvm/web/new-born.JPG?hl=en_US
3. RMS http://groups.google.com/group/ilug-tvm/web/St.RMS.JPG?hl=en_US
4. The Crowd
http://groups.google.com/group/ilug-tvm/web/The-crowd.JPG?hl=en_US
5. Mini 
Toasterhttp://groups.google.com/group/ilug-tvm/web/Mini-Toaster.JPG?hl=en_US
6. RMS with 
GNUhttp://groups.google.com/group/ilug-tvm/web/RMS-with-GNU.JPG?hl=en_US








-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] hackf...@shaastra2010: From IIT Madras

2010-09-06 Thread Arulalan T
Dear Kumar Appaiah,

2010/9/7 Kumar Appaiah a.ku...@alumni.iitm.ac.in

 On Tue, Sep 07, 2010 at 06:21:15AM +0530, Kenneth Gonsalves wrote:
  On Mon, 2010-09-06 at 19:38 -0500, Kumar Appaiah wrote:
   Another
   set seemed to fear that they didn't know enough to be able to
   participate in the LUG meets; I was also in this category, till I
   understood that the LUG wasn't for geek discussions (alone)
 
  omg - if *you* were afraid of the level of discussion what about us
  ordinary mortals?

 So, I don't know if you are being sarcastic, but I wasn't born with a
 silver Linux CD in my hands. Even today, I sometimes fear asking
 questions on some mailing lists, thinking they may be too stupid. :-)


Feel free to ask your questions/doubts ( even it may be too stupid )  in lug
mailing list.

Here no one scolds you for questions/doubts. Dont fear.

Just we need to follow some simple discipline like

* put proper subject
* reply in inter post
* no top/bottom post
* write your queries in simple english [ not in sms words]

Thats all. The above guidelines are not at all rules.

It makes readability to all. :-)

we have to follow this in our personal mails also. so we no need to take
separate care  to ask your questions/doubts in mailing list.

We invite you to come and attend the ILUGC meet in IITM. More over ILUGC
meeting location is too near to you.

Most of the ilugc people have been coming to IITM by spending more than 3
hours traveling time to attend lug meet.

ILUGC planned to will give a talk for newbie to linux in every meet. So you
can come there and attend.

Also you can come up with any talk ( whatever you want to share ) and will
present there.

We welcome you people to attend the ilugc meet and to ask your questions
about linux in ilugc mailing list.

Bring your friends too :-)

Thanks  Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [FYI] RMS will give a talk in St. Joseph's College, kerala on 09.09.2010

2010-09-06 Thread Arulalan T
From Jomon John,


Hai Everyone

Swathanthra, the free software users group of St. Joseph's College of
Engineering  Technology, Palai, Kottayam, Kerala is organizing a one
day Free Software Fest named ‘Swathanthra 1.0’. I am privileged to
inform you that Mr.Richard M. Stallman, will give a talk on “Free
Software and Your Freedom”, answer questions, and inaugurate the Free
Software Users’ Group of the College at 10:30 am on September 09,
2010.

I invite you to kindly visit us and participate in the function
which,I am sure, shall benefit all those present.

More details about the event are available in our official website
www.swathanthra.in and those who are interested need to register at
the website. The registration for the event would be closed on 7th
September. The entry for the event would be free.

With warm regards,
Yours sincerely,

Jomon John
Free Software Enthusiast
Contact No : +91 9496320742
___

-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Need Help : Setting Floating Precision Point as 2 in Python

2010-08-24 Thread Arulalan T
Dear All,

I need one help.

In python, I need to set the floating point precision as 2.

I am getting the following output in python while adding two float nos.

a=79.73
b=0.5
 a+b
80.234

I need exactly 2 precision point in this float value. i.e. 80.23

Even though I tried in round method, its not satisfied me. Because

 a = round(3.7138464897123424324355124355,2)
 a
3.71
 a = round(3.7238464897123424324355124355,2)
 a
3.7202

Can you understand the difference. Depends upon the value, it will round.

I no need ceil and floor options. Because it may change the original values.

I need just 2 precision point in the float value.

I am getting two numbers dynamically. So I can not say exactly, what kind of
floating numbers I am going to use.

What I have to do ?

Any suggestions ?

Thanks in advance.






-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Need Help : Setting Floating Precision Point as 2 in Python

2010-08-24 Thread Arulalan T
2010/8/24 Roshan George ros...@arjie.com

 On Tue, 2010-08-24 at 16:04 +0530, Arulalan T wrote:
 
  I am getting the following output in python while adding two float nos.
 
  a=79.73
  b=0.5
   a+b
  80.234
 
  I need exactly 2 precision point in this float value. i.e. 80.23

 That's a limitation of binary floating point. The number 80.23 cannot be
 represented exactly. Use the decimal module if you want exact numbers:
 http://docs.python.org/library/decimal.html. For more information look
 at the Python Docs on floating point:
 http://docs.python.org/tutorial/floatingpoint.html.

 As you'll see there, Python 3.1 will print the result in the way you
 want, but if you want more accurate arithmetic, multiply all your
 numbers by 100 and use integers instead or use the decimal module.



Yes, we can do this multiply by 100 way.
By this way I can handle 80 and 23 as two separate integers.
But when I want make it as float
80+0.23
 80.234

again it will be come same floating value.
so I cant use this way.




--
 Roshan George

 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Need Help : Setting Floating Precision Point as 2 in Python

2010-08-24 Thread Arulalan T
2010/8/24 Roshan George ros...@arjie.com

 On Tue, 2010-08-24 at 16:57 +0530, Arulalan T wrote:
  Yes, we can do this multiply by 100 way.
  By this way I can handle 80 and 23 as two separate integers.
  But when I want make it as float
  80+0.23
   80.234
 
  again it will be come same floating value.
  so I cant use this way.

 Well, I meant something like using 8000 and 23 instead of 80 and 0.23.
 Then when the time comes to print your number you can just do something
 like:

a = str(8000+23)
b = a[:-2] + '.' + a[-2:]


Thanks a lot. I forget to mention here. I dont want the result float value
in string.

I need only the float values with 2 precision. That to without rounding the
result.

Any idea?






 Your output will be the nice 80.23 that you always wanted. Unless you're
 doing some division that requires you to hold on to the third place or
 lower, why use floats when integers will do the job?

 --
 Roshan George

 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Need Help : Setting Floating Precision Point as 2 in Python

2010-08-24 Thread Arulalan T
2010/8/24 Chandrashekar Babu l...@chandrashekar.info

 Hi Arulalan,


  In python, I need to set the floating point precision as 2.
 
  I am getting the following output in python while adding two float nos.
 
  a=79.73
  b=0.5
   a+b
  80.234
 
  I need exactly 2 precision point in this float value. i.e. 80.23
 

 You might want to convert them to Decimal type. Look up the
 following URL (Python documentation) for more information:
  http://docs.python.org/library/decimal.html





 from decimal import *
 getcontext().prec = 3
 getcontext().rounding = ROUND_UP
 Decimal('3.1415926535') + Decimal('2.7182818285')
Decimal('5.86')

or

 getcontext().prec = 3
 getcontext().rounding = ROUND_DOWN
 Decimal('3.1415926535') + Decimal('2.7182818285')
Decimal('5.85')


This gives the what I need.
But I can not use this Decimal data type.

I am doing project for Indian Meteorological Department using CDAT python
library.

Now I am plotting weather symbol markers on India Map at corresponding
latitude and longitude (in float) dynamically.
Due to inaccuracy floating value of latitude  logitude,
the position of markers are moved away from the exact position of the
stations on the map in vcs.

so I need float value in 2 precision without changing the value. Not in
string. Not in Decimal.

In CDAT vcs module supports only the 'float data' type to represent the
latitude  logitude in map.

Any suggestions?






 If all you want to do is print the value upto 2 decimal points, then
 a print with format specifier should do the trick. The following URL
 (Stack Overflow) has this question answered:


 http://stackoverflow.com/questions/455612/python-limiting-floats-to-two-decimal-points

 Cheers,
 Chandrashekar.

 --
 Chandrashekar Babu.,
 http://www.chandrashekar.info/
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] One Day FOSS Workshop in SRM University

2010-08-24 Thread Arulalan T
Dear All,

On behalf of ilugc and kanchilug, we people conducted One Day FOSS
Workshop in SRM University, Poteri on 21.08.2010.

We people Rajkumar, Dhasthagheer, Sanmugam, Balakrishnan, LogeshPrabhu
and Arulalan (myself)  conducted this workshop for CSE Department.

Nearly 250 students participated. Students are first year and second
year of CSE in that University.
The workshop started at 10.30 am.

First we introduced ourself and about kanchilug to all the students.

Logesh Prabhu started with Why FOSS and Gnu/Linux ? and explained
detailed about FOSS with its History.

Then Dhasthagheer took An Introduction to Php.

After lunch, Rajkumar demonstrated the Joomla and explained the
features of php in CMS.

Myself(Arulalan) took An Introduction to Python.

Students enjoyed with php and python, raised many questions in that.

BalaKrishnan explained the steps of Ubuntu installation as dual boot
by live demo.

At last we were windup the workshop around 5 pm.
We explained everything in English only.
SRM Lug provided ubuntu 10.04 dvd to all the participations.

Finally we explained about Lugs, mailing list, forums and community supports.
We invited all of them to SFD'10.

This is first time, kanchilug members have been conducting FOSS
workshop in such a big University.
We thank Shiv Deepak (III yr CSE) for organized this FOSS workshop and
invited us.
Also we thank the management of the SRM Univesity.

--
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com



--
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] SFD 2010 Stalls

2010-08-20 Thread Arulalan T
2010/8/19 Shrinivasan T tshriniva...@gmail.com

 Friends.
 We planned for around 20 stalls for sfd 2010 in the last monthly meet.

 Please update here with the stall details and stall incharge details.

 Let us invite the First timers to participate.


From KanchiLug the following stalls will be demonstrated in SFD'10

open-office - word,impress,spreadsheet
Gimp, impress
Python-Basic
Ruby-Basic
Glade - Basic
PhP - Basic

Advanced :

MySql, Postgres
Big Blue Button,DimDim
Quickly
Arduino-Hello world + etc
Screencasts in Tamil for Gnu/Linux and languages
MultiOs in single Dvd
Ubuntu-manual-tamil
Games - 3D

Thanks
-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] SFD 2010 Stalls

2010-08-20 Thread Arulalan T
2010/8/20 Arulalan T arulal...@gmail.com



 2010/8/19 Shrinivasan T tshriniva...@gmail.com

 Friends.
 We planned for around 20 stalls for sfd 2010 in the last monthly meet.

 Please update here with the stall details and stall incharge details.

 Let us invite the First timers to participate.


 From KanchiLug the following stalls will be demonstrated in SFD'10

 open-office - word,impress,spreadsheet


Gimp, inkscape


 Python-Basic
 Ruby-Basic
 Glade - Basic
 PhP - Basic

 Advanced :

 MySql, Postgres
 Big Blue Button,DimDim
 Quickly
 Arduino-Hello world + etc
 Screencasts in Tamil for Gnu/Linux and languages
 MultiOs in single Dvd
 Ubuntu-manual-tamil
 Games - 3D




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] session in opensource

2010-08-17 Thread Arulalan T
Hi Balaji Sivanath,

2010/8/17 balaji sivanath starbala2...@gmail.com

 hi,
 i want to share my thoughts to my juniors about open source in my
 college,my friends also said they will also combine with me. the
 following things i got in my mind to share with them,


Good.


 --what is opensource?
 --why opensource,disadvantages of proprietory s/w?
 --brief notes about licensing
 --gnu/linux distributions
 --especially ubuntu

In ubuntu, you have to show the compiz effects (Advanced Graphics Effects).

So that, you can get more attraction from the viewers (friends).


 --gimp
 --linux basic commands
 suggest me anyother topics that i have to tell them and also wat
 should be the next level (i.e)if i got next chance which topics i have
 to go into deep or anyother topics which i have missed for beginners
 (am also a beginner:))


Wishes.!. :-)



-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Re: A new open source game!

2010-08-12 Thread Arulalan T
2010/8/12 Arulalan T arulal...@gmail.com




 Hi friends,

 Gaming in Linux is slowly going to improve if things happen the way they
 are going.

 Check out this link.

 http://www.youtube.com/v/UpK0tXXBpP4autoplay=1


 Details:

 The game is known as 0 A. D.
 It is based on the famous Age of Empires series.
 It is open source and is completely free.
 It is not released yet but is available for testing.



To install this game in your linux system go to http://wildfiregames.com/

For ubuntu,

we need to install playdeb  from the following link.

http://www.playdeb.net/updates/ubuntu/all/#how_to_install

Then install the OAD game just click the install button from the following
link.

http://www.playdeb.net/software/0%20A.D.

After installation completed via synaptic package manager, we can play this
game.

I played it. :-)




 --
 Regards,
 Arulalan.T

 Kanchi Linux User Group Rocks !
 http://kanchilug.wordpress.com

 My Experiments In Linux are here
 http://tuxcoder.wordpress.com




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] A new open source game!

2010-08-11 Thread Arulalan T
Hi friends,

Gaming in Linux is slowly going to improve if things happen the way they are
going.

Check out this link.

http://www.youtube.com/v/UpK0tXXBpP4autoplay=1


Details:

The game is known as 0 A. D.
It is based on the famous Age of Empires series.
It is open source and is completely free.
It is not released yet but is available for testing.


-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Call for Volunteers for Software Freedom Day 2010

2010-08-10 Thread Arulalan T
2010/8/10 Shrinivasan T tshriniva...@gmail.com:
 Friends.

 We need to plan for the Software Freedom Day events on September 18.
 We invite you all to come to the monthly meeting on Aug 14 at IITM.
 so that we can discuss about the SFD preparations.


count kanchilug members. :-)






-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Call for Volunteers for Software Freedom Day 2010

2010-08-10 Thread Arulalan T
10 ஆகஸ்ட், 2010 7:38 pm-ல், Thyagarajan தியாகராஜன்
citizenof...@gmail.com எழுதியது:
 Hi,

count kanchilug members. :-)

 We need the a figurative constant. Please update this thread individually..


Sorry. we have more than 15 students and not every one have Internet
to reply in this thread.

ya, we can go to browsing center and reply to this mail.

But... its not possible now.

Fine, we have one more month (app), within that all kanchilug members
will reply to this mail thread.

Thanks.

 Thanks
 Thyagarajan Shanmugham
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] SMS Remainder Service to ilugc meet - Subscription - Started

2010-08-01 Thread Arulalan T
Dear ilugc Members,

Greetings.!.

I am sending One Day One Command [ODOC] via sms to 300 people over our
India.

Thanks for your subscriptions.

From this month onwards, i am ready to give sms service to ilugc people. :-)

i.e. I will send the sms about the monthly ilugc meet location, talks on
every month 2nd saturday morning and as well as before 3 days of the ilugc
meet.

Also will send the sms about other activities and events of ilugc.

Those who are all wish to subscribe this SMS reminder service for ilugc
meet,
please mail to me [ arulalant @ gmail . com ] with the subject ilugc sms
and write your name,mobile no in the body.

Thanks to all. :-)

-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com

One Day One Cmd via sms
http://1day1cmd.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [OT][Announcement] web3.0 mailing list

2010-08-01 Thread Arulalan T
Dear All,

Greetings .!.

Do you have awareness about web3.0 ?

The Semantic Web is a web of data. There is lots of data we all use
every day, and it is not part of the web.
I can see my bank statements on the web, and my photographs, and I can
see my appointments in a calendar.
But can I see my photos in a calendar to see what I was doing when I
took them? Can I see bank statement lines in a calendar?

Why not? Because we don't have a web of data. Because data is
controlled by applications, and each application keeps it to itself.

Humans are capable of using the Web to carry out tasks such as finding
the Irish word for directory, reserving a library book, and
searching for a low price for a DVD. However, one computer  cannot
accomplish all of these tasks without human direction,
because web pages are designed to be read by people, not machines.

The semantic web is a vision of information that is understandable by
computers, so computers can perform more of the tedious work
involved in finding, combining, and acting upon information on the web.

We are going to make web3.0 with the basics of semantic web.

Let us discuss about web3.0 in this mailing list.

Welcomes you to real data understandable by computer as data not as text !

- To join in the web3 mailing list, subscribe here
http://www.freelists.org/list/web3



What is the Semantic Web?

Where Web 2.0 is focused on people, the Semantic Web is focused on machines.
The Web requires a human operator, using computer systems to perform
the tasks required to find, search and aggregate its information.

It's impossible for a computer to do these tasks without human guidance
because Web pages are specifically designed for human readers.

The Semantic Web is a project that aims to change that by presenting
Web page data in such a way that it is understood by computers,
enabling machines to do the searching, aggregating and combining of
the Web's information — without a human operator. :-)

More info about semantic web :
http://en.wikipedia.org/wiki/Semantic_Web
http://www.w3.org/2001/sw/
http://www.webopedia.com/DidYouKnow/Internet/2007/Semantic_Web.asp

Thank you.




--
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com



-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Wammu/Gnokii compatible mobile phones

2010-07-29 Thread Arulalan T
Hai Harish,

2010/7/29 Harish S s.har...@gmail.com

 Thanks Girish and Raja.
 .
  You can get Huawei E1550 USB GSM modems for ~ Rs 2000 on ebay.in.

 Yeah. Gammu does say Huawei E1550 is supported. But looks like there
 are some trivial issues.[1]
 Anyways out of curiousity have you used this before ? Any glitches
 that i should be aware of before buying it ?
 I'm solely going to use it to send some SMS alerts using Gammu/Gnokii.


Now I am sending OneDayOneCmd via sms to all over the India using  Huawei
E1550 USB GSM modem by Gammu and as well as Gnokii.. .

Its working fine for me :-)

we need to edit /etc/gnokiirc and /etc/gammurc . Thats all.

My suggestion is use gnokii. Because gammu can send sms only upto 160
character.

But gnokii can send multi msg as our normal mobile. :-)

PS : While write script to send sms to multi numbers using gnokii, you need
to set some time delay. say for eg 3 to 4 seconds delay. otherwise it
collapse by sending and receiving msgs at the same time.




 [1] http://wammu.eu/phones/huawei/3750/
 -
 Harish
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] can any one tell the best shell scripting notes available in net ?

2010-07-27 Thread Arulalan T
Hi  Subhojit,

2010/7/27 subhojit ojha subhojit.o...@gmail.com

 
  can any one tell the best shell scripting notes available in net ?
 
 I have my own shell script slides, which I used when I was a trainer...It
 contains almost everything except gawk.

 It contains these topic


 *Introduction*
 -Shells



 [snip]



 *Regular Expressions*
 *Debugging Shell Scripts*
 *Sample Scripts*



 *you can meet me and get it, some of the small changes I need to make.*


If you will upload all your notes into slideshare.net as pdf means , any one
download it and use it.

Thanks.


 *Thanks  regards*

 *Subhojit Ojha*

 **
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [OT] Arduino Mailing List

2010-07-23 Thread Arulalan T
Dear All,

Greetings,

As we know there is no mailing list for arduino.

So we started a new mailing list for arduino in freelists.
Any one can join in this mailing list.

Here you can subscribe to arduino malling list.

http://www.freelists.org/list/arduino

Start your discussion on arduino hardware and arduino software in our
mailing list.
Share your experience on arduino projects.

Arduino official website http://arduino.cc

Welcome to arduino mailing list.

Spread this news to all over the world  :-)

Thanks!

--
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com

One Day One Cmd Sms Service
http://1day1cmd.wordpress.com

Not only software, hardware also open source
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Re: [OT] Arduino Mailing List

2010-07-23 Thread Arulalan T
2010/7/23 Arulalan T arulal...@gmail.com:
 Dear All,

 Greetings,

 As we know there is no mailing list for arduino.

Sorry. There is one mailing list already exist for arduino.

http://arduino.cc/mailman/listinfo/developers_arduino.cc

just now i came to know about this.

If you people wish, we will maintain this list for our Indian Arduino
User/Developer Group.

Thanks.


 So we started a new mailing list for arduino in freelists.
 Any one can join in this mailing list.

 Here you can subscribe to arduino malling list.

 http://www.freelists.org/list/arduino

 Start your discussion on arduino hardware and arduino software in our
 mailing list.
 Share your experience on arduino projects.

 Arduino official website http://arduino.cc

 Welcome to arduino mailing list.

 Spread this news to all over the world  :-)

 Thanks!

 --
 Regards,
 Arulalan.T

 Kanchi Linux User Group Rocks !
 http://kanchilug.wordpress.com

 My Experiments In Linux are here
 http://tuxcoder.wordpress.com

 One Day One Cmd Sms Service
 http://1day1cmd.wordpress.com

 Not only software, hardware also open source




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Reg : Python Conference India 2010

2010-07-17 Thread Arulalan T
Dear Friends,

Is there anybody interest to will give a talk about python in PyConf India 2010.

Here is the home page http://in.pycon.org/2010/ .

The conference will be conducted at the M S Ramaiah Institute of
Technology, Bangalore
 on 25th and 26th, September 2010.


Topics for presentations for PyCon India include but is not limited to,

* Core Python (including Python 3.x)
* Python standard library
* Other Python libraries and extensions
* Other Python implementations (such as PyPy, IronPython etc)
* Concurrency
* Databases
* Scientific Programming
* Network programming
* Game programming
* Education and Training
* Embedding/extending
* GUI programming
* Packaging Python Code
* System administration
* Business applications
* Documentation
* Software development tools
* Testing
* Web programming
* Mobile computing
* Open source Python projects
* More and more

Submit your talk details here http://in.pycon.org/2010/talks/submit

Important dates :
* Call for proposals opens: June 12, 2010
* Proposal submission deadline: July 31, 2010
* Proposal acceptance: August 15, 2010
* Final presentation upload to PyCon India website: August 31, 2010

We have to submit our proposal before this month 31 st.

Anybody from ilugc is willing to present there ?

To attend pyconf as visitor, we need to pay Rs.250.00 here
http://in.pycon.org/2010/register .

So let us be a talker  :-)

--
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Request for tamil lovers

2010-07-15 Thread Arulalan T
2010/7/15 Victor Johnson victor.li...@gmail.com:
 Hello Tamil Lovers,

 Please confirm here, on your acceptance of

 1. Providing English translation so that all can read.

 or

 2. adding [tamil] tag in
 your subject lines on all your tamil mails.
 so that some people can filter.

+1

 Eventhough you are doing good events for the community,
 you should hear from the community too.

 Thanks.

 --
 Regards,
 Victor
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Re: [kanchilug] Re: [Tip ]How to view the performance details of individual CPUs in the top command

2010-07-15 Thread Arulalan T
Dont send attachments to the mailing lists.

Give some url link to your image.

eg : you may post the same image to your blog/flickr/picasa/etc and
then you can give that image url.

-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [FYI] Gujarat to introduce Linux in schools

2010-07-11 Thread Arulalan T
Good news below.



From ToI Ahmedabad Edition 11/07/2010 Page 7



Gujarat to introduce Linux in schools

Rajiv Shah | TNN

Gandhinagar: The Gujarat government is all set to follow Kerala’s
Marxist-led Left-Democratic Front (LDF) government in IT education in
schools. Following Kerala schools, it has decided to use only Linux
operating system, the opensource free software, in the computers
installed in 3,650 schools.



Linux will also be installed in another state-run 2,750 schools, where
computers will be installed this year. Freely downloadable, Linux is
internationally regarded as alternative to Microsoft Windows.

“If the experiment in schools is successful, we will go ahead and do
it for computers in Sachivalaya, too,” a top IT aide to chief minister
Narendra Modi said, adding, “Installation of Microsoft Windows
software on each computer costs Rs 5,000. With Linux, we will save
huge sums.”

Though there was initial resistance to it in Gujarat’s top powerdom,
the big cost of maintaining massive Windows-based infrastructure
became the main reason for abandoning Windows solutions and moving to
Linux applications.

It is estimated that the state government will be saving close to Rs
100 crore by installing Linux in schools. Call it anti-MNC Marxist
bias, but in Kerala schools even mandatory IT tests are held in Linux.

Before opting for Linux, the state education department officials are
learnt to have held tough negotiations for installing Microsoft
Windows operating system. On an average, each school has 11 computers
and one LCD screen to give computer training to children.

“If it the Microsoft Windows costs Rs 5,000 in market, negotiations
helped us to bring down the price to Rs 3,000 per computers. But after
intense discussions involving IT experts, it was decided to do away
with Microsoft Windows and go for Linux,” the Modi aide said.

State education secretary Hasmukh Adhia told TOI that computer
teachers in government schools are still not fully accustomed to
Linux, but the state government has begun training them in batches.

The National Institute for Information Technology (NIIT) and Educamp
are carrying out training in phases. “It does not require more than
two days to teach computer teachers how to use Linux, as it is easy to
download and work on computers,” Adhia said.




--
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [FYI] FOSS School in Delhi

2010-07-09 Thread Arulalan T
Dear Friends,

Mr.Parin Sharma conducted FOSS workshop in school at Delhi.

Is there any school running under FOSS in Chennai or Tamil Nadu?

Shall we try to promote FOSS in  chennai schools ?

The following mail content is sent by Parin Sharma to iitdlug
regarding his experience on workshop in his school.

-- Forwarded message --
From: Parin Sharma parin.sha...@gmail.com
Date: 2010/7/9
Subject: [...@iitd:8406] Back to my Alma mate with FOSS!!
To: iitd...@googlegroups.com, poster...@lug-iitd.posterous.com


Recently on 30th June 2010, I got an opportunity to give back
something to my school, my Alma mate with FOSS !! Below is a small
story how things started and went

I had this thing in my mind for quite some time, schools are the
places where we are taught basic morals, etiquette, sharing things,
knowledge and other good things but unfortunately most of the Schools
in India teach Proprietary software like MS Windows, Office and other
Adobe stuff like Flash etc. so was the case with my school, DAV
CPS[1], Paschim Enclave, New Delhi. So I talked to Anand Wardhan sir,
one of the best teachers, I have met in my life!! Although, he is an
Economics teacher but still he understood my point when I told him
about FOSS Stuff and he immediately agreed for a workshop in School.
So it was 30th June, the day I was eagerly waiting for but was a bit
nervous too because it was for teachers!! OMG, now I had to present
something to teachers to who taught me some years back but I knew it
will be good!! So it was 11:45, and I started, first telling about
FOSS history and then its advantages, then SchoolOS[2] but since I had
just 1hr or so, I had to quickly jump to the Demo Educational
FOSSI started with Maths S/w like Kig then showed Chemistry tools
and I tried to show almost every subject related FOSS but as always I
fell short of time and had to wind up my presentation showing FET and
Dia Diagram Editor, but as a start, it was enough, the teachers were
all smiling, blessing me!! It was a wonderful experience many
teacher in particular my chem teacher asked me to install BKChem and
other chem S/w asap because she found them really helpful! Overall it
was awesome but this is not it, I want things to get implemented asap,
want students and teachers to use FOSS!! Looking forward to it...All I
wanna tell everyone reading this, seriously its a beautiful experience
doing something for your school, your people!! Try it this summer go
back to your previous schools and tell them about Freedom that you get
when you use FOSS, so that the next gen coming can live in a pure Free
World!

[1] My School's Website - http://davschoolpemn.org

[2] SchoolOS - http://schoolos.org



You can also view/download my presentation from:
http://www.slideshare.net/parinsharma/fos-sintro-presdav

Original Post at http://bit.ly/ble0wH

--
Parin Sharma
http://twitter.com/FOSSmaniac

--
l...@iitd - http://tinyurl.com/ycueutm



--
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [FYI] Invisible Mouse - Next Invention From Sixth Sense

2010-07-06 Thread Arulalan T
Dear All,

FYI

From Sixth Sense Inventor, we no need mouse to operate computer. He invented
invisible mouse :-)

http://www.indianweb2.com/2010/07/inivisible-computer-mouse-yet-another-by-pranav-mistry/


-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Re: [FYI] Invisible Mouse - Next Invention From Sixth Sense

2010-07-06 Thread Arulalan T
2010/7/6 Arulalan T arulal...@gmail.com


 Dear All,

 FYI

 From Sixth Sense Inventor, we no need mouse to operate computer. He
 invented invisible mouse :-)


 http://www.indianweb2.com/2010/07/inivisible-computer-mouse-yet-another-by-pranav-mistry/



I dont know ,will he release his inventions under open source license ?

Let us see !

 --
 Regards,
 Arulalan.T

 Kanchi Linux User Group Rocks !
 http://kanchilug.wordpress.com

 My Experiments In Linux are here
 http://tuxcoder.wordpress.com




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] June Month ChennaiPy Meeting Schedule

2010-06-25 Thread Arulalan T
Dear All,

Greetings !

Tomorrow [26.06.2010] ChennaiPy Meeting Schedule :


1)

Topic :  How To Create Deb File Format From Python Application File

Talker: Mr.Rajkumar , KanchiLug Member

Duration : 30 min

Ref Link : 
http://showmedo.com/videotutorials/video?name=linuxJensMakingDebfromSeriesID=37

2)

Topic :  Basic String Handlings

Talker : Mr.Selvamani, KanchiLug Member

Duration : 20 min

3)

Topic :  How to Stack over [horizontally/vertically] merge the SVG
files via Python code

Talker : Mr.Arulalan,  KanchiLug Member

Duration : 15 min

4)

Topic : Basic List Handling

Talker : Mr.Suresh,  KanchiLug Member

Duration : 20 min

Any volunteers may come forward to take session , and fill up your topics . . .

5)

Topic :

Talker :


We welcome to chennaipy meeting those who are all newbie to python ! ;-)


Place :
AU-KBC Block,
Ground Floor,
MIT, Chrompet, Chennai.

Time :
3pm to 5 pm

Date:
26.06.2010 Saturday



-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Re: June Month ChennaiPy Meeting Schedule

2010-06-25 Thread Arulalan T
2010/6/25 Arulalan T arulal...@gmail.com:
 Dear All,

 Greetings !

 Tomorrow [26.06.2010] ChennaiPy Meeting Schedule :


 1)

 Topic :  How To Create Deb File Format From Python Application File

 Talker: Mr.Rajkumar , KanchiLug Member

 Duration : 30 min

 Ref Link : 
 http://showmedo.com/videotutorials/video?name=linuxJensMakingDebfromSeriesID=37

 2)

 Topic :  Basic String Handlings

 Talker : Mr.Selvamani, KanchiLug Member

 Duration : 20 min

 3)

 Topic :  How to Stack over [horizontally/vertically] merge the SVG
 files via Python code

 Talker : Mr.Arulalan,  KanchiLug Member

 Duration : 15 min

 4)

 Topic : Basic List Handling

 Talker : Mr.Suresh,  KanchiLug Member

 Duration : 20 min

 Any volunteers may come forward to take session , and fill up your topics . . 
 .

 5)

 Topic :

 Talker :


 We welcome to chennaipy meeting those who are all newbie to python ! ;-)

 
 Place :
 AU-KBC Block,
 Ground Floor,
 MIT, Chrompet, Chennai.

 Time :
 3pm to 5 pm

 Date:
 26.06.2010 Saturday
 


Note : Location is changed


place :

Opposite to Production Department  WiFi tower,
Grass Ground,
MIT, Chrompet, Chennai.
=


Due to some political problem in NRC-FOSS, we can not get the place in
AU-KBC Block for tomorrow.

We have to make clear that ChennaiPy is not at all depends on NRC-FOSS.

From next month onwards, we can conduct chennaipy meeting in MIT
Seminar Hall with projector.

I got the permission with the help of MIT-FOSS Club.

So tomorrow we can not use projector.

Attendees please bring your laptop [ if possible ].
we have power supply for tomorrow meeting.

you may find the above location easily by asking any one inside MIT.

:-)


sorry for cross posting !



-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] One Day One Command - via - sms

2010-06-24 Thread Arulalan T
Dear Lug Members,

From kanchilug we started One Day One Command via sms service.

Right now we sending OneDayOneCommand (ODOC) to 100 kanchilug members.

We put the National Booster pack for sms.

If you want to receive this ODOC sms and if you are in India means,
send me your mobile number to my
mail id (arulal...@gmail.com) or sms your mobile no to my no (9994332225).


Here I am posting the ODOC.

http://1day1cmd.wordpress.com/

Here you can follow the ODOC

https://twitter.com/1day1cmd



Thanks  Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Promotion of FOSS

2010-06-11 Thread Arulalan T
2010/6/11 chidambaresan sakthi chidambasak...@gmail.com

 Dear Luggies,


Dear Sakthi,


 I am belongs to Kovilpatti,a part of tuticorin district.here no such
 awareness on FOSS and even the usage of computers to many peoples.To
 eradicate such issues and increase the e-literate peoples in our area,we
 start working with a foundation called Sakthi FOSS Foundation.Our Working
 plan to promote Computer Knowledge and FOSS among School Students,if we
 cultivate in earlier buddies means they grown up with that passion,thats
 what we think.please support us and give suggestion to improve the
 activities.keep visit us at www.sakthifossfoundation.blogspot.com and join
 with us in mailing list http://groups.google.co.in/group/*
 sakthifossfoundation*http://groups.google.co.in/group/sakthifossfoundation?hl=en
 .

Great start. My wishes.

My suggestion is , why cant you start the Kovilpatti FOSS Club or
Kovilpatti Linux User Group instead of Sakthi FOSS Foundation.

Because Kovilpatti is public to all, the name is not for an
individual. But Sakthi is not to public. The name is for an individual
person,
not to public.

FOSS is for public, not for an individual only.

If you will start Kovilpatti FOSS Club or Kovilpatti Linux User Group
, then students/public will join with you to promote FOSS in
kovilpatti.
You give admin or writter permission to your city foss club bog .

So that, in future kovilpatti students will maintain / update the blog.

Think about it. or may we know, do you have any special reason for
created  www.sakthifossfoundation.blogspot.com  instead of
www.kovilpattifossclub.blogspot.com , etc.,

This is my openion.

Discuss with your city students/people and then confirm the name.

We will support to promote the FOSS in your city.

Let us rock! :-)


 --
 Regards...

 Chidambaresan
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc



--
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Promotion of FOSS

2010-06-11 Thread Arulalan T
2010/6/11 chidambaresan sakthi chidambasak...@gmail.com:
 For your information friend Sakthi is not my name and it belongs to our team
 which consists of 10 members and we named to tis group Sakthi FOSS
 Foundation,Here Sakthi refers the Power.i will discuss with my friends in
 further and if they oppose this change this name.keep support us and suggest
 already running methodology in promote foss to school students.

Nice name. But common people may, sakthi foss foundation is name of
some individual person think like me.

If you want this name as blog, the put some quotes on blog like power of FOSS.

Form a team. ( Already you have team).

Now form a students team. Go to some college and conduct LDD.
Then surely you will get few students as volunteers.

With the help of the college students , then go to schools and promote FOSS.

Update your groupactivities in blog and mail to your group mailing list.

Keep rock !


 --
 Regards...

 Chidambaresan
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] conducted-programming-bootcamp-at-kanchilug

2010-06-07 Thread Arulalan T
Dear Frineds,

Greetings.

Some days ago, In KanchiLUG weekly meet, Shrinivasan.T bought a
thought of running a camp on open source programming in kanchipuram.

As usual we all of us said, Why not ?.

We formed Teams.
Topics and Persons were assigned by ourself.
Searched for Place – Got it at Sakthi ITI, Kanchipuram
Prepared and Followed up each speaker for his self learn and practice
for bootcamp.
Printed Pamphlet for the bootcamp [1] and spread via newspapers.
Got nice registrations. Planned for 40. But got 25. Fair.
Searched for Projector. Thyagu, Mangal Sundar(IIT), Kannan(IIT)
sponsored a projector [2].

we conducted bootcamp for 6 Days, Different speakers, Different Topics.

Linux Intro
Html, Javascript,CSS
PHP
Ruby
Python
MySQL, Postgresql
SVN


Here are the day reports.
Day-1  http://kanchilug.wordpress.com/2010/05/31/boot-camp-1-day-1/
Day-2  http://kanchilug.wordpress.com/2010/06/01/boot-camp-1-day-2/
Day-3  http://kanchilug.wordpress.com/2010/06/02/boot-camp-1-day-3/
Day-4  http://kanchilug.wordpress.com/2010/06/03/boot-camp-1-day-4/
Day-5  http://kanchilug.wordpress.com/2010/06/04/boot-camp-1-day-5/
Day-6  http://kanchilug.wordpress.com/2010/06/05/boot-camp-1-day-6/

This is our first boot camp.
There are so many upcoming activities in KanchiLUG and this is just a start.

we learned a lot from this bootcamp-1 as speakers and organizers.

Proud to be a part of the wonderful team.


[1] http://kanchilug.wordpress.com/2010/05/14/kanchilug-bootcamp-1/
[2] 
http://kanchilug.wordpress.com/2010/05/18/got-projector-by-sponsor-to-conduct-bootcamp-1/

--
Regards,
Arulalan.T

Kanchi Linux User Group Rocks !
http://kanchilug.wordpress.com

My Experiments In Linux are here
http://tuxcoder.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] (Shankari.ttf) Tamil Unicode Font with Tamil Numerals

2010-05-13 Thread Arulalan T
2010/5/13 suji A suji87@gmail.com

 Hi,
 New Unicode Tamil font was created, it was drawn by Shankari (Viscom
 Student) , Created by me and Malathi. Now you can get this font from this
 bazaar branch
 bzr branch lp:~tamilfontsteam/freetamilfonts/tamil-fonts


 http://bazaar.launchpad.net/~tamilfontsteam/freetamilfonts/tamil-fonts/download/suji87.msc%40gmail.com-20100513050351-0qmttrawpyygik0x/shankari.ttf-20100513050320-v2circcmufuaqik4-1/Shankari.ttfhttp://bazaar.launchpad.net/%7Etamilfontsteam/freetamilfonts/tamil-fonts/download/suji87.msc%40gmail.com-20100513050351-0qmttrawpyygik0x/shankari.ttf-20100513050320-v2circcmufuaqik4-1/Shankari.ttf

 Waiting for your suggestions...


Great, Congrats. .


   We  Proud of you people.

Keep Rocking ! .

Note :

These letters are typed by Shankari.ttf font.



 --
 Regards,
 Suji A.

 http://suji25.wordpress.com/
 http://innovativegals.wordpress.com/
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
நன்றி ,
அருளாளன் . த

Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com
http://tuxcoder.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Need Help :To take printout in Hp Plotter which is connected in windows from ubuntu via samba

2010-05-11 Thread Arulalan T
Dear All,

Greetings.

I am doing one project for Indian Meteorological Department Chennai [1]
based on my college project [2].

The project is Generating Change Chart [3] and the project output is ready
to implement.
We need to take printout the output image.

I installed ubuntu lucid 10.04 and CDAT in imdc machine to implement my
project.

They are taking many image printouts everyday from windows xp machine which
is connected to HP Plotter via USB port.
HP Plotter Model is HpDesignJet500ps. [4]  [5]

I connected the ubuntu machine and windows machine via local network. The
plotter is shared from windows to local network.
I installed samba and cups in ubuntu. So that i can found the network
printer via windows samba.

If i give the print from ubuntu, it says printing process is sent and
completed the job successfully.
But the plotter does not printing the image. i.e the windows machine does
not forward the printing job to HpPlotter .

I stopped all firewalls in windows machine.

How to approach this issue.

[1] http://www.imdchennai.gov.in/
[2]
http://tuxworld.wordpress.com/2010/03/26/my-first-talk-in-ilugc-my-project-demo-on-isothermal/
[3] http://tuxworld.wordpress.com/2010/04/09/change-chart-map/
[4]
http://img.alibaba.com/photo/108222314/Hp_designjet_500_plotter_C7770.jpg
[5]
http://en.cnele.com/upload/images/0/149/29899/product/4/HP-DesignJet-500-42.jpg





-- 
நன்றி ,
அருளாளன் . த

Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com
http://tuxcoder.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Summer Workshop

2010-04-23 Thread Arulalan T
2010/4/23 Bharathi Subramanian bharathi.l...@gmail.com

 Hi All,

 Only 4 volunteers are willing to take this summer workshop. We have
 finalise the list by this week end. So anybody else is interested in
 this, please include your name and topic.

 Bye :)
 --
 Bharathi Subramanian
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc



shall i take Quickly ?. Because you didnt mentioned this topic in wiki
page.


-- 
நன்றி ,
அருளாளன் . த

Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT] students

2010-03-21 Thread Arulalan T
Hi

2010/3/21 Deepan Chakravarthy codesheph...@gmail.com

 Hi,

 Does anyone know students from Anna university, MIT, VIT, SSN, PSG,
 CIT and other colleges in and around Chennai? I would like to reach
 out to open source experts in these colleges. Please reply me
 privately  with emails/phone numbers of students from these colleges.


If you say reason , then students/people will get more interest and may mail
to  you privately.




-- 
நன்றி ,
அருளாளன் . த

Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Carte Blanche - Computer Society of MIT, Anna University

2010-02-27 Thread Arulalan T
2010/2/28 Arun SAG saga...@gmail.com

 On Sun, Feb 28, 2010 at 12:07 AM, Akilan R akila...@gmail.com wrote:

 
  For those of you who missed the event, we will be screening the recorded
  video again tomorrow(28-feb-20010) morning.
 
 
 If possible please upload the video.

 --

+1






-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Edited and Corrected India map in cdat world map with the source data and documentation here

2010-02-18 Thread Arulalan T
Dear kg,

2010/2/18 Kenneth Gonsalves law...@thenilgiris.com

 On Thursday 18 Feb 2010 10:34:07 am Arulalan T wrote:
  Here i documented [1] on how to edit and correct world map in cdat .
 cdat-
  climate data analysis tool [2].
 
  we are doing project on Contour analysis and Visualization [3].
 
  While doing contour  and isolines plotting on India map in cdat , my
 guide
  Mr.Thyagarajan Shanmugham and myself felt that  our Indian Political Map
  wrongly depicted in CDAT as shown in the blog.
 

 congratulations - can you help me out by editing this file to show the
 proper
 Indian boundaries:
  http://tile.openstreetmap.org/world_boundaries-spherical.tgz

Thank you sir. since i am occupied from my college project , i will get back
you once i have done it.



 --
 regards
 kg
 http://lawgon.livejournal.com
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Edited and Corrected India map in cdat world map with the source data and documentation here

2010-02-17 Thread Arulalan T
Hi to all,

Here i documented [1] on how to edit and correct world map in cdat . cdat-
climate data analysis tool [2].

we are doing project on Contour analysis and Visualization [3].

While doing contour  and isolines plotting on India map in cdat , my guide
Mr.Thyagarajan Shanmugham and myself felt that  our Indian Political Map
wrongly depicted in CDAT as shown in the blog.

Our first step in the long time goal :
Redrawing correct political map of india -
1) Correcting the PoK part , which belongs to India
2) Correcting the part of the land which is occupied by the Chinese in the
state of jammu and kashmir

While asking help from Mr.Charles Doutriaux [ CDAT Developer ] regarding
edit map in cdat, he gave the source data of cdat world map.
Using that source, we successfully corrected Indian political map in cdat.



[1]
http://tuxworld.wordpress.com/2010/02/13/how-to-edit-world-map-in-cdat-documentation/

[2] http://www2-pcmdi.llnl.gov/cdat

[3] http://tuxworld.wordpress.com/2010/01/15/my-project/




-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] recently i run a php programme in ubuntu it saying error

2010-02-06 Thread Arulalan T
2010/2/6 kiran kumar kiranprogrammer2...@gmail.com

 recently i run a php programme in ubuntu it saying error


 it showing this page .is there any command to restart apache server in
 ubuntu like this

 service httpd restart 

 but i think this command not worked in ubuntu ...to restart apache and
 mysql

 this is the error i getting whenever sometimes i run a php programme
 please
 solve this
 Not Found

 The requested URL /test.php was not found on this server.
 --
 Apache/2.2.12 (Ubuntu) Server at localhost Port 80



if you have done in xampp and xampp is installed on /opt then check
/opt/xampp/htdocs/test.php exists..

 else if you have done a default ubuntu php server installation check the
test.php exists in /var/www

or

check the permission to test.php file

check the apache server pinging with php or not ?


 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] [commercial] [NO PROFIT] FOSS promotional calendar 2010 is ready for sale

2010-01-20 Thread Arulalan T
Dear Luggies,


As discussed earlier, FOSS promotional calendar 2010 is ready for sale .
Interested members reply me off-line ( tarulalan [at] gmail.com ) with your
name , address , phone/mobile number, specify the mode of delivery and
number of copies.

Currently we offer mode of delivery through VPP and cash-on-delivery.

This is done purely on NO PROFIT basis by Kanchi Linux User Group.

The cost of the calendar is Rs.120 + transit charges.

Web Link :
http://picasaweb.google.com/kanchilug/GnuLinuxCalander2010FinalPrinted#


நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] when will FOSS meetings held for beginners and where ?

2010-01-16 Thread Arulalan T
2010/1/16 kiran kumar kiranprogrammer2...@gmail.com

 hi to all


 can any one tell what is FOSS


FOSS - Free/Open Source Software


 when it wil be held for beginners to learn FOSS

 can any one tell the FOSS for beginners to learn where it wil be conducted
 in chennai  ?

 There are many commercial institute available in chennai , to learn more
things as a regular class . Pl search in google.

Moreover my suggestion is , No need any class to learn about linux to
newbies .

Just install any kind of gnu/linux os in your system and start to work in
it.

surely u will be learn by urself , within few weeks !




 i want to say good bye to microsoft ! and i wish to welcome to linux as a
 good platform to my system

 is it possible ?

 yes .  We are Welcoming You to Gnu/Linux world with immense pleasure .


 please suggest me


Every second Saturday , ilguc conducting Lug meeting in IIT  . Its open to
all .

Welcome to Freedom World !



-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Installing Ubuntu 9.10 along with Fedora Core 11, grub failed to boot FC 11

2010-01-12 Thread Arulalan T
 Any lead or the pointers to fix the issue are highly appreciated.






hi,

grub2 is a powerful loader file.

here is example grub2-update documents .

http://tuxworld.wordpress.com/2009/12/26/grub2-in-ubuntu-9-10/

this blog may help to u .

http://sankar87.wordpress.com/2009/12/16/reinstalling-grub-2-from-livecd/

try the above way also .


-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [Hardware] Anyone know where I can get a LIRC-compatible IR receiver and remote?

2010-01-11 Thread Arulalan T
hi


  Does anyone know where I can get one of those little serial IR
  receivers and perhaps a corresponding remote? I'm not looking for any
  high-end stuff, just a receiver and remote which both work with LIRC.
 


**

Link : http://csecyborg.wordpress.com/category/lirc/

this link will may help you to setup LIRC.

this blog is uploaded by kamban engg college students, thiruvannamalai for
there Expo '09 event.








-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] LUG meet

2010-01-10 Thread Arulalan T

   I do not know if they entered the dates manually or wrote a
  script to generate them.
 


No. we didnt used any script to generate the dates.

We typed the dates as simple text.(manually)


  Any idea how they aligned them in place?



In inkscape , we have Grid option to view alignments.

Go to inkscape  - view  - enable/disable Grid

or

we can draw our own alignments using Guide , manually.



 rulers or something? [dumb question 1] .



 Did they mention anything about how
 to draw polygons? [dumb question 2 ]



praveen didnt mentioned anything about polygons .

here are the some useful links about how to draw polygons in inkscape.

http://www.inkscape.org/doc/shapes/tutorial-shapes.html


http://video.google.com/videosearch?q=polygons+in+inkscapeoe=utf-8rls=com.ubuntu:en-US:officialclient=firefox-aum=1ie=UTF-8ei=nJ9KS9ulLIrk7APcjpGKAgsa=Xoi=video_result_groupct=titleresnum=4ved=0CCAQqwQwAw#





-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] need help : how to find whether the particular packages installed or not via terminal command

2010-01-07 Thread Arulalan T
Hi friends,


i have one doubt.

how can we find , whether one package is installed in our system or
not via terminal.

in synaptic , we can see the color difference between installed
packages and non-installed packages.

like wise , how can we find the difference b/w installed and non-installed
package using command ?

In terminal , [for eg]

$ apt-cache search tuxpaint

It will give the package details about tuxpaint

$ apt-get install tuxpaint

It will give result ,

if installed , - the package tuxpaint is already installed and newest version.

if not installed - the package size is 29MB.
...
bla bla bla bbblllabba .
...

Need to get 28.9MB of archives.
After this operation, 49.6MB of additional disk space will be used.
Do you want to continue [Y/n]?

so my question is , the alternate command to find out the particular
package is installed or not , via terminal .

i searched in net , but cant get clearly .


any one can suggest me . thanks in advance !

--




-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] need help : how to find whether the particular packages installed or not via terminal command

2010-01-07 Thread Arulalan T

 dpkg -l | grep pkg name  ?


simple and nice command .
it gives detailed about only installed packages.
for non-installed package , it will return nothing.

 Alternately
 aptitude search package name
 If the first column is 'i', it means the package is installed.
 __

it gives very elaborate output for both installed and non-installed packages.



both commands are powerful.

thanks to all. ! .



-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Gnu/Linux Calender 2010

2009-12-30 Thread Arulalan T
 Image Link:

 http://picasaweb.google.com/kanchilug/GnuLinuxCalender2010#


-- 


here we posted the images as pdf .

Link :

http://www.slideshare.net/kanchilug/gnulinux-calendar-2010-v-10




நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Solution : How can we update the package lists install packages in newly installed [ubuntu os] system without Internet and Repository DVDs

2009-12-26 Thread Arulalan T
problem :


My friends having system which is installed ubuntu 9.10 . But they
dont have Internet connection to update package lists and can't
install any applications.

But I am having Internet connection and I installed many essential
packages in my system.

How can we transfer the archives (i.e. deb files ) and as well as
packages lists ( i.e. Index list in Synaptic Package Manager ) to
newly installed system , os as ubuntu ?

Solution :
--

Myself and my brother Pasupathy were tried to solve this problem and
finally we achieved too.

Just do the following simple steps .

1) Install ubuntu in one system say   system A  and update the
system via Internet . Now the index list of synaptic package manager
having 28,878 files [ in ubuntu 9.10 ].

2) Install the essential applications and softwares. for eg :
ubuntu-restricted-extras , vlc , mplayer ,
compizconfig-settings-manager , etc.,


Take Backup : part 1
  ---


3) copy the package lists and its information to show in synaptic ,
from the updated system by the following command

$ sudo cp -r /var/lib/apt/lists  /home/[user name]/backup/



4) copy the package lists in binary format

$ sudo cp /var/cache/apt/pkgcache.bin  /home/[user name]/backup/

$ sudo cp /var/cache/apt/srcpkgcache.bin  /home/[user name]/backup/


5)  Now we are going to backup the archives directory. It contains
.deb files.  While installing any application from net , the
downloading files are storing in this directory only (as .deb)

$ sudo cp -r /var/cache/apt/archives  /home/[user name]/backup/



Copy this backup folder into Pen drive.




Thats all ! we backuped all our resource from the system which is
updated via Internet also installed many applications.

part 2: Make update
--

Update  Install the applications in freshly installed [ubuntu] system
( sys  system B  ) without Internet and Repository Dvds.


Open synaptic package manager and note the no of index package lists .
( approximately 1300)


Plug the pen drive into this system and copy the backup direcory
into that home directory.

Now


$ cd backup

$ ls

archives  lists  pkgcache.bin   srcpkgcache.bin


$ sudo cp -r lists   /var/lib/apt/

$ sudo cp pkgcache.bin  /var/cache/apt/

$ sudo cp srcpkgcache.bin  /var/cache/apt/

$ sudo cp -r archives   /var/cache/apt/



--

Thats all.



Now go and open the synaptic package manager .   Wow ! Oops !   Now
the no of packages lists in that is 28,878 .

Now u can install , whatever u backuped installed applications from
the  system A  , system B  also can install those packages without
download from the internet or repository Dvds .


Now try to install ubuntu-restricted-extras , vlc , mplayer ,
compizconfig-settings-manager .  With 1 min , it should be installed.

The only  , we can not install the application beyond the backuped
source from system A without Internet .thing


I hope , this may helps to ubuntu admin .

Now in kanchilug , we are installing the packages in various systems
by this way only .   It works well !











--
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] ubuntu 9.10 karmin koala release party in kanchipuram

2009-11-25 Thread Arulalan T
http://kanchilug.wordpress.com/2009/11/25/klug-invitation-for-ubuntu-9-10-karamic-kola-release-party/
Hi Lug Friends,

This upcoming sunday 29th nov , we are going to conduct Ubuntu 9.10
karmic koala release party.

venue: PTVS School ( English Medium ), Annamalayar Play Ground ,
Pokkadai Chatiram , kanchipuram.

Time : 3pm to 5pm

we invite all of u with immense pleasure and we expecting ur presence
on  this party.

plan :

we are going to invite many non-ubuntu users as visitors to this party.

On that day , few experts will be  share their experience in ubuntu
with freshers .

and we planned to project the ubuntu compiz effects and installation
and more features by using LCD Projector.

and then questioning , answering session.

finally we will provide some snacks  tea for refreshment.

Poster :

we are spreading the awareness of ubuntu 9.10 release party in
kanchipuram by the poster.

Link :
http://kanchilug.wordpress.com/2009/11/25/klug-invitation-for-ubuntu-9-10-karmic-koala-release-party/http://kanchilug.wordpress.com/2009/11/25/klug-invitation-for-ubuntu-9-10-karamic-kola-release-party/


organised by kanchilug.




--



-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !





-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
unsubscribe password address
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] How to make a dual boot the Ubuntu within windows7?

2009-11-20 Thread Arulalan T
 please guide me to install with clear steps.

 I am waiting for your replies.


Hi,

this pdf link will help u..

http://www.slideshare.net/kanchilug/how-to-install-ubuntu-as-dual

enjoy with ubuntu.


-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
unsubscribe password address
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Conducted FOSS Stalls in SCSVMV University , Kanchipuram

2009-10-13 Thread Arulalan T
Hi to all ,



Last week 8th and 9th , SCSVMV University ( sankara university ) , Enathur,
Kanchipuram , B.E ( CSE ) Students were conducted Symposium namely called
BIOS '09 .

In that Symposium , From Kanchi Lug members were put ten FOSS stalls to make
awareness about Linux and Freedom  towards students.


On 9th , Mr.Ramadhas (amachu) came as guest and gave a wonderful talk about
FOSS to students and he was judge for technical debate ( Open Source Vs
Proparitary Software ).

Thanks to him.

To view more about stalls pl visit our blog :
http://kanchilug.wordpress.com/2009/10/11/klug-foss-stalls-in-bios-09-symposiumscsvmv-university/

To view photos :
http://picasaweb.google.com/kanchilug/FOSSStallsInBIOS09SCSVMV#


Thanks to all .




-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
unsubscribe password address
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] SFD T-Shirt Designs here

2009-09-04 Thread Arulalan T
Hai Friends,

I designed T-Shirt Design for SFD.

This is back side of t-shirt design only.  ( used by Inkscape )

Link :  
http://tuxworld.wordpress.com/2009/09/04/sfd-t-shirt-back-side-design-models/

And i used green color as t-shirt color, as some one told in previous
thread.

Tell all of your suggestions , and ur ideas.


share ur ides  to make front - side design of t-shirt.  ( front side should
have some LOGO s or Simple images )


This design not only for SFD.

All Open Source People can wear this model t-shirt on any day.


-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
unsubscribe password address
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Re: [SFD09] Volunteers Meet

2009-09-01 Thread Arulalan T
20. Version control




sir,

we can take Sub-Version (SVN) also with live demo.

Link : http://www.slideshare.net/kanchilug/sub-version-intro

Thanks to permit us (from kanchilug  saveetha engg coll) to present on SFD.





-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
unsubscribe password address
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [SFD09] Volunteers

2009-08-24 Thread Arulalan T
Hi sir,

we are interested to present on SFD  from Kanchi Lug



And more than 20 students will come to visit as well as to show demo on
various topics !





Topics :-

   a. Ubuntu Installation

link :http://www.slideshare.net/kanchilug/how-to-install-ubuntu-as-dual

   b. OpenOffice.word and Spread Sheet, and Impress

links :
http://www.slideshare.net/kanchilug/how-to-use-open-office-wordprocessor

and  
http://www.slideshare.net/kanchilug/how-to-use-open-office-impress-1491438

and
 http://www.slideshare.net/kanchilug/openofficespreadsheet
http://www.slideshare.net/kanchilug/openofficespreadsheet



   c. Gimp  Inkscape

   d. Ruby , Php , Glade-3 (Languages)

  links:  http://www.slideshare.net/arulalan/arulalan-ruby-an-intro

and   http://www.slideshare.net/kanchilug/php-an-intro-1


  e. History Of Gnu

  link  : http://www.slideshare.net/arulalan/foss-history-1479471

   f. Why Foss

 link :   http://goog_1249909993098/
http://www.slideshare.net/kanchilug/open-source-intro-1786723

   g. and More Graphics in Ubuntu ( Advanced Desktop Effects ) ( KDE  Gnome
)



We will bring few laptops and if u will b provide sufficient systems means ,
we can do all these things .

thanks !

Give us suggestion , . . ,


-- 






-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
unsubscribe password address
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] An Intro About Linux to Krishna Arts Science College Students as Guest Lecture

2009-08-12 Thread Arulalan T
Date : 12 /08 /09

*Location :  Krishna Arts and Science College , Kanchipuram .*

Hi to all,
*
Today morning 9.00 am* *Raj kumar,Logesh , Loganathan and I ( Arulalan ) (
From
Kanchi LUG) were went to Krishna Arts  sceince College , Kanchipuram  to
give an intro about FOSS and GNU/Linux as Guest Lecture – *second time.

*Session -I : *

We brought our two laptops . They provided Lcd Projector. Nearly 10 am we
arranged Lcd and laptop.

Above 50 (fifty) Students were came to their lab. They are final year B.Sc
(CS)  Students.

I started to talk about History of Gnu/Linux . we talked with students in
Tamil itself .

Link :  http://www.slideshare.net/arulalan/foss-history-1479471

Initially I started to talk about  Operating System, Proprietary Softwares,
and FOSS , etc.,

Students too interacted with us , nicely !


And we showed Ubuntu OS and its 3D  Desktop animations and effects to them.


we played one Linux Video about it graphics !  Also we played ” Agile Arena
” 3D Game !


This is first time , they were seen Linux GUI . And all of them are wonder
by seeing the GUI of Linux.


And again using PDF , Logesh and Raj kumar  were  discussed with those
students about ” why we need Open Source ” .

Link :http://www.slideshare.net/kanchilug/open-source-intro-1786723

Students are enjoyed !


and I explained many thing about Viruses and Security and Open Source
Languages ,  Jobs .


and using PDF we showed them , ” How to install ubuntu as dual boot ” . we
can not show them , ubuntu Live cd because of insufficient time .

Link  :
http://www.slideshare.net/kanchilug/how-to-install-ubuntu-as-dual


http://www.slideshare.net/kanchilug/how-to-install-ubuntu-as-dual

so upto 12.45 pm we were took an introduction session about Gnu/Linuix  to
those students…


*Session -II :
*
Afternoon 1 pm to 3.15 pm , again we repeated the same lecture to final year
BCA and M.Sc (IT) Students nearly 70 students .


Thanks to those students ,  staffs and HODs  to support to us to make this
talk as memorable one, once again ! ! !


we hope, surely this guest lecture gave some basic idea about FOSS and Linux
to those students .


And finally we told them about our *Kanchi Linux User Group ( KLUG ) and its
activities* !

 [image: Myself (Arulalan.T)]

Myself (Arulalan.T)

 [image: Loganathan , Raj  Myself]

Loganathan , Raj  Myself
[image: students]

students
[image: students]

students
[image: HOD Thanks To Us !]

HOD Thanks To Us !


all these snaps are taken by Logesh !

Today Logesh and Raj kumar were  talked more and explained nicely !

We Rocks ! ! !


Actually this is second time guest lecture to this same college ,

On last month end , we gave the same intro about FOSS to their juniors .
Visit 
herehttp://kanchilug.wordpress.com/2009/07/29/an-intro-about-linux-to-krishna-arts-science-college-students-as-guest-lecture/

Visit to know about more activities of Kanchi LUG :
http://kanchilug.wordpress.com





--

-- 

-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
unsubscribe password address
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] plan for software freedom day celebrations

2009-08-10 Thread Arulalan T
 d.We will call interested colleges to have stall - max.2 per college.





Hi sir,

we are interested to present on SFD and also we ll make stall .

we 3 people from saveetha engg college, MCA dept


And from Kanchi Linux User Group , more than 20 students will come to visit
as well as to show demo on various topics !



Topics :-

   a. Ubuntu Installation

link :http://www.slideshare.net/kanchilug/how-to-install-ubuntu-as-dual

   b. OpenOffice.word and Spread Sheet, and Impress

links :
http://www.slideshare.net/kanchilug/how-to-use-open-office-wordprocessor

and  
http://www.slideshare.net/kanchilug/how-to-use-open-office-impress-1491438


   c. Gimp  Inkscape

   d. Ruby , Php , Glade-3 (Languages)

  links:  http://www.slideshare.net/arulalan/arulalan-ruby-an-intro

and   http://www.slideshare.net/kanchilug/php-an-intro-1


  e. History Of Gnu

  link  : http://www.slideshare.net/arulalan/foss-history-1479471

   f. Why Foss

 link :   goog_1249909993098
http://www.slideshare.net/kanchilug/open-source-intro-1786723

   g. and More Graphics in Ubuntu ( Advanced Desktop Effects ) ( KDE  Gnome
)



We will bring 2 laptops and if u will b provide sufficient systems means ,
we can do all these things .

thanks !

Give us suggestion , . . ,


-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
unsubscribe password address
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Ubunut 9.04 booting problem

2009-07-31 Thread Arulalan T
hi Mahalingam

http://www.slideshare.net/kanchilug/how-to-install-ubuntu-as-dual

from this link u can download pdf for how to install ubuntu as dual boot (
with other os as windows )..

i hope, already you know very well how to install ubuntu..

but i have confused little bit from your side .

 no need to partition separately for  /usr , /boot . .

i think so...

create swap area as logical and allocate space for root ( / ) as primary .

thats all.   for more example with screen shots , see above slideshare .

surely it will boot fine.

enjoy with ubuntu. !





2009/7/31 Mahalingam Subramaniam s...@ccmb.res.in

 Hello all
 DELL INSPIRON 1525 NOTEBOOK
 Attempted to have UBUNTU 9.04 (iso image downloaded for i386 from Ubuntu's
 repositiory) Dual booting along with Win. Vista SP2.  Installation went on
 manually choosing pratition for each \ \swap, \boot \home \usr etc. wihout
 any error messages. Whilst booting through Ubuntu, the logo appears,
 authentication follows but only to be remain with no activity
 further ( in dormant ). There is no sign of system booting further. The
 valuable recommendatons and suggestions towards resolving this issue shall
 be highly appreciated and regarded
 with regards
 s.mahalingam
 ___
 To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
 unsubscribe password address
 in the subject or body of the message.
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc




-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
unsubscribe password address
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Html span tag does not works in FireFox , but it works very well in IE

2009-07-17 Thread Arulalan T
Hi to all ,

Html span tag does not works in FireFox , but it works very well in
Internet Explorer .

the below coding is one of my xml lab program called as Embedding XML
with HTML  .

this is the code for xml and html .

*sample.xml*( save it as
sample.xml)

?xml version=1.0?
studentdetails
student
namearulalan/name
classmca/class
/student
student
namenandha/name
classmba/class
/student
/studentdetails



*sample1.html* ( save it as
sample1.html and put together in same folder which contains  xml file)

html
body
xml id=student src=sample.xml/xml
table Datasrc=#student border=2
tr
tdspan datafld=name/span/td
tdspan datafld=class/span/td
/tr
/table
/body
/html



while opening sample1.html by browser , it has to show one Table which
contains   4 data from sample.xml .

arulalan  mca

nandha   mba


the above data is packed inside the table .

This table is not display in Fire Fox 3.5 and older version also.

I mean , html  span  tag doesn't works properly.


for this purpose alone, i have to switch over windows in lab instead of
using ubuntu .

so , is there any solution having to solve this problem . ?








-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கன தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
unsubscribe password address
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] anna univ affliated curriculum does not allow to do 5th sem proje in OpenSource, need help

2009-07-08 Thread Arulalan T
Hi to all,

I am Arulalan . T doing Final year M.C.A in Saveetha Engg College , Chennai.

Now I am studying fifth semester.

This semester we have  Software Project Management  ( Theory Paper ).

For this subject having one lab, namely called ,   Software Development Lab  .

In this lab, we have to do 10 small projects.

I planned to do all the following syllabus projects using  Ruby On Rails .

But my Staffs are not supporting to do this semester projects in other
Languages.

They preferred only   VB and ORACLE , because they know that only.

Even though I was fighted with them and finally, they said OK to do in RoR.

But now my HOD is opposing to that.

He s asking me, while doing   University Practical Examination, the
External examiner will not accept your projects means, what can you do
?  .

what can i do ?

Give me all your suggestions !

and I need NRC FOSS support to do my 5th sem simple projects in Open
Source(RoR).

( * they doesn't oppose to do my final semester projects in Open-Source *)

How can i approach this problem?


http://www.indiastudycenter.com/Other/Syllabus/AnnUniv/PG/MCA/MC1804-Software-Development-Lab.asp


Syllabus of Anna University Chennai MCA - 2005 Regulation - MC1804
Software Development Lab
Develop Software using CASE tools for the applications like :

1. Online railway reservation system

2. Payroll processing application

3. Inventory system

4. Automating the banking process

5. Software for game

6. Library management system

7. Create a dictionary

8. Text editor

9. Telephone directory

10.Create an E-Book of your choice
Software required:

Languages: C/C++/Java/JSDK/Web browser.

Any front end tool (like VB, VC++, Developer 2000) etc

Any backend tool (Oracle, Ms-Access, SQL) etc.

Any CASE tool

( * they preferred  Rational Rose  . I preferred  Umbrello  for CASE TOOL* )


-- 
நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

My Experiments In Linux are here

http://tuxworld.wordpress.com

தக்கண தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with
unsubscribe password address
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Fwd: Tutorial On Glade3 - Ruby

2009-06-11 Thread Arulalan T
Hi to all,



I made a simple tutorial on Glade with Ruby.

In this tutorial i dealt with making interdependent select for desktop
application using glade3 and ruby.

This example also covers of how to use active records in ruby.

more at http://comboboxentry-glade-ruby.blogspot.com/



நன்றி ,

அருளாளன் . த


Kanchi Linux User Group Rocks !

http://kanchilug.wordpress.com

தக்கண தழைக்கும் !
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
unsubscribe password address
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] RAD (Ruby Arduino Development) Installation Guide Documentation

2009-03-21 Thread Arulalan T
Hai to all


Mr.Thiyagarajan and I (Arulalan.T) were tried to install RAD (Ruby Arduino
Development) in ubuntu8.04.

But it makes many errors while installing rad... More over we installed that
Rad successfully...

I write RAD Installation Guide Documentation, and we hope surelly it will
helps to those who are all needs RAD.

Just visit this blog and post your comments .

 And I really happy to say this is my first Documentation to RAD.


-- http://radinstallation.blogspot.com




-- 
Thanks,

T.Arulalan
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
unsubscribe password address
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] chntpw not working

2009-02-21 Thread Arulalan T
-- 
Hello ilus,

In my college i installed Dual Os,

Ubuntu 8.04 and Windows

i tried to change windows password from ubuntu by using chntpw 

i entered to windows path like windows/System32/config
and typed

$chntpw SAM System

Its asked to reset the password for Admin

I changed the password  its said OK.

But the problem is In windows login that new password is not getting
accepted while login windows

Pl help to correct this problem



Thanks


T.Arulalan
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
unsubscribe password address
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Thanks and

2009-01-21 Thread Arulalan T
Thanks to all
   sorry for too delay reply

   i am really happy after reading all the replies.

  really  thanks for providing the book references for
TCP/IP . but I am more eager to know things practically.

   so, if possible any one can come to my college to conduct
practical seminar on current TCP/IP topics.

  And i have also made intra(local) network using Wi-Fi among 40
systems in my college lab using ubuntu .

  the Ip address range is   192.168.1.1 to .40
-- 

Thanks

-- 
T.Arulalan
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
unsubscribe password address
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Carteblanche 2009 at MIT, Chromepet

2009-01-21 Thread Arulalan T
On Thu, Jan 15, 2009 at 9:21 PM, sivaji j.g sivaji2...@gmail.com wrote:

 
  PROGRAMMING AND DEBUGGING TOOLS ( 1 )
 
  GNU Compiler Collections (gcc,g++)





Hi this is T.Arulalan, doing M.C.A.

i and my friend Nandha are interested to take class about Ruby Programming
under the event PROGRAMMING AND DEBUGGING TOOLS .

Not Rails... But we can take class in Ruby for beginners in programming...


contact me : 9994332225



Thanks
-- 
T.Arulalan
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
unsubscribe password address
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] HI all people

2009-01-11 Thread Arulalan T
Hai

This is T.Arulalan, doing second year M.C.A in Saveetha Engg College,
Thandalam,Poondamalli High Road,


Few Days Before my Friends and i were installed UBUNTU-8.04-i386  in our lab
, nearly 40 systems successfully,  with intra network using wi-fi,

Thanks for ur support

And we need some more support from you people

its, in this semester we choosed elective subject is TCP/IP,


so we need more practical examples in intra and inter networking



i will tell more detail about what we need,   if any one of you intersted to
take one l day seminar to us means, pl mail me,, i ll mail soon
again,


Thanks,

T.Arulalan
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
unsubscribe password address
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] help

2009-01-11 Thread Arulalan T
Hai

This is T.Arulalan, doing second year M.C.A in Saveetha Engg College,
Thandalam,Poondamalli High Road,


Few Days Before my Friends and i were installed UBUNTU-8.04-i386  in our lab
, nearly 40 systems successfully,  with intra network using wi-fi,

Thanks for ur support

And we need some more support from you people

its, in this semester we choosed elective subject is TCP/IP,


so we need more practical examples in intra and inter networking



i will tell more detail about what we need,   if any one of you intersted to
take one l day seminar to us means, pl mail me,, i ll mail soon
again,


Thanks,

T.Arulalan

--
___
To unsubscribe, email ilugc-requ...@ae.iitm.ac.in with 
unsubscribe password address
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


  1   2   >