Re: Perl hash

2015-07-30 Thread Uday Vernekar
Hashes are complex list data, like arrays except they link a key to a value. Hashes can be used for counting, uniqueness, searching, and dispatch and lot more than just mapping from one thing to another and More. On Fri, Jul 31, 2015 at 9:15 AM, Uri Guttman wrote: > On 07/30/2015 11:38 PM, bikra

Quack & hack delhi

2015-07-30 Thread Rohitzidu
Hello guys, Welcome to the "Quack & Hack - Delhi", We are delighted that benefits of membership will meet your expectations. Quack & Hack-open source community well known for Instant Answer and Search Engine Hack around the world. In Bangalore we had completed two meetups, above 350+ members.

Re: Perl hash

2015-07-30 Thread Uri Guttman
On 07/30/2015 11:38 PM, bikram behera wrote: Hi Team, hi, we aren't a team. this is a public mailing list. Please send me hash uses and concept think of them as arrays but instead of integers for indexing, you use strings. the uses are too many to list here. some are data structures, ta

Perl hash

2015-07-30 Thread bikram behera
Hi Team, Please send me hash uses and concept Thanks, Bikram

Re: Yenc encoder performance

2015-07-30 Thread David Araujo Souza
Hi Shiome.I'm the very, very beginner in Perl. In moment i can't help you. I'm iniciate study in Perl on this week. Sorry. Em Quinta-feira, 30 de Julho de 2015 18:27, Shlomi Fish escreveu: Hi David, see below for my comments on your code. On Thu, 30 Jul 2015 22:14:55 +0200 Dav

Re: Perl beginner

2015-07-30 Thread Shawn H Corey
FYI: some useful Perl links. • Official site • Beginners' help • Advance help • News • Documentation • Online Books

Re: Yenc encoder performance

2015-07-30 Thread Shlomi Fish
Hi David, see below for my comments on your code. On Thu, 30 Jul 2015 22:14:55 +0200 David Emanuel da Costa Santiago wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > > Hello, > > I'm developing a perl yenc encoder but unfortunatelly it's not having > the performance i was expec

Re: Perl beginner

2015-07-30 Thread Andrew Solomon
And (DISCLAIMER: THIS EMAIL IS AN ADVERTISEMENT:-) you might want to check out https://geekuni.com/ On Thu, Jul 30, 2015 at 9:32 PM, Shlomi Fish wrote: > Hi Bikram, > > On Wed, 1 Jul 2015 22:10:53 +0530 > bikram behera wrote: > > > Hi Team, > > > > I am new in perl , i want to learn perl. > > >

Re: Yenc encoder performance

2015-07-30 Thread Andrew Solomon
Hi David It would be worth nailing down which bit is slow. I'm guessing it's the for-loop rather than the unpack but I'd make sure of it using something like this https://metacpan.org/pod/Time::HiRes If it is indeed the for-loop, I'd experiment with using regex substitution instead of the for-lo

Re: Yenc encoder performance

2015-07-30 Thread Uri Guttman
On 07/30/2015 04:14 PM, David Emanuel da Costa Santiago wrote: my @YENC_CHAR_MAP = map{($_+42)%256;} (0..0x); my $YENC_NNTP_LINESIZE=128; sub _yenc_encode{ my ($string) = @_; my $column = 0; my $content = ''; my @hexString = unpack('W*',$string); #Converts binary string to hex

Re: Perl beginner

2015-07-30 Thread Shlomi Fish
Hi Bikram, On Wed, 1 Jul 2015 22:10:53 +0530 bikram behera wrote: > Hi Team, > > I am new in perl , i want to learn perl. > sorry for the late response. Please see the following links for how to learn Perl: * http://perl-begin.org/ * http://perl-tutorial.org/ Regards, Shlomi Fish

Yenc encoder performance

2015-07-30 Thread David Emanuel da Costa Santiago
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hello, I'm developing a perl yenc encoder but unfortunatelly it's not having the performance i was expecting to have (and it's CPU heavy). Can i get some help improving it's performance? This is the code i have (41 lines). Initially i though abo

Re: convert linear array to nested structure

2015-07-30 Thread Brandon McCaig
On Fri, Jul 24, 2015 at 03:05:24PM +0200, Simon Reinhardt wrote: > Am 21.07.2015 um 22:35 schrieb Jim Gibson: > > That is an unique data structure and transformation > > requirement (as most are), so you are not likely to find an > > existing set of code to do exactly what you want. However, > > th

Re: Perl beginner

2015-07-30 Thread OmPs
That's great. On 30 Jul 2015 17:12, "Martin Barth" wrote: > good luck with it! > > Am 01.07.2015 um 18:40 schrieb bikram behera: > > Hi Team, > > > > I am new in perl , i want to learn perl. > > > > Thanks, > > Bikram Behera > > > > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org >

Re: Perl beginner

2015-07-30 Thread Martin Barth
good luck with it! Am 01.07.2015 um 18:40 schrieb bikram behera: > Hi Team, > > I am new in perl , i want to learn perl. > > Thanks, > Bikram Behera > -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/