Blocking Obscene/Unwanted Ads in Google Adsense
Since few days we were noticing some really obscene ads of a Gaming website on our blog. After quick search we found that these Ads were from a website called evony.com. We received lot...
Since few days we were noticing some really obscene ads of a Gaming website on our blog. After quick search we found that these Ads were from a website called evony.com. We received lot...
Although I work mainly in Java/J2EE, recently I had a requirement in Oracle to take temporary backup of a table and compare the data of original table with this backup table. So I had...
You will find those Social Media buttons on most of the blogs and websites you visit these days. Even we have one such button panel at the end of each post which lets user...
Twitter, The popular micro blogging and real time update site has changed the way we interact in internet world. Not only it has became a source of latest updates/news going in world, but also...
Lot of webdesigners uses rounded corner tables and divs to display information on the webpage. Not only it looks sleek but also eye appealing. The problem with coding such DIVs is that there is...
RANDOM is a peculiar shell variable, but useful nonetheless. Peculiar because its value changes each time it is referenced (yes, this is by design). As you may have already guessed, RANDOM is a random...
Thought of sharing following code with you all. It is a small code snippet that uses SMTP in Java to login into GMail and send email using ones GMail account. String host = “smtp.gmail.com”;...
Huge amount of data is getting posted on Internet everyday. Most of the data has no expiry date, that means once you post information on Internet, it resides there almost forever (until service gets...
If you are writing Java classes and distributing them over the Internet, you should know that people can reverse-engineer, disassemble, or decompile your classes into Java source code. One of such decompiler is JAD....
Here is a small code snippet to sum the values of all textboxes in a form in JavaScript using jQuery. I wrote it for some functionality and thought to share it with you all....