Posts

Showing posts from April, 2011

Epoch Converter - Unix Timestamp Converter

Epoch Converter - Unix Timestamp Converter : "- Sent using Google Toolbar"

Python Excel

Python Excel : "- Sent using Google Toolbar"
import json class Subscriber ( object ): firstname = None lastname = None class Post ( object ): author = None title = None def decode_from_dict ( cls , vals ): obj = cls () for key , val in vals . items (): setattr ( obj , key , val ) return obj SERIALIZABLE_CLASSES = { 'Subscriber' : Subscriber , 'Post' : Post } def decode_object ( d ): for field in d : if field in SERIALIZABLE_CLASSES : cls = SERIALIZABLE_CLASSES [ field ] return decode_from_dict ( cls , d [ field ]) return d results = '''[{"Subscriber": {"firstname": "Neal", "lastname": "Walters"}}, {"Post": {"author": {"Subscriber": {"firstname": "Neal", "lastname": "Walters"}}},

HOW TO: Configuring authentication against Windows Domain - Ubuntu Forums

HOW TO: Configuring authentication against Windows Domain - Ubuntu Forums : "- Sent using Google Toolbar"
ActiveDirectoryWinbindHowto https://help.ubuntu.com/community/ActiveDirectoryWinbindHowto