CSS3, how to create html div elements with rounded corners

This is a CSS3 feature that enables you to display almost any html (box elements) element that has a border property to be displayed with a rounded corner. If you are familiar CSS3, then most probably you are familiar with this, if not then head straight to www.w3schools.com so that you DON’T HAVE TO COME BACK HERE AGAIN! Before you proceed, beware that Continue reading

HOW TO USE SUDO ON DEBIAN

If you are moving from Ubuntu to debian for reasons best known to you, then you are most likely to run into a little trouble working with sudo: the command that allows the normal users on the system to temporarily perform root functions. If it is installed after your OS is installed, then most probably it is not yet configured to run or allow users on the system to run with root privileges even if they have the password. This of course is a security feature for your system.
Luckily enough, this can be easily configured as I learned the other day. Continue reading

Ubuntu linux: How to create .zip and .tar.gz files

If you are on a windows machine, you probably are wondering why someone would go googling “how to create zip files”. I have done that myself severally and that is why today am writing this tip on how to create not just a zip file but also a .tar.gz file for both windows and linux idiots alike. Continue reading

JQuery: How to hide default text field content on focus and unhide on focusout

This quick tip will show you how to use this cool feature on your selected form input fields such that when you click or create focus on an input field, the default value disappears or auto-hides. We will also learn to reverse this such that when the focus moves out or you click outside the input field, the original default text reappears. We are going to do this using JQuery.
If you do not have JQuery yet, just download it from here. Continue reading