03 Jan, 2011

New folder exe removal tool

Articles related to new folder exe removal tool

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

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

T9 Dictionary Implementation in C, BASH

http://digitalpbk.blogspot.com/2008/07/trie-data-structure-c-t9.html T9 Dictionary Implementation in C, BASH /*t9.cDependency : t9.dicA file with lots of words to populate our t9 trie structure.All in small letter no spaces no other charactersTerminated by a line with only a 0 (zero)=================*/#include #include #include struct t9{ struct t9 * node[27];};struct t9 * t9_new(){ struct t9 * r = (struct t9 *)malloc(sizeof(struct t9)); int i=0; for(;inode[i] = (struct t9 *)0; return r;}void t9_free(struct t9 * root){ if(root) { int i=0; for ...
Published 3 years, 6 months ago

yum/apt-get update Breaks Perl CPAN

http://digitalpbk.blogspot.com/2009/07/perl-update-code-500-architecture.html /.cpan/Metadata Database was generated on Mon, 15 Jun 2009 02:27:28 GMTGoing to read /root/.cpan/sources/authors/01mailrc.txt.gzCPAN: Compress::Zlib loaded okGoing to read /root/.cpan/sources/modules/02packages.details.txt.gz Database was generated on Wed, 08 Jul 2009 02:28:24 GMTCPAN: HTTP::Date loaded ok There's a new CPAN.pm version (v1.9402) available! [Current version is v1.7602] You might want to try install Bundle::CPAN reload cpan without quitting the current session. It should be a seamless ...
Published 2 years, 7 months ago

Perl Script to Login to Orkut

http://digitalpbk.blogspot.com/2007/05/perl-script-to-login-to-orkut.html and GET the redirect page URLGoto the redirect pageGoto Orkut.com/home.aspxYour done.Note:Tested on Linux (FC6, Perl 5.8.8)The following script is for linux, Will run on Windows too but the ANSI coloring may not work...Windows Program is given below the program for Linux (without ANSI coloring).For Linux (with ANSI coloring)use WWW::Mechanize;use HTTP::Cookies;use HTTP::Request::Common;$cj=HTTP::Cookies->new(file => "cookie.jar",autosave=>1,ignore_discard=>1);$mech ...
Published 4 years, 9 months ago

Related help topics for new folder exe removal tool More keywords like new folder exe removal tool
More pages for new folder 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