INDEX ADBRITE

 

MAKE YOUR WINDOWS XP GENIUNE

1. Before doing anything serious try restoring your system. If the problem is occurring after the Windows Update then System Restore will surely help.

2. But if it does not then do try this, launch Windows Task Manager.

3. Locate the process “wgatray.exe” and end it.
4. Log in into the Safe Mode and delete the file WgaTray.exe from c:\Windows\System32
5. Also delete the WgaTray.exe from c:\Windows\System32\dllcache
6. Type regedit in Run to open Registry Editor, navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify key.
7. Delete the folder WgaLogon and all of its contents.
8. Restart the PC normally.
Read more ...

GOOD BYE WINDOWS XP ERROR REPORTING

To disable the error reporting feature in Win XP follow the steps:

1. Open Control Panel.

2. Click on Performance and Maintenance.

3. Click on System.

4. Then click on the Advanced tab.

5. Click on the error reporting button on the bottom of the windows.

6. Select Disable error reporting.

7. Click OK.
Read more ...

EXTRACT LINK AND NAME FROM HTML USING PHP CODE SNIPPET

some times you may need to extract the name and link from html link.
here is a simple php code snippet to do the job.
it simply extract the link and name and save it into array.
here is the code...




<?php
function extract_linkdata($htmllink){

$data=array();

//array for storing url and name
$var=array();

array_push($var,$htmllink);

//ALGORITHM FOR EXTRACTING LINK
$link_start=stripos($var[0],'"')+1;$one=substr($var[0],$link_start);
$link_end=stripos($one,'"');
$extracted_link=substr($one,0,$link_end);
$data[url]=$extracted_link;

//ALGORITHM FOR EXTRACTING NAME
$name_start=stripos($var[0],'>')+1;
$one=substr($var[0],$name_start);
$name_end=stripos($one,'<');
$extracted_name=substr($one,0,$name_end);
//saving the name into array
$data[title]=$extracted_name;
return $data;
}
?>


how to use the function:
 <?php
 $link_and_name=extract_linkdata('<a href="www.iloveutech.blogspot.com">iLOVEuTECH</a>');//use any html link as parameter


//now access the link by this way or do anything with the link

echo $link_and_name[url];

//access the link name

echo $link_and_name[title];
?>

Read more ...

pys60 python sis support for symbian mobile s60v2 fp3

Here is the list of all required file of python which is necessary to run python related software......
All the files for symbian s60v2 fp3 mobile phone such as NOKIA N70-1.
Read more ...

English to bangla dictionary for mobile

Bangla dictionary is now on your pocket and is free. I have used Sun Java Wireless Toolkit 2.5.2 with Mobile Tools for the Java Platform (MTJ), an extention to Eclipse frameworks, to develop this application.
Installation:
Browse http://weaverspark.com/java/mobile/dictionary/download.php from your mobile. This will start the installation of the application.

Supported Platform:
This application should run on any mobile that supports CLDC 1.1 and MIDP 2.0. This application is tested on Nokia 3110c and Nokia 6300.
Features:

1. This application can be configured to run both online and offline. Default configuration is to access necessary raw data online.

2. GRE Word Filtering can be enabled to view words that appear on Barron’s GRE Word book. This will be helpful to those who are preparing for GRE and want to know the meaning of words that starts with ‘a’, for example.
3.19000+ words

To access the dictionary offline:

Default configuration need internet connection when you want to find meaning for any word. To be able to find meaning when you are offline (not connected to internet) all files or raw data that are used should be downloaded from the URL ‘http://weaverspark.com/downloads/java/mobile/dictionary/BanglaDictionary.zip‘ to the memory card of your mobile. All the directory contents from ‘A’ to ‘Z’ should be downloaded. Let us assume that all the folders are downloaded/copied to the folder ‘dictionary’ of your mobile’s memory card. Now start the application and go to ‘Settings’ window for this application and change the value in ‘Raw Data URL‘ field that locates to the dictionary folder of your memory card. In most cases mobile’s memory card is assigned the drive letter ‘E’. So in this case our final URL should be ‘file///E:/dictionary/‘. Dont forget to Save these settings. Optionally you can change the attribute of the ‘dictionary’ folder to hidden so that other application of your mobile do not find this folder.
Please click here for more help regarding Raw Data URL value.
This application is not signed by any trusted CA. Please let me know if any one can help me in this regard.
I would be thankful to those who give me valuable feedback to improve this application. Thanks in advance to all of you for using my application.

Read more ...