Category: Perl

FIX:- Memory Leakage issue Perl Socket Programming

Today through this Article I am going to share a fix for memory leakage in Perl Socket Programming. Many times we use IO::Socket module to establish sockets in code and while creating a object using following code snippet:- my $socket = IO::Socket::INET->new (PeerAddr=>$remote_ip,PeerPort=>$port,Proto=>’tcp’); my $output=<$socket> ; This all was done using multi threading in a
Read More »

RSS Feed to Update Twitter Status using Perl Script with OAuth Part-I (Registration of Twitter Application)

Every blogger or the person who is connected with Internet to get latest news, updates, informations etc. knows the importance of RSS Feeds. RSS (Really Simple Syndication) is a family of web feed formats used to publish frequently updated works on blog or on websites. Users subscribe to their favorite blogs or news websites so
Read More »

RSS Feed to Update Twitter Status using Perl Script with OAuth Part-II (Installation of Perl Modules, writing perl script and Integrating it with OAuth)

_ In previous article “RSS Feed to Update Twitter Status using Perl Script with OAuth Part-I (Registration of Twitter Application)” we have learn to register a twitter application and today I am going to tell how to use that application to update your twitter status with the help of a Perl Script which will fetch
Read More »