03 Jan, 2011

Removing adware 6 0 tool

Articles related to removing adware 6 0 tool

yum/apt-get update Breaks Perl CPAN

http://digitalpbk.blogspot.com/2009/07/perl-update-code-500-architecture.html upgrade while we are running...CPAN: LWP::UserAgent loaded okFetching with LWP: ftp://ftp.jaist.ac.jp/pub/CPAN/modules/03modlist.data.gzLWP failed with code[500] message[Errno architecture (i386-linux-thread-multi-2.6.18-53.1.14.el5pae) does not match executable architecture (i386-linux-thread-multi-2.6.18-53.el5) at /usr/lib/perl5/site_perl/5.8.8/Errno.pm line 11.Compilation failed in require at /usr/lib/perl5/5.8.8/i386-linux-thread-multi/IO/Socket.pm line 17.BEGIN failed--compilation aborted ...
Published 2 years, 10 months ago

Reset the root password on a linux box

http://digitalpbk.blogspot.com/2009/03/reset-root-password-linux-fedora-debian.html when running passwd, passwd: Authentication token lock busy.passwd Next just use the passwd command, and give a new root password, Now that's simple. Reboot or init 5That's really all I did. OR from the root shell, you can also edit the /etc/shadow file to remove the password.OR copy the /etc/shadow /etc/passwd file and use John-The-Ripper software to try cracking the password.Stuck? Let me know ...
Published 3 years, 2 months ago

How to make more fans on orkut?

http://digitalpbk.blogspot.com/2006/11/how-to-make-more-fans-on-orkut.html How to make more fans on orkut? Lets start by looking how you get a fan normally. You get a fan when one of your friends click the star near your name on the friends page. Next let us see the inner workings of the "Fanning Process".The "Star" that clicks has the following code . 0, 1, 0);"> alt="fan" title="fan" border="0" ...
Published 5 years, 6 months 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, 11 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 ; memset ((char *)&bh;,0,sizeof(BMPHEAD)); /* sets everything to 0 */ //bh.filesize = calculated size of your file (see below) //bh.reserved = two zero bytes bh.headersize = 54L;// (for 24 bit images) bh.infoSize = 0x28L;// (for 24 bit images) bh.width = width ;//in pixels of your image bh.depth = height;// in pixels of your image bh.biPlanes = 1 ;//(for 24 bit images) bh.bits = 24 ;//(for 24 bit images) bh.biCompression = 0L;;// (no compression) int bytesPerLine; bytes ...
Published 3 years, 4 months ago

Introduction to Windows - Programming for Windows

http://digitalpbk.blogspot.com/2007/09/windows-and-c-programming.html (WNDCLASSEX); wcl.hInstance = hInstance; wcl.lpszClassName = szWinName; wcl.lpfnWndProc = WindowFunc; wcl.style = 0; wcl.hIcon = LoadIcon(NULL, IDI_APPLICATION); wcl.hIconSm = NULL; wcl.hCursor = LoadCursor(NULL, IDC_ARROW); wcl.lpszMenuName = NULL; wcl.cbClsExtra = 0; wcl.cbWndExtra = 0; wcl.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH); if(!RegisterClassEx(&wcl;)) return 0; hwnd = CreateWindow(szWinName,"Windows ...
Published 4 years, 8 months ago

Make WWW::Mechanize do not exit on GET Errors

http://digitalpbk.com/perl/wwwmechanize-error-geting-premature-do-not-exit-resume Make WWW::Mechanize do not exit on GET Errors When using PERL and WWW::Mechanize, your script can stop if there is some error in GETing a URL (such as 404 Not Found, 403 Permission Denied). Instead of resuming, the script terminates. If you want the script to continue resuming, you have to pass autocheck => 0 in the Mechanize class constructor as shown below my $mech = WWW::Mechanize->new(autocheck => 0); This makes sure that the mechanize library does not check for errors ...
Published 2 years, 2 months ago

8086 Assembly Language Program to find the factorial upto 255!

http://digitalpbk.blogspot.com/2008/11/masm-assembly-factorial-program-big.html vedic maths, which can certainly improve the efficiency I guess).The following is the assembly language program, try digesting....asm Programdata segment b1 db 512 dup(0) b2 db 512 dup(0) msg db 0dh,0ah,"Number:$" fac db 0dh,0ah,"Factorial",0dh,0ah,"$"data endsbignum_get macro var local exit,get,loo,skip xor cx,cx lea si,var mov di,si mov ah,01hget: int 21h cmp al,0dh je exit sub al,30h mov [si],al inc si inc cx jmp getexit: shr cx,1 jz skip dec siloo: mov ah,[si] mov ...
Published 3 years, 6 months ago

Making a Firefox extension

http://digitalpbk.blogspot.com/2007/02/making-firefox-extension.html Install.rdf xmlns:em="http://www.mozilla.org/2004/em-rdf#"> helloworld@digitalpbk.com Hello World 1.0 Hello World Sample Extension from digitalpbk.com digitalpbk A person who helped you Another one http://digitalpbk.blogspot.com chrome://sampleext/content/settings.xul chrome://sampleext/content/about.xul chrome://sampleext/skin/mainicon.png http://sampleextension.mozdev.org/update.rdf {ec8030f7-c20a-464f-9b0e-13a3a9e97384} 1.5 2.0.0.* DraftFinally Packaging your skinIf you are familiar with Firefox, extensions are packaged in .xpi ...
Published 5 years, 3 months ago

Select second largest value in a column using SQL

http://digitalpbk.com/interview-questions/select-second-largest-value-column-using-sql Select second largest value in a column using SQL None The answer is pretty simple without jumping over hoops or thinking about taking MAX etc. SELECT value FROM table ORDER BY value DESC LIMIT 1,1 Why LIMIT 1,1 ? Shouldnt it be 2,1 Think again. LIMIT 0,1 is the first record. Interview Questions ...
Published 2 years ago

Related help topics for removing adware 6 0 tool More keywords like removing adware 6 0 tool
More pages for removing adware 6 0 tool


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
Tropical Canopy @ Havelock Tropical Canopy @ Havelock in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk