Category: Script

Reasons to Use HTML5 for Mobile App Development

HTML5 for Mobile App Development  HTML5 is a core technology mark-up language of the Internet used for structuring and presenting content for the World Wide Web. It was specially designed to deliver rich content without the need for additional plugins. The current version delivers everything from animation to graphics, music to movies, and can also
Read More »

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 »