A little update for 0.3 fixing some reported issues and adding new features.
What’s new :
New improved Parser, support complex D-Bus type expression
Search function modified to behave more naturally
Synced icons with MD
Various cosmetic & bugs fixes (including the two issues reported by Anders Rune Jensen )
Download :
Source
Debian package
En direct du oueb :
CM11 – ADMIS (E )
LO10 – ADMIS (A )
MG00 – ADMIS (E )
MT11 – ADMIS (B )
PM11 – ADMIS (C )
PS12 – ADMIS (A )
Quelques impressions :
J’ai apparement majoré en LO10 (final expédié en 1h, c’est bien le seul d’ailleurs ) et en PS12 (!). Maintenant je peux [...]
Juste un petit script Python à mettre en anacron :
[code lang="python"]#!/usr/bin/python
from urllib import *
from os import *
from os.path import *
import filecmp
import dbus, gobject, dbus.glib
url = "http://services.utbm.fr/ACTU/resuv/index.php"
name = "nom"
ine = "numéro d'ine"
save_directory = "/tmp/"
save_name = "exam.html"
save = join(save_directory, save_name)
posts = { "nom" : name, "motdepasse" : ine }
post_request = urlencode(posts)
f = urlretrieve(url, data=post_request)
if not exists(save):
rename (f[0], [...]
Strasbourg : after a little momentum during when I thought that, in the end, C# was not admissible in the exams, I received today a mail telling that I had been selected for the semi-finals of Prologin in February. Yay !
Brussels : if everything go smoothly I should be able to attend this year FOSDEM [...]
1:=> (define old-age 18)
old-age
1:=> (define current-age (+ 1 old-age))
current-age
1:=> (print current-age)
19
Why Scheme ? Because parentheses are funny and because I hope this year to be as funny as the precedent.
(BTW: It also marks the first birthday of this blog )
Trying hard to write good and functional Scheme, while you come from a totally imperative world, is like recursively shooting yourself in the foot.
First of all, happy new year everyone.
ParserNg is the name of the new parser that I committed today in git. It’s a somehow more flexible redesign of the precedent parser which allow to parse D-Bus type expressions to other things than just string and will, thus, facilitate the coding of, both, the code autogenerator and [...]