If you haven’t tried git, you should. Git is a “distributed version control” system, that is, similar to Subversion with the big difference that… you do not need a server. There are only clients, any of them, and you can pull and push changes to and from other repositories from your project colleagues. The git [...]
git
November
29,
2007
How to? · Open Source · Quality
Add Your Comment (6)
Anarquismo y Software Libre
November
28,
2007
Anarquismo Triunfante: Software Libre y la Muerte del Copyright, por Eben Moglen (1999), profesor de ley e historia legal de la Universidad de Columbia, USA:
Oscar Wilde dijo alguna vez que el problema con el socialismo es que ocupa demasiadas noches. Los problemas del anarquismo como un sistema social estan tambien relacionados con los costos de [...]
Act Now · Open Source
Add Your Comment
Black shirts, black water, black sheeps
November
28,
2007
Mussolini had the black shirts, Hitler had the Gestapo, Bush has Blackwater. They have started operating on USA, and have reportedly killed people in New Orleans during “routine” post-Katrina “security controls” (the Blackwater Wikipedia article is particularly hypocrite in the description of the facts).
Please, watch this movie. It’s an interview of Naomi Wolf, about her [...]
Act Now · Human Rights · Opinion
Add Your Comment (1)
sobre el copyright
November
27,
2007
tremendo analisis:
para ilustrar el continuo infringir cotidiano del estadounidense promedio, tomemos por ejemplo el diario trajin de un hipotetico profesor de leyes llamado john. para los propositos de este “gedankenexperiment” (nota: experimento del pensamiento), asumimos el peor escenario, el de una aplicacion completa de los “derechos” de los poseedores de copyright, y el de un [...]
Facebook: une boîte de nuit?
November
24,
2007
(J’ai aussi publié cet article sur Profession Web)
Facebook et son API sont devenus incontournables aujourd’hui, et ce, encore plus depuis l’annonce d’OpenSocial. Et pourtant, en tant que développeur, j’ai de la peine à voir dans ces sites les “plate-formes” dont la blogosphère n’en finit plus de parler. Et je ne suis pas le seul; dans [...]
Opinion · Technology
Add Your Comment
Installing Xubuntu 7.10 on a G3 iBook
November
18,
2007
Just a small post, pointing to the one and only solution to a known bug, that (incredibly) shipped with the public release of the PowerPC version of the latest Ubuntu distribution: 7.10 or “Gutsy Gibbon”. When installing that OS on a PowerPC G3 iBook (like mine), during the boot sequence the computer “freezes” (that is, [...]
How to? · Ubuntu
Add Your Comment (5)
Miro: social puissance vidéo
November
17,
2007
(J’ai publié cet article hier sur Profession-Web)
Pour regarder des screencasts ou écouter des podcasts, on peut s’abonner à un (ou des) flux RSS, être notifié des nouvelles vidéos ou fichiers audio, et ensuite les télécharger manuellement pour les regarder ou écouter. Mais toutes ces opérations sont de trop avec Miro - un outil indispensable dans [...]
Open Source · Opinion
Add Your Comment
Building JUCE on Kubuntu 7.10
November
16,
2007
JUCE is a gorgeous thing:
JUCE (Jules’ Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform applications.
It’s particularly good for creating highly-specialised user interfaces and for handling graphics and sound.
For Mac OS X (with the Developer Tools installed) and Windows (using Visual Studio 6, 2003 or 2005), the library builds out-of the box [...]
Code · How to? · Ubuntu
Add Your Comment
Web Development
November
15,
2007
So true, as always:
Little terminal trick
November
14,
2007
If you have to delete a folder which contains locked files, the Mac OS X Finder won’t let you (because the “locked” flag is used precisely for that!). If you want to remove such folder (typically folders coming from a Subversion checkout have this problem) run these commands:
sudo chflags -R nouchg to_destroy/
sudo rm -r to_destroy/
Where [...]