Conferences Time

Table of Contents

Autumn is usually a busy time full of conferences, and this year is no different. After a few interesting events like Devoxx Poland in Cracow, Codepot and Agile by Example in Warsaw, it’s now time for new experiences.

Agile Tour Vilnius (8/10/2015)

I will be talking about Natural Course of Refactoring. So, if you would like to discuss pragmatic refactoring practices, come to Vilnius on 8th November.

JDD 2015 (12-13/10/2015)

I will be conducting a workshop about difficult conversations based on Nonviolent Communication practices. If you are looking to explore a more empathetic side of your personality, this is the workshop for you.

33rd Degree 4charity (30/11-01/12)

Not official yet, but it is quite likely I will be talking about Technical Leadership and some concepts from my book. If you want to help others and learn something new, don’t hesitate to come to Wrocław at the beginning of December.

(Text translated and moved from original old blog automatically by AI. May contain inaccuracies.)

Related Posts

...and What If You Are Just a Small Planet at the Edge of the Milky Way

I recently had a conversation with my colleague about the importance of having a domain expert available in a project to clarify domain-specific questions.

Read More

What Name for This Method?

What Name for This Method?

public class OptionsAwareObject {  
    private Options options;  
      
    public void updateOptions(String fontName, int fontSize) {  
       options.setFontName(fontName);  
       options.setFontSize(fontSize);  
    }  
}  
   
class Options {  
    private int foregroundColor;  
    private int backgroundColor;  
    private String fontName;  
    private int fontSize;  
    // ...
}

Is updateOptions a good name for this method? Of course not! updateOptions is a general name that suggests a comprehensive update of options. Meanwhile, we are only updating font-related information. The responsibility of the method is thus the change of font-related options. A better name would be:

Read More

The Property of Complex Systems

The Property of Complex Systems

This morning, while driving to work, I encountered a much longer traffic jam than usual. “Well, with such cold weather, everyone is probably driving more cautiously,” I thought, as I slowly crawled along the Łazienkowska Route. After several minutes, I noticed from a distance that there was an accident on the opposite lane, with police and paramedics doing their work. On my side, nothing particular was happening. But still… Drivers were simply slowing down to see what was happening on the other side. No one was stopping, they were just looking. And as a result, the stretch that usually took me 5 minutes this time took 20 minutes. After passing this point, the traffic sped up significantly and flowed normally.

Read More