28/11/2009
One Message Websites
28 nov 2009 - 11:18
A certain species of website exist for a while, now. In my opinion, it deserved a better treatment understanding and knowledge. Or better: a catalog. These websites are often funny, sometimes useful or enlightening. They usually show a great creativity and cleverness.
These websites are usually the anwser to a deep question. And hopefully, they do answer the crucial questions with a single word, like: "Yes". Or "No".
I've nicknamed these websites "monomessages", and I used to collect them in a "bookmarks.txt" file that I'm keeping in my Dropbox and I'm updating when I'm stumbling upon one of these gems of shortness and intelligence.
I've had this idea for a while, and now I'm diving into it: I've opened a blog talking about these "One Message Websites". The very first website is about to be published on december, 1st 2009, and I intend to keep on regulary blog about them.
I've got some interesting material, and thus a few weeks (months?) of all-prepared websites to show to the public. But the Internet is wide and I may have missed some of them. You may help contribute by sending an email (in English or French) to:
missing _hat_ onemessagewebsites *doth* org
You may want to follow the "One Message Websites" twitter account, too.
22/10/2009
Rainbow
22 oct 2009 - 21:47
Rainbow over Wolverhampton, this afternoon.
Picture published under a Creative Commons license: BY-SA)
21/10/2009
What is this fruit?
21 oct 2009 - 12:32
Fruit found in Bayonne (south-western France)
What is is? Is it edible?
09/05/2009
How could Wolverhampton be like in automn
09 mai 2009 - 23:15
The breaking news of the week-end popped in on every screen : the next Lugradio Live will happen on the 24th of october, in Wolverhampton, more precisely at the Newhampton Arts Centre. Two things I've noticed:
- I don't know the venue it will be the first time the LRL will occur in this "Art Centre".
- the LRL will only be one-day long (that would let me plenty of time to visit the highlights of Wolverhampton... erm, maybe not)
I can say I was a bit afraid that the announcement would be a bit too late (getting a cheap ticket can be challenging), and I feared that, because the podcast was stopped, and with all the things that can happen in life, they would give up with this event organisation.
If you are interested in this event like-no-other, you can follow its twitter account or on identica.
As far as I can tell, I'll do anything to be there. Now I'm afraid I'll really have to work on "something" to perform at this Live event.
24/03/2009
Raphaëlle, born on march, 22nd
24 mar 2009 - 23:38
Raphaëlle Maylis Odile Marie Bord was born on march, 22nd 2009 at 17h25, in Bayonne.
Comments are closed on this post. Those who want to drop a few words know how to.
05/03/2009
PyRoom 0.4, soon
05 mar 2009 - 22:40
PyRoom 0.4 is approaching, bringing a lot of new features, making it a first-class release. One of the key point is that the textbox has been revamped, not anymore depending on gtksourceview, which will help us a lot being cross-platform.
The efforts of the Dev Team show much progress on the Windows port. It would be very nice if someone using Mac OSX could test the latest trunk checkout and help us know if it's usable on their OS. It would be so nice to have kilt-wearing maniacs (just kidding) using PyRoom instead of Writeroom.
It may be interesting to note that translatable strings are available, and anyone wanting to help translating PyRoom in any language is welcome. The good thing is, with Rosetta, you just need a web browser to play.
Quick reminder: any bug report will be on Launchpad, thanks.
Oh ! speaking about Launchpad, I've been very suprised to see a text I've sent some time ago to Matthew Revell land on Launchpad blog. He justed asked me why I choosed Launchpad to host PyRoom. I didn't think it would make an article...
Last, but not least, if you search in the latest FOSDEM video archive, you may find a video with a beardy french geek, speaking english with an outrageous british accent trying to explain how PyRoom is an interesting tool, despite its being featureless.
The sound is terrible. I'm sorry, t'is not my fault.
11/02/2009
Pyroom talk slides available
11 fév 2009 - 23:44
Although I was a bit disappointed by the general schedule of FOSDEM 2009 - but that is just my own opinion - regarding the topics I'm interested in vs. the given talks... every bit of the talk I gave about PyRoom is now available via the dedicated page.
The usual Lugradio Live crowd may be confused: it's a serious talk about a serious topic, since it's the very first time I'm giving this kind of talk in english.
Now we'll have to wait for the videos, soon-to-be-released.
10/01/2009
FOSDEM talk scheduled
10 jan 2009 - 21:42
Well... I think everything goes well, now. Since my talk about PyRoom at FOSDEM proposal has been accepted, and now scheduled.
Thus, my timeslot has been set to Sunday, the 8th of February, at 15:00. And even if my talk is about 80% ready, I still already feel nervous... Meet me there!
Too bad tiax can't make it to FOSDEM, I think PyRoom wouldn't be at this point without him. We'll drink a few beers thinking about you, mate.
23/11/2008
An autotester
23 nov 2008 - 22:48
It's a project that's no much worth, but might be a bit handy. In fact, I haven't even been clever enough to have the idea myself: it was Jeff Winkler who gave it a kick at the first place.
The issue
When you are using TDD methodology, here is how a coding session works. You add a test case to your tests, you launch them, they fail - or not, but usually, they must fail - and you start coding, you look for a solution, and then you run your tests until the test pass. Rince, repeat, until it's ok.
The boring bit is sometimes the manual switch from your editor to a system shell to run your tests, and watch the result, and back on your editor again, and again, yadayada...
Start of a solution
The nosy.py script by Jeff Winkler is quite a start. It's a program that builds a list of files within a project (a directory), and as soon as one of them is modified, it runs "nosetests"
. You have to know that nosetests is a python tool that runs every test it finds in a Python project. Very very very handy...
The glitch
Someone (like me) who uses Django has to run a different program. Because running nosetests may not work properly. In Django, you run:
$ python manage.py test
My solution
Then I tried to build a more flexible nosy.py
and allow more than one test program, as the user wants it.
So, this "test daemon" code bit is available via github. Once git is installed, you may grab it like:
$ git clone git@github.com:brunobord/tdaemon.git
The important file is tdaemon.py
. You may want to make it executable and accessible from your path and run it that way (for example):
$ python /path/o/tdaemon.py /path/to/project/
By default, tdaemon uses nosetests, but you can use py.test
or the django test tool. I didn't try it, but I'm almost sure you can use any other test tool, once it would be implemented in the script.
Of course, I'm keeping an open eye on any kind of improvement you may want to bring in it, or report any bug, etc. This is just a bit of code, far from being perfect, but it works (for me, at least).
(as we are talking about that, I'm trying to use git
a bit more often and I hope this project may help me in mastering this DCVS - and github services, too. My brain is more easy with the bazaar
logic, and I can't quite get my head around git
at the moment)
Enjoy!
01/10/2008
Introducing Chaos Driven Development
01 oct 2008 - 21:09
[via NiKo]
I should pattent the CDD methodology: Chaos Driven Development
A quick search doesn't show anything valuable...
Hereby I'd propose these guidelines for anyone who wants to dive into CDD method:
- Specifications should be written by throwing small rubber balls on a keyboard linked to a text editor. You may want to continuously repeat this for a week or so. Then you can give the result to a blind person - I'm pretty sure disabled people can enjoy CDD too.
- These specs may now be cut in small tasks by the "project manager" - or, as we name him in CDD, the "M.O.R.O.N.", i.e. Manager Of Relationships Out of Nowhere)
- Each task may be assigned a priority. This is being randomly chosen by an innocent hand, or more precisely the innocent pad of a Schrödinger cat. If the cas dies, the task priority is low. If he's alive, the task is critical.
- The CDD now enter the scene. They must work as pentanomes (group of 5 people): the first one types on the vowels on the keyboard, the second one hits the consonants, the third one takes care of non-alphabetical characters (spaces, commas, digits, etc), the fourth dictates the code to the others, while the last one is been given the task to jump on the keyboard from time to time to add entropy to the system.
- for each task, you must assign, five pentanomes (yeah, the number 5 is cult in CDD, it's so "dada"). These groups are writing code at the same time, on the same working copy, confusing each other's code.
- No need to say, test-driven methodologies are banned. No-one should never ever test the programs. Especially the developers or the customer.
- The software produced may now be shipped via email, to a randomly-generated-email-address generated by a cosmic-background-powered-generator.
For more efficient results, you can move as close as possible from the LHC.
04/09/2008
Beer Over IP, now django powered
04 sep 2008 - 01:00
After a few evenings of work I finally managed to hack on a minimal code to publish Beer Over IP using a tiny Django application (0.96).
To get the full power of this awesome application (you know you want one in your living-room, right?) just quickly browse the list of available beers. Yes, I know... At the moment, it's a short list... But thanks to the "user-generated-content" principle, you can help providing more items via our Launchpad bug interface. Please send us:
- the name of the beer,
- a picture or a link to the picture, with the absolute requirement: it must be Free (Creative Commons, license, for example),
- appropriate credits,
Yes, it's your turn. With your help, your favorite poison will soon be available to anyone via the Internet Protocol.
The source code powering this website is distributed under a dual license... You may redistribute it using the terms of the WTFPL or the BEERWARE license. The first one allows you to do what the fuck you want with this code
, while the other ones offers you to do what you want with this code, and if we meet in real life, you may buy me a beer
.
(note: for this application, I didn't follow the principles I told about in my previous post. I know. But this is a pet project, don't make me think that this project deserves a multiple team organisation)
02/09/2008
PyRoom 0.3.1, what about translations?
02 sep 2008 - 21:20
As it has been announced on our Launchpad Project page and as Florian "tiax" Heinle sent a reminder to us all, PyRoom 0.3.1 has been released, and is ready to be translated... So far, a few languages have been quickly done via Rosetta, but anyone knowing English and another tongue may proceed and help PyRoom being available in every available language on Earth (and beyond?)
Let me inform you that, after a few geeky-kung-fu actions, you may instal lPyRoom in Ubuntu using our officiel PPA repository.
Typing
sudo apt-get install pyroom
Oh yeah.
01/09/2008
Things I know about Launchpad
01 sep 2008 - 17:19
What is the very first thing that I must do when I've registered a project into Launchpad?
The answer MUST NOT BE "dive into code".
From my experience, you have to create at least 3 to 4 different teams, each one of them having different levels of permissions and aiming at different tasks.
13/08/2008
BeerOverIp is ready
13 aout 2008 - 19:40
Matthew Walster, alias dotwaffle twittered this:
Opsview_IRC++ Big help guys, thanks! Now, there ought to be a site for BeerOverIP - Scred?
Then I jumped on my keyboard and quickly bought-published : Beer Over IP website (very dirty HTML at the moment).
From now, if you want to offer a beer over the web to someone, you can.
TODO:
- give people the choice to offer a different sort of beer (beeroverip.org/stout, beeroverip.org/lager, beeroverip.org/blonde). I don't think I could be able to use free (as in speech) pictures of different brands.
- internationalise it.
08/08/2008
Pyroom 0.3 released
08 aout 2008 - 18:28
All the credits du to Florian Heinle (known as tiax on Launchpad), and the rest of the Pyroom dev team, and it can be announced that the version 0.3 of PyRoom has been released!
You can download the tarball from Launchpad, and wait a bit for the Debian / Ubuntu package to land, but this wouldn't be too long. You may want to browse the brand-new-shiny (and it's all tiax's work, again) PyRoom Website for more information.
For the record, PyRoom is a full-screen monochrome text-editor, which prevents you from being distracted while writing. It's fully written using Python with GTK bindings, and is being Freely distributed under the terms of the GPL v3 License.
Enjoy!