by Carlos Ble | Dec 2, 2014 | Agile, aida
In the past edition of Socrates UK, I met Gianfranco Alongi who told us about his team’s experience with Mob Programming. It was the first time I heard about it. As the site says, Mob programming is people working at the same time, in the same space, at the...
by Carlos Ble | Dec 2, 2014 | aida, BDD, Software Development
This is the first of a series of posts on how our team is practicing BDD. These are mostly notes to myself and our team so other readers may not find enough context to understand the points. After a few weeks we have decided...
by Carlos Ble | Nov 30, 2014 | Clean code
The name of a method must have a higher level of abstraction than the body for the method to be worth it. The name should explain what the method does but not how. If the name communicates exactly the same than its code, it could be a sign that the method does not pay...
by Carlos Ble | Nov 17, 2014 | aida, Test Driven Development
Lately I am using fake objects more than the other common kinds of doubles – stubs, spies and mocks. This is quite recent, I used to prefer stubs, spies or mocks. I find that fakes make my tests less fragile in the case of outside-in development when it comes to...
by Carlos Ble | Oct 17, 2014 | JavaScript
Yesterday, Jenny Mulholland (from Softwire) and I & ran our workshop on JavaScript for Testers at the London Tester Gathering Workshops 2014, at Skills Matter. We had a nice group of participants with a wide range of kills and knowledge and we covered (roughly)...
by Carlos Ble | Oct 13, 2014 | JavaScript
There is no magic in programming languages. The fact that they are formal languages makes them deterministic. For every behaviour there is a reason. For every error there is a logical cause. Before googling for an odd error message, try to understand what the...
by Carlos Ble | Oct 9, 2014 | Agile, Software Development
By pairing with a wide variety of other programmers, I’ve noticed that the programmer’s memory has an important impact on the productivity. In order to be agile searching for code blocks within a file, we must remember the structure of the code, be...
by Carlos Ble | Sep 21, 2014 | Clean code
Do you want to know something that works really really well for me? I spend the first 10 to 15 minutes of the day reading the code I (or we) wrote the day before. I always find out something to change. It’s often a rename or a method extraction, something that...
by Carlos Ble | Jun 20, 2014 | Agile, Clean code, Software Development, Test Driven Development
Last week I participated in SocratesUK for the second time. I learned many things, met amazing people and had a lot of fun. I flu from Tenerife to London the day before and met Sebastian Larsson in the pub where we had a nice chat on professional careers, talking...
by Carlos Ble | Jun 19, 2014 | JavaScript, Software Development, Testing
I am starting to work on a new project for a new customer, I’ll join the team for a couple of days or perhaps weeks. They have been spiking and eventually have decided they want to develop the front-end using Marionette.js a library on top of Backbone.js...