[Ilugc] Draft Patent Manual Meeting

2008-08-28 Thread Vijay Kumar
About 8 ILUGC members attended the meeting. There were 2 from FSUG Bangalore. At the start of the meeting we were told that issues related to software patents will be discussed in a separate meeting! The meeting date was not announced. We were asked check the website. But we did get a clarity on w

[Ilugc] Re: Ubuntu 8.04+FUSE filesystem

2008-09-09 Thread Vijay Kumar
Zico <[EMAIL PROTECTED]> writes: > /usr/lib/libfuse.a(fuse.o): In function `curr_time': > (.text+0x2116): undefined reference to `clock_gettime' > /usr/lib/libfuse.a(fuse.o): In function `curr_time': > (.text+0x2148): undefined reference to `clock_gettime' > /usr/lib/libfuse.a(fuse.o): In function

Re: [Ilugc] Re: Ubuntu 8.04+FUSE filesystem

2008-09-10 Thread Vijay Kumar
Zico wrote: On Tue, Sep 9, 2008 at 3:52 PM, Vijay Kumar <[EMAIL PROTECTED]> wrote: Seems like the -lrt and -ldl flags are missing. Try this $ gcc -I/usr/include -DFUSEINST="\"/usr\"" -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=22 -L/lib -o siefs siefs.o obex.o tra

[Ilugc] Re: Reading data in a virtual OS

2008-12-30 Thread Vijay Kumar
abdullah abdul Khadir writes: > I needed to run windows and other operating systems on my debian etch > system and hence i installed qemu which was referred in one of the previous > mails in this mailing list . What I would very much like to know is if there > is some way of reading data fro

[Ilugc] Re: ILUGC Meet - Feb 14 3PM

2009-02-12 Thread Vijay Kumar
Ravi Jaya writes: > To understand Django, we people need to know basics of Pyhton programming. > Same way let we ask Vijay to share with us the prerequestite for the > DocBook. Though not required, a bit of understanding about XML and HTML is a plus, for the DocBook session. Regards, Vijay ___

[Ilugc] Re: ARM Compiler

2009-03-02 Thread Vijay Kumar
arun kumar writes: > I want to learn embedded in linux with arm controller. > > Is there any arm based free compiler in linux, which supports arm7 & arm9. > > And I need some sample codes for that compiler. And Is there any limitations > for that compiler. The tutorial at http://www.bravegnu.o

[Ilugc] Re: Custom Dialog in GTK+

2009-08-28 Thread Vijay Kumar
Shunmuga Sundaram writes: > i want to know that how do i show my funnydialog as a model window > to what ever the application is ? gtk_window_set_transient_for() can be used to set the parent window for a dialog. Get the parent window as an argument to funnydialog and use the gtk_wi

[Ilugc] HDD error in Fedora

2012-01-24 Thread Vijay Kumar
Dear all, I am using Seagate 500GB SATA HDD. When I install Windows & Ubuntu it didn't find "BAD sector", but when I install fedora in the same HDD it dispalys "Disk has many bad sectors". I already send it to seagate for warranty they returned it with "No fault found tested OK" report. But when I

Re: [Ilugc] HDD error in Fedora

2012-01-25 Thread Vijay Kumar
I don't have fedora live cd right now. I am having ubuntu live cd only but it can't find BAD Sector. The problem is repeatedly occurring in Fedora only. On Wed, Jan 25, 2012 at 1:02 PM, Shrinivasan T wrote: > use a live cd to run fsck to check and fix the errors. > > sudo fsck -y /dev/sdaX > > re

[Ilugc] Redmine user's manual needed

2012-02-20 Thread Vijay Kumar
Dear all, Where can I download user's manual for Redmine? In Redmine page http://www.redmine.org, I only read the manual, I can't download it to local. Thanks in advance. -- With regards, G. Vijayakumar, +91 8973417398 ___ ILUGC Mailing List: http:

Re: [Ilugc] Open Source Career Building Program – 1

2012-06-03 Thread Vijay Kumar
Hi all, I thought this will create awareness to people, ILUGC also need to do this type of awareness from people who bring bad impression to our mailing list. Our mailing list must support genuine organization only. sometimes it may be a personal attacking but what can we do? our vision is to save

[Ilugc] Shell script with arguments

2012-07-17 Thread Vijay Kumar
Hi All, I need some help/ideas in coming up with a shell script. Basically, the script should install 1 or 2 or 3 packages based on the input arguments. For example, if I type in pkgscript.sh a1 a2 a3, it should install all the 3 scripts and pkgscript.sh a1 should install only a1. If a user ent

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

2012-08-06 Thread Vijay Kumar
Very very sad news. My condolences to his friends and family. -- With regards, G. Vijayakumar, ___ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

[Ilugc] Chennaipy August Meet

2013-08-22 Thread Vijay Kumar
== Date & Time 24 August 3:00pm to 5:00pm == Venue Classroom No 3, Areo Space Engineering, Near Gajendra Circle, IIT Madras Reaching IITM: http://www.iitm.ac.in/reaching Reaching the Venue: http://bit.ly/iitm-aero == Agenda Talk 1: Acceptance testing with Robot Framework by Vijay K

[Ilugc] Re: Question about shutting down Guest KVMs during HOST OS shutdown

2009-11-25 Thread Vijay Kumar
Arun Khan writes: > relevant excerpt: > > send_cmd() { >QEMU_MONITOR_COMMAND=$1 >echo "${QEMU_MONITOR_COMMAND}" | socat - UNIX-CONNECT:${FILE_MONITOR} > } This script uses Qemu's monitor interface. The monitor interface has a system_powerdown command that can be used trigger an

[Ilugc] Re: How to trap key strokes

2010-01-08 Thread Vijay Kumar
Saravanan S writes: > Hi all, > I used xmodmap to block few key strokes in my distro. > How to initiate/trigger a key combination like say (Ctrl+Shift+Y) as if the > user has pressed those keys?? Keystrokes can be fed to the kernel using the uinput subsystem. The uinput subsystem can be a

[Ilugc] Re: Dynamic Generating Combobox using Pygtk and Python

2010-03-11 Thread Vijay Kumar
Rsk writes: > Its getting added but i would like to see only the last selected value based > on comboboxes which is *3*. Before adding new comboboxes to the vbox, destroy all the child widgets. This can be done using for child in vb.get_children(): child.destroy() Regards, Vijay

[Ilugc] Re: Dynamic Generating Combobox using Pygtk and Python

2010-03-12 Thread Vijay Kumar
Rsk writes: > > Thanks Vijay for the reply. > > After i used that method the new combo boxes also getting destroyed. So it > not getting populated itself. You should destroy the old comboboxes before adding the new comboboxes. Regards, Vijay ___ IL

[Ilugc] Re: Error while connecting glade through python code

2010-03-18 Thread Vijay Kumar
selvamani sampath writes: > I designed glade file with the preference as follows: > > Project file format to "GtkBuilder" > Object name to "within the project" > Toolkit version to "2.16" [clip] > Traceback (most recent call last): > File "flower_main.py", line 23, in > flower = Flower() >

[Ilugc] Re: apache server

2010-04-16 Thread Vijay Kumar
venkat raman writes: > 2. what s the difference between find and locate? Both are commands to search for files. find walks through the filesystem and prints the files that meet a test criteria. locate searches through a database that contains the list of files present in the system. The databa

[Ilugc] Re: what is sun virtual box

2010-04-17 Thread Vijay Kumar
jaya kumar writes: > > what is that sun virtual box can do ? VirtualBox simulates a PC (processor and peripherals). The simulation is so complete that any general-purpose operating system can be run within the simulated system, without modifications. The operating system running within VirtualBox

[Ilugc] Re: [commercial] Svn LDAP configuration

2010-04-20 Thread Vijay Kumar
velappan velappan writes: > I have been achived LDAP by single authz file to all the repositry, What I > am looking for is each svn project will have seperate authz file but the > password should point to ldap directory. I guess, what you are looking for is Path-Based Authorization. Please see ht

[Ilugc] Re: API to read/write PDF & Word DOC file formats

2010-04-22 Thread Vijay Kumar
Selvakumar Rajeswaran writes: > anyone pls provide me pointers for an API to read/write PDF file format > & Microsoft Word DOC file format. If you would like to create PDFs, then have a look at ReportLab Toolkit http://www.reportlab.com/software/opensource/rl-toolkit/ Cairo is also capable of r

[Ilugc] Registration for Embedded Workshop [ILUGC Summer Workshop]

2010-05-20 Thread Vijay Kumar
: - Introduction to Micro-controllers - Introduction to 8051 - SDCC Compiler - Embedded Hello World - Accessing Device Registers - Bit Addressable Memory - Interrupt Handlers - Memory Models - Multi-file Compilation - Using the C Library Regards, Vijay

[Ilugc] Reminder: Registration for Embedded Workshop

2010-05-21 Thread Vijay Kumar
Vijay Kumar writes: > people interested in participating in the Embedded Workshop are > requested to register themselves by calling up at +91 44 45018795 or +91 44 > 24480505. You can also register by sending me a mail off-list, with your name > and contact no. Please prefix the subje

[Ilugc] Re: Registration for Embedded Workshop [ILUGC Summer Workshop]

2010-05-21 Thread Vijay Kumar
sivakumar writes: > Is there any prerequisite for this workshop ? In case you had missed it in the original mail and the wiki page, the pre-requisite is C programming and microprocessor fundamentals. Regards, Vijay -- P: http://www.bravegnu.org/ C: http://www.zilogic.com/

[Ilugc] Embedded Linux Workshop Registration

2010-06-01 Thread Vijay Kumar
* Speaker: Vijay Kumar and Abin, Zilogic Systems * Prerequisites: GNU/Linux Command Line, Microprocessor Fundamentals * Topics Covered: - Hardware and Software Components - File systems for Flash - Introduction to U-Boot - Creating Ramdisks Regards, Vijay -- P: http

[Ilugc] Re: Call for speakers to confirm the Summer Workshops

2010-06-07 Thread Vijay Kumar
Shrinivasan T writes: > We have announced the summer workshops in > http://wiki.ilugc.in/index.php?title=ILUGC_Summer_Workshops > > I request all the speakers to confirm the date/venue/topic. > > Edit the wiki page or send a mail to the list. Just wanted to update that the Embedded Systems Work

[Ilugc] Re: how to send mutiple gpointers from g_signal_connect

2010-06-10 Thread Vijay Kumar
Prabhu Gnana Sundar writes: > I have been working on a project to develop a test bed. I am > creating a GUI using Gtk programming. Here now I am required > to read inputs from multiple Gtk Entries and process them on > a click of a Gtk Button. But I am unable to find how to send > multiple gpoin

[Ilugc] Re: virus in usb

2010-07-24 Thread Vijay Kumar
Ravi Jaya writes: > > fdisk /dev/sda > mkfs -t vfat /dev/sda1 > You need to have dosfstools installed. Regards, Vijay Kumar -- P: http://www.bravegnu.org C: http://www.zilogic.com ___ ILUGC Mailing List: http://www.ae.iitm.ac.in/mail

[Ilugc] Re: Better ways to quote..

2010-07-25 Thread Vijay Kumar
ஆமாச்சு writes: > What are the better ways to reply when some is in digest mode or subscribed > to > list but not receiving any mails and reading it through GMANE's RSS feeds as > I > do? Gmane's RSS feeds link to their blog-like web page. Which has a reply link for each post. Clicking on re

[Ilugc] Re: Ubuntu as guest OS on Virtualbox

2010-07-28 Thread Vijay Kumar
Anthoni Shogan writes: > Host and guest can ping each other. > On the guest I have a CherryPy app running at port 8080. > I am unable to access this web application from the host. > The request simply doesn't get through. > > Nmap says port 8080 is closed. > How do I go about this? You need to c

[Ilugc] Re: [Tip] Want to find out what functions a program calls?

2010-08-02 Thread Vijay Kumar
Tha.Suresh writes: > Want to find out what functions a program calls? System calls to be more accurate. For tracing calls to functions in shared object libraries ltrace should do the trick. > > $ strace > Regards, Vijay -- P: http://www.bravegnu.org/ C: http://www.zilogic.com/ _

[Ilugc] Re: Ubuntu Free Software License - Clarification Needed

2010-08-20 Thread Vijay Kumar
Yogesh Girikumar writes: > Thank you so much for the insight. From what I understand, Blobs are here to > stay for a while. Why does this happen? >From the FAQ at intellinuxwireless.org Why don't you allow modification and re-engineering of the binaries? To operate a radio device, the hardware

[Ilugc] Re: clock on Linux console

2010-09-03 Thread Vijay Kumar
Girish Venkatachalam writes: > > $ watch -t --interval=1 date > > A running clock on a Linux console. > > -Girish Or better yet $ watch -n1 -t 'date "+%H:%M:%S" | figlet -f big' Regards, Vijay -- P: http://www.bravegnu.org/ C: http://www.zilogic.com/ __

Re: [Ilugc] installing moodle under fedora 14

2011-03-20 Thread Vijay Kumar
Hi Arun, This may be helpful i think so If you want to give access to this for others then make it the www-data as the owner of the /var/www/html/ this is the default apache permission. On Sat, Mar 19, 2011 at 11:20 AM, Arun Prakash wrote: > Hello, > > > I got following error message > >

Re: [Ilugc] installing moodle under fedora 14

2011-03-20 Thread Vijay Kumar
sorry previously i have mentioned as Arun it is for murugan On Mon, Mar 21, 2011 at 9:15 AM, Vijay Kumar wrote: > Hi Arun, This may be helpful i think so > > If you want to give access to this for others then make it the www-data as > the owner of the /var/www/html/ > > t

[Ilugc] Fedora14 updated issue.

2011-03-23 Thread Vijay Kumar
Dear all, I'm using fedora14, recently i have reload my fedora14 pc but the kernel is not updated. I have tried many times to update the kernel but i can't. Any one help me. Thanks in advance. -- With regards, G. Vijayakumar, +91 8973417398 ___ ILUGC

Re: [Ilugc] FOSS Lab Setup in Sri Sairam Engineering College, Kanchipuram Dt.

2011-05-05 Thread Vijay Kumar
On Thu, May 5, 2011 at 9:30 AM, mohan raj wrote: > hi all, > > i want to setup a asterisk pbx. > > i am new to linux pl help me > > regards > mohanraj > ___ > ILUGC Mailing List: > http://www.ae.iitm.ac.in/mailman/listinfo/ilugc > You are asking aster

Re: [Ilugc] FOSS Lab Setup in JEI Mathaajee College of Engineering, Kanchipuram Dt

2011-06-03 Thread Vijay Kumar
Congrats.. You done a very good job. Best wishes. On Fri, Jun 3, 2011 at 2:18 PM, Baskar Selvaraj wrote: > Dear all, > > Today we have setup a 35 seat FOSS Lab in JEI Mathaajee College of > Engineering (http://www.jmcebose.com), Vishakandikuppam, Kanchipuram > District for the Dept. of CSE. > >

[Ilugc] rsync log -reg.

2011-06-13 Thread Vijay Kumar
Dear all, I am using ubuntu 10.04 server, and i'm using number of rsync commands for backup purpose of the server. But some times rsync command doesn't execute properly, how to find the log for rsync, Can anyone help me. The error displayed as, error: write broken pipe Thanks in advance. --

Re: [Ilugc] rsync log -reg.

2011-06-14 Thread Vijay Kumar
4 rsync commands per day, for backup my data to VPS server opver the network. On Tue, Jun 14, 2011 at 1:26 PM, Arun Khan wrote: > On 6/14/11, Vijay Kumar wrote: > > > The error displayed as, error: write broken pipe > > It appears you are doing rsync over the networ

[Ilugc] Mysql database backup

2011-07-07 Thread Vijay Kumar
Dear all, I want to take backup mysql database through cron, I have executed this command /usr/bin/mysqldump -u root -p(x) king | gzip > /backups/king_`date +%y_%m_%d`.gz It shows this error - mysqldump: Got error: 1045: Access denied for user 'root'@'localhost' (using password: YES) when t

Re: [Ilugc] configure squid in ubuntu

2011-08-02 Thread Vijay Kumar
you can try with www.linuxhomenetworking.com On Tue, Aug 2, 2011 at 5:25 PM, Sathishkumar M < msathishkumar180...@gmail.com> wrote: > Dear all, > > I am in need of configuring squid proxy server just to block Internet for > specified machines in my network, content filtering and site blocking for

Re: [Ilugc] Fwd: [chennaipy 1540] September Monthly Meet

2013-09-18 Thread Vijay Kumar
> = September Monthly Meet > > == Date & Time > > 21 September > 3:00pm to 5:00pm The Chennaipy meet is on 28th September, the 4th Saturday of this month. The date in the announcement is incorrect. My apologies for the confusion. Regards, Vijay ___

Re: [Ilugc] Congrats Shrinivasan

2013-10-28 Thread Vijay Kumar
http://tamil.thehindu.com/general/education/%E0%AE%95%E0%AE%9F%E0%AF%8D%E0%AE%9F%E0%AE%B1%E0%AF%8D%E0%AE%B1-%E0%AE%AE%E0%AF%86%E0%AE%A9%E0%AF%8D%E0%AE%AA%E0%AF%8A%E0%AE%B0%E0%AF%81%E0%AE%B3%E0%AF%8D-%E0%AE%9A%E0%AF%86%E0%AE%B2%E0%AE%B5%E0%AE%B1%E0%AF%8D%E0%AE%B1-%E0%AE%95%E0%AE%B2%E0%AF%8D%E0%AE%B5

[Ilugc] Chennaipy: May Month Meet

2014-05-21 Thread Vijay Kumar
= May Month Meet == Date & Time 24th May 3:00pm to 5:00pm == Venue Zilogic Systems, Fourth Main Road, Kamaraj Nagar, Thiruvanmiyur, Chennai Location map: http://www.zilogic.com/contact.html == Agenda Talk: What can I do to help PyCon India? Speaker: Kiran Gangadharan Duration: 30 min Learn

Re: [Ilugc] M Sc (CS-FOSS) Online Program - Anna University

2015-07-16 Thread Vijay Kumar
Anna University Flouts UGC Fiat on Distance Education Courses http://www.newindianexpress.com/states/tamil_nadu/Anna-University-Flouts-UGC-Fiat-on-Distance-Education-Courses/2015/06/12/article2861991.ece On Sat, Oct 6, 2012 at 4:03 PM, Mohan K wrote: > Hi All, > > Does anyone knows whether the M

[Ilugc] [JOB] Linux Device Driver Developer

2012-01-27 Thread Vijay Kumar B .
Hi Everyone, Zilogic Systems http://www.zilogic.com is looking for Linux Device Driver developers. The work will involve development of drivers for WLAN chipsets. If interested please contact me off-line. Regards, Vijay ___ ILUGC Mailing List: http://w

[Ilugc] Chennaipy Feb Monthly Meet

2012-02-23 Thread Vijay Kumar B
and Python- Vijay Kumar If you would like to give a lightning talk, just come prepared, we will be able to accommodate you. 2. Game Development Tutorial by TheNewBoston - 50 min A series of videos that shows how to build games using Python and Pygame. The video series is avail

[Ilugc] Chennaipy April Meet

2012-04-25 Thread Vijay Kumar B .
rthy - Python Dictionary - Rengaraj - GUI Apps and MVC - Vijay Kumar If you would like to give a lightning talk, just come prepared, we will be able to accommodate you. 2. PyCon 2012 Video: Writing GIMP Plug-ins in Python by Akkana Peck - 30 min Summary: Learn how to w

[Ilugc] Chennaipy May Monthly Meet

2012-05-22 Thread Vijay Kumar B .
ndom Numbers by Reegan 3. Lightning Talk: String Methods by Arunram 4. Lightning Talk: Docstring Conventions (PEP 257) by Vijay Kumar 5. Video: Kivy Demo If you would like to give a lightning talk, just come prepared, we will be able to accommodate you. If you are new to Py

[Ilugc] Re: [Tip] Create a 10MB empty file

2010-11-11 Thread Vijay Kumar B .
Girish Venkatachalam writes: > > On Thu, Nov 11, 2010 at 1:42 PM, Tha.Suresh wrote: > > Create a file of a given size in linux > > > > $ truncate -s 10M file > > [clip] > > I can only see truncate(2) in section 2 of the man page in OpenBSD. > > Too bad. dd can also be used to achieve a simila

[Ilugc] Re: [Tip] Create a 10MB empty file

2010-11-13 Thread Vijay Kumar B .
Girish Venkatachalam writes: > Can you explain this? > > -rw-r--r-- 1 girish wheel 10485760 Nov 13 08:04 f > $ du -h f > 32.0K f > > I suppose du cannot see the space taken by the file on disk. du provides the actual disk usage by default. If you want the apparent size the --apparent-si

[Ilugc] Re: ilugcbe meet

2010-11-15 Thread Vijay Kumar B .
Kenneth Gonsalves writes: > the reluctance of the sysadmins to permit students to recompile > the kernel of their systems. With Virtualbox and qemu around this should no longer be an issue. Regards, Vijay -- P: http://www.bravegnu.org/ C: http://www.zilogic.com/ _

Re: [Ilugc] Long text to multiple PNGs: pointers

2011-02-03 Thread Vijay Kumar B .
kish writes: > Having trouble calculating line length for a given font and its size. > > Any pointers? Python GD can generate PNGs and has a method to determine the size of a string called fontstrsize(font, string) Regards, Vijay -- P: http://www.bravegnu.org/ C: http://www.zilogic.com/

Re: [Ilugc] Read Barcode

2011-02-20 Thread Vijay Kumar B .
Rajesh kumar writes: > > How can i read a barcode using a C program. > > I can able to read barcode manually in a gedit. i Need to create a c > program which reads the barcode device and write the data to a text file. > > How this can be done. Input devices like keyboard, mice, etc. go throu

Re: [Ilugc] factorial

2011-02-28 Thread Vijay Kumar B .
Saravanan Selvamani writes: >Anyone knows how to find the factorial of a number without > using loops , arithmetic operator,case structure.I guess that this has to be > done by using bitwise operator.but i dont know how. Use lookup tables. If you are using 32 bit ints to store num

Re: [Ilugc] Request for Volunteers - Preparing LAB Manual for Anna University Syllabus

2011-03-02 Thread Vijay Kumar B .
Shrinivasan T writes: > We can choose any topic, create documentations on introduction, create > exercises and verify them. > > Please update here, if you wish to contribute for the LAB Manual. I would like contribute to this. I can provide help in the areas of Python and GUI Programming. I hav

[Ilugc] Guidelines for the FOSS Lab Manual Project

2011-03-06 Thread Vijay Kumar B .
A set of guidelines for the FOSS Lab Manual Project is available at http://foss-lab-manual.googlecode.com/svn/trunk/guidelines.txt People interested in contributing, please go through the guidelines. Suggestions and feedbacks are welcome. Regards, Vijay __

Re: [Ilugc] FOSS Lab Manual Preparation

2011-03-06 Thread Vijay Kumar B .
satyaakam goswami writes: > i see two directories instructor-manual and lab-manual what is the > difference? instructor manual directory is still empty , can anyone explain > the directory structure on the list for the benefit of folks who were not > present in the meeting . I hope the followi

Re: [Ilugc] Need Ebook for ARM C Programming

2011-03-14 Thread Vijay Kumar B .
Rajesh kumar writes: > > I am working on ARM processors with C Programming. I need tutorials on C > programming on ARM. > > if you have any please send me some.. http://www.bravegnu.org/gnu-eprog/ Regards, Vijay ___ ILUGC Mailing List: http://www.a

Re: [Ilugc] FOSS - assembly language

2011-03-17 Thread Vijay Kumar B .
Raman.P writes: > > Dear luggies > The Management of a college is keen on using FOSS. They have asked about the FOSS tools relating to assembly > language used in Microprocess/microcontroller - similar to MASM/TASM. Which microprocessor/microcontroller? 8085 - GNUSim8085 8086 - gas (GNU assemb

Re: [Ilugc] Support for unicode in asciidoc

2011-04-08 Thread Vijay Kumar B .
Shrinivasan T writes: > It seems that asciidoc is not supporting unicode characters. > or it is not working for me. I tried to convert an asciidoc UTF-8 file into HTML using Asciidoc 8.2.7. And it works. > I am getting only characters like > "வேண்டும்" > in the pdf generated by a2x for the text

Re: [Ilugc] convert an AsciiDoc text file to RTF document

2011-05-10 Thread Vijay Kumar B .
arulkumarvm writes: > > Hi, > > Anybody know how to convert AsciiDoc text file to RTF or word document. > You can take this path AsciiDoc -> Docbook -> FO -> RTF. 1. AsciiDoc has a Docbook backend, so that shouldn't be a problem. 2. Docbook XSL stylesheets[1] can convert Docbook to FO.

Re: [Ilugc] marking strings for translation in emacs

2011-05-10 Thread Vijay Kumar B .
Kenneth Gonsalves writes: > > hi, > > in python to mark strings for translation one does this: > > string: somestring > marked string: _("somestring") > > and in django templates: > string: somestring > marked string: {% trans "somestring" %} > > can anyone suggest a very quick and easy way

Re: [Ilugc] How to FInd Location of USB device.

2011-05-10 Thread Vijay Kumar B .
Rajesh kumar writes: > Is there any command to list all the usb devices location, like below > > $ > /dev/sdc > /dev/sdb I am bit late with the reply, but I guess I have a not so bad solution. The following script uses HAL to do the trick. -- for udi in $(hal-find-by-capability --capability

Re: [Ilugc] marking strings for translation in emacs

2011-05-11 Thread Vijay Kumar B .
Kenneth Gonsalves writes: > thanks - works well, but one more thing - sometimes the strings are > marked with '' and not "" - how to handle this case? The following code handles both the quoting styles. -- (defun py-mark-trans () (interactive) (save-excursion (re-search-backward "[\"

[Ilugc] FOSS Lab Manual Sprint

2011-06-03 Thread Vijay Kumar B .
Hi Everyone, the FOSS Lab Manual project http://code.google.com/p/foss-lab-manual/ is conducting a one day sprint. The details of the sprint are given below. If you are interested please send a mail to the FOSS Lab Manual mailing list. Agenda -- 1. Contribute to "Getting Started" section.

Re: [Ilugc] FOSS Lab Manual Sprint

2011-06-06 Thread Vijay Kumar B
Vijay Kumar B. writes: > the FOSS Lab Manual project http://code.google.com/p/foss-lab-manual/ is > conducting a one day sprint. The details of the sprint are given below. > If you are interested please send a mail to the FOSS Lab Manual mailing list. > > Agenda > -- >

[Ilugc] Chennaipy June Monthly Meet

2011-06-23 Thread Vijay Kumar B
ting ways. 2. Scripting Android with Python by Vijay Kumar Summary: The talk will cover the following topics * Scripting Layer for Android (SL4A) Architecture * Writing simple GUI applications * SL4A server and Remote Control Regar

Re: [Ilugc] Fwd: FOSS Lab Manual Part 1

2011-07-06 Thread Vijay Kumar B
Arun Khan writes: > > A very nice effort vis-a-vis a quick intro to topics. > > Is this going to be the final content is something more planned? For > the latter case, may I suggest that you put in the place holder > (heading and sub headings). Also a list of "Further Reading" (as > Referenc

[Ilugc] Chennai Python Users Group, Monthly Meet

2011-08-24 Thread Vijay Kumar B .
August Monthly Meet Announcement Date & Time --- 27 Aug 3:00pm to 5:00pm Venue - Zilogic Systems, Fourth Main Road, Kamaraj Nagar, Thiruvanmiyur, Chennai Location map: http://www.zilogic.com/contact.html Agenda -- 1. The `with` statement and `

Re: [Ilugc] Hardware changes in Linux

2011-09-30 Thread Vijay Kumar B .
Rajesh kumar writes: > > I need a application which logs the hardware changes in a linux machine. Say > if ram is increased or reduced, harddisk added, sound card removes etc > should be logged. The changes to the device tree can be monitored using udevadm. The following udevadm command prints

Re: [Ilugc] how to add a new application to the gnome 3 desktop

2011-10-10 Thread Vijay Kumar B .
kenneth gonsalves writes: > > hi, > > the subject line says it all - any clues? The Desktop Menu Specification is available at http://standards.freedesktop.org/menu-spec/latest/index.html The relevant command line tools and their documentation is available at http://portland.freedesktop.org/w

[Ilugc] Chennaipy Oct Monthly Meet

2011-10-19 Thread Vijay Kumar B
1. Lightning Talks - 60 min * XBee Python Module by Balamanikandan * MySQLdb Module by Rengaraj * Operator Overloading by Vijay Kumar If you would like to give a lightning talk, just come prepared, we will be able to accommodate you. 2. PyCon 2011 Video: Everything You Wa

[Ilugc] Chennai Python Users Group, Monthly Meet

2011-11-23 Thread Vijay Kumar B .
November Monthly Meet Announcement == Date & Time --- 26 Nov 3:00pm to 5:00pm Venue - Zilogic Systems, Fourth Main Road, Kamaraj Nagar, Thiruvanmiyur, Chennai Location map: http://www.zilogic.com/contact.html Agenda -- 1. Lightning Talks - 60 m

[Ilugc] Chennai Python Users Group, Monthly Meet

2011-12-21 Thread Vijay Kumar B .
= December Monthly Meet Announcement == Date & Time 24 Dec 3:00pm to 5:00pm == Venue Zilogic Systems, Fourth Main Road, Kamaraj Nagar, Thiruvanmiyur, Chennai Location map: http://www.zilogic.com/contact.html == Agenda 1. Lightning Talks - 60 min. - Closures - Vijay K

[Ilugc] Chennaipy October Meetup

2014-10-16 Thread Vijay Kumar B
Hi Everyone, The Chennai Python User Group (Chennaipy) is meeting on 25th Oct, at IIT Madras. For more details about the event, visit our meetup event page http://www.meetup.com/Chennaipy/events/211201242/ If you are interested, please RSVP on our meetup page. Website: http://chennaipy.org Mailing

[Ilugc] Chennai Python User Group - November Meetup

2014-11-19 Thread Vijay Kumar B
Hi Everyone, The Chennai Python User Group (Chennaipy) is meeting on 29th Nov, at IIT Madras. For more details about the event, visit our meetup event page http://www.meetup.com/Chennaipy/events/217328422/ If you are interested, RSVP on our meetup page. Website: http://chennaipy.org Mailing List:

[Ilugc] Chennai Python User Group, December Meetup

2014-12-10 Thread Vijay Kumar B
r * "Breaking Free with Rope" by Vijay Kumar * "Introduction to Sage" by Amritanshu Prasad * "Sentiment Analysis using Python" by Venkatesh * "Decorators" by Shrayas Rajagopal Only the talk titles are included here, for the sake of brevity. For de

[Ilugc] Chennaipy January Meetup

2015-01-20 Thread Vijay Kumar B
Hi Everyone, The Chennai Python User Group (Chennaipy) is meeting on 31st Jan, at IMSc, Chennai. For more details about the event, visit our meetup event page http://www.meetup.com/Chennaipy/events/219692997/ If you are interested, RSVP on our meetup page. Website: http://chennaipy.org Mailing Lis

[Ilugc] Chennaipy Jan Meetup Talk Videos

2015-02-12 Thread Vijay Kumar B
Hi Everyone, The Chennaipy Jan meetup talk videos are available at https://vimeo.com/album/3253406 Regards, Vijay ___ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc ILUGC Mailing List Guidelines: http://ilugc.in/mailinglist-guidelin

[Ilugc] Chennaipy February Meetup

2015-02-16 Thread Vijay Kumar B .
Kivy by Vengatesh * A Primer on Git and Version Control by Shrikant Giridhar * Bitten by Python by Vijay Kumar * Tips and Tricks in IPython by Gaurav Sehrawat Only the talk titles are included here, for the sake of brevity. For details about the talks and the speakers, pl

[Ilugc] Chennaipy March Meetup

2015-03-24 Thread Vijay Kumar B .
Tea sponsored by Clay Labs (30 min) * Lightning Talks (40 min) * Discussions (20 min) ## Talks * Python Powered Brain Simulations by Ashutosh Mohan * Bitten By Python by Vijay Kumar * My Python BCI Journey by Kannan * Python Scripting in Android using SL4A

[Ilugc] Chennaipy April Meetup

2015-04-20 Thread Vijay Kumar B .
Tea sponsored by Zilogic Systems (30 min) * Lightning Talks (40 min) * Discussions (20 min) ## Talks * Managing Desktops with Ansible by Vijay Kumar * Leveraging Python Development with Virtualenv by Gaurav Sherawat * Building commandline interfaces with ArgParse by Shan

[Ilugc] Python User Group, June Meetup

2015-06-23 Thread Vijay Kumar B .
min) by KS Sreeram * Object Oriented Programming Paradigms in Python (20 min) by Chandrashekar Babu * Networking Tea (30 min) Sponsored by Clay Labs * Building websites using Plone (20 min) by Suresh V * Managing Jenkins with Python (20 min) by Vijay Kum

[Ilugc] Python User Group, July Meetup

2015-07-22 Thread Vijay Kumar B .
min) by Vengatesh * Data Science 101 (20 min) by Gaurav * Networking Tea sponsored by Zilogic Systems (30 min) * Building Git from Scratch (20 min) by Vijay Kumar * The beauty that is PostgreSQL - Part 1 (20 min) by Shrayas & Karthik * Discussions (30 min) Only

[Ilugc] Chennaipy August Meetup

2015-08-18 Thread Vijay Kumar B .
# August Meetup ## Date & Time * 22nd August (Saturday) * 3:00pm to 5:30pm ## Venue Ramanujan Auditorium, IMSc, C.I.T Campus, 4th Cross Street, Tharamani, Chennai. Location map: http://www.google.com/maps?q=12.994337,80.247170 ## Schedule Schedule * Introduction to GeoJson and GeoDj

[Ilugc] Chennaipy September Meetup

2015-09-24 Thread Vijay Kumar B .
# September Meetup ## Date & Time * 26th September (Saturday) * 3:00pm to 5:30pm ## Venue Ramanujan Auditorium, IMSc, C.I.T Campus, 4th Cross Street, Tharamani, Chennai. Location map: http://www.google.com/maps?q=12.994337,80.247170 ## Schedule * Getting started with Django (20 min)

[Ilugc] Chennaipy October Meetup

2015-10-21 Thread Vijay Kumar B .
# October Meetup ## Date & Time * 24th October (Saturday) * 3:00pm to 5:30pm ## Venue Ramanujan Auditorium, IMSc, C.I.T Campus, 4th Cross Street, Tharamani, Chennai. Location map: http://www.google.com/maps?q=12.994337,80.247170 ## Schedule * Postgresql Explain (20 min) by Ab

[Ilugc] Chennaipy January Meetup

2016-01-19 Thread Vijay Kumar B .
# January Meetup ## Date & Time * 23rd January (Saturday) * 3:00pm to 5:30pm ## Venue Ajira #11A, Sree Narayana Complex (Opp to Vijaya Nagar Bus Stop), Sarathy Nagar, Velachery, Chennai Location map: http://www.google.com/maps?q=12.974942,80.220916 ## Schedule * Environment for a Pyt

[Ilugc] Chennaipy February Meetup

2016-02-23 Thread Vijay Kumar B .
ints using Xlib (20 min) by Rengaraj * Analysis of Algorithms (20 min) by Ashok Govindarajan * Networking Tea Break (30 min) * Experimental Mathematics with Python and Sage (20 min) by Amritanshu Prasad * BitBake, the Embedded Linux Build Engine (20 min) by Vijay K