From sundaryourfriend at gmail.com Sun Sep 1 01:26:22 2013 From: sundaryourfriend at gmail.com (SundaraRaman R) Date: Sun, 1 Sep 2013 13:56:22 +0530 Subject: [Bangalore-pm] CPAN source code syntax highlighter Message-ID: Hi, I frequently view the source of modules I use on CPAN (since documentation doesn't say enough in many cases), and wished for improved readability of those pages. So I've written a small userscript that enable syntax highlighting on CPAN source pages (http://cpansearch.perl.org/src/*). It's called CPANSyntaxHighlight (http://userscripts.org/scripts/show/176984) and can be installed either using Greasemonkey on Firefox ( https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/) or Tampermonkey on Chrome ( https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en). Hope someone finds this useful, and thanks to http://softwaremaniacs.org/soft/highlight/en/ for providing the actual syntax highlighting code! C heers, Sundar -- ! Knowing others is intelligence; knowing yourself is true wisdom. Mastering others is strength; mastering yourself is true power. http://www.google.com/profiles/sundaryourfriend -------------- next part -------------- An HTML attachment was scrubbed... URL: From suraj at careergear.in Sun Sep 1 08:15:59 2013 From: suraj at careergear.in (Suraj Kumar) Date: Sun, 1 Sep 2013 20:45:59 +0530 Subject: [Bangalore-pm] Reference Nazism (was: Re: Job Fair Intiative) Message-ID: Hi Saravanan, On Wed, Jul 24, 2013 at 11:31 AM, Saravanan T wrote: > > > my %contact_details = { > 'Mobile number' => '+91 998 000 6286', > 'email' => 'perlsaran at gmail.com,talk2saravanan at yahoo.co.in', > 'linkedin' => 'in.linkedin.com/in/perlsaran' > 'twitter' => '@perlsaran' > }; Sorry about this nitpick, that too a late one at that. In the above code, you've created a hash variable but are assigning it a hash reference as value. The %contact_details variable will now have the stringified hash set as key and value being undef. Like this: > $ perl -MData::Dumper -e 'my %x = { key => q(value) }; print Dumper \%x' > $VAR1 = { > 'HASH(0x132e998)' => undef > }; The correct way of doing it... well, TIMTOWTDI, so: You could either only talk in terms of references: my $contact_details = { key => value } or in terms of hashes my %contact_details = ( key => value ) Regards, -Suraj -- An Onion is an Onion skin with an Onion inside it until the inner most Onion skin without an Onion inside. From superpulse.x at gmail.com Sun Sep 1 12:51:41 2013 From: superpulse.x at gmail.com (venkatakrishnan g) Date: Mon, 2 Sep 2013 01:21:41 +0530 Subject: [Bangalore-pm] Aug Meetup Message-ID: Hey Everybody, August meetup went great, there were several new faces. Thank you Yahoo! for hosting us, and Saran for making sure things went smoothly. Thank you everybody for making it a great evening. We had a few talks: - Suraj presenting the idea for his oil drilling simulation - I had a severely unprepared talk on measuring heart rate with Perl and R - Vasundhar had an excellent and short talk on writing better Perl - Suraj then had impromptu but detailed tutorial like session covering Perl basics We had Saran holding it all together, all in all it was a great meet up, we had a brief discussion later on. Everybody agreed that we still need to organize this event better, i personally felt it was too long. With a very little effort we can make it a better experience for everybody. We should probably have a discussion on how we can make it better and have volunteers taking up specific responsibility for each meet up. Cheers, V -------------- next part -------------- An HTML attachment was scrubbed... URL: From mkirank at gmail.com Mon Sep 2 01:19:12 2013 From: mkirank at gmail.com (Kiran Kumar) Date: Mon, 2 Sep 2013 13:49:12 +0530 Subject: [Bangalore-pm] CPAN source code syntax highlighter In-Reply-To: References: Message-ID: https://metacpan.org/ Has a lot of new features and syntax highlighting enabled . On Sun, Sep 1, 2013 at 1:56 PM, SundaraRaman R wrote: > Hi, > > I frequently view the source of modules I use on CPAN (since documentation > doesn't say enough in many cases), and wished for improved readability of > those pages. So I've written a small userscript that enable syntax > highlighting on CPAN source pages (http://cpansearch.perl.org/src/*). > > It's called CPANSyntaxHighlight ( > http://userscripts.org/scripts/show/176984) and can be installed either > using Greasemonkey on Firefox ( > https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/) or > Tampermonkey on Chrome ( > https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en). > > > Hope someone finds this useful, and thanks to > http://softwaremaniacs.org/soft/highlight/en/ for providing the actual > syntax highlighting code! > > C > heers, > Sundar > > > > -- > ! Knowing others is intelligence; knowing yourself is true wisdom. > Mastering others is strength; mastering yourself is true power. > http://www.google.com/profiles/sundaryourfriend > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From chankey007 at gmail.com Mon Sep 2 01:23:11 2013 From: chankey007 at gmail.com (Chankey Pathak) Date: Mon, 2 Sep 2013 13:53:11 +0530 Subject: [Bangalore-pm] CPAN source code syntax highlighter In-Reply-To: References: Message-ID: Yes, I was about to say the same. There you have the "Source" and "Source (Raw)" option. Example: https://metacpan.org/source/RJBS/perl-5.18.1/lib/File/Copy.pm http://api.metacpan.org/source/RJBS/perl-5.18.1/lib/File/Copy.pm On Mon, Sep 2, 2013 at 1:49 PM, Kiran Kumar wrote: > https://metacpan.org/ > Has a lot of new features and syntax highlighting enabled . > > > On Sun, Sep 1, 2013 at 1:56 PM, SundaraRaman R > wrote: > >> Hi, >> >> I frequently view the source of modules I use on CPAN (since >> documentation doesn't say enough in many cases), and wished for improved >> readability of those pages. So I've written a small userscript that enable >> syntax highlighting on CPAN source pages ( >> http://cpansearch.perl.org/src/*). >> >> It's called CPANSyntaxHighlight ( >> http://userscripts.org/scripts/show/176984) and can be installed either >> using Greasemonkey on Firefox ( >> https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/) or >> Tampermonkey on Chrome ( >> https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en). >> >> >> Hope someone finds this useful, and thanks to >> http://softwaremaniacs.org/soft/highlight/en/ for providing the actual >> syntax highlighting code! >> >> C >> heers, >> Sundar >> >> >> >> -- >> ! Knowing others is intelligence; knowing yourself is true wisdom. >> Mastering others is strength; mastering yourself is true power. >> http://www.google.com/profiles/sundaryourfriend >> >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -- Regards, Chankey Pathak -------------- next part -------------- An HTML attachment was scrubbed... URL: From sundaryourfriend at gmail.com Mon Sep 2 02:26:09 2013 From: sundaryourfriend at gmail.com (SundaraRaman R) Date: Mon, 2 Sep 2013 14:56:09 +0530 Subject: [Bangalore-pm] CPAN source code syntax highlighter In-Reply-To: References: Message-ID: Thanks, this is a much much better designed site. Shame that it rarely appears on Google results though, I guess they don't have as many inbound links as cpan.org. -- ! Knowing others is intelligence; knowing yourself is true wisdom. Mastering others is strength; mastering yourself is true power. http://www.google.com/profiles/sundaryourfriend -------------- next part -------------- An HTML attachment was scrubbed... URL: From coolearthian at gmail.com Wed Sep 4 01:00:59 2013 From: coolearthian at gmail.com (Ranjith Kumar) Date: Wed, 4 Sep 2013 01:00:59 -0700 Subject: [Bangalore-pm] August meetup Message-ID: Hey guys last month's meetup was very informative. Thank you Venkat, Suraj, Vasundhar for talking and Saran for organizing. Thank you to all the people who participated in the event. Hope to meet you all soon in this month's meetup :) -------------- next part -------------- An HTML attachment was scrubbed... URL: From nbezzala at yahoo.com Tue Sep 10 21:29:32 2013 From: nbezzala at yahoo.com (Nitish Bezzala) Date: Tue, 10 Sep 2013 21:29:32 -0700 (PDT) Subject: [Bangalore-pm] Ideas for topics In-Reply-To: References: <1377682696.89198.YahooMailNeo@web192503.mail.sg3.yahoo.com> Message-ID: <1378873772.78272.YahooMailNeo@web163605.mail.gq1.yahoo.com> Hello, Since we are new to this, we could just do topics which others have done before. For example - http://wellington.pm.org/archive/index.html Regards, Nitish -------------- next part -------------- An HTML attachment was scrubbed... URL: From gurunath.katagi at gmail.com Thu Sep 12 03:53:55 2013 From: gurunath.katagi at gmail.com (Gurunath Katagi) Date: Thu, 12 Sep 2013 16:23:55 +0530 Subject: [Bangalore-pm] can't locate object method via perl package Message-ID: Hi everyone.. I am running a perl program which uses Math::Vector. But i am getting the following error Can't locate object method "UnitVecPoints" via package "Math::Vector" at /usr/local/share/perl5/Math/Vector.pm line 135. Can anybody look into it and let me know how to proceed ? The module is correctly installed. Thank u Guruanth -------------- next part -------------- An HTML attachment was scrubbed... URL: From chankey007 at gmail.com Thu Sep 12 04:03:43 2013 From: chankey007 at gmail.com (Chankey Pathak) Date: Thu, 12 Sep 2013 16:33:43 +0530 Subject: [Bangalore-pm] can't locate object method via perl package In-Reply-To: References: Message-ID: I looked at the source of Vector.pm and I found that there is no method as "UnitVecPoints". There is however a method named "UnitVectorPoints". I think you are looking for that. Try to rename it in Vector.pm. On Thu, Sep 12, 2013 at 4:23 PM, Gurunath Katagi wrote: > Hi everyone.. > I am running a perl program which uses Math::Vector. > But i am getting the following error > Can't locate object method "UnitVecPoints" via package "Math::Vector" at > /usr/local/share/perl5/Math/Vector.pm line 135. > > Can anybody look into it and let me know how to proceed ? The module is > correctly installed. > > Thank u > Guruanth > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -- Regards, Chankey Pathak -------------- next part -------------- An HTML attachment was scrubbed... URL: From abhishek.netjain at gmail.com Thu Sep 12 04:12:36 2013 From: abhishek.netjain at gmail.com (abhishek jain) Date: Thu, 12 Sep 2013 16:42:36 +0530 Subject: [Bangalore-pm] can't locate object method via perl package In-Reply-To: References: Message-ID: > Hi everyone.. > I am running a perl program which uses Math::Vector. Hi Please avoid cross post. What is the version of module you are using? Thanks Abhishek -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant.2006tyagi at gmail.com Thu Sep 12 05:12:31 2013 From: prashant.2006tyagi at gmail.com (prashant tyagi) Date: Thu, 12 Sep 2013 17:42:31 +0530 Subject: [Bangalore-pm] Need help in XML Parsing.. Message-ID: Hi, I am facing issue while reading an xml and updating to diff xml. The thing is both files is in diff format. So I am not aware if XML transformation is feasible. here is my attempt-- my $parser = XML::LibXML->new(); $doc = $parser->parse_file("input.xml"); my $appName = $doc->findvalue(q|@name|); So I have slurp whole file into $doc. Same way I have opened output.xml (complex one ) and did this way. use XML::LibXML; my $parser = XML::LibXML->new(); my $doc = $parser->parse_file("output.xml"); my $query = "//anonotaion"; my($node) = $doc->findnodes($query); $node->setData('$appname'); print $doc->toString; output.xml format is completely different from input.xml. I would like to know if there is any good way to achieve this. fraction of xmls is -- __input.xml__ template EULA LICENSE AGREEMENT welcome to my app ..... __output.xml__
new app
branding information OvMabk .... Thanks for the help.. Prashant -------------- next part -------------- An HTML attachment was scrubbed... URL: From shantanu at cpan.org Thu Sep 12 12:23:44 2013 From: shantanu at cpan.org (Shantanu Bhadoria) Date: Fri, 13 Sep 2013 02:23:44 +0700 Subject: [Bangalore-pm] can't locate object method via perl package Message-ID: > I am running a perl program which uses Math::Vector. > But i am getting the following error > Can't locate object method "UnitVecPoints" via package "Math::Vector" at > /usr/local/share/perl5/Math/Vector.pm line 135. > > Can anybody look into it and let me know how to proceed ? The module is > correctly installed. > slightly off topic what made you choose a module that is so poorly documented for your work? Why not use something like Math::Vector::Real? -------------- next part -------------- An HTML attachment was scrubbed... URL: From talk2saravanan at yahoo.co.in Fri Sep 13 01:50:57 2013 From: talk2saravanan at yahoo.co.in (Saravanan T) Date: Fri, 13 Sep 2013 16:50:57 +0800 (SGT) Subject: [Bangalore-pm] September meetup - Need Venue Sponsorship Message-ID: <1379062257.68197.YahooMailNeo@web192502.mail.sg3.yahoo.com> Hey Bangalore Perl Mongers, I see lot of perl discussion in this thread.Lets keep this going. In Last meetup the perl talk by Suraj ( Gaming using perl ) and Venkat ( Sense your hearbeat using Perl ?through your headphone ) seems very interesting. Over past few meetup we conducted this perl meetup at Yahoo office and Exceleron. Since Exceleron is busy with some other schedule.We would require a venue sponsorship from any company. It can be a home office or any corporate companies conference hall. Please reach out to your companies for venue sponsorship. Last time we discussed few perl topics need to be discussed 1) How to contribute to CPAN ? - Vasundhar 2) Identify Venue and other sponsorship - ? 3) How do we engage more meetups 4) Talk to perl foundation about our plan for YAPC-INDIA - [ Ya'kov,Saran ] 5)How to attract more perl ppl ? 6) identify indian cpan contributors and asking them to give a perl talk - [ Shantanu , Saran ] 7) Volunteers Hey guys i have a travel plan for next month i would like any one to volunteer for organizing next month meetup. Yaakov - Please guide us with the plan for YAPC INDIA Shantanu - Please help us with list of indian cpan contributors Venkat & Kiran & others - Looking for your help in sharing interesting ideas? Vasundhar & Exceleron team mates - Help us in attracting more perl ppl Thanks, ~Saran -------------- next part -------------- An HTML attachment was scrubbed... URL: From bvasundhar at gmail.com Fri Sep 13 04:56:49 2013 From: bvasundhar at gmail.com (Vasundhar) Date: Fri, 13 Sep 2013 17:26:49 +0530 Subject: [Bangalore-pm] September meetup - Need Venue Sponsorship In-Reply-To: <1379062257.68197.YahooMailNeo@web192502.mail.sg3.yahoo.com> References: <1379062257.68197.YahooMailNeo@web192502.mail.sg3.yahoo.com> Message-ID: <4D1608D5-6281-4CC5-AF61-52C23F7206DB@gmail.com> Hi Saran, In October we should be fine with organizing at our office, can it be after 22nd of October ? Will respond to rest of the questions in my next response :) Thanks a lot ! Vasundhar Sent from my iPhone On 13-Sep-2013, at 14:21, "Saravanan T" wrote: > Hey Bangalore Perl Mongers, > > > I see lot of perl discussion in this thread.Lets keep this going. > > In Last meetup the perl talk by Suraj ( Gaming using perl ) and Venkat ( Sense your hearbeat using Perl through your headphone ) seems very interesting. > > Over past few meetup we conducted this perl meetup at Yahoo office and Exceleron. > Since Exceleron is busy with some other schedule.We would require a venue sponsorship from any company. > > It can be a home office or any corporate companies conference hall. > > Please reach out to your companies for venue sponsorship. > > Last time we discussed few perl topics need to be discussed > > > 1) How to contribute to CPAN ? - Vasundhar > 2) Identify Venue and other sponsorship - ? > 3) How do we engage more meetups > 4) Talk to perl foundation about our plan for YAPC-INDIA - [ Ya'kov,Saran ] > 5)How to attract more perl ppl ? > 6) identify indian cpan contributors and asking them to give a perl talk - [ Shantanu , Saran ] > 7) Volunteers > > Hey guys i have a travel plan for next month i would like any one to volunteer for organizing next month meetup. > > Yaakov - Please guide us with the plan for YAPC INDIA > Shantanu - Please help us with list of indian cpan contributors > Venkat & Kiran & others - Looking for your help in sharing interesting ideas > Vasundhar & Exceleron team mates - Help us in attracting more perl ppl > > Thanks, > ~Saran > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kanishka.black0 at gmail.com Fri Sep 13 05:04:47 2013 From: kanishka.black0 at gmail.com (kanishka.black0 at gmail.com) Date: Fri, 13 Sep 2013 17:34:47 +0530 Subject: [Bangalore-pm] Any per jobs in bangalore? Message-ID: <20130913120447.5230727.12167.79@gmail.com> An HTML attachment was scrubbed... URL: From me at upasana.me Fri Sep 13 05:15:30 2013 From: me at upasana.me (Upasana Shukla) Date: Fri, 13 Sep 2013 17:45:30 +0530 Subject: [Bangalore-pm] Any per jobs in bangalore? In-Reply-To: <20130913120447.5230727.12167.79@gmail.com> References: <20130913120447.5230727.12167.79@gmail.com> Message-ID: <523301E2.80003@upasana.me> Hi Hari, Try jobs.perl.org. On Friday 13 September 2013 05:34 PM, kanishka.black0 at gmail.com wrote: > Hai all, > > I have tried LinkedIn lately for perl jobs > Are there any let me know people > Thank you > > Hari Kishan > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -- Upasana -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 901 bytes Desc: OpenPGP digital signature URL: From superpulse.x at gmail.com Fri Sep 13 06:18:16 2013 From: superpulse.x at gmail.com (venkatakrishnan g) Date: Fri, 13 Sep 2013 18:48:16 +0530 Subject: [Bangalore-pm] September meetup - Need Venue Sponsorship In-Reply-To: <4D1608D5-6281-4CC5-AF61-52C23F7206DB@gmail.com> References: <1379062257.68197.YahooMailNeo@web192502.mail.sg3.yahoo.com> <4D1608D5-6281-4CC5-AF61-52C23F7206DB@gmail.com> Message-ID: Hey All, We'll have to still see if we can have a september meetup somewhere, if we don't get location i'm open to just meeting up in any place over a beer anyway, we could make it informal gathering. Open to other ideas. Cheers, V On 13 September 2013 17:26, Vasundhar wrote: > Hi Saran, > > In October we should be fine with organizing at our office, can it be > after 22nd of October ? > > Will respond to rest of the questions in my next response :) > > Thanks a lot ! > Vasundhar > > Sent from my iPhone > > On 13-Sep-2013, at 14:21, "Saravanan T" > wrote: > > Hey Bangalore Perl Mongers, > > > I see lot of perl discussion in this thread.Lets keep this going. > > In Last meetup the perl talk by Suraj ( Gaming using perl ) and Venkat ( > Sense your hearbeat using Perl through your headphone ) seems very > interesting. > > Over past few meetup we conducted this perl meetup at Yahoo office and > Exceleron. > Since Exceleron is busy with some other schedule.We would require a venue > sponsorship from any company. > > It can be a home office or any corporate companies conference hall. > > Please reach out to your companies for venue sponsorship. > > Last time we discussed few perl topics need to be discussed > > > 1) How to contribute to CPAN ? - Vasundhar > 2) Identify Venue and other sponsorship - ? > 3) How do we engage more meetups > 4) Talk to perl foundation about our plan for YAPC-INDIA - [ Ya'kov,Saran ] > 5)How to attract more perl ppl ? > 6) identify indian cpan contributors and asking them to give a perl talk - > [ Shantanu , Saran ] > 7) Volunteers > > Hey guys i have a travel plan for next month i would like any one to > volunteer for organizing next month meetup. > > Yaakov - Please guide us with the plan for YAPC INDIA > Shantanu - Please help us with list of indian cpan contributors > Venkat & Kiran & others - Looking for your help in sharing interesting > ideas > Vasundhar & Exceleron team mates - Help us in attracting more perl ppl > > Thanks, > ~Saran > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ravish.kumar at gs.com Sun Sep 15 21:34:34 2013 From: ravish.kumar at gs.com (Kumar, Ravish) Date: Mon, 16 Sep 2013 00:34:34 -0400 Subject: [Bangalore-pm] Any per jobs in bangalore? In-Reply-To: <523301E2.80003@upasana.me> References: <20130913120447.5230727.12167.79@gmail.com> <523301E2.80003@upasana.me> Message-ID: Can you please send the resume urgently ? -----Original Message----- From: Bangalore-pm [mailto:bangalore-pm-bounces+ravish.kumar=gs.com at pm.org] On Behalf Of Upasana Shukla Sent: Friday, September 13, 2013 5:46 PM To: Bangalore.pm Subject: Re: [Bangalore-pm] Any per jobs in bangalore? Hi Hari, Try jobs.perl.org. On Friday 13 September 2013 05:34 PM, kanishka.black0 at gmail.com wrote: > Hai all, > > I have tried LinkedIn lately for perl jobs Are there any let me know > people Thank you > > Hari Kishan > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -- Upasana From abhishek.netjain at gmail.com Mon Sep 16 00:35:26 2013 From: abhishek.netjain at gmail.com (abhishek jain) Date: Mon, 16 Sep 2013 13:05:26 +0530 Subject: [Bangalore-pm] Any per jobs in bangalore? In-Reply-To: References: <20130913120447.5230727.12167.79@gmail.com> <523301E2.80003@upasana.me> Message-ID: "Kumar, Ravish" wrote: > > Can you please send the resume urgently ? Please try and keep the discussion which involves just one person off the list. I meant requesting one monger to send resume of him / her cv could have been sent privately. Thanks Abhishek -------------- next part -------------- An HTML attachment was scrubbed... URL: From deepti at careergear.in Mon Sep 16 22:59:53 2013 From: deepti at careergear.in (Deepti Varshney) Date: Tue, 17 Sep 2013 11:29:53 +0530 Subject: [Bangalore-pm] September meetup - Need Venue Sponsorship In-Reply-To: <1379062257.68197.YahooMailNeo@web192502.mail.sg3.yahoo.com> References: <1379062257.68197.YahooMailNeo@web192502.mail.sg3.yahoo.com> Message-ID: On Fri, Sep 13, 2013 at 2:20 PM, Saravanan T wrote: > We would require a venue > sponsorship from any company. I have asked (today) at InMobi whether we can host this meetup on 21st Sep. The following is my email body: Hi, > A perl mongers meet up group has been happening since 3 months with about > 25+ participants in each meeting. The group has been 'touring' all > companies towards building up a community. In this regard, as a > representative of the perl mongers, I'd like to request your permission to > host a perl mongers meetup where about 25-50 participants are expected to > be present for about 2-3 hours on a weekend (sat or sun). Naturally, the > idea is also to benefit InMobi's own perl users. On behalf of InMobi, I'm > willing to take up any required responsibilities provided basic facilities > (projector, mic) are arranged. > Eager to hear your thoughts. > > Regards, > -Suraj Awaiting response from InMobi. Hope ~4 days notice is thrilling enough for most of us to get ready for the meetup ;) If you guys think we should keep it next weekend, let me know. 21st is late enough already ;) Regards, -Suraj -------------- next part -------------- An HTML attachment was scrubbed... URL: From suraj at careergear.in Mon Sep 16 23:12:04 2013 From: suraj at careergear.in (Suraj Kumar) Date: Tue, 17 Sep 2013 11:42:04 +0530 Subject: [Bangalore-pm] September meetup - Need Venue Sponsorship In-Reply-To: <1379062257.68197.YahooMailNeo@web192502.mail.sg3.yahoo.com> References: <1379062257.68197.YahooMailNeo@web192502.mail.sg3.yahoo.com> Message-ID: Hi, I have asked (today) at InMobi whether we can host this meetup on 21st Sep. The following is my email body: Hi, > A perl mongers meet up group has been happening since 3 months with about > 25+ participants in each meeting. The group has been 'touring' all > companies towards building up a community. In this regard, as a > representative of the perl mongers, I'd like to request your permission to > host a perl mongers meetup where about 25-50 participants are expected to > be present for about 2-3 hours on a weekend (sat or sun). Naturally, the > idea is also to benefit InMobi's own perl users. On behalf of InMobi, I'm > willing to take up any required responsibilities provided basic facilities > (projector, mic) are arranged. > Eager to hear your thoughts. > > Regards, > -Suraj Awaiting response from InMobi. Hope ~4 days notice is thrilling enough for most of us to get ready for the meetup ;) If you guys think we should keep it next weekend, let me know. 21st is late enough already ;) Regards, -Suraj -------------- next part -------------- An HTML attachment was scrubbed... URL: From talk2saravanan at yahoo.co.in Mon Sep 16 23:58:36 2013 From: talk2saravanan at yahoo.co.in (Saravanan T) Date: Tue, 17 Sep 2013 14:58:36 +0800 (SGT) Subject: [Bangalore-pm] September meetup - Need Venue Sponsorship In-Reply-To: References: <1379062257.68197.YahooMailNeo@web192502.mail.sg3.yahoo.com> Message-ID: <1379401116.10862.YahooMailNeo@web192505.mail.sg3.yahoo.com> Cool, Looking forward to hear from inmobi. Thanks suraj for your efforts! ~Saran ________________________________ From: Suraj Kumar To: Saravanan T Cc: "bangalore-pm at pm.org" Sent: Tuesday, September 17, 2013 11:42 AM Subject: Re: September meetup - Need Venue Sponsorship Hi, I have asked (today) at InMobi whether we can host this meetup on 21st Sep. The following is my email body: Hi, >A perl mongers meet up group has been happening since 3 months with about 25+ participants in each meeting. The group has been 'touring' all companies towards building up a community. In this regard, as a representative of the perl mongers, I'd like to request your permission to host a perl mongers meetup where about 25-50 participants are expected to be present for about 2-3 hours on a weekend (sat or sun). Naturally, the idea is also to benefit InMobi's own perl users. On behalf of InMobi, I'm willing to take up any required responsibilities provided basic facilities (projector, mic) are arranged. >Eager to hear your thoughts. > >Regards, >? -Suraj Awaiting response from InMobi. Hope ~4 days notice is thrilling enough for most of us to get ready for the meetup ;) If you guys think we should keep it next weekend, let me know. 21st is late enough already ;) Regards, ? -Suraj -------------- next part -------------- An HTML attachment was scrubbed... URL: From deepti at careergear.in Tue Sep 17 04:43:27 2013 From: deepti at careergear.in (Deepti Varshney) Date: Tue, 17 Sep 2013 17:13:27 +0530 Subject: [Bangalore-pm] Next Bangalore-PM at InMobi! Message-ID: Hi guys, I've gotten approval and we can do the next meeting at InMobi on 21st. Address: InMobi, 7th Floor, Block Delta, B Block, Embassy Tech Square (Cessna Business Park), Kadubeesanahalli Village, Outer Ring Road, (Varthur Hobli), Bangalore - 560103 Directions: https://maps.google.co.in/maps?q=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&hl=en&ll=12.935617,77.693596&spn=0.011021,0.01929&sll=12.93683,77.693596&sspn=0.011021,0.01929&oq=Embassy+Tech+Square&hq=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&t=m&z=16 Regards, -Suraj -------------- next part -------------- An HTML attachment was scrubbed... URL: From nbezzala at yahoo.com Tue Sep 17 05:49:50 2013 From: nbezzala at yahoo.com (Nitish Bezzala) Date: Tue, 17 Sep 2013 05:49:50 -0700 (PDT) Subject: [Bangalore-pm] Next Bangalore-PM at InMobi! In-Reply-To: References: Message-ID: <1379422190.20455.YahooMailNeo@web163602.mail.gq1.yahoo.com> Time please? ________________________________ From: Deepti Varshney To: Bangalore.pm Sent: Tuesday, September 17, 2013 5:13 PM Subject: [Bangalore-pm] Next Bangalore-PM at InMobi! Hi guys, I've gotten approval and we can do the next meeting at InMobi on 21st.? Address: InMobi, 7th Floor, Block Delta, B Block, Embassy Tech Square (Cessna Business Park), Kadubeesanahalli Village, Outer Ring Road, (Varthur Hobli), Bangalore - 560103 Directions:?https://maps.google.co.in/maps?q=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&hl=en&ll=12.935617,77.693596&spn=0.011021,0.01929&sll=12.93683,77.693596&sspn=0.011021,0.01929&oq=Embassy+Tech+Square&hq=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&t=m&z=16 Regards, ? -Suraj _______________________________________________ Bangalore-pm mailing list Bangalore-pm at pm.org http://mail.pm.org/mailman/listinfo/bangalore-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: From superpulse.x at gmail.com Tue Sep 17 10:30:11 2013 From: superpulse.x at gmail.com (venkatakrishnan g) Date: Tue, 17 Sep 2013 23:00:11 +0530 Subject: [Bangalore-pm] Next Bangalore-PM at InMobi! In-Reply-To: References: Message-ID: Sweet. I've edited the meetup page to reflect that, i've left the time from 3:00PM to 5:00 PM. On 17 September 2013 17:13, Deepti Varshney wrote: > Hi guys, > > I've gotten approval and we can do the next meeting at InMobi on 21st. > > Address: InMobi, 7th Floor, Block Delta, B Block, Embassy Tech Square > (Cessna Business Park), Kadubeesanahalli Village, Outer Ring Road, (Varthur > Hobli), Bangalore - 560103 > > Directions: > https://maps.google.co.in/maps?q=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&hl=en&ll=12.935617,77.693596&spn=0.011021,0.01929&sll=12.93683,77.693596&sspn=0.011021,0.01929&oq=Embassy+Tech+Square&hq=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&t=m&z=16 > > Regards, > > -Suraj > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From superpulse.x at gmail.com Tue Sep 17 10:31:02 2013 From: superpulse.x at gmail.com (venkatakrishnan g) Date: Tue, 17 Sep 2013 23:01:02 +0530 Subject: [Bangalore-pm] Next Bangalore-PM at InMobi! In-Reply-To: References: Message-ID: Thank you Suraj. This is awesome. On 17 September 2013 23:00, venkatakrishnan g wrote: > Sweet. I've edited the meetup page to reflect that, i've left the time > from 3:00PM to 5:00 PM. > > > On 17 September 2013 17:13, Deepti Varshney wrote: > >> Hi guys, >> >> I've gotten approval and we can do the next meeting at InMobi on 21st. >> >> Address: InMobi, 7th Floor, Block Delta, B Block, Embassy Tech Square >> (Cessna Business Park), Kadubeesanahalli Village, Outer Ring Road, (Varthur >> Hobli), Bangalore - 560103 >> >> Directions: >> https://maps.google.co.in/maps?q=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&hl=en&ll=12.935617,77.693596&spn=0.011021,0.01929&sll=12.93683,77.693596&sspn=0.011021,0.01929&oq=Embassy+Tech+Square&hq=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&t=m&z=16 >> >> Regards, >> >> -Suraj >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From talk2saravanan at yahoo.co.in Tue Sep 17 23:01:01 2013 From: talk2saravanan at yahoo.co.in (Saravanan T) Date: Wed, 18 Sep 2013 14:01:01 +0800 (SGT) Subject: [Bangalore-pm] Next Bangalore-PM at InMobi! In-Reply-To: References: Message-ID: <1379484061.9846.YahooMailNeo@web192501.mail.sg3.yahoo.com> Hey Guys! This weekend i am planning to travel .Please volunteer yourself and organize the event. Lets hope for a bigger turn around. Thanks, ~Saran in.linkedin.com/in/perlsaran ________________________________ From: venkatakrishnan g To: Bangalore.pm Sent: Tuesday, September 17, 2013 11:00 PM Subject: Re: [Bangalore-pm] Next Bangalore-PM at InMobi! Sweet. I've edited the meetup page to reflect that, i've left the time from 3:00PM to 5:00 PM. On 17 September 2013 17:13, Deepti Varshney wrote: Hi guys, > > >I've gotten approval and we can do the next meeting at InMobi on 21st.? > > >Address: InMobi, 7th Floor, Block Delta, B Block, Embassy Tech Square (Cessna Business Park), Kadubeesanahalli Village, Outer Ring Road, (Varthur Hobli), Bangalore - 560103 >Directions:?https://maps.google.co.in/maps?q=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&hl=en&ll=12.935617,77.693596&spn=0.011021,0.01929&sll=12.93683,77.693596&sspn=0.011021,0.01929&oq=Embassy+Tech+Square&hq=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&t=m&z=16 >Regards, >? -Suraj >_______________________________________________ >Bangalore-pm mailing list >Bangalore-pm at pm.org >http://mail.pm.org/mailman/listinfo/bangalore-pm > _______________________________________________ Bangalore-pm mailing list Bangalore-pm at pm.org http://mail.pm.org/mailman/listinfo/bangalore-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: From suraj at careergear.in Tue Sep 17 23:52:11 2013 From: suraj at careergear.in (Suraj Kumar) Date: Wed, 18 Sep 2013 12:22:11 +0530 Subject: [Bangalore-pm] Next Bangalore-PM at InMobi! In-Reply-To: <1379484061.9846.YahooMailNeo@web192501.mail.sg3.yahoo.com> References: <1379484061.9846.YahooMailNeo@web192501.mail.sg3.yahoo.com> Message-ID: Saravanan, I volunteer since this is set to happen at my office. Since I'm a novice at arranging such sessions, I'd like to get my work reviewed. Experienced folks can comment whether this is sufficient: Copy pasting from an internal email I sent to our facilities dept... I have asked for the following: > *Space:* Since about 30-50 people are expected, I think it will be > appropriate to do this in the Cafeteria . Is it possible? > *Projector:* We need to demo things on computer - we need projector for > both mac/non-mac connectivity > *Internet:* We need guest (public-internet-only) wireless access to all > guests > *Parking:* Guests should be able to park vehicles without hassles > *Snacks:* It would be nice if the nearest breakout area / snack counter > have some things for guests to eat/drink (coffee / tea / cool drinks / > biscuits / etc.,) Saran and other folks please suggest anything else that I should be asking for. Regards, -Suraj On Wed, Sep 18, 2013 at 11:31 AM, Saravanan T wrote: > Hey Guys! > > This weekend i am planning to travel .Please volunteer yourself and > organize the event. > Lets hope for a bigger turn around. > > Thanks, > ~Saran > in.linkedin.com/in/perlsaran > ------------------------------ > *From:* venkatakrishnan g > *To:* Bangalore.pm > *Sent:* Tuesday, September 17, 2013 11:00 PM > *Subject:* Re: [Bangalore-pm] Next Bangalore-PM at InMobi! > > Sweet. I've edited the meetup page to reflect that, i've left the time > from 3:00PM to 5:00 PM. > > > On 17 September 2013 17:13, Deepti Varshney wrote: > > Hi guys, > > I've gotten approval and we can do the next meeting at InMobi on 21st. > > Address: InMobi, 7th Floor, Block Delta, B Block, Embassy Tech Square > (Cessna Business Park), Kadubeesanahalli Village, Outer Ring Road, (Varthur > Hobli), Bangalore - 560103 > Directions: > https://maps.google.co.in/maps?q=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&hl=en&ll=12.935617,77.693596&spn=0.011021,0.01929&sll=12.93683,77.693596&sspn=0.011021,0.01929&oq=Embassy+Tech+Square&hq=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&t=m&z=16 > Regards, > -Suraj > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -- An Onion is an Onion skin with an Onion inside it. -------------- next part -------------- An HTML attachment was scrubbed... URL: From talk2saravanan at yahoo.co.in Wed Sep 18 00:31:47 2013 From: talk2saravanan at yahoo.co.in (Saravanan T) Date: Wed, 18 Sep 2013 15:31:47 +0800 (SGT) Subject: [Bangalore-pm] Next Bangalore-PM at InMobi! In-Reply-To: References: <1379484061.9846.YahooMailNeo@web192501.mail.sg3.yahoo.com> Message-ID: <1379489507.3235.YahooMailNeo@web192506.mail.sg3.yahoo.com> We can plan for hangout and ustream session.[ Identify some volunteers .need good wi-fi ] Notify security about Non-Inmobi visitors list. Otherwise things are fine. ~Saran ________________________________ From: Suraj Kumar To: Saravanan T ; Bangalore.pm Sent: Wednesday, September 18, 2013 12:22 PM Subject: Re: [Bangalore-pm] Next Bangalore-PM at InMobi! Saravanan, I volunteer since this is set to happen at my office. Since I'm a novice at arranging such sessions, I'd like to get my work reviewed. Experienced folks can comment whether this is sufficient: Copy pasting from an internal email I sent to our facilities dept... I have asked for the following: Space:?Since about 30-50 people are expected, I think it will be appropriate to do this in the Cafeteria . Is it possible? Projector:?We need to demo things on computer - we need projector for both mac/non-mac connectivity Internet:?We need guest (public-internet-only) wireless access to all guests Parking:?Guests should be able to park vehicles without hasslesSnacks:?It would be nice if the nearest breakout area / snack counter have some things for guests to eat/drink (coffee / tea / cool drinks / biscuits / etc.,) Saran and other folks please suggest anything else that I should be asking for. Regards, ? -Suraj On Wed, Sep 18, 2013 at 11:31 AM, Saravanan T wrote: Hey Guys! > > >This weekend i am planning to travel .Please volunteer yourself and organize the event. >Lets hope for a bigger turn around. > > >Thanks, >~Saran >in.linkedin.com/in/perlsaran > >________________________________ > From: venkatakrishnan g >To: Bangalore.pm >Sent: Tuesday, September 17, 2013 11:00 PM >Subject: Re: [Bangalore-pm] Next Bangalore-PM at InMobi! > > > >Sweet. I've edited the meetup page to reflect that, i've left the time from 3:00PM to 5:00 PM. > > > >On 17 September 2013 17:13, Deepti Varshney wrote: > >Hi guys, >> >> >>I've gotten approval and we can do the next meeting at InMobi on 21st.? >> >> >>Address: InMobi, 7th Floor, Block Delta, B Block, Embassy Tech Square (Cessna Business Park), Kadubeesanahalli Village, Outer Ring Road, (Varthur Hobli), Bangalore - 560103 >>Directions:?https://maps.google.co.in/maps?q=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&hl=en&ll=12.935617,77.693596&spn=0.011021,0.01929&sll=12.93683,77.693596&sspn=0.011021,0.01929&oq=Embassy+Tech+Square&hq=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&t=m&z=16 >>Regards, >>? -Suraj >>_______________________________________________ >>Bangalore-pm mailing list >>Bangalore-pm at pm.org >>http://mail.pm.org/mailman/listinfo/bangalore-pm >> > >_______________________________________________ >Bangalore-pm mailing list >Bangalore-pm at pm.org >http://mail.pm.org/mailman/listinfo/bangalore-pm > > >_______________________________________________ >Bangalore-pm mailing list >Bangalore-pm at pm.org >http://mail.pm.org/mailman/listinfo/bangalore-pm > -- An Onion is an Onion skin with an Onion inside it. -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant.2006tyagi at gmail.com Wed Sep 18 00:33:27 2013 From: prashant.2006tyagi at gmail.com (prashant tyagi) Date: Wed, 18 Sep 2013 13:03:27 +0530 Subject: [Bangalore-pm] Next Bangalore-PM at InMobi! In-Reply-To: <1379489507.3235.YahooMailNeo@web192506.mail.sg3.yahoo.com> References: <1379484061.9846.YahooMailNeo@web192501.mail.sg3.yahoo.com> <1379489507.3235.YahooMailNeo@web192506.mail.sg3.yahoo.com> Message-ID: I nominate myself for volunteering.. Thanks, On Sep 18, 2013 1:02 PM, "Saravanan T" wrote: > We can plan for hangout and ustream session.[ Identify some volunteers > .need good wi-fi ] > Notify security about Non-Inmobi visitors list. > > Otherwise things are fine. > > ~Saran > ------------------------------ > *From:* Suraj Kumar > *To:* Saravanan T ; Bangalore.pm < > bangalore-pm at pm.org> > *Sent:* Wednesday, September 18, 2013 12:22 PM > *Subject:* Re: [Bangalore-pm] Next Bangalore-PM at InMobi! > > Saravanan, > > I volunteer since this is set to happen at my office. Since I'm a novice > at arranging such sessions, I'd like to get my work reviewed. Experienced > folks can comment whether this is sufficient: > > Copy pasting from an internal email I sent to our facilities dept... I > have asked for the following: > > *Space:* Since about 30-50 people are expected, I think it will be > appropriate to do this in the Cafeteria . Is it possible? *Projector:* We > need to demo things on computer - we need projector for both mac/non-mac > connectivity *Internet:* We need guest (public-internet-only) wireless > access to all guests *Parking:* Guests should be able to park vehicles > without hassles*Snacks:* It would be nice if the nearest breakout area / > snack counter have some things for guests to eat/drink (coffee / tea / cool > drinks / biscuits / etc.,) > > > Saran and other folks please suggest anything else that I should be asking > for. > > Regards, > > -Suraj > > > > On Wed, Sep 18, 2013 at 11:31 AM, Saravanan T wrote: > > Hey Guys! > > This weekend i am planning to travel .Please volunteer yourself and > organize the event. > Lets hope for a bigger turn around. > > Thanks, > ~Saran > in.linkedin.com/in/perlsaran > ------------------------------ > *From:* venkatakrishnan g > *To:* Bangalore.pm > *Sent:* Tuesday, September 17, 2013 11:00 PM > *Subject:* Re: [Bangalore-pm] Next Bangalore-PM at InMobi! > > Sweet. I've edited the meetup page to reflect that, i've left the time > from 3:00PM to 5:00 PM. > > > On 17 September 2013 17:13, Deepti Varshney wrote: > > Hi guys, > > I've gotten approval and we can do the next meeting at InMobi on 21st. > > Address: InMobi, 7th Floor, Block Delta, B Block, Embassy Tech Square > (Cessna Business Park), Kadubeesanahalli Village, Outer Ring Road, (Varthur > Hobli), Bangalore - 560103 > Directions: > https://maps.google.co.in/maps?q=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&hl=en&ll=12.935617,77.693596&spn=0.011021,0.01929&sll=12.93683,77.693596&sspn=0.011021,0.01929&oq=Embassy+Tech+Square&hq=Embassy+Tech+Square,+Marathahalli-Sarjapur+Outer+Ring+Road,+Kadubisanahalli,+Bangalore,+Karnataka&t=m&z=16 > Regards, > -Suraj > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > > > -- > An Onion is an Onion skin with an Onion inside it. > > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From suraj at careergear.in Thu Sep 19 22:20:28 2013 From: suraj at careergear.in (Suraj Kumar) Date: Fri, 20 Sep 2013 10:50:28 +0530 Subject: [Bangalore-pm] Agenda Message-ID: Hi, If you are interested in talking tomorrow, please update the meetup.comevent for tomorrow's meeting and update the talks section if you want to speak on something. Also, I think it will be good to have the following done: * Taking down minutes of the meeting and disseminating it back into the community / archiving * Talks :) * Photo capture and update on meetup page Prashant Tyagi, please choose your pick :) If nobody else is volunteering for talks, I can 'fill in' by talking about Object Oriented programming in Perl, the Damian Conway way... I'd like to keep it targeted mainly at the new comers to the programming world itself although I hope it will be a good refresher for all of us. The session will be a walk-through of how - 3 basic object oriented concepts (the concept of 'objects', the concept of 'message passing' and 'inheritance') are achieved in perl the Damian Conway way. I think it would take me about 45 minutes. Although, to admit, I've just come up with the topic and I need to fill in the details and prepare! :) Regards, -Suraj -- An Onion is an Onion skin with an Onion inside it. -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant.2006tyagi at gmail.com Thu Sep 19 22:58:20 2013 From: prashant.2006tyagi at gmail.com (prashant tyagi) Date: Fri, 20 Sep 2013 11:28:20 +0530 Subject: [Bangalore-pm] Agenda In-Reply-To: References: Message-ID: Suraj, I will try for some talk if I could. I am ready to take responsibility of Google Hangout and updating meetups. @Saran, How can I update meetup page ? Hi All, Can you please share me (cced in this mail ) topics whoever is interested in talks. I will combine them and share on meetup. Thanks, On Fri, Sep 20, 2013 at 10:50 AM, Suraj Kumar wrote: > Hi, > > If you are interested in talking tomorrow, please update the meetup.comevent for tomorrow's meeting and update the talks section if you want to > speak on something. > > Also, I think it will be good to have the following done: > > * Taking down minutes of the meeting and disseminating it back into the > community / archiving > * Talks :) > * Photo capture and update on meetup page > > Prashant Tyagi, please choose your pick :) > > > If nobody else is volunteering for talks, I can 'fill in' by talking about > Object Oriented programming in Perl, the Damian Conway way... I'd like to > keep it targeted mainly at the new comers to the programming world itself > although I hope it will be a good refresher for all of us. The session will > be a walk-through of how - 3 basic object oriented concepts (the concept of > 'objects', the concept of 'message passing' and 'inheritance') are achieved > in perl the Damian Conway way. I think it would take me about 45 minutes. > Although, to admit, I've just come up with the topic and I need to fill in > the details and prepare! :) > > Regards, > > -Suraj > > > -- > An Onion is an Onion skin with an Onion inside it. > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From talk2saravanan at yahoo.co.in Thu Sep 19 23:18:52 2013 From: talk2saravanan at yahoo.co.in (Saravanan T) Date: Fri, 20 Sep 2013 14:18:52 +0800 (SGT) Subject: [Bangalore-pm] Agenda In-Reply-To: References: Message-ID: <1379657932.72535.YahooMailNeo@web192504.mail.sg3.yahoo.com> Prashant, I will add you as a event organizer or any one of my behalf can add that Lets keep rockign? ________________________________ From: prashant tyagi To: Bangalore.pm Sent: Friday, September 20, 2013 11:28 AM Subject: Re: [Bangalore-pm] Agenda Suraj, I will try for some talk if I could. I am ready to take responsibility of Google Hangout and updating meetups. @Saran, How can I update meetup page ? Hi All, Can you please share me (cced in this mail ) topics whoever is interested in talks. I will combine them and share on meetup. Thanks, On Fri, Sep 20, 2013 at 10:50 AM, Suraj Kumar wrote: Hi, > > >If you are interested in talking tomorrow, please update the meetup.com event for tomorrow's meeting and update the talks section if you want to speak on something. > > >Also, I think it will be good to have the following done: > > >* Taking down minutes of the meeting and disseminating it back into the community / archiving >* Talks :) >* Photo capture and update on meetup page > > >Prashant Tyagi, please choose your pick :) > > > >If nobody else is volunteering for talks, I can 'fill in' by talking about Object Oriented programming in Perl, the Damian Conway way... I'd like to keep it targeted mainly at the new comers to the programming world itself although I hope it will be a good refresher for all of us. The session will be a walk-through of how - 3 basic object oriented concepts (the concept of 'objects', the concept of 'message passing' and 'inheritance') are achieved in perl the Damian Conway way. I think it would take me about 45 minutes. Although, to admit, I've just come up with the topic and I need to fill in the details and prepare! :) > > > >Regards, > > >? -Suraj > > >-- >An Onion is an Onion skin with an Onion inside it. >_______________________________________________ >Bangalore-pm mailing list >Bangalore-pm at pm.org >http://mail.pm.org/mailman/listinfo/bangalore-pm > _______________________________________________ Bangalore-pm mailing list Bangalore-pm at pm.org http://mail.pm.org/mailman/listinfo/bangalore-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant.2006tyagi at gmail.com Fri Sep 20 23:54:54 2013 From: prashant.2006tyagi at gmail.com (prashant tyagi) Date: Sat, 21 Sep 2013 12:24:54 +0530 Subject: [Bangalore-pm] Agenda In-Reply-To: <1379657932.72535.YahooMailNeo@web192504.mail.sg3.yahoo.com> References: <1379657932.72535.YahooMailNeo@web192504.mail.sg3.yahoo.com> Message-ID: Hi All, Please find below hangout url. It will be start broadcasting at 3:00 pm (ISD) . https://plus.google.com/hangouts/_/22b89d758d4e531bb68a9e3848da09b42142acd7?authuser=0&hl=en let me know if you see any issue while connecting. Keep rocking, Prashant On Fri, Sep 20, 2013 at 11:48 AM, Saravanan T wrote: > Prashant, > > I will add you as a event organizer or any one of my behalf can add that > Lets keep rockign > > ------------------------------ > *From:* prashant tyagi > *To:* Bangalore.pm > *Sent:* Friday, September 20, 2013 11:28 AM > *Subject:* Re: [Bangalore-pm] Agenda > > Suraj, > > I will try for some talk if I could. I am ready to take responsibility of > Google Hangout and updating meetups. > > @Saran, > How can I update meetup page ? > > Hi All, > > Can you please share me (cced in this mail ) topics whoever is interested > in talks. > > I will combine them and share on meetup. > > Thanks, > > > On Fri, Sep 20, 2013 at 10:50 AM, Suraj Kumar wrote: > > Hi, > > If you are interested in talking tomorrow, please update the meetup.comevent for tomorrow's meeting and update the talks section if you want to > speak on something. > > Also, I think it will be good to have the following done: > > * Taking down minutes of the meeting and disseminating it back into the > community / archiving > * Talks :) > * Photo capture and update on meetup page > > Prashant Tyagi, please choose your pick :) > > > If nobody else is volunteering for talks, I can 'fill in' by talking about > Object Oriented programming in Perl, the Damian Conway way... I'd like to > keep it targeted mainly at the new comers to the programming world itself > although I hope it will be a good refresher for all of us. The session will > be a walk-through of how - 3 basic object oriented concepts (the concept of > 'objects', the concept of 'message passing' and 'inheritance') are achieved > in perl the Damian Conway way. I think it would take me about 45 minutes. > Although, to admit, I've just come up with the topic and I need to fill in > the details and prepare! :) > > Regards, > > -Suraj > > > -- > An Onion is an Onion skin with an Onion inside it. > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant.2006tyagi at gmail.com Sat Sep 21 00:09:06 2013 From: prashant.2006tyagi at gmail.com (prashant tyagi) Date: Sat, 21 Sep 2013 12:39:06 +0530 Subject: [Bangalore-pm] Agenda In-Reply-To: References: <1379657932.72535.YahooMailNeo@web192504.mail.sg3.yahoo.com> Message-ID: Hi guys, The above hangout link is not working, I will share the hangout link before 3:00. Sorry for inconvenience. ~Prashant On Sat, Sep 21, 2013 at 12:24 PM, prashant tyagi < prashant.2006tyagi at gmail.com> wrote: > Hi All, > > Please find below hangout url. It will be start broadcasting at 3:00 pm > (ISD) . > > > https://plus.google.com/hangouts/_/22b89d758d4e531bb68a9e3848da09b42142acd7?authuser=0&hl=en > > let me know if you see any issue while connecting. > > Keep rocking, > > Prashant > > > On Fri, Sep 20, 2013 at 11:48 AM, Saravanan T wrote: > >> Prashant, >> >> I will add you as a event organizer or any one of my behalf can add that >> Lets keep rockign >> >> ------------------------------ >> *From:* prashant tyagi >> *To:* Bangalore.pm >> *Sent:* Friday, September 20, 2013 11:28 AM >> *Subject:* Re: [Bangalore-pm] Agenda >> >> Suraj, >> >> I will try for some talk if I could. I am ready to take responsibility of >> Google Hangout and updating meetups. >> >> @Saran, >> How can I update meetup page ? >> >> Hi All, >> >> Can you please share me (cced in this mail ) topics whoever is interested >> in talks. >> >> I will combine them and share on meetup. >> >> Thanks, >> >> >> On Fri, Sep 20, 2013 at 10:50 AM, Suraj Kumar wrote: >> >> Hi, >> >> If you are interested in talking tomorrow, please update the meetup.comevent for tomorrow's meeting and update the talks section if you want to >> speak on something. >> >> Also, I think it will be good to have the following done: >> >> * Taking down minutes of the meeting and disseminating it back into the >> community / archiving >> * Talks :) >> * Photo capture and update on meetup page >> >> Prashant Tyagi, please choose your pick :) >> >> >> If nobody else is volunteering for talks, I can 'fill in' by talking >> about Object Oriented programming in Perl, the Damian Conway way... I'd >> like to keep it targeted mainly at the new comers to the programming world >> itself although I hope it will be a good refresher for all of us. The >> session will be a walk-through of how - 3 basic object oriented concepts >> (the concept of 'objects', the concept of 'message passing' and >> 'inheritance') are achieved in perl the Damian Conway way. I think it would >> take me about 45 minutes. Although, to admit, I've just come up with the >> topic and I need to fill in the details and prepare! :) >> >> Regards, >> >> -Suraj >> >> >> -- >> An Onion is an Onion skin with an Onion inside it. >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> >> >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sundaryourfriend at gmail.com Sat Sep 21 02:38:56 2013 From: sundaryourfriend at gmail.com (SundaraRaman R) Date: Sat, 21 Sep 2013 15:08:56 +0530 Subject: [Bangalore-pm] Agenda In-Reply-To: References: <1379657932.72535.YahooMailNeo@web192504.mail.sg3.yahoo.com> Message-ID: Hi Prashant, Could you share the updated Hangout link please? On Sat, Sep 21, 2013 at 12:39 PM, prashant tyagi < prashant.2006tyagi at gmail.com> wrote: > Hi guys, > > The above hangout link is not working, I will share the hangout link > before 3:00. > > Sorry for inconvenience. > > ~Prashant > > > > > On Sat, Sep 21, 2013 at 12:24 PM, prashant tyagi < > prashant.2006tyagi at gmail.com> wrote: > >> Hi All, >> >> Please find below hangout url. It will be start broadcasting at 3:00 pm >> (ISD) . >> >> >> https://plus.google.com/hangouts/_/22b89d758d4e531bb68a9e3848da09b42142acd7?authuser=0&hl=en >> >> let me know if you see any issue while connecting. >> >> Keep rocking, >> >> Prashant >> >> >> On Fri, Sep 20, 2013 at 11:48 AM, Saravanan T > > wrote: >> >>> Prashant, >>> >>> I will add you as a event organizer or any one of my behalf can add that >>> Lets keep rockign >>> >>> ------------------------------ >>> *From:* prashant tyagi >>> *To:* Bangalore.pm >>> *Sent:* Friday, September 20, 2013 11:28 AM >>> *Subject:* Re: [Bangalore-pm] Agenda >>> >>> Suraj, >>> >>> I will try for some talk if I could. I am ready to take responsibility >>> of Google Hangout and updating meetups. >>> >>> @Saran, >>> How can I update meetup page ? >>> >>> Hi All, >>> >>> Can you please share me (cced in this mail ) topics whoever is >>> interested in talks. >>> >>> I will combine them and share on meetup. >>> >>> Thanks, >>> >>> >>> On Fri, Sep 20, 2013 at 10:50 AM, Suraj Kumar wrote: >>> >>> Hi, >>> >>> If you are interested in talking tomorrow, please update the meetup.comevent for tomorrow's meeting and update the talks section if you want to >>> speak on something. >>> >>> Also, I think it will be good to have the following done: >>> >>> * Taking down minutes of the meeting and disseminating it back into the >>> community / archiving >>> * Talks :) >>> * Photo capture and update on meetup page >>> >>> Prashant Tyagi, please choose your pick :) >>> >>> >>> If nobody else is volunteering for talks, I can 'fill in' by talking >>> about Object Oriented programming in Perl, the Damian Conway way... I'd >>> like to keep it targeted mainly at the new comers to the programming world >>> itself although I hope it will be a good refresher for all of us. The >>> session will be a walk-through of how - 3 basic object oriented concepts >>> (the concept of 'objects', the concept of 'message passing' and >>> 'inheritance') are achieved in perl the Damian Conway way. I think it would >>> take me about 45 minutes. Although, to admit, I've just come up with the >>> topic and I need to fill in the details and prepare! :) >>> >>> Regards, >>> >>> -Suraj >>> >>> >>> -- >>> An Onion is an Onion skin with an Onion inside it. >>> >>> _______________________________________________ >>> Bangalore-pm mailing list >>> Bangalore-pm at pm.org >>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>> >>> >>> >>> _______________________________________________ >>> Bangalore-pm mailing list >>> Bangalore-pm at pm.org >>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>> >>> >>> _______________________________________________ >>> Bangalore-pm mailing list >>> Bangalore-pm at pm.org >>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>> >> >> > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -- ! Knowing others is intelligence; knowing yourself is true wisdom. Mastering others is strength; mastering yourself is true power. http://www.google.com/profiles/sundaryourfriend -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant.2006tyagi at gmail.com Sat Sep 21 02:47:39 2013 From: prashant.2006tyagi at gmail.com (prashant tyagi) Date: Sat, 21 Sep 2013 15:17:39 +0530 Subject: [Bangalore-pm] Agenda In-Reply-To: References: <1379657932.72535.YahooMailNeo@web192504.mail.sg3.yahoo.com> Message-ID: Sorry for the inconvenience. Please give me some more time. @All, People who are getting difficulty to reach InMobi office can call to me on 9036010054. Loaction: Inmobi 8th Floor ~Prashant On Sat, Sep 21, 2013 at 3:08 PM, SundaraRaman R wrote: > Hi Prashant, > Could you share the updated Hangout link please? > > > > > On Sat, Sep 21, 2013 at 12:39 PM, prashant tyagi < > prashant.2006tyagi at gmail.com> wrote: > >> Hi guys, >> >> The above hangout link is not working, I will share the hangout link >> before 3:00. >> >> Sorry for inconvenience. >> >> ~Prashant >> >> >> >> >> On Sat, Sep 21, 2013 at 12:24 PM, prashant tyagi < >> prashant.2006tyagi at gmail.com> wrote: >> >>> Hi All, >>> >>> Please find below hangout url. It will be start broadcasting at 3:00 pm >>> (ISD) . >>> >>> >>> https://plus.google.com/hangouts/_/22b89d758d4e531bb68a9e3848da09b42142acd7?authuser=0&hl=en >>> >>> let me know if you see any issue while connecting. >>> >>> Keep rocking, >>> >>> Prashant >>> >>> >>> On Fri, Sep 20, 2013 at 11:48 AM, Saravanan T < >>> talk2saravanan at yahoo.co.in> wrote: >>> >>>> Prashant, >>>> >>>> I will add you as a event organizer or any one of my behalf can add that >>>> Lets keep rockign >>>> >>>> ------------------------------ >>>> *From:* prashant tyagi >>>> *To:* Bangalore.pm >>>> *Sent:* Friday, September 20, 2013 11:28 AM >>>> *Subject:* Re: [Bangalore-pm] Agenda >>>> >>>> Suraj, >>>> >>>> I will try for some talk if I could. I am ready to take responsibility >>>> of Google Hangout and updating meetups. >>>> >>>> @Saran, >>>> How can I update meetup page ? >>>> >>>> Hi All, >>>> >>>> Can you please share me (cced in this mail ) topics whoever is >>>> interested in talks. >>>> >>>> I will combine them and share on meetup. >>>> >>>> Thanks, >>>> >>>> >>>> On Fri, Sep 20, 2013 at 10:50 AM, Suraj Kumar wrote: >>>> >>>> Hi, >>>> >>>> If you are interested in talking tomorrow, please update the meetup.comevent for tomorrow's meeting and update the talks section if you want to >>>> speak on something. >>>> >>>> Also, I think it will be good to have the following done: >>>> >>>> * Taking down minutes of the meeting and disseminating it back into the >>>> community / archiving >>>> * Talks :) >>>> * Photo capture and update on meetup page >>>> >>>> Prashant Tyagi, please choose your pick :) >>>> >>>> >>>> If nobody else is volunteering for talks, I can 'fill in' by talking >>>> about Object Oriented programming in Perl, the Damian Conway way... I'd >>>> like to keep it targeted mainly at the new comers to the programming world >>>> itself although I hope it will be a good refresher for all of us. The >>>> session will be a walk-through of how - 3 basic object oriented concepts >>>> (the concept of 'objects', the concept of 'message passing' and >>>> 'inheritance') are achieved in perl the Damian Conway way. I think it would >>>> take me about 45 minutes. Although, to admit, I've just come up with the >>>> topic and I need to fill in the details and prepare! :) >>>> >>>> Regards, >>>> >>>> -Suraj >>>> >>>> >>>> -- >>>> An Onion is an Onion skin with an Onion inside it. >>>> >>>> _______________________________________________ >>>> Bangalore-pm mailing list >>>> Bangalore-pm at pm.org >>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>> >>>> >>>> >>>> _______________________________________________ >>>> Bangalore-pm mailing list >>>> Bangalore-pm at pm.org >>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>> >>>> >>>> _______________________________________________ >>>> Bangalore-pm mailing list >>>> Bangalore-pm at pm.org >>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>> >>> >>> >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> > > > > -- > ! Knowing others is intelligence; knowing yourself is true wisdom. > Mastering others is strength; mastering yourself is true power. > http://www.google.com/profiles/sundaryourfriend > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant.2006tyagi at gmail.com Sat Sep 21 03:23:55 2013 From: prashant.2006tyagi at gmail.com (prashant tyagi) Date: Sat, 21 Sep 2013 15:53:55 +0530 Subject: [Bangalore-pm] Agenda In-Reply-To: References: <1379657932.72535.YahooMailNeo@web192504.mail.sg3.yahoo.com> Message-ID: We will start broadcast in couple of minutes ~Prashant On Sat, Sep 21, 2013 at 3:17 PM, prashant tyagi < prashant.2006tyagi at gmail.com> wrote: > Sorry for the inconvenience. > > Please give me some more time. > > @All, > > People who are getting difficulty to reach InMobi office can call to me on > 9036010054. > > Loaction: Inmobi 8th Floor > > > ~Prashant > > > On Sat, Sep 21, 2013 at 3:08 PM, SundaraRaman R < > sundaryourfriend at gmail.com> wrote: > >> Hi Prashant, >> Could you share the updated Hangout link please? >> >> >> >> >> On Sat, Sep 21, 2013 at 12:39 PM, prashant tyagi < >> prashant.2006tyagi at gmail.com> wrote: >> >>> Hi guys, >>> >>> The above hangout link is not working, I will share the hangout link >>> before 3:00. >>> >>> Sorry for inconvenience. >>> >>> ~Prashant >>> >>> >>> >>> >>> On Sat, Sep 21, 2013 at 12:24 PM, prashant tyagi < >>> prashant.2006tyagi at gmail.com> wrote: >>> >>>> Hi All, >>>> >>>> Please find below hangout url. It will be start broadcasting at 3:00 pm >>>> (ISD) . >>>> >>>> >>>> https://plus.google.com/hangouts/_/22b89d758d4e531bb68a9e3848da09b42142acd7?authuser=0&hl=en >>>> >>>> let me know if you see any issue while connecting. >>>> >>>> Keep rocking, >>>> >>>> Prashant >>>> >>>> >>>> On Fri, Sep 20, 2013 at 11:48 AM, Saravanan T < >>>> talk2saravanan at yahoo.co.in> wrote: >>>> >>>>> Prashant, >>>>> >>>>> I will add you as a event organizer or any one of my behalf can add >>>>> that >>>>> Lets keep rockign >>>>> >>>>> ------------------------------ >>>>> *From:* prashant tyagi >>>>> *To:* Bangalore.pm >>>>> *Sent:* Friday, September 20, 2013 11:28 AM >>>>> *Subject:* Re: [Bangalore-pm] Agenda >>>>> >>>>> Suraj, >>>>> >>>>> I will try for some talk if I could. I am ready to take responsibility >>>>> of Google Hangout and updating meetups. >>>>> >>>>> @Saran, >>>>> How can I update meetup page ? >>>>> >>>>> Hi All, >>>>> >>>>> Can you please share me (cced in this mail ) topics whoever is >>>>> interested in talks. >>>>> >>>>> I will combine them and share on meetup. >>>>> >>>>> Thanks, >>>>> >>>>> >>>>> On Fri, Sep 20, 2013 at 10:50 AM, Suraj Kumar wrote: >>>>> >>>>> Hi, >>>>> >>>>> If you are interested in talking tomorrow, please update the >>>>> meetup.com event for tomorrow's meeting and update the talks section >>>>> if you want to speak on something. >>>>> >>>>> Also, I think it will be good to have the following done: >>>>> >>>>> * Taking down minutes of the meeting and disseminating it back into >>>>> the community / archiving >>>>> * Talks :) >>>>> * Photo capture and update on meetup page >>>>> >>>>> Prashant Tyagi, please choose your pick :) >>>>> >>>>> >>>>> If nobody else is volunteering for talks, I can 'fill in' by talking >>>>> about Object Oriented programming in Perl, the Damian Conway way... I'd >>>>> like to keep it targeted mainly at the new comers to the programming world >>>>> itself although I hope it will be a good refresher for all of us. The >>>>> session will be a walk-through of how - 3 basic object oriented concepts >>>>> (the concept of 'objects', the concept of 'message passing' and >>>>> 'inheritance') are achieved in perl the Damian Conway way. I think it would >>>>> take me about 45 minutes. Although, to admit, I've just come up with the >>>>> topic and I need to fill in the details and prepare! :) >>>>> >>>>> Regards, >>>>> >>>>> -Suraj >>>>> >>>>> >>>>> -- >>>>> An Onion is an Onion skin with an Onion inside it. >>>>> >>>>> _______________________________________________ >>>>> Bangalore-pm mailing list >>>>> Bangalore-pm at pm.org >>>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> Bangalore-pm mailing list >>>>> Bangalore-pm at pm.org >>>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>>> >>>>> >>>>> _______________________________________________ >>>>> Bangalore-pm mailing list >>>>> Bangalore-pm at pm.org >>>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>>> >>>> >>>> >>> >>> _______________________________________________ >>> Bangalore-pm mailing list >>> Bangalore-pm at pm.org >>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>> >> >> >> >> -- >> ! Knowing others is intelligence; knowing yourself is true wisdom. >> Mastering others is strength; mastering yourself is true power. >> http://www.google.com/profiles/sundaryourfriend >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From suraj at careergear.in Sat Sep 21 03:24:45 2013 From: suraj at careergear.in (Suraj Kumar) Date: Sat, 21 Sep 2013 15:54:45 +0530 Subject: [Bangalore-pm] Agenda In-Reply-To: References: <1379657932.72535.YahooMailNeo@web192504.mail.sg3.yahoo.com> Message-ID: Hey all, The updated hangout url is https://plus.google.com/hangouts/_/eab1e27439123d59e12c45b11ebcf7094b274563 Please join us! -Suraj On Sat, Sep 21, 2013 at 3:17 PM, prashant tyagi < prashant.2006tyagi at gmail.com> wrote: > Sorry for the inconvenience. > > Please give me some more time. > > @All, > > People who are getting difficulty to reach InMobi office can call to me on > 9036010054. > > Loaction: Inmobi 8th Floor > > > ~Prashant > > > On Sat, Sep 21, 2013 at 3:08 PM, SundaraRaman R < > sundaryourfriend at gmail.com> wrote: > >> Hi Prashant, >> Could you share the updated Hangout link please? >> >> >> >> >> On Sat, Sep 21, 2013 at 12:39 PM, prashant tyagi < >> prashant.2006tyagi at gmail.com> wrote: >> >>> Hi guys, >>> >>> The above hangout link is not working, I will share the hangout link >>> before 3:00. >>> >>> Sorry for inconvenience. >>> >>> ~Prashant >>> >>> >>> >>> >>> On Sat, Sep 21, 2013 at 12:24 PM, prashant tyagi < >>> prashant.2006tyagi at gmail.com> wrote: >>> >>>> Hi All, >>>> >>>> Please find below hangout url. It will be start broadcasting at 3:00 pm >>>> (ISD) . >>>> >>>> >>>> https://plus.google.com/hangouts/_/22b89d758d4e531bb68a9e3848da09b42142acd7?authuser=0&hl=en >>>> >>>> let me know if you see any issue while connecting. >>>> >>>> Keep rocking, >>>> >>>> Prashant >>>> >>>> >>>> On Fri, Sep 20, 2013 at 11:48 AM, Saravanan T < >>>> talk2saravanan at yahoo.co.in> wrote: >>>> >>>>> Prashant, >>>>> >>>>> I will add you as a event organizer or any one of my behalf can add >>>>> that >>>>> Lets keep rockign >>>>> >>>>> ------------------------------ >>>>> *From:* prashant tyagi >>>>> *To:* Bangalore.pm >>>>> *Sent:* Friday, September 20, 2013 11:28 AM >>>>> *Subject:* Re: [Bangalore-pm] Agenda >>>>> >>>>> Suraj, >>>>> >>>>> I will try for some talk if I could. I am ready to take responsibility >>>>> of Google Hangout and updating meetups. >>>>> >>>>> @Saran, >>>>> How can I update meetup page ? >>>>> >>>>> Hi All, >>>>> >>>>> Can you please share me (cced in this mail ) topics whoever is >>>>> interested in talks. >>>>> >>>>> I will combine them and share on meetup. >>>>> >>>>> Thanks, >>>>> >>>>> >>>>> On Fri, Sep 20, 2013 at 10:50 AM, Suraj Kumar wrote: >>>>> >>>>> Hi, >>>>> >>>>> If you are interested in talking tomorrow, please update the >>>>> meetup.com event for tomorrow's meeting and update the talks section >>>>> if you want to speak on something. >>>>> >>>>> Also, I think it will be good to have the following done: >>>>> >>>>> * Taking down minutes of the meeting and disseminating it back into >>>>> the community / archiving >>>>> * Talks :) >>>>> * Photo capture and update on meetup page >>>>> >>>>> Prashant Tyagi, please choose your pick :) >>>>> >>>>> >>>>> If nobody else is volunteering for talks, I can 'fill in' by talking >>>>> about Object Oriented programming in Perl, the Damian Conway way... I'd >>>>> like to keep it targeted mainly at the new comers to the programming world >>>>> itself although I hope it will be a good refresher for all of us. The >>>>> session will be a walk-through of how - 3 basic object oriented concepts >>>>> (the concept of 'objects', the concept of 'message passing' and >>>>> 'inheritance') are achieved in perl the Damian Conway way. I think it would >>>>> take me about 45 minutes. Although, to admit, I've just come up with the >>>>> topic and I need to fill in the details and prepare! :) >>>>> >>>>> Regards, >>>>> >>>>> -Suraj >>>>> >>>>> >>>>> -- >>>>> An Onion is an Onion skin with an Onion inside it. >>>>> >>>>> _______________________________________________ >>>>> Bangalore-pm mailing list >>>>> Bangalore-pm at pm.org >>>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> Bangalore-pm mailing list >>>>> Bangalore-pm at pm.org >>>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>>> >>>>> >>>>> _______________________________________________ >>>>> Bangalore-pm mailing list >>>>> Bangalore-pm at pm.org >>>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>>> >>>> >>>> >>> >>> _______________________________________________ >>> Bangalore-pm mailing list >>> Bangalore-pm at pm.org >>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>> >> >> >> >> -- >> ! Knowing others is intelligence; knowing yourself is true wisdom. >> Mastering others is strength; mastering yourself is true power. >> http://www.google.com/profiles/sundaryourfriend >> >> > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -- An Onion is an Onion skin with an Onion inside it. -------------- next part -------------- An HTML attachment was scrubbed... URL: From suraj at careergear.in Sat Sep 21 04:50:56 2013 From: suraj at careergear.in (Suraj Kumar) Date: Sat, 21 Sep 2013 17:20:56 +0530 Subject: [Bangalore-pm] Agenda In-Reply-To: References: <1379657932.72535.YahooMailNeo@web192504.mail.sg3.yahoo.com> Message-ID: A highly amateur, sloppily made video of the session by yours truly is here: http://youtu.be/HubAJffNU1A Regards, -Suraj On Sat, Sep 21, 2013 at 3:54 PM, Suraj Kumar wrote: > Hey all, > > The updated hangout url is > https://plus.google.com/hangouts/_/eab1e27439123d59e12c45b11ebcf7094b274563 > > Please join us! > > -Suraj > > > On Sat, Sep 21, 2013 at 3:17 PM, prashant tyagi < > prashant.2006tyagi at gmail.com> wrote: > >> Sorry for the inconvenience. >> >> Please give me some more time. >> >> @All, >> >> People who are getting difficulty to reach InMobi office can call to me >> on 9036010054. >> >> Loaction: Inmobi 8th Floor >> >> >> ~Prashant >> >> >> On Sat, Sep 21, 2013 at 3:08 PM, SundaraRaman R < >> sundaryourfriend at gmail.com> wrote: >> >>> Hi Prashant, >>> Could you share the updated Hangout link please? >>> >>> >>> >>> >>> On Sat, Sep 21, 2013 at 12:39 PM, prashant tyagi < >>> prashant.2006tyagi at gmail.com> wrote: >>> >>>> Hi guys, >>>> >>>> The above hangout link is not working, I will share the hangout link >>>> before 3:00. >>>> >>>> Sorry for inconvenience. >>>> >>>> ~Prashant >>>> >>>> >>>> >>>> >>>> On Sat, Sep 21, 2013 at 12:24 PM, prashant tyagi < >>>> prashant.2006tyagi at gmail.com> wrote: >>>> >>>>> Hi All, >>>>> >>>>> Please find below hangout url. It will be start broadcasting at 3:00 >>>>> pm (ISD) . >>>>> >>>>> >>>>> https://plus.google.com/hangouts/_/22b89d758d4e531bb68a9e3848da09b42142acd7?authuser=0&hl=en >>>>> >>>>> let me know if you see any issue while connecting. >>>>> >>>>> Keep rocking, >>>>> >>>>> Prashant >>>>> >>>>> >>>>> On Fri, Sep 20, 2013 at 11:48 AM, Saravanan T < >>>>> talk2saravanan at yahoo.co.in> wrote: >>>>> >>>>>> Prashant, >>>>>> >>>>>> I will add you as a event organizer or any one of my behalf can add >>>>>> that >>>>>> Lets keep rockign >>>>>> >>>>>> ------------------------------ >>>>>> *From:* prashant tyagi >>>>>> *To:* Bangalore.pm >>>>>> *Sent:* Friday, September 20, 2013 11:28 AM >>>>>> *Subject:* Re: [Bangalore-pm] Agenda >>>>>> >>>>>> Suraj, >>>>>> >>>>>> I will try for some talk if I could. I am ready to take >>>>>> responsibility of Google Hangout and updating meetups. >>>>>> >>>>>> @Saran, >>>>>> How can I update meetup page ? >>>>>> >>>>>> Hi All, >>>>>> >>>>>> Can you please share me (cced in this mail ) topics whoever is >>>>>> interested in talks. >>>>>> >>>>>> I will combine them and share on meetup. >>>>>> >>>>>> Thanks, >>>>>> >>>>>> >>>>>> On Fri, Sep 20, 2013 at 10:50 AM, Suraj Kumar wrote: >>>>>> >>>>>> Hi, >>>>>> >>>>>> If you are interested in talking tomorrow, please update the >>>>>> meetup.com event for tomorrow's meeting and update the talks section >>>>>> if you want to speak on something. >>>>>> >>>>>> Also, I think it will be good to have the following done: >>>>>> >>>>>> * Taking down minutes of the meeting and disseminating it back into >>>>>> the community / archiving >>>>>> * Talks :) >>>>>> * Photo capture and update on meetup page >>>>>> >>>>>> Prashant Tyagi, please choose your pick :) >>>>>> >>>>>> >>>>>> If nobody else is volunteering for talks, I can 'fill in' by talking >>>>>> about Object Oriented programming in Perl, the Damian Conway way... I'd >>>>>> like to keep it targeted mainly at the new comers to the programming world >>>>>> itself although I hope it will be a good refresher for all of us. The >>>>>> session will be a walk-through of how - 3 basic object oriented concepts >>>>>> (the concept of 'objects', the concept of 'message passing' and >>>>>> 'inheritance') are achieved in perl the Damian Conway way. I think it would >>>>>> take me about 45 minutes. Although, to admit, I've just come up with the >>>>>> topic and I need to fill in the details and prepare! :) >>>>>> >>>>>> Regards, >>>>>> >>>>>> -Suraj >>>>>> >>>>>> >>>>>> -- >>>>>> An Onion is an Onion skin with an Onion inside it. >>>>>> >>>>>> _______________________________________________ >>>>>> Bangalore-pm mailing list >>>>>> Bangalore-pm at pm.org >>>>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>>>> >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> Bangalore-pm mailing list >>>>>> Bangalore-pm at pm.org >>>>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> Bangalore-pm mailing list >>>>>> Bangalore-pm at pm.org >>>>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>>>> >>>>> >>>>> >>>> >>>> _______________________________________________ >>>> Bangalore-pm mailing list >>>> Bangalore-pm at pm.org >>>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>>> >>> >>> >>> >>> -- >>> ! Knowing others is intelligence; knowing yourself is true wisdom. >>> Mastering others is strength; mastering yourself is true power. >>> http://www.google.com/profiles/sundaryourfriend >>> >>> >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> > > > > -- > An Onion is an Onion skin with an Onion inside it. > -- An Onion is an Onion skin with an Onion inside it. -------------- next part -------------- An HTML attachment was scrubbed... URL: From superpulse.x at gmail.com Sat Sep 21 06:52:35 2013 From: superpulse.x at gmail.com (venkatakrishnan g) Date: Sat, 21 Sep 2013 19:22:35 +0530 Subject: [Bangalore-pm] October Meetup Message-ID: Hey All, Thank you for the october meetup, it was great. Thank you InMobi for hosting Perl mongers, Bangalore, great office, nice refreshments, amazing place. Suraj had a nice presentaion walking through object oriented programming in perl, also managed the event. Thank you man, great job. Cheers, V -------------- next part -------------- An HTML attachment was scrubbed... URL: From mkirank at gmail.com Sat Sep 21 08:04:42 2013 From: mkirank at gmail.com (Kiran Kumar) Date: Sat, 21 Sep 2013 20:34:42 +0530 Subject: [Bangalore-pm] October Meetup In-Reply-To: References: Message-ID: Great to hear. I have to make it to the next one. -Kiran On Sat, Sep 21, 2013 at 7:22 PM, venkatakrishnan g wrote: > Hey All, > > Thank you for the october meetup, it was great. Thank you InMobi for > hosting Perl mongers, Bangalore, great office, nice refreshments, amazing > place. > > Suraj had a nice presentaion walking through object oriented programming > in perl, also managed the event. Thank you man, great job. > > Cheers, > V > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant.2006tyagi at gmail.com Sat Sep 21 08:33:44 2013 From: prashant.2006tyagi at gmail.com (prashant tyagi) Date: Sat, 21 Sep 2013 08:33:44 -0700 Subject: [Bangalore-pm] October Meetup In-Reply-To: References: Message-ID: It was a great meetup and really enjoys. Thanks Suraj for talk on OO Perl and all arrangements. ~Prashant On Sat, Sep 21, 2013 at 8:04 AM, Kiran Kumar wrote: > Great to hear. I have to make it to the next one. > > -Kiran > > > > On Sat, Sep 21, 2013 at 7:22 PM, venkatakrishnan g > wrote: > >> Hey All, >> >> Thank you for the october meetup, it was great. Thank you InMobi for >> hosting Perl mongers, Bangalore, great office, nice refreshments, amazing >> place. >> >> Suraj had a nice presentaion walking through object oriented programming >> in perl, also managed the event. Thank you man, great job. >> >> Cheers, >> V >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From deepti at careergear.in Sun Sep 29 21:19:59 2013 From: deepti at careergear.in (Deepti Varshney) Date: Mon, 30 Sep 2013 09:49:59 +0530 Subject: [Bangalore-pm] October Meetup In-Reply-To: References: Message-ID: Hey guys, I learnt four things from this arrangement: 1. Meetup date should be planned in advance 2. Meetup date should ideally not coincide with other events (ex: this time, jsFoo and BangPypers). 3. If you've got an internal mailing list in your company to reach out to programming enthusiasts, you should let them know about the meetup. I was planning to get a board of sorts that will be put up at the reception so that everybody can see (there aren't that many active internal tech mailing lists at inmobi) - but the board didn't get done... and by the time I realized it was late to even send to that whatever-existent-internal-mailing-list to announce the meetup. So finally no inmobi employee knew about the event. Had more folks known, we'd have had a better turn out in attendance plus would truly help the cause of collecting up perl mongers from across bangalore's various tech companies. Any better ideas of reaching out besides through meetup.com itself? 4. Event could start towards evening than noon? What do you guys say? Regards, -Suraj On Sat, Sep 21, 2013 at 9:03 PM, prashant tyagi < prashant.2006tyagi at gmail.com> wrote: > It was a great meetup and really enjoys. Thanks Suraj for talk on OO Perl > and all arrangements. > > ~Prashant > > > On Sat, Sep 21, 2013 at 8:04 AM, Kiran Kumar wrote: > >> Great to hear. I have to make it to the next one. >> >> -Kiran >> >> >> >> On Sat, Sep 21, 2013 at 7:22 PM, venkatakrishnan g < >> superpulse.x at gmail.com> wrote: >> >>> Hey All, >>> >>> Thank you for the october meetup, it was great. Thank you InMobi for >>> hosting Perl mongers, Bangalore, great office, nice refreshments, amazing >>> place. >>> >>> Suraj had a nice presentaion walking through object oriented programming >>> in perl, also managed the event. Thank you man, great job. >>> >>> Cheers, >>> V >>> >>> _______________________________________________ >>> Bangalore-pm mailing list >>> Bangalore-pm at pm.org >>> http://mail.pm.org/mailman/listinfo/bangalore-pm >>> >> >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From talk2saravanan at yahoo.co.in Sun Sep 29 21:58:58 2013 From: talk2saravanan at yahoo.co.in (Saravanan T) Date: Mon, 30 Sep 2013 12:58:58 +0800 (SGT) Subject: [Bangalore-pm] October Meetup In-Reply-To: References: Message-ID: <1380517138.25262.YahooMailNeo@web192505.mail.sg3.yahoo.com> Hey Suraj! Your quick action in four days was wonderful .We strongly appreciate your time and effort. Its all part of our learning.Lets improve it on next meetup. Its your time to start a tech mailing list at inmobi :) Apart from meetup we can promote in perlmonks.org [ Not sure how to do it ]. Lets have interesting things like quiz,simple hacks,etc Vasundhar : Lets plan our next meetup in advance.I think we can plan after 22 as per your mail. ? Thanks, ~Saran ________________________________ From: Deepti Varshney To: Bangalore.pm Sent: Monday, September 30, 2013 12:49 PM Subject: Re: [Bangalore-pm] October Meetup Hey guys, I learnt four things from this arrangement: 1. Meetup date should be planned in advance 2. Meetup date should ideally not coincide with other events (ex: this time, jsFoo and BangPypers).? 3. If you've got an internal mailing list in your company to reach out to programming enthusiasts, you should let them know about the meetup. I was planning to get a board of sorts that will be put up at the reception so that everybody can see (there aren't that many active internal tech mailing lists at inmobi) - but the board didn't get done... and by the time I realized it was late to even send to that whatever-existent-internal-mailing-list to announce the meetup. So finally no inmobi employee knew about the event. Had more folks known, we'd have had a better turn out in attendance plus would truly help the cause of collecting up perl mongers from across bangalore's various tech companies. Any better ideas of reaching out besides through meetup.com itself? 4. Event could start towards evening than noon? What do you guys say? Regards, ? -Suraj On Sat, Sep 21, 2013 at 9:03 PM, prashant tyagi wrote: It was a great meetup and really enjoys. Thanks Suraj for talk on OO Perl and all arrangements. > >~Prashant > > > >On Sat, Sep 21, 2013 at 8:04 AM, Kiran Kumar wrote: > >Great to hear. I have to make it to the next one. >> >>-Kiran >> >> >> >> >> >>On Sat, Sep 21, 2013 at 7:22 PM, venkatakrishnan g wrote: >> >>Hey All, >>> >>>Thank you for the october meetup, it was great. Thank you InMobi for hosting Perl mongers, Bangalore, great office, nice refreshments, amazing place. >>> >>>Suraj had a nice presentaion walking through object oriented programming in perl, also managed the event. Thank you man, great job. >>> >>>Cheers, >>>V >>> >>>_______________________________________________ >>>Bangalore-pm mailing list >>>Bangalore-pm at pm.org >>>http://mail.pm.org/mailman/listinfo/bangalore-pm >>> >> >>_______________________________________________ >>Bangalore-pm mailing list >>Bangalore-pm at pm.org >>http://mail.pm.org/mailman/listinfo/bangalore-pm >> > >_______________________________________________ >Bangalore-pm mailing list >Bangalore-pm at pm.org >http://mail.pm.org/mailman/listinfo/bangalore-pm > _______________________________________________ Bangalore-pm mailing list Bangalore-pm at pm.org http://mail.pm.org/mailman/listinfo/bangalore-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant.2006tyagi at gmail.com Mon Sep 30 09:50:50 2013 From: prashant.2006tyagi at gmail.com (prashant tyagi) Date: Mon, 30 Sep 2013 22:20:50 +0530 Subject: [Bangalore-pm] October Meetup In-Reply-To: <1380517138.25262.YahooMailNeo@web192505.mail.sg3.yahoo.com> References: <1380517138.25262.YahooMailNeo@web192505.mail.sg3.yahoo.com> Message-ID: adding my thoughts to that, 5. topics and speaker should be known and publish prior to meetup. 6. Better video broadcasting and interaction with online mongers. ~Prashant On Mon, Sep 30, 2013 at 10:28 AM, Saravanan T wrote: > Hey Suraj! > > Your quick action in four days was wonderful .We strongly appreciate your > time and effort. > > Its all part of our learning.Lets improve it on next meetup. > Its your time to start a tech mailing list at inmobi :) > > Apart from meetup we can promote in perlmonks.org [ Not sure how to do it > ]. > Lets have interesting things like quiz,simple hacks,etc > > Vasundhar : Lets plan our next meetup in advance.I think we can plan after > 22 as per your mail. > > Thanks, > ~Saran > > ------------------------------ > *From:* Deepti Varshney > *To:* Bangalore.pm > *Sent:* Monday, September 30, 2013 12:49 PM > *Subject:* Re: [Bangalore-pm] October Meetup > > Hey guys, > > I learnt four things from this arrangement: > > 1. Meetup date should be planned in advance > 2. Meetup date should ideally not coincide with other events (ex: this > time, jsFoo and BangPypers). > 3. If you've got an internal mailing list in your company to reach out to > programming enthusiasts, you should let them know about the meetup. I was > planning to get a board of sorts that will be put up at the reception so > that everybody can see (there aren't that many active internal tech mailing > lists at inmobi) - but the board didn't get done... and by the time I > realized it was late to even send to that > whatever-existent-internal-mailing-list to announce the meetup. So finally > no inmobi employee knew about the event. Had more folks known, we'd have > had a better turn out in attendance plus would truly help the cause of > collecting up perl mongers from across bangalore's various tech companies. > Any better ideas of reaching out besides through meetup.com itself? > 4. Event could start towards evening than noon? What do you guys say? > > Regards, > > -Suraj > > > > On Sat, Sep 21, 2013 at 9:03 PM, prashant tyagi < > prashant.2006tyagi at gmail.com> wrote: > > It was a great meetup and really enjoys. Thanks Suraj for talk on OO Perl > and all arrangements. > > ~Prashant > > > On Sat, Sep 21, 2013 at 8:04 AM, Kiran Kumar wrote: > > Great to hear. I have to make it to the next one. > > -Kiran > > > > On Sat, Sep 21, 2013 at 7:22 PM, venkatakrishnan g > wrote: > > Hey All, > > Thank you for the october meetup, it was great. Thank you InMobi for > hosting Perl mongers, Bangalore, great office, nice refreshments, amazing > place. > > Suraj had a nice presentaion walking through object oriented programming > in perl, also managed the event. Thank you man, great job. > > Cheers, > V > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sridhar.jr at gmail.com Mon Sep 30 21:23:26 2013 From: sridhar.jr at gmail.com (sridhar reddy) Date: Tue, 1 Oct 2013 09:53:26 +0530 Subject: [Bangalore-pm] October Meetup In-Reply-To: References: <1380517138.25262.YahooMailNeo@web192505.mail.sg3.yahoo.com> Message-ID: Hi, I am working on to meetup in Wipro this month ( will target 26th) , I am waiting for the confirmation, will update with more details in 1 or 2 days. #Sridhar# On Mon, Sep 30, 2013 at 10:20 PM, prashant tyagi < prashant.2006tyagi at gmail.com> wrote: > adding my thoughts to that, > > 5. topics and speaker should be known and publish prior to meetup. > > 6. Better video broadcasting and interaction with online mongers. > > ~Prashant > > > On Mon, Sep 30, 2013 at 10:28 AM, Saravanan T wrote: > >> Hey Suraj! >> >> Your quick action in four days was wonderful .We strongly appreciate your >> time and effort. >> >> Its all part of our learning.Lets improve it on next meetup. >> Its your time to start a tech mailing list at inmobi :) >> >> Apart from meetup we can promote in perlmonks.org [ Not sure how to do >> it ]. >> Lets have interesting things like quiz,simple hacks,etc >> >> Vasundhar : Lets plan our next meetup in advance.I think we can plan >> after 22 as per your mail. >> >> Thanks, >> ~Saran >> >> ------------------------------ >> *From:* Deepti Varshney >> *To:* Bangalore.pm >> *Sent:* Monday, September 30, 2013 12:49 PM >> *Subject:* Re: [Bangalore-pm] October Meetup >> >> Hey guys, >> >> I learnt four things from this arrangement: >> >> 1. Meetup date should be planned in advance >> 2. Meetup date should ideally not coincide with other events (ex: this >> time, jsFoo and BangPypers). >> 3. If you've got an internal mailing list in your company to reach out to >> programming enthusiasts, you should let them know about the meetup. I was >> planning to get a board of sorts that will be put up at the reception so >> that everybody can see (there aren't that many active internal tech mailing >> lists at inmobi) - but the board didn't get done... and by the time I >> realized it was late to even send to that >> whatever-existent-internal-mailing-list to announce the meetup. So finally >> no inmobi employee knew about the event. Had more folks known, we'd have >> had a better turn out in attendance plus would truly help the cause of >> collecting up perl mongers from across bangalore's various tech companies. >> Any better ideas of reaching out besides through meetup.com itself? >> 4. Event could start towards evening than noon? What do you guys say? >> >> Regards, >> >> -Suraj >> >> >> >> On Sat, Sep 21, 2013 at 9:03 PM, prashant tyagi < >> prashant.2006tyagi at gmail.com> wrote: >> >> It was a great meetup and really enjoys. Thanks Suraj for talk on OO Perl >> and all arrangements. >> >> ~Prashant >> >> >> On Sat, Sep 21, 2013 at 8:04 AM, Kiran Kumar wrote: >> >> Great to hear. I have to make it to the next one. >> >> -Kiran >> >> >> >> On Sat, Sep 21, 2013 at 7:22 PM, venkatakrishnan g < >> superpulse.x at gmail.com> wrote: >> >> Hey All, >> >> Thank you for the october meetup, it was great. Thank you InMobi for >> hosting Perl mongers, Bangalore, great office, nice refreshments, amazing >> place. >> >> Suraj had a nice presentaion walking through object oriented programming >> in perl, also managed the event. Thank you man, great job. >> >> Cheers, >> V >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> >> >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> >> >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> >> >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> >> >> _______________________________________________ >> Bangalore-pm mailing list >> Bangalore-pm at pm.org >> http://mail.pm.org/mailman/listinfo/bangalore-pm >> > > > _______________________________________________ > Bangalore-pm mailing list > Bangalore-pm at pm.org > http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From talk2saravanan at yahoo.co.in Mon Sep 30 22:24:10 2013 From: talk2saravanan at yahoo.co.in (Saravanan T) Date: Tue, 1 Oct 2013 13:24:10 +0800 (SGT) Subject: [Bangalore-pm] October Meetup In-Reply-To: References: <1380517138.25262.YahooMailNeo@web192505.mail.sg3.yahoo.com> Message-ID: <1380605050.46785.YahooMailNeo@web192503.mail.sg3.yahoo.com> Thats Awesome Sridhar! ________________________________ From: sridhar reddy To: Bangalore.pm Cc: Saravanan T Sent: Tuesday, October 1, 2013 12:53 PM Subject: Re: [Bangalore-pm] October Meetup Hi, I am working on to meetup in Wipro this month ( will target 26th) , I am waiting for the confirmation, will update with more details in 1 or 2 days.? #Sridhar# On Mon, Sep 30, 2013 at 10:20 PM, prashant tyagi wrote: adding my thoughts ?to that, > > >5. topics and speaker should be known and publish prior to meetup. > > >6. Better video broadcasting and interaction with online mongers. > >~Prashant > > > >On Mon, Sep 30, 2013 at 10:28 AM, Saravanan T wrote: > >Hey Suraj! >> >> >>Your quick action in four days was wonderful .We strongly appreciate your time and effort. >> >> >>Its all part of our learning.Lets improve it on next meetup. >>Its your time to start a tech mailing list at inmobi :) >> >> >>Apart from meetup we can promote in perlmonks.org [ Not sure how to do it ]. >>Lets have interesting things like quiz,simple hacks,etc >> >> >>Vasundhar : Lets plan our next meetup in advance.I think we can plan after 22 as per your mail. >>? >>Thanks, >>~Saran >> >> >>________________________________ >> From: Deepti Varshney >>To: Bangalore.pm >>Sent: Monday, September 30, 2013 12:49 PM >>Subject: Re: [Bangalore-pm] October Meetup >> >> >> >>Hey guys, >> >> >>I learnt four things from this arrangement: >> >> >> >>1. Meetup date should be planned in advance >>2. Meetup date should ideally not coincide with other events (ex: this time, jsFoo and BangPypers).? >>3. If you've got an internal mailing list in your company to reach out to programming enthusiasts, you should let them know about the meetup. I was planning to get a board of sorts that will be put up at the reception so that everybody can see (there aren't that many active internal tech mailing lists at inmobi) - but the board didn't get done... and by the time I realized it was late to even send to that whatever-existent-internal-mailing-list to announce the meetup. So finally no inmobi employee knew about the event. Had more folks known, we'd have had a better turn out in attendance plus would truly help the cause of collecting up perl mongers from across bangalore's various tech companies. Any better ideas of reaching out besides through meetup.com itself? >>4. Event could start towards evening than noon? What do you guys say? >> >> >>Regards, >> >> >>? -Suraj >> >> >> >> >> >>On Sat, Sep 21, 2013 at 9:03 PM, prashant tyagi wrote: >> >>It was a great meetup and really enjoys. Thanks Suraj for talk on OO Perl and all arrangements. >>> >>>~Prashant >>> >>> >>> >>>On Sat, Sep 21, 2013 at 8:04 AM, Kiran Kumar wrote: >>> >>>Great to hear. I have to make it to the next one. >>>> >>>>-Kiran >>>> >>>> >>>> >>>> >>>> >>>>On Sat, Sep 21, 2013 at 7:22 PM, venkatakrishnan g wrote: >>>> >>>>Hey All, >>>>> >>>>>Thank you for the october meetup, it was great. Thank you InMobi for hosting Perl mongers, Bangalore, great office, nice refreshments, amazing place. >>>>> >>>>>Suraj had a nice presentaion walking through object oriented programming in perl, also managed the event. Thank you man, great job. >>>>> >>>>>Cheers, >>>>>V >>>>> >>>>>_______________________________________________ >>>>>Bangalore-pm mailing list >>>>>Bangalore-pm at pm.org >>>>>http://mail.pm.org/mailman/listinfo/bangalore-pm >>>>> >>>> >>>>_______________________________________________ >>>>Bangalore-pm mailing list >>>>Bangalore-pm at pm.org >>>>http://mail.pm.org/mailman/listinfo/bangalore-pm >>>> >>> >>>_______________________________________________ >>>Bangalore-pm mailing list >>>Bangalore-pm at pm.org >>>http://mail.pm.org/mailman/listinfo/bangalore-pm >>> >> >>_______________________________________________ >>Bangalore-pm mailing list >>Bangalore-pm at pm.org >>http://mail.pm.org/mailman/listinfo/bangalore-pm >> >> >>_______________________________________________ >>Bangalore-pm mailing list >>Bangalore-pm at pm.org >>http://mail.pm.org/mailman/listinfo/bangalore-pm >> > >_______________________________________________ >Bangalore-pm mailing list >Bangalore-pm at pm.org >http://mail.pm.org/mailman/listinfo/bangalore-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kanishka.black0 at gmail.com Mon Sep 30 22:29:57 2013 From: kanishka.black0 at gmail.com (kanishka.black0 at gmail.com) Date: Tue, 01 Oct 2013 10:59:57 +0530 Subject: [Bangalore-pm] Bangalore-pm Digest, Vol 54, Issue 19 In-Reply-To: Message-ID: <20131001052928.5156999.57992.257@gmail.com> An HTML attachment was scrubbed... URL: