June 19, 2008
I have been working on a dialer button class since yesterday. It makes sense to use the command design pattern here, and I want to separate the commands and the buttons so I can change the functionality of every button at runtime.
So we are talking about something like this:
class DialerButtons:
def […]
Filed under: programming, python |
Comments (0)
June 14, 2008
hey if you have a extremely slow laptop (Pentium III) like me yet you still want to use python-efl on it, here is how.
first, compiling the whole e17 from scratch is not an option. it will take forever. there’s a ubuntu package repository for e17:
$ cat /etc/apt/sources.list.d/e17.list
deb http://e17.dunnewind.net/ubuntu gutsy e17
deb-src http://e17.dunnewind.net/ubuntu gutsy e17
$ […]
Filed under: python |
Comments (3)
June 6, 2008
it’s a really bad combination. not so long ago the driver changed default from XAA to EXA, thus my fonts disappeared. after the last update, now compiz just keeps telling me it cannot load cpp plugin and fails to start.
guess the compiz guys put this chip(8086:2992) in their blacklist for a reason. […]
Filed under: linux hardware |
Comments (0)
June 5, 2008
the whole story is that I started a project locally and I used git as my SCM. now I’m going to put it into a svn repository with full history but I still want to use git.
normally you should make this decision at the beginning. that means you
git-svn clone http://svn.somewhere.com/myproject
first, then you use […]
Filed under: scm |
Comments (1)