by Carlos Ble | May 9, 2009 | Software Development
He tenido la suerte de entrar en el equipo de desarrollo de Novasoft Canarias en el proyecto de software que usa el Servicio Canario de Empleo. Muy buenas condiciones laborales y muy buen ambiente. La verdad que es una oportunidad estupenda. Esta vez estoy con Java....
by Carlos Ble | Apr 3, 2009 | Uncategorized
Se acaba un buen año de trabajo en la Oficina de Software Libre de la ULL. Ha sido un año donde he aprendido muchísimo y disfrutado de muchos buenos momentos. Un jefe excelente, y en general, grandes compañeros. Sin duda ha sido una experiencia profesional y personal...
by Carlos Ble | Mar 29, 2009 | Software Development
I am glad to blog about Pinsor 0.6 release. Pinsor is an Inversion of Control container for Python created by Ryan Svihla. I’ve started collaborating with Ryan on this release and committed a few changes (not much). It’s been nice to talk about design...
by Carlos Ble | Mar 20, 2009 | Software Development
We’ve developed a decorator intended to be placed on top of the “soapmethod” decorator that allows you to catch any exception raised by the web method. Usage: @catchWsExceptions @soapmethod(String, _returns=Array(String)) def srv_whatever(self,...
by Carlos Ble | Mar 19, 2009 | Agile
Ayer, 18 de Marzo de 2009, nos reunimos en el bulevar para tener la primera reunión de Agile Canarias. Estuvimos un total de 7 personas y pudimos ser más porque hubo gente que llegó tarde y no nos encontró. Como Taco resultó estar cerrado nos rodamos al bar que había...
by Carlos Ble | Mar 18, 2009 | Software Development
We’ve developed this to be able to run trusted methods as batch operations that were saved into database to be performed later on. The code is easy to understand reading its tests: Tests: Check out this file Code: import os import inspect import inspect class...
by Carlos Ble | Mar 17, 2009 | Test Driven Development
This is about Python Mocker features. In order to pass in a mock as a parameter to the SUT (subject under test) you might think of creating the mock using either, “mock()” method or “proxy(SomeClass)” method. They both yield mocks but they work...
by Carlos Ble | Mar 17, 2009 | Test Driven Development
Se acaba de crear una nueva lista sobre Test Driven Development en castellano: http://groups.google.com/group/tddev-sp Muchas gracias a Jose Ramón Diaz por la iniciativa. Esperemos que los recursos en castellano sigan aumentando.
by Carlos Ble | Mar 16, 2009 | Free/Libre Software
Leyendo la lista de ALT.Net hoy me he llevado una grata sorpresa. Hay una empresa de Madrid que ha liberado un framework open source para .Net. Se llama Signum Framework. La verdad que no lo he podido mirar pero la web está chula. Independientemente de que sea malo o...
by Carlos Ble | Mar 13, 2009 | Test Driven Development
Sometimes we (my team in our current project) have a single TestCase (class) holding tests for several SUTs (classes). That is not right as every class should have its own TestCase (It has to do with the fact that instantiating the tests to run them is a pain with...