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

Protected: Python Rules for variable naming

This content is password protected. To view it please enter your password below: Password: [...]

Shell scripting: Convert a string from lowercase to uppercase

The linux shell has provided us with many hidden gems. Some of things are string manipulation with out using external commands like SED/AWK. In this post we will see how to [...]

how to join lines in a file in Linux?

1) tr “n” ” ” < filename 2) cat filename | tr -d “n” 3) cat filename | tr “n” ” “ 4) paste -s -d ” ” [...]

More Awesome Things You’ve Missed in Perl

http://www.youtube.com/watch?v=vgvMd4nuHTg Paul Fenwick explains Moose, autobox, autodie, Try::Tiny, cpanm, local::lib, MetaCPAN, named capture, grammars, [...]

Autocompletition in Padre, the Perl IDE v0.87

  http://www.youtube.com/watch?v=ptN63wSVK9w Padre, the perl editor provides a configurable way to autocomplete while you are typing. This video shows the [...]

A Productivity Enhancing Perl Environment

  http://www.youtube.com/watch?v=_KxjaCvllEU Over the last couple of years I have been spending almost all of my working time actually coding Perl. This made it [...]

A Date with Perl

http://www.youtube.com/watch?v=G5TnlcNCcBQ Dates and times are confusing and crazy. What nut invented Daylight Saving Time? Someone who'd never imagined a computer, that's [...]

AnyEvent in Perl

In this talk, how to use it in Perl using [...]