A Simple PHP Class to Create RSS Feed
RSS (Really Simple Syndication) is the use of an XML document in order to share content across the Internet. An RSS document, aka "feed" includes full or summarized text, plus…
RSS (Really Simple Syndication) is the use of an XML document in order to share content across the Internet. An RSS document, aka "feed" includes full or summarized text, plus…
To find out system CPU is 64-bit capable or not, use /proc/cpuinfo. cat /proc/cpuinfo | grep flags If result contains "lm" (Long Mode), system CPU is 64-bit capable. As an…
To find out if you are running a 64-bit or 32-bit kernel, uname command is enough: uname -m If the result is "x86_64", you are running an 64-bit kernel"i686" means…
Autocomplete is one of the most important parts of modern rich web interface. Actually, you can create an autocomplete, using an AJAX call to build a list (server side) and…
One of the advantages of Debian operating system is the ability to live update a production server from current to next release. Under normal circumstances you do not have to…