by | Jul 17, 2008 | Free/Libre Software
Al final resultó que hubieron 10 asistentes y con un nivel muy bueno. Todos siguieron el ejemplo y consiguieron ejecutar la aplicación que hicimos con MonoDevelop, un pequeño “encriptador”. Gracias a Berto y Choms que estuvieron de apoyo y al los...
by | Jul 15, 2008 | Free/Libre Software
La Oficina de Software Libre de la ULL tendrá un stand en la TenerifeLanParty de este 2008. Por motivos de trabajo, de miercoles a viernes estaré por allà ayudando con los talleres y el jueves a las 16h me han colocado un taller de Lenguaje C# y Mono que impartiré...
by | Jun 20, 2008 | Software Development
I wanted to log every access to my web services (using soaplib): Get the client IP, what method is it calling, what parameters, and what class. Rather than write the code to log the access in every method I’ve written a decorator (logWebServiceCall) so you only...
by | Jun 18, 2008 | Software Development
Ok, it’s summer right. I am talking about the Spring Framework. I didn’t know there is a Spring for Python! Spring Framework for Java (the original) Spring Framework for .Net (Spring.Net) Spring Framework for...
by Carlos Ble | Jun 11, 2008 | Software Development, Test Driven Development
A common test to check a function that operates on the filesystem is to create dummy files in the filesystem. However that is dirty because you have to make sure you’ve got the permissions in the filesystem and you delete the dummy files after the tests and so....
by | Jun 11, 2008 | Free/Libre Software
The presentation hold at JAOO last year is available now on the web. Nice format, the video on the top and the slides below. Great!. Check it out. There are also other interesting presentations like Martin’s Fowler & Jim’s Webber one.
by Carlos Ble | Jun 10, 2008 | Software Development, Test Driven Development
Pyunit is a unit tests framework for Python. I believe it is the standard one. It works very well, however to run all the tests within a folder might be not trivial. You can do either hardcode the tests names to build the test suite or use this helper. The helper uses...
by Carlos Ble | Jun 5, 2008 | Software Development, Test Driven Development
Update: We have developed pyDoubles, a test doubles framework for Python which supports mock objects among other test doubles. We no longer use mocker (described in this post). The best article I’ve found on Mock Objects is again written by one of my favorite...
by | May 26, 2008 | Plumbing
Esta vez toca escribir en español porque la mayorÃa de entradas que encontré en la red sobre Samba y máquinas Windows estaba en castellano lo cual parece indicar que es una herramienta muy usada en paises latinos. Dentro del poco conocimiento que tengo de Samba y...
by | May 16, 2008 | Software Development
I got surprised when I found that there was no Web Services implementation in the Python standard lib but fortunately there is a nice project called SoapLib that is open source and implements web services. SoapLib generates the WSDL for your web service and it is...