#!/usr/bin/python
  
  def about():
    """docstring for about"""
    things = [
        'Blog',
        'Linkedin', # or leaked in ?
        'Viadeo', 
        'Git', # Github
    ]
  
  def contact():
    """docstring for contact"""
    infos = [
        'Twitter', # @steevebarbeau
        'IRC', # Freenode
        'PGP',
        'Email', # use your Google skills for that !
    ]
        
  
  if __name__ == '__main__':
    about()
    contact()