Wednesday, March 9, 2011

Soft skills to move ahead


Again I am copying the content from some other source, definitely will come up with my own content soon.

Tuesday, March 8, 2011

brief overview about PHPUnit (for starters)

I got these slides from Mike Lovely (mjlivelyjr - slideshare account name)

Tuesday, January 18, 2011

SVN obstructed key word meaning

if you find obstructed keyword against any directory when you check for modifications of your current working directory.
Follow the following steps to resolve this issue.
(let's assume the directory name is codeRepo)
1) Rename the directory (codeRepo to codeRepo_bkup)
2) Cleanup the entire svn folder.
3) Now do the svn update, the folder get added to your code (means codeRepo folder is added again)
4) Now copy all the files from backup directory (codeRepo_bkup) and paste them in current svn directory (codeRepo), so that you will not miss any changes that you made.
5) And now you can delete the backup file (remove codeRepo_bkup)

The root cause of this is adding or removing a current svn directory from any other sources(like eclipse etc) other than from folder.

Thursday, October 28, 2010

1030 - Got error 28 from storage engine - MySQL error

Hi back after long time. Want to keep in touch regularly from today onwards.

Today I got this error when i imported a new code into my M/C.
after importing the code i am unable to do any operations. For every operation on mysql it is throwing this error.
So i am unable to access my local sites too as the mysql is not working.

The cause for this error is the disk space. I had deleted the newly imported code from the system, then this issue got resolved. Means we need to delete unwanted files or we need to add extra space.

Wednesday, August 4, 2010

Friday, June 25, 2010

Image hivering with slider effects

<div class='images' id='image1'>
<div class='layer'></div>
<img src='baby.jpg' />
</div>
 
<div class='images' id='image2'>
<div class='layer'></div>
<img src='baby.jpg' />
</div> 
 
<div class='images' id='image3'>
<div class='layer'></div>
<img src='baby.jpg' />
</div> 
 
<div class='images' id='image4'>
<div class='layer'></div>
<img src='baby.jpg' />
</div>


The Css code is here

.images{ 
 float:left;
 margin-left:-20px;
 margin-right:-20px;
 margin-top:10px;
 -webkit-transform:scale(0.6);/*Initial size of image when page loads*/
 -webkit-transition-duration: 0.5s;/*Time taken for image to animate from smaller size to bigger size*/
}
.images:hover{
 -webkit-transform:scale(0.8);/*When hover on images image size will increased*/
 -webkit-box-shadow:0px 0px 40px #ccc;
}  
.images .layer{
 width: 100%;
 height: 100%;
 background-color:#000;
 position: absolute;  
 opacity:0.5;
 -webkit-transition-duration: 0.8s;
}
#image1:hover .layer{
 width:0%; 
}
#image2:hover .layer{
        height:0%;
}
#image3:hover .layer {
 height:0%; 
 margin-top:150px;
}
#image4:hover .layer{
 margin-left:150px;
 margin-top:150px;
 height:0%;
 width:0%;
}

The code is copied from the following location http://webdesignersdesk.com/2010/06/fancy-image-hover-using-css3/

Tuesday, June 22, 2010