03 Jan, 2011

New svchost.exe removal tool

Articles related to new svchost.exe removal tool

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 ago

Firefox Browser within Browser

http://digitalpbk.blogspot.com/2007/01/firefox-browser-within-browser.html to functionality using JavaScript. To extend the browser, we modify parts of the browser UI by adding or modifying widgets. We add widgets by inserting new XUL DOM elements into the browser window, and modify them by using script and attaching event handlers. Have fun making tabs within tabs within tabs ......Did not work? Did not work ? What happened ? Lemme know ... Feel free to leave a comment ... ...
Published 5 years 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 1 year, 11 months ago

Change or Increase font size on Eclipse IDE

http://digitalpbk.com/eclipse/change-increase-font-size-eclipse Change or Increase font size on Eclipse IDE > Preferences As shown, Goto General > Appearence > Colors and Fonts On the right panel Select Editor Font and click the Edit Button. Increase the font size on the new window and press Ok on both windows Done. Now that should ease up your eye strain :) . How to ...
Published 1 year, 9 months ago

Solved TV in Black and White Problem in Ubuntu 8.04 with Compaq Laptop

http://digitalpbk.blogspot.com/2008/06/ubuntu-compaq-presario-black-white-xorg.html .Xorg.conf# nvidia-xconfig: X configuration file generated by nvidia-xconfig# nvidia-xconfig: version 1.0 (buildmeister@builder26) Thu Feb 14 18:13:41 PST 2008# nvidia-settings: X configuration file generated by nvidia-settings# nvidia-settings: version 1.0 (buildd@yellow) Tue Mar 4 20:28:57 UTC 2008# xorg.conf (X.Org X Window System server configuration file)## This file was generated by dexconf, the Debian X Configuration tool, using# values from the debconf database.## Edit this file with caution ...
Published 3 years, 7 months ago

Making Sony Ericsson Mobile Themes

http://digitalpbk.blogspot.com/2007/04/making-sony-ericsson-mobile-themes.html Making Sony Ericsson Mobile Themes IntroSony Ericsson mobile themes (.thm files) is simply a collection of a lot of images and an xml file that specifies the colour codes. Take a theme file rename it to .tar (use archive manager on linux or any standard compresssing utility) and unzip it using any standard unzipping utility. Just play with the files and images and you can make your self a new theme. Be it for W550i, W800i, W880i, K310i, K750i, K700i, etc ... Re-zip the contents and rename ...
Published 4 years, 10 months ago

Perl Script to check Google pagerank

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 1 year, 9 months ago

HDMI port on laptop

http://digitalpbk.com/hdmi-port/hdmi-port-on-laptop HDMI port on laptop HDMI port on laptop What does HDMI port on laptop do ? HDMI or High Definition Multimedia Interface, is a new type of technology than enables inter connection of Audio - Visual equipment with each other. HDMI port is present on laptops, modern LCD, LED televisions, DVD / BluRay Players, the new Nokia N8 mobile phone, Sony Playstation 3 etc. It is High Definition because it can support high data transfer rates (~10 Gbps) which is required to stream High Definition Audio / Video. (High ...
Published 1 year, 1 month ago

How to access realtime google analytics

http://digitalpbk.com/google-analytics/how-to-access-google-analytics-realtime How to access realtime google analytics into Google Analytics Click on the new Version from the top right portion as it is available only in the new version of Google Analytics Click on a website profile from the page/ Click on Home menu on the main navigation under the Analytics logo besides your website name. Now on the left navigation you should see Real time (BETA) Open the menu and click Overview This brings up Google Analytics Realtime View. Have fun watching your stats realtime! Features in Google Analytics Realtime Google analytics ...
Published 3 months ago

Reset forgot unlock pattern on Android

http://digitalpbk.com/android/reset-forgot-unlock-pattern Reset forgot unlock pattern on Android will be asked to enter your google credentials Now if you are successfully authorized, you will be presented a screen to set a new lock pattern. Put in a new pattern and confirm the pattern once. Now you should be at the home screen with your unlock pattern reset. Don't have a Google Account connected / No internet on your phone? After creating an unlock pattern be sure to do a sync to google using WiFi so that google can verify your username / password without internet in case you forgot your ...
Published 7 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