Sunday, December 26, 2010

Micro Controller Programming in Sinhala

http://kz-picsinhalese.blogspot.com/2009/04/vidusara-articles-of-pic-programming.html

refresing page without reload using ajax and php

http://www.codingforums.com/archive/index.php/t-108877.html

Saturday, October 2, 2010

Best Sites For Software QA...

***** http://sqa.fyicenter.com/FAQ/Software-QA-Testing/What_is_Cyclomatic_Complexity_.html

*** http://www.buzzle.com/articles/software-testing-tutorial.html

*** http://swenassignment.blogspot.com

*** http://softwaretestingandqa.blogspot.com/2007/12/cyclomatic-complexity.html

* http://www.aptest.com/glossary.html#statictesting
* http://www.sqatester.com/bugsfixes/whatistesting.htm
* http://www.hyderabadnews.net/what-is-static-testing-of-software/
* http://en.wikipedia.org/wiki/Software_testing

Monday, July 5, 2010

How to Remove Windows Genuine Popup?


Following three simple steps now you can get rid of the pesky and sometimes buggy Windows Genuine Advantage (WGA) notifications:

1. Reboot Windows in safe mode (hold the f8 key while booting and you will get the option to boot in safe mode) and then:
2. Open Registry Editor (regedit.exe) and search for wgalogon folder and delete it. You should backup up the registry beforehand, in case somethiong goes wrong.
3. In your windows directory search for files wga* and delete them.


You are done!

Now reboot back normally and continue your work. Windows Genuine Advantage will not bother you anymore.

Note: I had previously posted a tip which requires a third-party executable. Now it is not required anymore. You can do it yourself by carefully following the guide above.

Warning: Use at your own risk. Backup everything before you do.

Thursday, June 17, 2010

Sunday, June 6, 2010

Joomla 1.5 How add free Photo gallery (Phoca Gallary)


1. Download free Phoca Gallery Extension. download click here.
2. Go to Control Panel in Joomla menu > install.
3. If the installation is complete Phoca Panel will display.

Send SMS with PhP

You can learn and free download SMS Gateway from this link: http://www.ozekisms.com/index.php?owpn=327

Saturday, June 5, 2010

PHP How to Display Form Data in the same page

Use following code snippet Form action= $_SERVER['PHP_SELF']

Ex: <Form action=$_SERVER['PHP_SELF'] method="post">

How to disable the Enter key on HTML form

Add following java script code inside the <HEAD> Tag.

<script type="text/javascript">

function stopRKey(evt) {
var evt = (evt) ? evt : ((event) ? event : null);
var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
if ((evt.keyCode == 13) && (node.type=="text")) {return false;}
}

document.onkeypress = stopRKey;

<script>

How do you configure WAMP to allow remote access to the phpmyadmin alias?




AllowOveride all
Order Allow, Deny
Allow from all


Access is still forbidden unless I hit http://localhost/phpmyadmin while logged into the server.

Wednesday, June 2, 2010

How to Refresh your webpage Automatically

To make the page reload or refresh itself, we have to use the following code inside the head tag

<meta http-equiv="refresh" content="5" >

The attribute http-equiv="refresh" calls for refresh of the page.

The attribute content="5" sets the time for refresh.

The time after which the page has to reload is set using the content attribute.
Say if you want the page to refresh after 10 seconds interval, set content value to 10.

We would recommend the time of refresh [reloading interval] be above 5 seconds. This is because you have to consider the page loading time.

How to Add Peel Page to your Website



My opinion about this script

From my point of view, this script makes it all worth it - I haven’t given it a try yet because I’m still waiting for my banners to be created by Banners Mall.
It gives a new perspective to the whole advertising business, and being a new thing in the industry, the CTR ( Click Through Rate ) is quite high because people are curios to see what hides underneath it.

You can download the script from here :Download Page Peel Banner Ad.

Saturday, May 22, 2010

Learn Joomla 1.5

What is Joomla!?

Joomla! is software that lets you make and update web pages easily.
You can think of a Joomla! website as bringing together three elements.
Your content, which is mainly stored in a database.
Your template, which controls the design and presentation of your content (such as fonts, colors and layout).
Joomla! which is the software that bring the content and the template together to produce webpages.
Installing Joomla!

There are several ways to install Joomla!.
First, make sure that you have an account on a web server. For most people this means signing up with a hosting company and purchasing a domain that will serve as your site's main address.
Option One: One Click Installs. Many hosting companies offer "instant" installation of Joomla!. Follow the instructions your host provides for a one click install.
Option Two: Conventional Installs. This method requires that you copy the Joomla! zip file to your hosting account, unzip, create a database, and then run the installation. Complete instructions can be found in the Joomla! Installation Manual. This video takes you through the steps
Option three: Demo Site. You can create a working website at demo.joomla.org and then either follow the instructions provided to back up and move the site to your existing host or establish a hosting account at the end of the free 30 day trial. (Note that the Joomla! Project receives a royalty if you choose paid hosting from that site.)
For support with installation, you can ask questions in the installation forum.
Learn to Use Joomla!

Now that you have a working Joomla! site, you will want to start filling it with your own content and making it look just the way you want. Before doing that, it is a good idea to learn more about how Joomla! works. There are a number of very useful resources to help you with this.
This article shows you how to create an article from the front end.

Friday, May 14, 2010