[Ilugc] Storage requirement -- mirrors for Debian 6/7, Ubuntu 10.04/12.04 and Centos 5/6

2013-06-29 Thread Arun Khan
I am planning to setup up a "local" mirror for Debian 6/7, Ubuntu 10.04/12.04 and Centos 5/6 (all distros amd64 only). Debian - main contrib non-free back-ports + updates Ubuntu - main multverse universe restricted + updates CentOS - main extra epel I need a ball park idea for the storage alloc

[Ilugc] [Event Report] Two days FDP on FOSS in KCG College of Technology on 27th and 28th June 2013.

2013-06-29 Thread Baskar Selvaraj
Dear all, A two days Faculty Development Program on FOSS was organized by KCG College of Technology [1] on June 27th and 28th, 2013. The following topics were covered in the FDP Kernel Compilation Virtualization using QEMU Compiling from source code (using make/Makefile) RPM package management

Re: [Ilugc] 1D1C - wc

2013-06-29 Thread Arun Khan
On Sun, Jun 30, 2013 at 8:24 AM, Kiruthika wrote: > Balachandran, > > Thanks for that! since the thread was dealing with commands, i thought i > can put my question. Will start a new thread though. > > Your question had nothing to do with 'wc' which is very clear in the subject line. Please read

[Ilugc] (reverse-i-search) equivalent in tcsh shell

2013-06-29 Thread Kiruthika
Do someone know the equivalent command for (reverse-i-search) in tcsh shell? In bash we use ctrl+r , whereas in tcsh this doesn't do the trick... Thanks! ___ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc ILUGC Mailing List Guidelin

Re: [Ilugc] 1D1C - wc

2013-06-29 Thread Kiruthika
Balachandran, Thanks for that! since the thread was dealing with commands, i thought i can put my question. Will start a new thread though. On Sat, Jun 29, 2013 at 8:05 PM, Balachandran Sivakumar < benignb...@gmail.com> wrote: > Hi, > > On Sat, Jun 29, 2013 at 7:55 PM, Kiruthika > wrote: > > D

Re: [Ilugc] Javascript tutorial

2013-06-29 Thread Manokaran K
On Sat, Jun 29, 2013 at 4:07 PM, Girish Venkatachalam < girishvenkatacha...@gmail.com> wrote: > > > Javascript is different from other OO languages like perl in which OO > is optional. > > In the javascript I (and the rest of the world) use, OO is pretty much optional. Whoever told you javascript

Re: [Ilugc] Need a clue in sql query writing

2013-06-29 Thread trupti kini
select * from member,payment where year!=2000 and member.id=payment.id;   Thankfully, Trupti Rajesh Kini Born in a GNU generation... > > From: Abdur Rahman >To: ILUG-C >Sent: Friday, 21 June 2013 3:46 PM >Subject: [Ilugc] Need a clue in sql query writing >

Re: [Ilugc] 1D1C - wc

2013-06-29 Thread Balachandran Sivakumar
Hi, On Sat, Jun 29, 2013 at 7:55 PM, Kiruthika wrote: > Do some one know what is the equivalent command for ctrl+r > (reverse-i-search) in tcsh shell ??? > reverse-i-search is not related to wc. When you are replying to a mail/thread what you ask/tell should be related to the topic of di

Re: [Ilugc] 1D1C - wc

2013-06-29 Thread Kiruthika
Do some one know what is the equivalent command for ctrl+r (reverse-i-search) in tcsh shell ??? On Sat, Jun 29, 2013 at 2:34 PM, Dhana Sekar wrote: > command: wc > purpose: print newline, word, and byte counts for each file > > syntax: wc [options] filename > > examples: > > 1. To print the byt

Re: [Ilugc] Printing HTML tables issue

2013-06-29 Thread Abdur Rahman
I am using pure HTML and javascript here is the code http://jsfiddle.net/yp7SA/1/ i tested it on the Chrome and firefox when i print from firefox page break works fine at the same time when i print the output table from chrome it splits up the table rows at the page break. On Sat, Jun 29, 201

Re: [Ilugc] Javascript tutorial

2013-06-29 Thread Ashwin Dixit
On Sat, Jun 29, 2013 at 3:37 AM, Girish Venkatachalam < girishvenkatacha...@gmail.com> wrote: > > In perl also objects are nothing but hash tables. > I appreciate that you are taking some efforts to organize your code better. However, I have to point out the technical inaccuracy here. Although P

Re: [Ilugc] 1D1C - selinux commands

2013-06-29 Thread Rajagopal Swaminathan
Greetings, On Sat, Jun 29, 2013 at 10:55 AM, Arun Khan wrote: > > I would add lack of time. ++1 I am sorry I missed out this. BTW, I tend to believe that people do not have priority rather than time, most often. Blame it on my impression that this list is heavily populated by developers rathe

Re: [Ilugc] Printing HTML tables issue

2013-06-29 Thread Ashwin Dixit
On Sat, Jun 29, 2013 at 5:45 AM, Abdur Rahman wrote: > Hello guys > I am working on a web app. which deals with the data from db and shows the > report on the browser in HTML table. everything works fine when i wanted to > print the output table cells are being split by page break. i tried all >

[Ilugc] Printing HTML tables issue

2013-06-29 Thread Abdur Rahman
Hello guys I am working on a web app. which deals with the data from db and shows the report on the browser in HTML table. everything works fine when i wanted to print the output table cells are being split by page break. i tried all sort of googling all i found is recent webkit browser doesnt sup

[Ilugc] Javascript tutorial

2013-06-29 Thread Girish Venkatachalam
I did some browsing of the animation source code for page scroll that I sent today. The plugin is written in javascript using some techniques in object oriented programming. Javascript is different from other OO languages like perl in which OO is optional. There is concept of class and object.

[Ilugc] 1D1C - wc

2013-06-29 Thread Dhana Sekar
command: wc purpose: print newline, word, and byte counts for each file syntax: wc [options] filename examples: 1. To print the byte counts $ wc -c filename 2. To print the character counts $ wc -m filename 3. To print the newline counts $ wc -l filename 4. To print the length of