Have you ever heard about access keys? Well, I did. And I loved them. Your productivity can be so improved when surfing a web page by avoiding to use the mouse and by using shortcuts, instead. The bad thing about access keys is that they’re often hidden, by default, in the web pages. This doesn’t … Continue reading
Imagine that you’re using Emacs and you have a list of items that you would like to convert into a numbered list. We’re going from: first second third To: 1. first 2. second 3. third Obviously, there are many ways to achieve this, but one is to use the Emacs Keyboard Macro Counter. Put the … Continue reading
Never had a friend or someone continuously inviting you to parties and all that kind of events having place in the opposite part of the world and in which you’re not interested at all? Did you kindly ask to these guys and to their friends not to invite you anymore and they didn’t listen to … Continue reading
Here’s explained how to download, install and configure the latest version of my Joomla! Flickr component.
A couple of weeks ago, I decided to use Gmail as SMTP server to send emails from my Joomla website. HereĀ is explained what I did to make everything working. First of all, I edited my configuration.php file to contain the following settings: var $mailer = ‘SMTP Server’; var $mailfrom = ‘MY_GMAIL_ADDRESS’; var $smtpauth = ’1′; … Continue reading
A really simple, still useful tip for php developers. It is possible to execute a php command directly from the command line by doing the following: php -r ‘COMMAND’ For example: php -r ‘echo substr(“hello world”, 6);’ Enjoy!