Archive for avril 2008

26
avr

Mini-howto : git(-svn) with Google Code svn repositories

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) [...]


free blog themes
24
avr

Scheme in real life

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 [...]


free blog themes
22
avr

Let's start the summer fun \o/

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 [...]


free blog themes
14
avr

While we are at it

(define qs
(lambda (t)
(if (null? t)
t
(let ((head (car t))
(tail (cdr t)))
[...]


free blog themes
13
avr

Just some parentheses madness

(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)))
[...]


free blog themes
12
avr

IRC via WebBrowser

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 [...]


free blog themes