WordPress: Add Facebook Like Button using functions.php

The Facebook Like button lets a user share contents with friends on Facebook. When the user clicks the Facebook Like button, a story appears in the user’s friends’ News Feed, with a link back to the original website.

Facebook Like Button

Continue reading

Posted in WordPress | Tagged , , | Leave a comment

Nokia 5800: How to delete an email account

To delete an email account from Nokia 5800 is easy.

These are the steps:

  1. Go to Menu > Messaging.
  2. Options > Settings > Email > Mailboxes.
  3. Highlight the email account to delete.
  4. Options > Delete > Yes.
Posted in Mobile Phone | Tagged , , | Leave a comment

Windows 7 Computer Management failed to start by right clicking Computer

Windows 7 Computer Management could be started by right clicking Computer, and choose Manage (Figure 1).

Launch Computer Management

Continue reading

Posted in Windows | Tagged , , | Leave a comment

Python: Swapping the keys and values of a dictionary

A function to swap the keys and immutable values of a dictionary.

def swap_dict(a_dict):
    return {val:key for key, val in a_dict.items()}

Example of usage:

>>> print(swap_dict({1: 'a', 2: 'b', 3: 'c'}))
{'a': 1, 'c': 3, 'b': 2}
Posted in Python | Tagged , , | Leave a comment