The Long Death Of CGI.Pm

Refer From : https://perlhacks.com/2015/12/long-death-cgi-pm/ CGI.pm has been removed from the core Perl distribution. From 5.22, it is no longer included in a standard Perl installation. There are good technical reasons for this. CGI is a dying technology. In 2015, there are far better ways to write web applications in Perl. We don’t want to be seen [...]

Read more

Unix To Dos

 #!/usr/bin/perl [...]

Dos To Unix

perl -pi -e 's/rn/n/;' Filename.pl#!/usr/bin/perl [...]

UTF-8 Solution

#!/usr/local/git/bin/perl # Test Char Set Issue # Tested By : Sivasakthi kumar # IM : Sivasakthikumar@gmail.com use DBI; use DBD::Oracle qw(:ora_types); use utf8; use [...]

Perl One Line Programs

# run program, but with warnings perl -w my_file # run program under debugger perl -d my_file # just check syntax, with warnings perl -wc my_file # useful at end of "find [...]

Comparison of C, C++, Java, Perl, Python, Rexx, and Tcl.

Run Time Number of programs and name/version of compiler or interpreter used for the various languages. The Java evaluation uses either the JDK 1.2.2 Hotspot Reference [...]