I heard that some people want to use git as their preferred VCS for SoC. The problem is that their mentoring organization use a global Subversion repository hosted on Google Code. The solution : git-svn. So I wrote this little how-to set git-svn up with Mono SoC SVN (just change mono-soc-2008 with your organization repository) [...]
I stumbled this morning on this little gem called tekuti. Basically it’s a blog system but with two special twists : it’s written in Scheme and use Git as article backend.
Like the feature page report, theses two particularities provide very interesting improvements over traditional PHP+Mysql blog engine. Definitely something to hack on. Maybe it will [...]
My application for Google Summer of Code 2008 has been accepted ! I will thus work for Mono on an implementation of the Parallel FX and PLinq during this summer (see precedent post for the detailed submission).
I don’t have much more to say apart that I’m very excited to work with wonderful people and on [...]
(define qs
(lambda (t)
(if (null? t)
t
(let ((head (car t))
(tail (cdr t)))
[...]
(define tri-bulle (lambda (t) (tb ‘() t #f)))
(define tb
(lambda (left right perm)
(if (null? (cdr right))
(if perm
(tb ‘() (append left right) #f)
(append left right))
(let ((first (car right))
(second (cadr right))
(tail (cddr right)))
[...]
The trend nowadays is to propose all kind of traditional computer software in online equivalents. Gmail, Google Docs, Google Reader (to name a few) are now part of my everyday browsing life. The only thing which was missing to me until now was an IRC client on the same model (previously I had to ssh [...]