From talk2saravanan at yahoo.co.in Thu Oct 3 02:46:52 2013 From: talk2saravanan at yahoo.co.in (Saravanan T) Date: Thu, 3 Oct 2013 17:46:52 +0800 (SGT) Subject: [singapore-pm] Discussion thread for sg perl meetup In-Reply-To: <1380517811.29520.YahooMailNeo@web192503.mail.sg3.yahoo.com> References: <1379619719.91733.YahooMailNeo@web192504.mail.sg3.yahoo.com> <20130920024242.GR16712@haller.ws> <1379657962.99874.YahooMailNeo@web192503.mail.sg3.yahoo.com> <3D09F0B3-5658-4F4E-8D34-E60B1E7C2B45@ggvaidya.com> <6BFC9E17-CC3F-4A7E-80DE-86E6A6AAFFFF@gmail.com> <1380283255.99815.YahooMailNeo@web192503.mail.sg3.yahoo.com> <1380517811.29520.YahooMailNeo@web192503.mail.sg3.yahoo.com> Message-ID: <1380793612.54071.YahooMailNeo@web192504.mail.sg3.yahoo.com> Hi Guys, Recent update : Met Shantanu , he shared interesting information about device driver programming using perl. We love to hear lot of more information from you. As we have just two more days.Please respond to the thread. We also notice that there are Ruby Conference and Other meetup on the same day.Shall we postpone? Please reply with your suggestions. ~Saran ________________________________ From: Saravanan T To: Alvin Jiang ; Gaurav Vaidya ; "singapore-pm at pm.org" ; "shantanu at cpan.org" ; Patrick Haller Sent: Monday, September 30, 2013 1:10 PM Subject: [singapore-pm] Discussion thread for sg perl meetup Hi Guys! Date and Time can be changed based on our convenience.Please respond to polls in meetup. To make this effort successful .If Everyone thinks as a organizers for this meetup .Lets give back our contributions to the perl meetup. Spread this message across Perl enthusiast especially your colleagues. May be your colleagues ask you to teach Perl.This is the right time to get invited.Lets have some perl basic sessions. Lets discuss more in this thread. Any volunteers to create facebook and linkedin group for singapore pm ? Thanks, ~Saran +65 92459642 ________________________________ From: Saravanan T To: Alvin Jiang ; Gaurav Vaidya ; "singapore-pm at pm.org" ; "shantanu at cpan.org" ; Patrick Haller Sent: Friday, September 27, 2013 8:00 PM Subject: Singapore Perl Mongers Group in Meetup.com Hi Perl Mongers, Singapore Perl Mongers group is created in meetup.com http://www.meetup.com/Singapore-Perl-Mongers| Please join. There is also a polling to choose our comfortable date,Time and Topics. Initially this is our plan. Introduction - 15 Mins? Perl Topics? 1) Perl Internals - Saran? and few more. 2) Discuss about the plans for YAPC::SG? 3) Networking time Lets discuss more about the event, Alvin : Thanks for hosting the meetup Shantanu/Patrick : Please do plan for a technical session.Call out known Perl ppl for the meetup. Lets get this going! Cheers ~Saran ________________________________ From: Alvin Jiang To: Gaurav Vaidya ; "singapore-pm at pm.org" Sent: Saturday, September 21, 2013 11:36 PM Subject: Re: [singapore-pm] Perl Meet up at Singapore I can host. Ping me off list to find a suitable date. Alvin. > On 21 Sep, 2013, at 16:38, Gaurav Vaidya wrote: > > Hi everybody! > >> On 20 Sep, 2013, at 12:19 AM, Saravanan T wrote: >> Cool Info Patrick! >> >> Gaurav is doing good! > Well, I'm sick. But I think I'm getting better! Also Boulder, Colorado is the beautifulest beautiful imaginable, so I am very happy, even if sick :) > >> Yes..Gaurav also suggested to host in hackerspace.sg. >> Can we use it at free of cost? > The last time we had a meeting there, we had to get one of the Hackerspace members to host the event for us. But you can also e-mail events(at)hackerspace(dot)sg, see http://hackerspace.sg/about-us/ > >> From: Patrick Haller >> To: Saravanan T >> Cc: "singapore-pm at pm.org" >> Sent: Friday, September 20, 2013 8:12 AM >> Subject: Re: [singapore-pm] Perl Meet up at Singapore >> >> Here's a quick perl golf question for the list, what's the shortest way >> to write a rot13 function without mangling the variable passed in? >> >> Here's my attempt: >> >> sub rot13($) { >>? ? $a if (my $a = $_[0]) =~ tr/a-mn-z/n-za-m/ >> } > I tried to make it wordier, but this won't translate punctuation correctly for some reason :-/ > > sub rot13 { >? ? return join "", map { $_ = ord; chr ($_ > 109 ? $_ - 13 : $_ + 13) } split //, lc shift; > } > > cheers, > Gaurav > _______________________________________________ > Singapore-pm mailing list > Singapore-pm at pm.org > http://mail.pm.org/mailman/listinfo/singapore-pm _______________________________________________ Singapore-pm mailing list Singapore-pm at pm.org http://mail.pm.org/mailman/listinfo/singapore-pm _______________________________________________ Singapore-pm mailing list Singapore-pm at pm.org http://mail.pm.org/mailman/listinfo/singapore-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: From talk2saravanan at yahoo.co.in Sat Oct 5 23:41:59 2013 From: talk2saravanan at yahoo.co.in (Saravanan T) Date: Sun, 6 Oct 2013 14:41:59 +0800 (SGT) Subject: [singapore-pm] Perl Meet up at Singapore In-Reply-To: <6BFC9E17-CC3F-4A7E-80DE-86E6A6AAFFFF@gmail.com> References: <1379619719.91733.YahooMailNeo@web192504.mail.sg3.yahoo.com> <20130920024242.GR16712@haller.ws> <1379657962.99874.YahooMailNeo@web192503.mail.sg3.yahoo.com> <3D09F0B3-5658-4F4E-8D34-E60B1E7C2B45@ggvaidya.com> <6BFC9E17-CC3F-4A7E-80DE-86E6A6AAFFFF@gmail.com> Message-ID: <1381041719.92311.YahooMailNeo@web192505.mail.sg3.yahoo.com> Hi Alvin, Can you suggest us a suitable date to host in hackerspace by next week or so? Thanks, ~Saran ________________________________ From: Alvin Jiang To: Gaurav Vaidya ; "singapore-pm at pm.org" Sent: Saturday, September 21, 2013 11:36 PM Subject: Re: [singapore-pm] Perl Meet up at Singapore I can host. Ping me off list to find a suitable date. Alvin. > On 21 Sep, 2013, at 16:38, Gaurav Vaidya wrote: > > Hi everybody! > >> On 20 Sep, 2013, at 12:19 AM, Saravanan T wrote: >> Cool Info Patrick! >> >> Gaurav is doing good! > Well, I'm sick. But I think I'm getting better! Also Boulder, Colorado is the beautifulest beautiful imaginable, so I am very happy, even if sick :) > >> Yes..Gaurav also suggested to host in hackerspace.sg. >> Can we use it at free of cost? > The last time we had a meeting there, we had to get one of the Hackerspace members to host the event for us. But you can also e-mail events(at)hackerspace(dot)sg, see http://hackerspace.sg/about-us/ > >> From: Patrick Haller >> To: Saravanan T >> Cc: "singapore-pm at pm.org" >> Sent: Friday, September 20, 2013 8:12 AM >> Subject: Re: [singapore-pm] Perl Meet up at Singapore >> >> Here's a quick perl golf question for the list, what's the shortest way >> to write a rot13 function without mangling the variable passed in? >> >> Here's my attempt: >> >> sub rot13($) { >>? ? $a if (my $a = $_[0]) =~ tr/a-mn-z/n-za-m/ >> } > I tried to make it wordier, but this won't translate punctuation correctly for some reason :-/ > > sub rot13 { >? ? return join "", map { $_ = ord; chr ($_ > 109 ? $_ - 13 : $_ + 13) } split //, lc shift; > } > > cheers, > Gaurav > _______________________________________________ > Singapore-pm mailing list > Singapore-pm at pm.org > http://mail.pm.org/mailman/listinfo/singapore-pm _______________________________________________ Singapore-pm mailing list Singapore-pm at pm.org http://mail.pm.org/mailman/listinfo/singapore-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: