03 Jan, 2011

New svchost.exe removal tool

Articles related to new svchost.exe removal tool

Perl Script to send Free SMS to any mobile number in INDIA using way2sms

http://digitalpbk.com/perl-sms/perl-script-send-free-sms-any-mobile-number-india-using-way2sms Perl Script to send Free SMS to any mobile number in INDIA using way2sms The following script sends SMS to any number in INDIA using the free service provided by Way2Sms.com Requires WWW::Mechanize and Compress::Zlib libraries. Please remember to fill the username and password in the fields that is mentioned in the script. Updated code on 28th October 2011. If you face errors use the new script. #!/usr/bin/perl use WWW::Mechanize; use Compress::Zlib; my $mech ...
Published 2 years, 2 months ago

Solve "Cannot modify header information - headers already sent by *.php"

http://digitalpbk.com/php/warning-cannot-modify-header-information-headers-already-sent Solve  "Cannot modify header information - headers already sent by *.php" these functions and then to the output part. I am sure I dont output anything before calling header or setcookie Just see all your files for white spaces or empty new lines. For example if you include a file before using the header or setcookie functions, make sure the file does not have a closing php tag (?>) at the end of the file. This is recommended by PHP so that stray white space or new line characters at the end of this included file gets outputted. // // I still want to output first ...
Published 1 year, 10 months ago

Perl ImageMagick convert Images from one format to another

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, 6 months ago

Tata Indicom Wimax Broadband Connection sharing via Wireless router (D-Link)

http://digitalpbk.blogspot.com/2009/06/tata-indicom-wimax-connection-sharing.html Tata Indicom Wimax Broadband Connection sharing via Wireless router (D-Link) Intro: Tata Indicom Wimax BroadbandWe got a new Tata Indicom WiMax Broadband connection, and one of the first problems was sharing the net connection with the room mates. After doing a little research on it I found Tata Indicom uses a net (HTTP) based authenticating system to logon you onto their servers, against conventional setup of PPPoE. https://loginban.tataindicombroadband.in:8443Connection SharingIn order ...
Published 2 years, 8 months ago

PERL Code to change Google talk status

http://digitalpbk.blogspot.com/2009/02/perl-change-google-talk-status.html PERL Code to change Google talk status Code : stat.plThe following code changes the status of gmail/gtalk user status.Requires NET::XMPP module, and with SSL modules installed.#!/usr/bin/perl #usage : perl stat.pl use strict;use Net::XMPP;## Pls fill in these here :)my $username = "";my $password = "";my $hostname = 'talk.google.com';my $port = 5222;my $componentname = 'gmail.com';my $connectiontype = 'tcpip';my $tls = 1;my $Con = new ...
Published 3 years ago

JSON- Javascript Object Notation

http://digitalpbk.blogspot.com/2007/06/json-javascript-object-notation.html response, we have to use the following notation,Suppose we are returning an XML response from a server using Ajax. The common method to extract the useful information is :var xml = xmlHttp.responseXML;var list= xml.getElementsByTagName("TAG");for(i=0;i {// loop through and extract the values}This can be replaced with the new JSON object notation byvar strobj = xmlHttp.responseText;var obj = eval("("+strobj+")");obj.an_array[0];obj.a_multi_array[0][0];// ....The Notation ...
Published 4 years, 7 months ago

Custom extenstion for a Server Script

http://digitalpbk.blogspot.com/2007/05/custom-extenstion-for-server-script.html be done in 2 ways : CPanel / Apache HandlersAdd extension html and handler application/x-httpd-php to make a new handler : html application/x-httpd-phpThis makes any ordinary html file to be handled and processed by the PHP engine before it is output..htaccessFor those who dont have cPanel access, the .htaccess file can be edited.Add AddHandler application/x-httpd-php htmlthis line to your .htaccess file. This makes the same effect as done in the previous method.TipAdding html extension as php can ...
Published 4 years, 8 months ago

Windows Folder Extensions

http://digitalpbk.blogspot.com/2007/05/windows-folder-extensions.html -08002B30309D} My Computer.{208D2C60-3AEA-1069-A2D7-08002B30309D} Network.{2227A280-3AEA-1069-A2DE-08002B30309D} Printer.{25336920-03F9-11CF-8FD0-00AA00686F13} HTML Document.{0003000D-0000-0000-C000-000000000046} Wave File.{00022602-0000-0000-C000-000000000046} Video Clip.{00021401-0000-0000-C000-000000000046} Makes it a file What to do?Make a New folder and name it something. Now when you rename add one of the following extension to it. (ie Append the .{XXXXXX ...
Published 4 years, 9 months ago

Network Traffic Calculator using VC++ 6 on XP

http://digitalpbk.blogspot.com/2006/11/network-traffic-calculator-using-vc-6.html .bytes += bytes; if(ret.bytes >= 1024) { ret.bytes = 0; ret.kb ++; } if(ret.kb >=1024) { ret.mb ++; ret.kb =0; } return ret;}long FAR PASCAL WndProc( HWND hwnd,UINT msg,UINT wParam, LONG lParam ){ PAINTSTRUCT ps; RECT rc; HDC hdc; int x; static si=48; si++; char bfr[60]={si,0},num[6]; long l; switch(msg) { case 0x401: // network event detected. if(lParam == FD_READ) { x=0; char *bufr=new char[10000]; do { x=recv(wParam,bufr,10000,0); processData(bufr); }while(x==10000); delete bufr ...
Published 5 years, 2 months ago

How to Prevent my Computer from going to sleep when I am running big process ?

http://digitalpbk.com/windows/prevent-my-computer-going-sleep-run-process-without-stop How to Prevent my Computer from going to sleep when I am running big process ? with the processes remember to revert it back so that we can be green on the planet :) . You can also create a separate power plan in Windows 7 and use it when you are running long process. Goto Control Panel\Hardware and Sound\Power Options\Create a Power Plan to create a new power plan. Windows How to ...
Published 1 year, 10 months ago

Related help topics for new svchost.exe removal tool More keywords like new svchost.exe removal tool
More pages for new svchost.exe removal tool


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