Search the web
Sign In
New User? Sign Up
linux-bangalore-programming · LB Programming Discussions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 7558 - 7587 of 7587   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries   (Group by Topic) Sort by Date ^  
#7558 From: vinod <vinod.chum@...>
Date: Thu Jun 11, 2009 4:44 am
Subject: Re: [blug-prog] command line argument + '*'
vin_vrs
Offline Offline
Send Email Send Email
 
Hi,

* is one of the metacharacter(special character) in unix shell.
* - matchess zero or more characters .
for eg: foo* - matches all files that start with foo-
            like foo, foo1, foo2, foo123

hence when u pass * as command line argument, shell expands it, which
results in all the files and sub-dir's
in current directory, hence you got the output so.

to avoid shell from expanding : try the following options
$./a.out '*'
$./a.out "*"
$./a.out \*


Regards,
Vinod

On Wed, Jun 10, 2009 at 8:02 PM, prabhjot singh <
prabhjotsinghengineer@...> wrote:

>
>
> Hi,
>
> I write a very simple program to print command line arguments.
> As and when program hits '*' in received arguments It converts it to list
> of
> files in current directory.
>
> My questions/doubts:
> 1) What is the reason behind this?
> 2) Can't I pass * as command line argument?
>
> #include <stdio.h>
> int main(int argc, char *argv[])
> {
> int i = 0;
> printf("argc: [%d]", argc);
> while (i < 10 && i < argc)
> printf("%s\n", argv[i++]);
> }
> output:-
>
> >./a.out *
> argc: [38]
> /*here goes list of files*/
>
> --
> Platform used: RH Linux - Bash shell | compiler: gcc [egcs-2.91.66 ]
>
> --
> Thanks
> PS
>
> [Non-text portions of this message have been removed]
>
>
>


[Non-text portions of this message have been removed]

#7559 From: sujay g <mail.sujayg@...>
Date: Thu Jun 11, 2009 4:48 am
Subject: Re: [blug-prog] command line argument + '*'
sg10b_2000
Offline Offline
Send Email Send Email
 
bash is interpreting * and passing it as the list of files in the
current directory, you could try passing escape sequence with * and
see what is the behavior.
-sujay

On Wed, Jun 10, 2009 at 8:02 PM, prabhjot
singh<prabhjotsinghengineer@...> wrote:
>
>
> Hi,
>
> I write a very simple program to print command line arguments.
> As and when program hits '*' in received arguments It converts it to list of
> files in current directory.
>
> My questions/doubts:
> 1) What is the reason behind this?
> 2) Can't I pass * as command line argument?
>
> #include <stdio.h>
> int main(int argc, char *argv[])
> {
> int i = 0;
> printf("argc: [%d]", argc);
> while (i < 10 && i < argc)
> printf("%s\n", argv[i++]);
> }
> output:-
>
>>./a.out *
> argc: [38]
> /*here goes list of files*/
>
> --
> Platform used: RH Linux - Bash shell | compiler: gcc [egcs-2.91.66 ]
>
> --
> Thanks
> PS
>
> [Non-text portions of this message have been removed]
>
>

#7560 From: prabhjot singh <prabhjotsinghengineer@...>
Date: Thu Jun 11, 2009 6:29 pm
Subject: Re: [blug-prog] command line argument + '*'
cepsingh
Offline Offline
Send Email Send Email
 
Thanks to all! Your suggestion works reply helped.
--
Prabhjot
On Thu, Jun 11, 2009 at 10:18 AM, sujay g <mail.sujayg@...> wrote:

>
>
> bash is interpreting * and passing it as the list of files in the
> current directory, you could try passing escape sequence with * and
> see what is the behavior.
> -sujay
>
> On Wed, Jun 10, 2009 at 8:02 PM, prabhjot
> singh<prabhjotsinghengineer@... <prabhjotsinghengineer%40gmail.com>>
> wrote:
> >
> >
>  > Hi,
> >
> > I write a very simple program to print command line arguments.
> > As and when program hits '*' in received arguments It converts it to list
> of
> > files in current directory.
> >
> > My questions/doubts:
> > 1) What is the reason behind this?
> > 2) Can't I pass * as command line argument?
> >
> > #include <stdio.h>
> > int main(int argc, char *argv[])
> > {
> > int i = 0;
> > printf("argc: [%d]", argc);
> > while (i < 10 && i < argc)
> > printf("%s\n", argv[i++]);
> > }
> > output:-
> >
> >>./a.out *
> > argc: [38]
> > /*here goes list of files*/
> >
> > --
> > Platform used: RH Linux - Bash shell | compiler: gcc [egcs-2.91.66 ]
> >
> > --
> > Thanks
> > PS
> >
> > [Non-text portions of this message have been removed]
> >
> >
>
>
>


[Non-text portions of this message have been removed]

#7561 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Jun 14, 2009 10:41 am
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7562 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Jun 28, 2009 10:38 am
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7563 From: linux-bangalore-programming@yahoogroups.com
Date: Wed Jul 1, 2009 11:05 am
Subject: File - welcome.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

Thank you for subscribing to the linux-bangalore-programming mailing list.
This message is to give you some information about this list and other lists
we maintain, as well as about some basic list rules.

It is also sent out once a month to all subscribers.

This list caters to *PROGRAMMING* discussions about Linux and the
Bangalore linux User Group. Non-programming discussions are *not* encouraged
here. Traffic on this list is usually quite high.

Please note that in order to prevent spamming and unruly behaviour, this list
will moderate the *first* post of a *new* member. The moderation will be
removed after the new member has shown himself/herself to be genuine, and
not a spammer or disruptive influence.

If you ever wish to unsubscribe from this list, send a blank message to

linux-bangalore-programming-unsubscribe@yahoogroups.com

OTHER LISTS
-----------

If you wish to participate in discussions but are not interested in
programming stuff, then we have several other lists to choose from.
Visit http://linux-bangalore.org for more information about these lists.

LIST RULES
----------

Most mailing lists have a set of guidelines for how you should post messages to
the list, and the BLUG's mailing lists follow these general rules of ettiquette.
Here's a short list of do's and don'ts for posting to the various BLUG mailing
lists.

Top-posts
This is the most common list newbie mistake!

Do not "top-post" (reply to a message by adding text to the top of the message
instead of below), as it loses the reader and the flow of the message and can
annoy other readers.

Example of an illegal top-post:

I think you should be swapping the arguments around in the
function, instead of the way you are doing it.

On Friday, the 13th, you said:

> I am using the function xyz(), giving arguments arg1 and arg2,
> but it does not work. Anyone know why?

Example of a correct bottom post:

On Friday, the 13th, you said:

> I am using the function xyz(), giving arguments arg1 and arg2,
> but it does not work. Anyone know why?

I think you should be swapping the arguments around in the
function, instead of the way you are doing it.

Overquoting
This is the second most common list newbie mistake!

If you are replying to another message, quote only the portions of that message
that you are specifically responding to, and insert your comments after those
quotes. Do not simply quote back the entire message! Trim off everything apart
from the 2-3 most relevant lines of the original message.

In general, your reply should contain at least as much text as the amount of
text you are quoting, if not more. Never quote back dozens of lines of text and
simply add a single line of text to the bottom - people will *hate* you for
that!
HTML Messages
HTML is not email, and email doesn't contain HTML, so please turn HTML
formatting OFF in your email client. Do not use italics, colors, bold, fonts,
pictures, sounds, or other HTML elements. Providing HREF (link) elements is
allowed. Please use only 7-bit text when sending email to the lists.

Attachments
Attachments of any sort are not allowed and will be stripped out automatically.

Off-topic
Stay on-topic for the list. This isn't a good place to discuss automobiles,
politics, music, or anything that is not related to Linux. Sometimes topics will
diverge from the general discussion, but please try to keep it relevant to the
list topic. Do not ask programming questions in the technical (installation and
admin) list, or technical questions in the non-technical list, or installation
questions in the programming list, etc.

Message recycling
Do not start a New message or thread by hitting "Reply" in your mail client and
changing the subject. When you do this, you mess up other participant's ability
to read mail in a threaded fashion. When you mean to post a new message, use
New, and when you want to reply to an existing message, hit Reply.

Message time and date
Please make sure the date and time on your computer is always current. When your
date is set to something such as the year 2006, messages posted by you will get
sorted based on that date, which may put them outside of the related month or
year they belong in.

Most of all, enjoy yourself on the list, and read messages from other users. In
them, you may find ideas, solutions to problems, or other information that may
be useful to you.

#7564 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Jul 12, 2009 1:15 pm
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7565 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Jul 26, 2009 6:58 pm
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7566 From: linux-bangalore-programming@yahoogroups.com
Date: Sat Aug 1, 2009 10:49 am
Subject: File - welcome.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

Thank you for subscribing to the linux-bangalore-programming mailing list.
This message is to give you some information about this list and other lists
we maintain, as well as about some basic list rules.

It is also sent out once a month to all subscribers.

This list caters to *PROGRAMMING* discussions about Linux and the
Bangalore linux User Group. Non-programming discussions are *not* encouraged
here. Traffic on this list is usually quite high.

Please note that in order to prevent spamming and unruly behaviour, this list
will moderate the *first* post of a *new* member. The moderation will be
removed after the new member has shown himself/herself to be genuine, and
not a spammer or disruptive influence.

If you ever wish to unsubscribe from this list, send a blank message to

linux-bangalore-programming-unsubscribe@yahoogroups.com

OTHER LISTS
-----------

If you wish to participate in discussions but are not interested in
programming stuff, then we have several other lists to choose from.
Visit http://linux-bangalore.org for more information about these lists.

LIST RULES
----------

Most mailing lists have a set of guidelines for how you should post messages to
the list, and the BLUG's mailing lists follow these general rules of ettiquette.
Here's a short list of do's and don'ts for posting to the various BLUG mailing
lists.

Top-posts
This is the most common list newbie mistake!

Do not "top-post" (reply to a message by adding text to the top of the message
instead of below), as it loses the reader and the flow of the message and can
annoy other readers.

Example of an illegal top-post:

I think you should be swapping the arguments around in the
function, instead of the way you are doing it.

On Friday, the 13th, you said:

> I am using the function xyz(), giving arguments arg1 and arg2,
> but it does not work. Anyone know why?

Example of a correct bottom post:

On Friday, the 13th, you said:

> I am using the function xyz(), giving arguments arg1 and arg2,
> but it does not work. Anyone know why?

I think you should be swapping the arguments around in the
function, instead of the way you are doing it.

Overquoting
This is the second most common list newbie mistake!

If you are replying to another message, quote only the portions of that message
that you are specifically responding to, and insert your comments after those
quotes. Do not simply quote back the entire message! Trim off everything apart
from the 2-3 most relevant lines of the original message.

In general, your reply should contain at least as much text as the amount of
text you are quoting, if not more. Never quote back dozens of lines of text and
simply add a single line of text to the bottom - people will *hate* you for
that!
HTML Messages
HTML is not email, and email doesn't contain HTML, so please turn HTML
formatting OFF in your email client. Do not use italics, colors, bold, fonts,
pictures, sounds, or other HTML elements. Providing HREF (link) elements is
allowed. Please use only 7-bit text when sending email to the lists.

Attachments
Attachments of any sort are not allowed and will be stripped out automatically.

Off-topic
Stay on-topic for the list. This isn't a good place to discuss automobiles,
politics, music, or anything that is not related to Linux. Sometimes topics will
diverge from the general discussion, but please try to keep it relevant to the
list topic. Do not ask programming questions in the technical (installation and
admin) list, or technical questions in the non-technical list, or installation
questions in the programming list, etc.

Message recycling
Do not start a New message or thread by hitting "Reply" in your mail client and
changing the subject. When you do this, you mess up other participant's ability
to read mail in a threaded fashion. When you mean to post a new message, use
New, and when you want to reply to an existing message, hit Reply.

Message time and date
Please make sure the date and time on your computer is always current. When your
date is set to something such as the year 2006, messages posted by you will get
sorted based on that date, which may put them outside of the related month or
year they belong in.

Most of all, enjoy yourself on the list, and read messages from other users. In
them, you may find ideas, solutions to problems, or other information that may
be useful to you.

#7567 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Aug 9, 2009 11:24 am
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7568 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Aug 23, 2009 11:18 am
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7569 From: linux-bangalore-programming@yahoogroups.com
Date: Tue Sep 1, 2009 11:17 am
Subject: File - welcome.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

Thank you for subscribing to the linux-bangalore-programming mailing list.
This message is to give you some information about this list and other lists
we maintain, as well as about some basic list rules.

It is also sent out once a month to all subscribers.

This list caters to *PROGRAMMING* discussions about Linux and the
Bangalore linux User Group. Non-programming discussions are *not* encouraged
here. Traffic on this list is usually quite high.

Please note that in order to prevent spamming and unruly behaviour, this list
will moderate the *first* post of a *new* member. The moderation will be
removed after the new member has shown himself/herself to be genuine, and
not a spammer or disruptive influence.

If you ever wish to unsubscribe from this list, send a blank message to

linux-bangalore-programming-unsubscribe@yahoogroups.com

OTHER LISTS
-----------

If you wish to participate in discussions but are not interested in
programming stuff, then we have several other lists to choose from.
Visit http://linux-bangalore.org for more information about these lists.

LIST RULES
----------

Most mailing lists have a set of guidelines for how you should post messages to
the list, and the BLUG's mailing lists follow these general rules of ettiquette.
Here's a short list of do's and don'ts for posting to the various BLUG mailing
lists.

Top-posts
This is the most common list newbie mistake!

Do not "top-post" (reply to a message by adding text to the top of the message
instead of below), as it loses the reader and the flow of the message and can
annoy other readers.

Example of an illegal top-post:

I think you should be swapping the arguments around in the
function, instead of the way you are doing it.

On Friday, the 13th, you said:

> I am using the function xyz(), giving arguments arg1 and arg2,
> but it does not work. Anyone know why?

Example of a correct bottom post:

On Friday, the 13th, you said:

> I am using the function xyz(), giving arguments arg1 and arg2,
> but it does not work. Anyone know why?

I think you should be swapping the arguments around in the
function, instead of the way you are doing it.

Overquoting
This is the second most common list newbie mistake!

If you are replying to another message, quote only the portions of that message
that you are specifically responding to, and insert your comments after those
quotes. Do not simply quote back the entire message! Trim off everything apart
from the 2-3 most relevant lines of the original message.

In general, your reply should contain at least as much text as the amount of
text you are quoting, if not more. Never quote back dozens of lines of text and
simply add a single line of text to the bottom - people will *hate* you for
that!
HTML Messages
HTML is not email, and email doesn't contain HTML, so please turn HTML
formatting OFF in your email client. Do not use italics, colors, bold, fonts,
pictures, sounds, or other HTML elements. Providing HREF (link) elements is
allowed. Please use only 7-bit text when sending email to the lists.

Attachments
Attachments of any sort are not allowed and will be stripped out automatically.

Off-topic
Stay on-topic for the list. This isn't a good place to discuss automobiles,
politics, music, or anything that is not related to Linux. Sometimes topics will
diverge from the general discussion, but please try to keep it relevant to the
list topic. Do not ask programming questions in the technical (installation and
admin) list, or technical questions in the non-technical list, or installation
questions in the programming list, etc.

Message recycling
Do not start a New message or thread by hitting "Reply" in your mail client and
changing the subject. When you do this, you mess up other participant's ability
to read mail in a threaded fashion. When you mean to post a new message, use
New, and when you want to reply to an existing message, hit Reply.

Message time and date
Please make sure the date and time on your computer is always current. When your
date is set to something such as the year 2006, messages posted by you will get
sorted based on that date, which may put them outside of the related month or
year they belong in.

Most of all, enjoy yourself on the list, and read messages from other users. In
them, you may find ideas, solutions to problems, or other information that may
be useful to you.

#7570 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Sep 6, 2009 10:56 am
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7571 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Sep 6, 2009 10:56 am
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7572 From: "dosi_barkha" <dosi_barkha@...>
Date: Wed Sep 16, 2009 5:17 am
Subject: Segmentation fault in SSL_read+
dosi_barkha
Offline Offline
Send Email Send Email
 
Hi,

I have written a multithreaded C-server program. During multiple https
connections I frequentl get segmentation fault saying

0x080985b0 in SSL_read ()
Current language: auto; currently asm
(gdb) bt
#0 0x080985b0 in SSL_read ()
#1 0x0894ddb0 in ?? ()
#2 0xb7f23ff4 in ?? () from /lib/i686/cmov/libpthread.so.0
#3 0x08080483 in StartHttpThread (pEngPriv=0x8901da0) at webapp/webapp.c:274
#4 0x08080ce4 in thread_http (pEng=0x8901da0) at webapp/webapp.c:191
#5 0xb7f144c0 in start_thread () from /lib/i686/cmov/libpthread.so.0
#6 0xb7d6d6de in clone () from /lib/i686/cmov/libc.so.6

Kindly help me what could be the cause of this

Regards
Barkha Dosi

#7573 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Sep 20, 2009 11:06 am
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7574 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Sep 20, 2009 11:06 am
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7575 From: Venkatesan S <svtesan@...>
Date: Fri Sep 18, 2009 7:52 am
Subject: Re: [blug-prog] Segmentation fault in SSL_read+
svtesan
Offline Offline
Send Email Send Email
 
On Wed, Sep 16, 2009 at 10:47 AM, dosi_barkha <dosi_barkha@...> wrote:

> Hi,
>
> I have written a multithreaded C-server program. During multiple https
> connections I frequentl get segmentation fault saying
>
> 0x080985b0 in SSL_read ()
> Current language: auto; currently asm
> (gdb) bt
> #0 0x080985b0 in SSL_read ()
> #1 0x0894ddb0 in ?? ()
> #2 0xb7f23ff4 in ?? () from /lib/i686/cmov/libpthread.so.0
> #3 0x08080483 in StartHttpThread (pEngPriv=0x8901da0) at
> webapp/webapp.c:274
> #4 0x08080ce4 in thread_http (pEng=0x8901da0) at webapp/webapp.c:191
> #5 0xb7f144c0 in start_thread () from /lib/i686/cmov/libpthread.so.0
> #6 0xb7d6d6de in clone () from /lib/i686/cmov/libc.so.6
>
> Kindly help me what could be the cause of this
>
>
Did you register the two required static callbacks  when using OpenSSL in
multithreaded environment?

http://www.openssl.org/docs/crypto/threads.html


Regards
> Barkha Dosi
>
>
>
> ------------------------------------
>
> --
> Before posting to this list, read the list rules FIRST!
>
> http://blug.in/list-rules
> Yahoo! Groups Links
>
>
>
>


--
“Everything that irritates us about others can lead us to an understanding
about ourselves.”
—Carl Jung


[Non-text portions of this message have been removed]

#7576 From: linux-bangalore-programming@yahoogroups.com
Date: Thu Oct 1, 2009 11:16 am
Subject: File - welcome.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

Thank you for subscribing to the linux-bangalore-programming mailing list.
This message is to give you some information about this list and other lists
we maintain, as well as about some basic list rules.

It is also sent out once a month to all subscribers.

This list caters to *PROGRAMMING* discussions about Linux and the
Bangalore linux User Group. Non-programming discussions are *not* encouraged
here. Traffic on this list is usually quite high.

Please note that in order to prevent spamming and unruly behaviour, this list
will moderate the *first* post of a *new* member. The moderation will be
removed after the new member has shown himself/herself to be genuine, and
not a spammer or disruptive influence.

If you ever wish to unsubscribe from this list, send a blank message to

linux-bangalore-programming-unsubscribe@yahoogroups.com

OTHER LISTS
-----------

If you wish to participate in discussions but are not interested in
programming stuff, then we have several other lists to choose from.
Visit http://linux-bangalore.org for more information about these lists.

LIST RULES
----------

Most mailing lists have a set of guidelines for how you should post messages to
the list, and the BLUG's mailing lists follow these general rules of ettiquette.
Here's a short list of do's and don'ts for posting to the various BLUG mailing
lists.

Top-posts
This is the most common list newbie mistake!

Do not "top-post" (reply to a message by adding text to the top of the message
instead of below), as it loses the reader and the flow of the message and can
annoy other readers.

Example of an illegal top-post:

I think you should be swapping the arguments around in the
function, instead of the way you are doing it.

On Friday, the 13th, you said:

> I am using the function xyz(), giving arguments arg1 and arg2,
> but it does not work. Anyone know why?

Example of a correct bottom post:

On Friday, the 13th, you said:

> I am using the function xyz(), giving arguments arg1 and arg2,
> but it does not work. Anyone know why?

I think you should be swapping the arguments around in the
function, instead of the way you are doing it.

Overquoting
This is the second most common list newbie mistake!

If you are replying to another message, quote only the portions of that message
that you are specifically responding to, and insert your comments after those
quotes. Do not simply quote back the entire message! Trim off everything apart
from the 2-3 most relevant lines of the original message.

In general, your reply should contain at least as much text as the amount of
text you are quoting, if not more. Never quote back dozens of lines of text and
simply add a single line of text to the bottom - people will *hate* you for
that!
HTML Messages
HTML is not email, and email doesn't contain HTML, so please turn HTML
formatting OFF in your email client. Do not use italics, colors, bold, fonts,
pictures, sounds, or other HTML elements. Providing HREF (link) elements is
allowed. Please use only 7-bit text when sending email to the lists.

Attachments
Attachments of any sort are not allowed and will be stripped out automatically.

Off-topic
Stay on-topic for the list. This isn't a good place to discuss automobiles,
politics, music, or anything that is not related to Linux. Sometimes topics will
diverge from the general discussion, but please try to keep it relevant to the
list topic. Do not ask programming questions in the technical (installation and
admin) list, or technical questions in the non-technical list, or installation
questions in the programming list, etc.

Message recycling
Do not start a New message or thread by hitting "Reply" in your mail client and
changing the subject. When you do this, you mess up other participant's ability
to read mail in a threaded fashion. When you mean to post a new message, use
New, and when you want to reply to an existing message, hit Reply.

Message time and date
Please make sure the date and time on your computer is always current. When your
date is set to something such as the year 2006, messages posted by you will get
sorted based on that date, which may put them outside of the related month or
year they belong in.

Most of all, enjoy yourself on the list, and read messages from other users. In
them, you may find ideas, solutions to problems, or other information that may
be useful to you.

#7577 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Oct 4, 2009 11:07 am
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7578 From: Atul Chitnis <listadmin@...>
Date: Fri Oct 16, 2009 2:37 pm
Subject: FOSS.IN/2009 Call for Participation
linuxbangalo...
Offline Offline
Send Email Send Email
 
And here we go - FOSS.IN/2009's Call for Participation. Apologies for
the delays, things are very different for us this year, with a new venue,
new team members, and all sorts of aches and pains we don't want to talk
about :)

http://foss.in/news/fossincfp-2009.html

The registration system for speakers is open NOW - head there as soon as
you finish reading this message.

Please repost/retweet/sms/email/whatever this message as far and wide as
possible. Thanks!

Atul Chitnis
Project Lead
FOSS.IN
http://foss.in

#7579 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Oct 18, 2009 12:18 pm
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7580 From: Atul Chitnis <listadmin@...>
Date: Tue Oct 20, 2009 7:23 am
Subject: FOSS.IN/2009 Speaker registration
linuxbangalo...
Offline Offline
Send Email Send Email
 
All:

Please note that the FOSS.IN/2009 Speaker registration is open, and a
number of submissions have already been received.

Read the CfP at

 	 http://foss.in/news/fossincfp-2009.html

and then head to

 	 http://foss.in/register/speaker-registration-2009

And submit your
talk/workout/workshop/bof/hacker-session/project-of-the-day proposal.

It's best NOT to do what most people do every year - procrastinate till
the last moment, especially since talk evaluation is happening as they are
received, and we are interacting with proposers to fine-tune things. Afte
the 26th, you will not have the benefit of this interaction.

Also, don't restriuct yourself to submitting just one item - feel free to
submit as many as possible - you never know what we will find most
appropriate/interesting!

And please spread the word in your offices, colleges, mailing lists,
twitter, facebooks, etc.

Remember - all content at FOSS.IN comes from the FOSS community!

Now go, Go, GO!!!!!

Atul

#7581 From: Atul Chitnis <listadmin@...>
Date: Sun Oct 25, 2009 4:03 pm
Subject: FOSS.IN/2009 Speaker registration closes Mon 26/Oct 23:59 IST
linuxbangalo...
Offline Offline
Send Email Send Email
 
If you plan to be anything more than a delegate at FOSS.IN/2009, you
better hurry - registrations close on Monday, October 26th, at 23:59
GMT+0530.

So if you want to be part of the largest and most important Free & Open
Source Software event in this part of the world, and stand shoulder to
shoulder with some of the biggest FOSS contributors and hackers in the
world, then you need to head to

http://foss.in/news/fossincfp-2009.html

right now, read about the event and what is new this year

http://foss.in/news/fossin2009-event-announcement.html
http://foss.in/news/foss-in-wind-of-change.html

(including my own take on things)

http://atulchitnis.net/diary/showentry/507

then go to

http://foss.in/register/speaker-registration-2009

and put in your proposal. If you have questions, feel free to ask on the
mailing list or (if you are shy :P) via the contact system
(http://foss.in/contact).

The closure of the CFP will also signal the opening of delegate
registration this week, as well as the Call for Sponsorship.

Team FOSS.IN will meet Monday night in Bangalore to start going through
all the submissions, discuss plans and actions, and take decisions. You
should start hearing the first few announcements by Tuesday.

For those of you who haven't yet realised it: this year the Indian FOSS
community completes TEN YEARS of organising FOSS community-oriented events
- the first one happened in 1999

http://linux-bangalore.org/blug/events/itcom99/

So are you going to be sitting there on your hands, mutely watching the
giants on stage, OR BE ONE OF THEM?

Atul

#7582 From: "nee_savi" <nee.savi@...>
Date: Tue Oct 27, 2009 1:57 am
Subject: Getting timezone offset for any specified remote timezone wrt machine tz
nee_savi
Offline Offline
Send Email Send Email
 
Hi LBP members,

I have been breaking my head for a day or 2 on this trivial issue of calcualting
time offset between machine time and any specific timezone.

The catch is not to use setenv to set the TZ varaible. Though thats the easiest
way to do it. But facing some issues in it.

This is my code snippet


bool calculateMachineToDestinationTimeOffset(const char* tz, long& offset)
{
         assert(tz != NULL);

         if (GoUtil::validateTimeZone(tz) == false)
         {
                 cout << GoEvent::Error << "Invalid TimeZone : " << tz << endl;
                 return false;
         }

         char currentTimeZone[255];

         if (getenv("TZ") == NULL)
         {
                 cout << GoEvent::Warning << "Can not get TimeZone information
from environment" << endl;
                 return false;
         }
         else
         {
                 sprintf(currentTimeZone, "%s", getenv("TZ"));
         }

         time_t now = time(NULL);
         struct tm timeStruct;

         localtime_r(&now, &timeStruct);
         timeStruct.tm_isdst = -1;

         if (setenv("TZ", tz, 1) != 0)
         {
                 cout<< GoEvent::Warning << "Fail to set TimeZone information" <<
endl;
                 return false;
         }

         time_t then = mktime(&timeStruct);

         offset = now - then ;

         if (setenv("TZ", currentTimeZone, 1) != 0)
         {
                 cout << GoEvent::Warning << "Fail to set TimeZone information"
<< endl;
                 return false;
         }


         //Somehow the TZ is not set properly if getenv is not done in the end.
         //strange but .. I am doing it for the time being.

        cout << GoEvent::Info << "TimeZone is changed to:"<< getenv("TZ") <<endl;

         return true;
}


And immediately after calling this function I use the offset to get tick in
destination and call localtime to get it into struct format.

But somehow the last call to setenv dosent reset the TZ to original TZ and
localtime_r is impacted.

Any better way to do it???

#7583 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Nov 1, 2009 11:14 am
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7584 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Nov 1, 2009 11:14 am
Subject: File - welcome.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

Thank you for subscribing to the linux-bangalore-programming mailing list.
This message is to give you some information about this list and other lists
we maintain, as well as about some basic list rules.

It is also sent out once a month to all subscribers.

This list caters to *PROGRAMMING* discussions about Linux and the
Bangalore linux User Group. Non-programming discussions are *not* encouraged
here. Traffic on this list is usually quite high.

Please note that in order to prevent spamming and unruly behaviour, this list
will moderate the *first* post of a *new* member. The moderation will be
removed after the new member has shown himself/herself to be genuine, and
not a spammer or disruptive influence.

If you ever wish to unsubscribe from this list, send a blank message to

linux-bangalore-programming-unsubscribe@yahoogroups.com

OTHER LISTS
-----------

If you wish to participate in discussions but are not interested in
programming stuff, then we have several other lists to choose from.
Visit http://linux-bangalore.org for more information about these lists.

LIST RULES
----------

Most mailing lists have a set of guidelines for how you should post messages to
the list, and the BLUG's mailing lists follow these general rules of ettiquette.
Here's a short list of do's and don'ts for posting to the various BLUG mailing
lists.

Top-posts
This is the most common list newbie mistake!

Do not "top-post" (reply to a message by adding text to the top of the message
instead of below), as it loses the reader and the flow of the message and can
annoy other readers.

Example of an illegal top-post:

I think you should be swapping the arguments around in the
function, instead of the way you are doing it.

On Friday, the 13th, you said:

> I am using the function xyz(), giving arguments arg1 and arg2,
> but it does not work. Anyone know why?

Example of a correct bottom post:

On Friday, the 13th, you said:

> I am using the function xyz(), giving arguments arg1 and arg2,
> but it does not work. Anyone know why?

I think you should be swapping the arguments around in the
function, instead of the way you are doing it.

Overquoting
This is the second most common list newbie mistake!

If you are replying to another message, quote only the portions of that message
that you are specifically responding to, and insert your comments after those
quotes. Do not simply quote back the entire message! Trim off everything apart
from the 2-3 most relevant lines of the original message.

In general, your reply should contain at least as much text as the amount of
text you are quoting, if not more. Never quote back dozens of lines of text and
simply add a single line of text to the bottom - people will *hate* you for
that!
HTML Messages
HTML is not email, and email doesn't contain HTML, so please turn HTML
formatting OFF in your email client. Do not use italics, colors, bold, fonts,
pictures, sounds, or other HTML elements. Providing HREF (link) elements is
allowed. Please use only 7-bit text when sending email to the lists.

Attachments
Attachments of any sort are not allowed and will be stripped out automatically.

Off-topic
Stay on-topic for the list. This isn't a good place to discuss automobiles,
politics, music, or anything that is not related to Linux. Sometimes topics will
diverge from the general discussion, but please try to keep it relevant to the
list topic. Do not ask programming questions in the technical (installation and
admin) list, or technical questions in the non-technical list, or installation
questions in the programming list, etc.

Message recycling
Do not start a New message or thread by hitting "Reply" in your mail client and
changing the subject. When you do this, you mess up other participant's ability
to read mail in a threaded fashion. When you mean to post a new message, use
New, and when you want to reply to an existing message, hit Reply.

Message time and date
Please make sure the date and time on your computer is always current. When your
date is set to something such as the year 2006, messages posted by you will get
sorted based on that date, which may put them outside of the related month or
year they belong in.

Most of all, enjoy yourself on the list, and read messages from other users. In
them, you may find ideas, solutions to problems, or other information that may
be useful to you.

#7585 From: Atul Chitnis <listadmin@...>
Date: Mon Nov 9, 2009 4:57 pm
Subject: FOSS.IN/2009: Delegate Registration now open
linuxbangalo...
Offline Offline
Send Email Send Email
 
FOSS.IN/2009 Delegate Registration is now open

http://foss.in/register

Go - book your place at the biggest FOSS event of the year.

Atul

#7586 From: linux-bangalore-programming@yahoogroups.com
Date: Sun Nov 15, 2009 12:28 pm
Subject: File - rules.txt
linux-bangalore-programming@yahoogroups.com
Send Email Send Email
 
This is a reminder to members of this list about the posting rules:

If you are posting to this list, and your messages aren't appearing, check
the following:

1. Did you top-post?

Top posting is when you type your reply above the question. That is OK in
email, but not on our lists.

2. Did you over-quote/inline?

Overquoting is of you quote back more than 2-3 lines of the original
message, or if your reply is less than the quoted text.

Inlining is just inserting text in the original message without trimming
off the non-required stuff.

Both are no-nos on these lists.

3. Did you go seriously off-topic?

Each of our lists has a focus - the technical list is for
admin/install/user queries, the programming list is for development, the
non-tech list is for stuff like licenses, policies, activities, etc.

While a slight amount of off-topic material in the course of a discussion
is OK (like a joke), a blatant off-topic message (such as posting about
the weather on the technical list) is not. Note that programming questions
on the technical list are as off-topic as installation questions on the
programming list.

4. Did you try posting non-allowed material?

Job posts are not allowed on any of our lists except linux-bangalore-jobs.
Posting one on the programming or technical list will instantly get you
banned from the list.

Any form of spam is also disallowed.

Personal attacks are off-topic, too. Use email to resolve your differences
with someone, don't try to use the lists as your stage.

5. Still haven't got the answer?

Check out http://blug.in/list-rules

About moderation:

All our lists place new users (or users who have never posted) in
moderation until we are sure they know the rules, abide by them, and are
not spammers. This means that you may send a message, and it goes into
moderation for us to check out. If the message is found to be ok, it is
released. If the next couple of messages are also ok, then that account
gets demoderated.

If you look at the traffic on the lists today, you will see that almost
everyone participating frequently is demoderated. Sometimes, someone who
only posts infrequently may remain moderated even if he/she posts
correctly. This is common, if you post only infrequently, you are deemed
to be a new user, and are "on watch".

The fastest way to get demoderated is to participate regularly and abide
by the rules.

=====================================================================
PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND.
If you post one, you will get banned from the list. This applies to
everyone - no matter how big or small your company may be.
=====================================================================

#7587 From: Atul Chitnis <listadmin@...>
Date: Wed Nov 25, 2009 10:31 am
Subject: Delegate Registration Payments
linuxbangalo...
Offline Offline
Send Email Send Email
 
Alright - so the jinx continues. Just when we have everything in place,
we are forced to call off the online payment process for logistical
reasons. We aren't going to go into any detail here - just that this
time the problem is us, not the vendor (who bent over backwards getting
things in place). The primary issue is that as a non-commercial, volunteer
run event, we do not enjoy the kind of financial and legal protection in
the case of credit card fraud or similar issues that commercial events
have. Rather than take the risk of getting into trouble, we would rather
not take a chance with it this year.

Right, with that behind us, here's how you go about making your delegate
fee payment:

http://foss.in/news/delegate-registration-payments.html

Please note that online delegate registration closes at midnight on
November 30th - so make sure you go and register NOW:

http://foss.in/register

In other news, have you registered your non-commercial FOSS project for
free space at

http://foss.in/register/expo/foss-project-registration

If you are a commercial outfit and wish to have a stall at FOSS>IN, then
head to

http://foss.in/register/expo/foss-in-expo-registration-commercial

And if you are confused about what WorkOuts are, then you simply MUST read

http://foss.in/fossin2009/understanding-foss-in-the-workouts.html

Atul

--
Atul Chitnis
Bangalore, India
http://atulchitnis.net

Messages 7558 - 7587 of 7587   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help