14 Aug, 2010
Launch external help file .chm using perl
Articles related to launch external help file .chm using perl
http://digitalpbk.com/windows-chm/chm-files-navigation-webpage-was-cancelled
CHM Files Navigation to the webpage was cancelled
Does this window appear when you open
CHM files ?
This happend to me after upgrading to Internet Exporer 7.
If you are wondering why you cant read the
CHM files, just do the steps below :
Steps for solving Navigation to the webpage was cancelled
Close the
CHM fileOpen it again and you will get the same popup as shown below
Uncheck the checkboxAlways ask before opening this
file (Highlighted in the image above). Press Open
Now ...
Published 2 years, 6 months ago
http://digitalpbk.blogspot.com/2006/12/aboutconfig-on-firefox.html
about:config on firefox
This one is for those
using Mozilla Firefox, if you are
using take a new page or new tab and on the address bar type in about:config. You can do all the tweaking of Firefox from this page. about:configYou can edit the values by double clicking and changing the value on the dialog box or Right Click to Add/Modify etc.Warning!You can mess up firefox if you do editing. So always backup the values before tweaking.Take
File > Save Page.Some examples ...
Published 5 years, 5 months ago
http://digitalpbk.blogspot.com/2007/12/show-desktop-missing.html
Show Desktop missing?
Show DesktopAfter opening hundreds of windows and you want to desperately do something with your desktop, you have to go on minimizing all the windows. This is where the Show Desktop is
used. For those who have not seen it, it is there in the quick
launch section of the Task Bar.And for the more unlucky guys who have not enabled the quick
launch, a google search would be more than enough to know more. And for the lucky guys like me, who occassionally find it interesting ...
Published 4 years, 5 months ago
http://digitalpbk.com/perl/perl-script-check-google-pagerank
= WWW::Google::PageRank->new;
print scalar($pagerank->get($webpage)), "\n";
Usage of
Perl Script to check PageRank
./pagerank.pl http://digitalpbk.com
Getting Google Pagerank of Pages in Bulk
The following
PERL script can be
used to get pageranks of pages in bulk. Just pass the filename which has URLs in each line and it would output the pageranks of those pages as a CSV.
#!/usr/bin/
perl
$
file = $ARGV[0];
use WWW::Google::PageRank;
my $pagerank = WWW::Google::PageRank->new;
sub trim($)
{
my ...
Published 2 years ago
http://digitalpbk.blogspot.com/2009/07/perl-imagemagick-convert-jpeg-png-bmp.html
.pl #
use strict;
use Image::Magick;my $q = Image::Magick->new;my $source = $ARGV[0];my $dest = $ARGV[1];$q->Read($source);$q->Write(filename=>$dest);exit;That is all that is required to convert
file from one format to another
using ImageMagick and the
Perl Image Magick API. For exampleperl im.pl IMG_0021.JPG IMG_0021.BMPwould convert the JPG to BMP for you. ...
Published 2 years, 10 months ago
http://digitalpbk.com/virus/gumblar-web-virus-manual-removal-free-tool
Gumblar Virus Javascript removal
using PERL
Gumblar virus infects all .html and .php
files and injects a piece of javascript in the source code. The code is usually found just below the <body> tag. The Javascript code Gumblar injects varies widely and usually attaches a script or inline frame inside your page to execute itself on page load. Read on to get rid of this virus.
Gumblar Source Code Samples when delimited by new lines
Sample 1
var D;
if(D!='' ...
Published 2 years, 1 month ago
http://digitalpbk.com/windows/host-file-windows-7-write-permission-denied
by default
used to run as Administrator if your were an administrator. The feature in Windows 7 is good as it
helps protect against most mallicious software which when run as administrator can cause havoc.
So inorder to edit hosts
file on Windows 7 ,
Goto Start Menu > Enter Notepad > Right-Click on Notepad > Run as administrator .
Now you can open the hosts
file and edit it.
:)
Windows
Software ...
Published 2 years, 2 months ago
http://digitalpbk.blogspot.com/2007/05/my-first-useful-perl-program.html
line argument you can get the same information of that account.How to
use ?Check whether you have
Perl installed on your computer.Start a command prompt and type
perl -v, if the command is not found download and install
Perl.Copy the source code given above and paste it in a new
file say dstat.plRun the code by
perl dstat.pl. ...
Published 5 years ago
http://digitalpbk.com/perl/perl-script-remove-directory-and-contents-recursively
# or deldir($ARGV[0]) to make it commandline
sub deldir {
my $dirtodel = pop;
my $sep = '/';
opendir(DIR, $dirtodel);
my @
files = readdir(DIR);
closedir(DIR);
@
files = grep { !/^\.{1,2}/ } @
files;
@
files = map { $_ = "$dirtodel$sep$_"} @
files;
@
files = map { (-d $_)?deldir($_):unlink($_) } @
files;
rmdir($dirtodel);
}
The deldir sub routine recursively iterates and deletes all the
files and directories.
PERL
How to ...
Published 2 years, 5 months ago
http://digitalpbk.blogspot.com/2006/12/how-to-make-windows-media-player-skins.html
is actually a .ZIP
file. Inorder to decompress the
file and view the content
files, rename the .WMZ
file to .ZIP and
use a unzipping utility such as WinZIP or WinRAR to extract the containing
files. Take for example the Classic.wmz
file, renaming and extracting gives us the following
files: classic.wms classic.js back_disabled.bmp back_down.bmpback_hover.bmp back_up.bmp currentpos_background.bmp currentpos_thumb.bmpdivider.bmp ffw ...
Published 5 years, 5 months ago
Related help topics for launch external help file .chm using perl
More keywords like launch external help file .chm using perl
More pages for launch external help file .chm using perl