Re: [ILUG-Cochin.org] Raspberry-Pi "demo day" on Aug 12

2012-09-14 Thread Saju M
Hi, Where can I buy one Raspberry Pi board. I want Model B. What would be the total cost (Indian rupee) if buy from http://www.farnell.com/ or http://www.rs-components.com/raspberrypi How may days it will take. I am staying in Bangalore. It it available some where in Bangalore ?? Thanks, On Th

[ILUG-Cochin.org] Howto share remote project folder and work on it using IDE like netbeans and eclipse

2012-07-02 Thread Saju M
I want to access project running on remote machine, for that i done following steps * Shared remote proect folder using NFS * Mounted on client machine eg: on /mnt/cms * Created a new project in netbeans/eclipse and pointed project path to /mnt/cms/-- * After that i can work on project but it Very

Re: [ILUG-Cochin.org] Getting error (Directory not empty) when copying file using 'cp' command to shared location (NFS) and trying to remove directory after killing copy process

2012-03-22 Thread Saju M
ss > back to normal state for the kill signal to really kill it. After that > you would be able to remove the dir. > > On Thu, Mar 22, 2012 at 1:13 PM, Saju M wrote: > > Getting error (Directory not empty) when copying file using 'cp' command > to > > s

[ILUG-Cochin.org] Getting error (Directory not empty) when copying file using 'cp' command to shared location (NFS) and trying to remove directory after killing copy process

2012-03-22 Thread Saju M
Getting error (Directory not empty) when copying file using 'cp' command to shared location (NFS) and trying to remove directory after killing copy process is it NFS configuration issue ? NFS config # cat /etc/exports /home/fluent/share *(rw,sync,no_subtree_check) Using centos 6 as client

Re: [ILUG-Cochin.org] Themes

2010-11-29 Thread Saju M
http://netbeans.org/downloads/index.html http://www.eclipse.org/linuxtools/ ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.f

Re: [ILUG-Cochin.org] help to buy a laptop with FULL linux support

2010-10-27 Thread Saju M
Dell Inspiron 15R Laptop (T540612IN8) Support ubuntu (No driver problems) ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.free

Re: [ILUG-Cochin.org] Regarding web app development

2010-10-27 Thread Saju M
Try Django http://www.djangoproject.com/ or http://turbogears.org/ Mail to me , If you any help in Django and turbogears ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/

Re: [ILUG-Cochin.org] Job opening

2010-10-04 Thread Saju M
sorry, that was my mistake ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.freenode.net

Re: [ILUG-Cochin.org] Job opening

2010-10-04 Thread Saju M
DELETE *SajuResume.docx* ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.freenode.net

Re: [ILUG-Cochin.org] Job opening

2010-10-04 Thread Saju M
How can i delete that message from mailinglist ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.freenode.net

Re: [ILUG-Cochin.org] Job opening

2010-10-03 Thread Saju M
Current CTC : 1.5 Expected CTC: 4.2 Notice Period required: 3 months SajuResume.docx Description: application/vnd.openxmlformats-officedocument.wordprocessingml.document ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-

[ILUG-Cochin.org] Visit my Netlog profile

2009-09-17 Thread saju m
Hey, I have created a Netlog profile with my pictures, videos, blogs and events and I want to add you as a friend so you can see it. You first need to register on Netlog! When you log in, you can create your own profile. Take a look: http://en.netlog.com/go/mailurl/type=invite_1&mailid=47515345

Re: [ILUG-Cochin.org] how to convert kerala to a Free software State?

2009-05-19 Thread Saju M
Centre for Advanced Training in Free and open Source Software. http://www.catfoss.kerala.gov.in/ ___ Mailinglist mailing list Mailinglist@ilug-cochin.org http://ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org

Re: [ILUG-Cochin.org] MP3 and MPEG on Fedora 7

2009-04-05 Thread Saju M
try it http://www.my-guides.net/en/content/view/125/26/1/5/#mp3 ___ Mailinglist mailing list Mailinglist@ilug-cochin.org http://ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org

Re: [ILUG-Cochin.org] Postgresql Help

2009-04-01 Thread Saju M
#include #include "/usr/include/libpq-fe.h" void main() { PGconn *conn; PGresult *res; int id; char name[20]; char *qur; conn = PQsetdbLogin("127.0.0.1","5432",NULL,NULL,"postgres","postgres",NULL); if(PQstatus(conn)==CONNECTION_OK) { printf("Connection Established\n\n"); printf("

[ILUG-Cochin.org] GTK Error

2009-04-01 Thread Saju M
How solve this . error: request for member ‘age’ in something not a structure or union [s...@localhost src]$ make gcc -DHAVE_CONFIG_H -I. -I.. -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/local/share/locale"\" -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/i

[ILUG-Cochin.org] Postgresql Help

2009-03-31 Thread Saju M
How can insert values from variables to Postgres database. #include #include "/usr/include/libpq-fe.h" void main() { PGconn *conn; PGresult *res; int id; char name[20]; char *qur; conn = PQsetdbLogin("127.0.0.1","5432",NULL,NULL,"postgres","postgres",NULL); if(PQstatus(conn)==CONNECTION_