13.9.11

The switch to PyPy

After many frustrating nights with python i have decided to make the jump to PyPy, any new project that i start will most likely run on PyPy. As you may know PyPy is compatible entirely with python.

28.6.10

link grammar python interface

I now have separated the link grammar module from my NLP project so that is available for others to use, see here

To use:
git clone git://github.com/bluemoon/linkgrammar_module.git
cd linkgrammar_module
python setup.py build
sudo python setup.py install

27.6.10

Python design pattern series: recursive data structures

I introduce a recursive structure in which you can create and object, and add to it at will.

  1. class ObjectProxy(object):  
  2.     def __init__(self, dictionary=None):  
  3.         if dictionary:  
  4.             for a, b in dictionary.items():  
  5.                 if isinstance(b, (list, tuple)):  
  6.                     setattr(self, a, [ObjectProxy(x)\  
  7.                     if isinstance(x, dict) else x for x in b])  
  8.                 else:  
  9.                     setattr(self, a, ObjectProxy(b)\  
  10.                     if isinstance(b, dict) else b)  
  11.   
  12.     def __repr__(self):  
  13.         return '<objectproxy [%s]="">' % ', '.join(self.__dict__.keys())  
  14.       
  15.     def __getattr__(self, attr):  
  16.         try:  
  17.             return dict.__getattr__(self, attr)  
  18.         except:  
  19.             if not self.__dict__.has_key(attr):  
  20.                 self.__dict__[attr] = ObjectProxy()  
  21.             return self.__dict__[attr]  
  22.           
  23.     def __setattr__(self, attr, value):  
  24.         if self.__dict__.has_key(attr) or '__' in attr:  
  25.             dict.__setattr__(self, attr, value)  
  26.         else:  
  27.             self.__dict__[attr] =  value  
  28.   
  29. a = ObjectProxy()  
  30. a.b.c.d = 3  
  31. a.m.d_ = 2  
  32.   
  33.   
  34. </objectproxy>  

16.6.10

A simplified deferred method

This is much like the twisted deferred, but is simplified down for use without twisted.
  1. class Deferred(object):  
  2.     def __init__(self):  
  3.         self._callbacks = []  
  4.   
  5.     def add_callback(self, callback):  
  6.         if hasattr(self'result'):  
  7.             callback(self.result)  
  8.         else:  
  9.             self._callbacks.append(callback)  
  10.   
  11.     def callback(self, result):  
  12.         assert not hasattr(self'result')  
  13.         for cb in self._callbacks:  
  14.             cb(result)  
  15.         self.result = result  
  16.   
  17.   
  18. def defer(result):  
  19.     d = Deferred()  
  20.     d.result = result  
  21.     return d  

My dot-emacs

see here! you will need, yasnippet, rope, pymacs, ido(i think its included now), smex, cython-mode

# git clone git://github.com/bluemoon/all_configs.git
# cd all_configs
# ./install.sh

emacs!

My emacs setup, i will post this later on to a git repository.

15.6.10

hestia


The basic core of hestia is done! The status icon is currently working and as soon as i figure out how i want to plan the rest out i will start on that bit. See the check mark icon, in the status icon tray in this screenshot.

Currently the project runs a set of commands that you have chosen, and gets the return status and sets the icon accordingly. If the build fails it sets and X and if not you get a pretty green check mark. Also if it fails, you get a notification from notify or notify-osd