Apr/09140
ISTQB Question Dump

ISTQB Sample Question Paper Dump 1
ISTQB Sample Question Paper Dump 2
ISTQB Sample Question Paper Dump 3
ISTQB Sample Question Paper Dump 4
ISTQB Sample Question Paper Dump 5
ISTQB Sample Question Paper Dump 6
ISTQB Sample Question Paper Dump 7
ISTQB Sample Question Paper Dump 8
ISTQB Sample Question Paper Dump 9
ISTQB Sample Question Paper Dump 10
ISTQB Sample Question Paper Dump 11
ISTQB Sample Question Paper Dump 12
Apr/090
Javascript Image reflection
Download reflection.js and place it in ur web site folder so that u can include this file to your site,

Way to include reflection.js to ur site
<script language=”javascript” src=”reflection.js” type=”text/javascript”>
</script>
You need to put class=”reflect” in your image tag.
Code
<img src=”http://9th-direction.com/ohm.jpg” class=”reflect” />
Apr/091
How to remove blogger navbar
How to remove blogger navbar
Login to your blogger controlpanel go to Layout.
In the layout window select Edit HTML link and add the below style.

Remove blogger navbar
All you have to do is add the following piece of code to your template page in between the <head></head> tags
[sourcecode language='css']
[/sourcecode]
Remove Blogger navbar from blogger beta
[sourcecode language='css']
[/sourcecode]
Apr/090
.htaccess password
To protect the folder with the Authentication with the help of .htaccess

follow the below steps:
create .htaccess file with below content
AuthUserFile “/home/domain/.htpasswds/passwd”
AuthType Basic
AuthName “ohm”
require valid-user
Go to root folder and open .htpasswds folder
then create a passwd file
in the below format
ohm:ogD4d24a6lf4o
encrypt your password with md5




