Installing WordPress on ByetHost

The following blog post tip is from MaxBlogTips We all know that ByetHost is mainly a free Hosting platform provides high performance free Hosing services.You can use ByetHost to install a WordPress Blog.Just some days ago I published an article contain Features of ByetHost. ByetHost claims that they are the fastest among all the FreeContinue reading “Installing WordPress on ByetHost”

How to replace tooltips using jQuery

I was looking for quick solution to replace the title attribute tooltips generated by the browser, specifically ones generated by an image map. One quick solution is to use qTip which is atooltip plugin for the jQuery framework. It’s cross-browser, customizable and packed full of features I was able to do this in one line:Continue reading “How to replace tooltips using jQuery”

HashSet and HashCode reminder

When working on recent project, here is a common mistake I encountered with an equivalent code snitbit If HashSet does not allow duplicates, why do the following two objets (w1 and w2 return true)? Issue According to the Java specification, whenever you override equals() you need to override hashCode() too. HashSet uses both hashCode() first toContinue reading “HashSet and HashCode reminder”