Follow Ohmkumar on Twitter
29
Apr/09
140

ISTQB Question Dump

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

ISTQB Sample Question Paper Dump 13

ISTQB Sample Question Paper Dump 14

15
Apr/09
0

Javascript Image reflection

Download reflection.js and place it in ur web site folder so that u can include this file to your site,
Image reflection
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” />

Demo :  http://www.9th-direction.com/reflection.html

Filed under: Javascript
14
Apr/09
1

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.

Blogger Navbar

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]

4
Apr/09
0

.htaccess password

To protect the folder with the Authentication with the help of .htaccess
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

Filed under: Network