About Rama

To speak about Rama is to speak about his qualities, he followed below listed #16 extraordinary qualities as a normal human being and laid path for human to achieve them. Qualities of Rama:   GUNAHVAAN = principled person,   VEERYAVAAN = potential one,   DHARMAGNASYA  = conscientious, Characterized by extreme care and great effort   KRUTAGNASYA = knower of what has been done [a redeemer,]   SATYAVAAKO = one who speaks only truth   DRUDHAVRATA = firm resolved, determined in his deed   CHARITRAKA = character, conduct-wise   SARVABUTESHUKOHITAHA = in [respect of] all, beings, a benign one.   VIDVAAN […]

Read more

Perl References/Dereferences

An enumerated or comma-separated list always returns the last element in a scalar context. An array reference is created by either: * the [ ] operator around a list * the operator in front of a list variable (@) A hash reference is created by either: * the { } operator around a list (of pairs) * the operator in front of a hash variable (%) Example Code: ############################################################# references.pl #!/usr/bin/perl -w use strict; use Data::Dumper; my @a = qw( hello there you guys ); # a regular array my %grade = qw( A 4.0 B 3.1 C 2.0 D […]

Read more

Reading a File via Perl Script

Reading with <> into an array: gets lines into array as is in file along with new line chars. each $line_$i in file = $arr[$i] Reading with <> into hash : sets $has{$key} = $value. where $key = line_$i and $value = line_$i+1 respectively. < p>Reading with <> using while loop: gets each line along with "n" chars

Read more