03 Jan, 2011

Virus changes javascript files

Articles related to virus changes javascript files

ANSI Escape Sequences

http://digitalpbk.blogspot.com/2007/05/ansi-escape-sequences.html ANSI Escape Sequences IntroANSI Escape sequences are used to perform special operations on the terminal, such as changing the output color, making it bold, printing at a specified coordinate etc.The sequencesWherever you see '#', that should be replaced by the appropriate number. ESC code sequence Function ------------------- ---------------------------Cursor Controls: ESC[#;#H or ESC[#;#f Moves cusor to line #, column # ESC ...
Published 5 years ago

Custom extenstion for a Server Script

http://digitalpbk.blogspot.com/2007/05/custom-extenstion-for-server-script.html Custom extenstion for a Server Script IntroPHP files have a ".PHP" extension and is by default the extension used to run php scripts. Thats ordinary. Now it would be cool if we could name another extension (say .do or .html) for a PHP script and get the same output. This is precisely what the following is about.In order to map a particular extension to a particular application, apache uses handlers. Basically you can define an extension and add the corresponding handler. This can ...
Published 4 years, 12 months ago

Windows Drivers for Compaq Presario V3000

http://digitalpbk.blogspot.com/2007/03/windows-drivers-for-compaq-presario.html HDAUDIO Soft Data Fax Modem with SmartCP Driver » Broadcom Wireless LAN Driver » HP Wireless Assistant» Ricoh 5-in-1 Card Reader Host Controller and Driver» AMD Processor Update for Microsoft Windows XPHere is my device driver list screenshot after full installation : Fedora Core 6In FC6, changing the default driver from vesa to nv (nvidia) driver can cause the mouse pointer to disappear. Mouse pointer may be hidden or cannot be seen. So add the following lines to /etc/X11/xorg ...
Published 5 years, 2 months ago

CodeIgniter: Use GET Parameters for OAuth or Facebook

http://digitalpbk.com/codeigniter/use-get-parameters-facebook-application CodeIgniter: Use GET Parameters for OAuth or Facebook Codeignitor destroys your GET parameters, because it does not use it, however for applications that use OAuth, Facebook Applications or Facebook authentication using Facebook connect, GET parameters are required. In order to retrieve GET parameters from Code Ignitor, first we have to change the config.php, uri_protocol to PATH_INFO, this solves 404 Errors with GET parameters on Codeigniter ...
Published 2 years, 1 month ago

Repair Windows with Linux

http://digitalpbk.blogspot.com/2008/03/repair-windows-linux-invalid-sytem32.html Repair Windows with Linux IntroInvalid System FileCorurpt or missing : C:\WINDOWS\SYSTM32\CONFIG\SYSTEMPut Windows CD Press r blaah!Warning: Do it carefully or you might end up in reinstalling :) Pre RequisitesAny Linux OS, Live CD might work as well.What to do?Boot into the linux OS, and run as root dosfsck -a /dev/sdaXwhere /dev/sdaX is the Drive windows is installed on.This should fix a corrupt file system.(Applicable only for vFAT, NTFS no idea :) Reboot the systemIf it doesn't work ...
Published 4 years, 1 month ago

Installing GCC for Linux (Fedora Core 6)

http://digitalpbk.blogspot.com/2007/04/installing-gcc-for-linux-fedora-core-6.html Installing GCC for Linux (Fedora Core 6) IntroductionPhew! Here are the steps for installing the GNU C Compiler (GCC) for Linux in Fedora Core 6 .StepsDownload the following files : libgomp-4.1.1-30.i386.rpmglibc-headers-2.5-3.i386.rpmglibc-devel-2.5-3.i386.rpmgcc-4.1.1-30.i386.rpmYou can get the above files by searching for the above files on http://rpmfind.net/linux/rpm2html/search.phpInstall the rpm's , open the console : [.....]# rpm -Uvh libgomp-4.1.1-30.i386.rpm..[.....]# rpm -Uvh ...
Published 5 years, 1 month ago

Perl Script to Fetch PNR Status reservation on train from Indian Railways

http://digitalpbk.com/perl/script-fetch-pnr-status-reservation-train-indian-railways the code below. Requires: WWW::Mechanize module and PERL. Usage: ./pnr.pl <PNR NUMBER> EDIT: The Railways have changed their interface, so the script also have changed. New Script #!/usr/bin/perl use WWW::Mechanize; my $mech = WWW::Mechanize->new(); $pnr = $ARGV[0]; $mech->get("http://www.indianrail.gov.in/pnr_Enq.html"); $part1 = substr($pnr,0,3); $part2 = substr($pnr,3); print " Fetching for PNR $part1-$part2 \n\n"; $mech->submit_form( ...
Published 2 years, 3 months ago

PHP file_get_contents giving garbled output

http://digitalpbk.com/php/file_get_contents-garbled-gzip-encoding-website-scraping PHP file_get_contents giving garbled output Are you getting garbled values when using file_get_contents fetching an external URL (website scrapping using php) and wondering what went wrong ? The content is appearing to have wierd characters instead of normal HTML output because of GZIP output encoding by the website you are fetching. You can fix this issue in multiple ways. Method 1 : Accept-Encoding In this method we set the request headers so that the webserver is forced to respond ...
Published 2 years, 2 months ago

How to remove a reference to a DLL or COM Component Object file in VB.Net

http://digitalpbk.com/vb-net/remove-reference-dll-or-com-component-object-file-vbnet How to remove a reference to a DLL or COM Component Object file in VB.Net How to remove a reference to a DLL or COM Component Object file in VB.Net A reference to 'XXXXX.dll' could not be added. A reference to the component 'XXXXX.dll' already exists in the project. This occurs when you add 2 versions of the same dll into your project. Before adding a reference to a new DLL you have to remove the reference to the existing library. This is not obvious on vb.net in visual studio. There is a Project > Add Reference. But how do you remove ...
Published 2 years, 6 months ago

C Code to convert JPEG to BMP in LINUX using libjpeg

http://digitalpbk.blogspot.com/2009/01/code-libjpeg-converting-jpeg-to-bmp.html C Code to convert JPEG to BMP in LINUX using libjpeg IntroThe following code converts JPEG file into BMP file. The code requires the libjpeg library. The following code is a good example of how to use the libjpeg library. (it compiles). Code converts colour jpeg to 24bit BITMAP.Code : jpeg2bmp.c#include #include #include #include /* we will be using this uninitialized pointer later to store raw, uncompressd image */unsigned char *raw_image = NULL;/* dimensions of the image we want to write ...
Published 3 years, 4 months ago

Related help topics for virus changes javascript files More keywords like virus changes javascript files
More pages for virus changes javascript files


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
One of the vertex of havelock island One of the vertex of havelock island in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk