Re: [Ilugc] Bulk SMS service

2012-04-10 Thread Shakthi Kannan
Hi,

--- On Tue, Apr 10, 2012 at 10:27 AM, Dhastha dhasthagh...@gmail.com wrote:
| But I want to send 1000 of SMS per day. I can choose paying service,
| but I dont know whether all mobile numbers kept secure.
\--

You will need to read through the terms and conditions of the SMS
service provider before you agree and sign up for the service. For
example:

  http://www.smsglobal.com/global/en/information/terms.php

BSNL also provides bulk SMS options:

  http://bsnl.co.in/service/sms.html

---
| So I am looking for the secure way of sending Bluk SMS in Linux
\--

Even if you interface only with a *nix system, eventually it is the
service provider who delivers the SMS. So, choosing the right plan and
agreement is important.

SK

P.S.: I have not used the above mentioned services, and I don't work
for them either.

-- 
Shakthi Kannan
http://www.shakthimaan.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] compiling dhvani in ubuntu 11.10

2012-04-10 Thread 0

 when compiling using just ./configure,
 getting the error as
 can not find zlib header.


It will help if you can paste the error report from configure script.

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


Re: [Ilugc] Basic Cricket Score Fetching App - Python + Tkinter

2012-04-10 Thread Prasanna Venkadesh
Dear all,

Ganesh Katrapati forked GillyCricket project and added a new file called
GillyLive.py which fetches the score in regular interval of time and
displays it using system notifications alone (does not require GUI
packages).

README file format changed to MARKDOWN. So it looks decent now than before
:-)

Thanks for Ganesh Katrapati and looking for more contributions from others
too. If you get new ideas, please feel free to fork it, add it. Ideas are
also most welcome.

Check both repository here:-
1. My Repo:- https://github.com/PrasannaVenkadesh/GillyCricket
2. Ganesh Katrapati's repo:- https://github.com/neshkatrapati/GillyCricket

-- 
Regards,
Prasanna Venkadesh

PuduvaiLUG Mailing List:
http://puduvailug.wordpress.com/mailing-list-guidelines/
FOSS Jobs all over India: http://fossjobs.in
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] compiling dhvani in ubuntu 11.10

2012-04-10 Thread Shrinivasan T
On Tue, Apr 10, 2012 at 7:34 PM, 0 0...@0throot.com wrote:

 when compiling using just ./configure,
 getting the error as
 can not find zlib header.


 It will help if you can paste the error report from configure script.

Get the output of ./configure here.
http://paste.ubuntu.com/923352/

-- 
Regards,
T.Shrinivasan


My Life with GNU/Linux : http://goinggnu.wordpress.com
Free/Open Source Jobs : http://fossjobs.in

Get CollabNet Subversion Edge :     http://www.collab.net/svnedge
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] compiling dhvani in ubuntu 11.10

2012-04-10 Thread Mohan L
On Tue, Apr 10, 2012 at 7:18 PM, Shrinivasan T tshriniva...@gmail.comwrote:

 I am trying to compile dhvani in ubuntu 11.10

 Got the code dhvani-0.95 from
 http://sourceforge.net/projects/dhvani/

 when compiling using just ./configure,
 getting the error as
 can not find zlib header.

 zlib is there in my system.


Hi Shrini,

In configure.in :

AC_CHECK_HEADER([gsm.h],, [AC_MSG_ERROR([[cannot find zlib header]])])

$ sudo apt-get install libgsm1 libgsm1-dev

Now try configure :

$./configure

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


Re: [Ilugc] compiling dhvani in ubuntu 11.10

2012-04-10 Thread Mohan L
On Tue, Apr 10, 2012 at 8:02 PM, Mohan L l.mohan...@gmail.com



 Hi Shrini,

 In configure.in :

 AC_CHECK_HEADER([gsm.h],, [AC_MSG_ERROR([[cannot find zlib header]])])




 $ sudo apt-get install libgsm1 libgsm1-dev

 Now try configure :

 $./configure


Just installing libgsm1-dev disappear cannot find zlib header error for
me. I just conformed in Ubuntu 11.10.

It seems it looks gsm.h header file and reports cannot find zlib header.
You can see this in configure.in file .

Thanks
Mohan L



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


Re: [Ilugc] Basic Cricket Score Fetching App - Python + Tkinter

2012-04-10 Thread AJIT KUMAR
HI Prasana,

I have downloaded the GillyCricket application.
But that is for 64bit window machine as you have mention in Readme file.
How to run that in window32 system.
I have window xp 32 bit machine.

Thanking you.
ajit

On Tue, Apr 10, 2012 at 7:35 PM, Prasanna Venkadesh prasmai...@gmail.comwrote:

 Dear all,

 Ganesh Katrapati forked GillyCricket project and added a new file called
 GillyLive.py which fetches the score in regular interval of time and
 displays it using system notifications alone (does not require GUI
 packages).

 README file format changed to MARKDOWN. So it looks decent now than before
 :-)

 Thanks for Ganesh Katrapati and looking for more contributions from others
 too. If you get new ideas, please feel free to fork it, add it. Ideas are
 also most welcome.

 Check both repository here:-
 1. My Repo:- https://github.com/PrasannaVenkadesh/GillyCricket
 2. Ganesh Katrapati's repo:- https://github.com/neshkatrapati/GillyCricket

 --
 Regards,
 Prasanna Venkadesh

 
 PuduvaiLUG Mailing List:
 http://puduvailug.wordpress.com/mailing-list-guidelines/
 FOSS Jobs all over India: http://fossjobs.in
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

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


Re: [Ilugc] Basic Cricket Score Fetching App - Python + Tkinter

2012-04-10 Thread Prasanna Venkadesh
Hi Ajit Kumar,

On Tue, Apr 10, 2012 at 9:17 PM, AJIT KUMAR urwithaj...@gmail.com wrote:

 HI Prasana,

 I have downloaded the GillyCricket application.
 But that is for 64bit window machine as you have mention in Readme file.
 How to run that in window32 system.
 I have window xp 32 bit machine.


I have sent you in offlist to your mail id personally, since it deals with
Windows stuff, this place would not be right to put and even i don't want
to bring in Windows discussion into Linux user group mailing list. :-)


 Thanking you.
 ajit

 --
Regards,
Prasanna Venkadesh

PuduvaiLUG Mailing List:
http://puduvailug.wordpress.com/mailing-list-guidelines/
FOSS Jobs all over India: http://fossjobs.in
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Basic Cricket Score Fetching App - Python + Tkinter

2012-04-10 Thread satyaakam goswami

 I have sent you in offlist to your mail id personally, since it deals with
 Windows stuff, this place would not be right to put and even i don't want
 to bring in Windows discussion into Linux user group mailing list. :-)


it does not matter as long as its Foss .We do have Firefox , Libre office,
VLC  on windows yes it is ok to talk about them on this list .

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


Re: [Ilugc] Basic Cricket Score Fetching App - Python + Tkinter

2012-04-10 Thread AJIT KUMAR
Hi Prasanna
i try with Ubuntu 10.4 according to readme file instruction.
but got a error likecouldn't find python-feedparser.
How to fix this.
As i m very new to Ubuntu use so it seems difficult to me updating the
python module i did same in my window.
As i m very excited for this application but not able to run it.

My system detail is :
No LSB modules are available.
Distributor ID:Ubuntu
Description:Ubuntu 10.04 LTS
Release:10.04
Codename:lucid

Thanking you.



On Tue, Apr 10, 2012 at 10:31 PM, Prasanna Venkadesh
prasmai...@gmail.comwrote:

 Hi Ajit Kumar,

 On Tue, Apr 10, 2012 at 9:17 PM, AJIT KUMAR urwithaj...@gmail.com wrote:

  HI Prasana,
 
  I have downloaded the GillyCricket application.
  But that is for 64bit window machine as you have mention in Readme file.
  How to run that in window32 system.
  I have window xp 32 bit machine.
 

 I have sent you in offlist to your mail id personally, since it deals with
 Windows stuff, this place would not be right to put and even i don't want
 to bring in Windows discussion into Linux user group mailing list. :-)


  Thanking you.
  ajit
 
  --
 Regards,
 Prasanna Venkadesh

 
 PuduvaiLUG Mailing List:
 http://puduvailug.wordpress.com/mailing-list-guidelines/
 FOSS Jobs all over India: http://fossjobs.in
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

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


Re: [Ilugc] Basic Cricket Score Fetching App - Python + Tkinter

2012-04-10 Thread Mehul Ved
On Tue, Apr 10, 2012 at 11:32 PM, AJIT KUMAR urwithaj...@gmail.com wrote:
 Hi Prasanna
 i try with Ubuntu 10.4 according to readme file instruction.
 but got a error likecouldn't find python-feedparser.
 How to fix this.

Open a terminal and type
sudo apt-get install python-feedparser
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc