Sep 23, 2013

Java Puzzle #1

Inspired by Java Puzzlers conference, spotted interesting behaviour of following code:
public class LongNull {
    Long longi = null;

    public long getLongi() {
        return longi;
    }

    public static void main(String[] args) {
        System.out.println(new LongNull().getLongi());
    }
}
What it produces:
  1. NullPointerException
  2. Prints 0
  3. Prints null

Jan 21, 2013

The Role of the Development Manager

I've came across great article about development manager role, and want to share it with you:
http://www.infoq.com/articles/development-manager-role

Oct 23, 2012

Agile practice: Time frame

One of the most interesting aspects in agile is time-frame. It's idea of defining start time and duration for every activity.  There are not a lot of links google are providing on it, so I decided to create one.

Time frame for an individual

Understand, what do you want to achieve. For example, I want to finish my small practice catalogue "best practices in 10 minutes" (working URL is theme.alwaysdata.net).
How it will be in S.M.A.R.T. way ? Break you task into small, testable, relevant parts, if possible.   I need to do 10 practices in same format.
Time-bound it. Estimate - how much time you're expecting to spent on every part. Or how much time you will spent on it every day/week. Best option is to have something delivered - new feature per day, new page for your book
I spend 0.5 hour every day creating practice description for my catalogue. It took me a week to get to the "almost  done" point. I've struggled for a month before applying time-frame, thinking "I still have time to do it later". 
So, I just start my pomodoro and focus on task, forgetting about everything else for 25 minutes.
After some time-units (for me it's pomodoro) You will be able to see what needs to be done and how much time will it take me to finish task, because you will know your velocity.

If there is no ability to create SMART tasks, I will reveal a secret. Smart tasks aren't needed to time frame, it's just useful to have ones. Just limit your time and at the end of each iteration think about what was done and what needs to be done. Important thing here is to mark previous task as done and create new task, putting there all the remaining work. If size of task changes (it may increase, if task is more complex than you thought) or scope becomes more clear - it means you've done right thing and you'll be more productive next iteration.

Time frame  for teams and iterations.

Limit your time for tasks, for iteration, for meetings. It will be painfull to end meetings in the middle of conversation or understand what task breakdown is needed in the end of iteration, but it will mean that next meeting will be more focused and next iteration planning will be more detailed.

Conclusion

Time is our most precious resource. Learning to respect it is a key for happy and productive work. Time framing is great-to-have practice, it will enhance your estimation ability greatly. Most important in time-framing - that at the end of each iteration you feel that you're one step closer to your goal.

Oct 12, 2012

Schedule at fixed time

Extract of some useful tip I've posted on stackoverflow,
how to schedule task at fixed time at specified timezone:

 
timer = new Timer("Timer", true);
    Calendar cr = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
    cr.setTimeInMillis(System.currentTimeMillis());
    long day = TimeUnit.DAYS.toMillis(1);
    //Pay attention - Calendar.HOUR_OF_DAY for 24h day model 
    //(Calendar.HOUR is 12h model, with p.m. a.m. )
    cr.set(Calendar.HOUR_OF_DAY, it.getHours());
    cr.set(Calendar.MINUTE, it.getMinutes());
    long delay = cr.getTimeInMillis() - System.currentTimeMillis();
    //insurance for case then time of task is before time of schedule
    long adjustedDelay = (delay > 0 ? delay : day + delay);
    timer.scheduleAtFixedRate(new StartReportTimerTask(it), adjustedDelay, day);
    //you can use this schedule instead is sure your time is after current time
    //timer.scheduleAtFixedRate(new StartReportTimerTask(it), cr.getTime(), day);
 

Aug 16, 2012

How to be effective in agile way ?

During my thinking of agile and how I can be happy at work (thanks to flow book ) I found 3 ideas that guide creation of a lot of lean/agile practices:
  • inspect and adapt - understand where you are and what can be changed. Retrospectives and demo are good example of it implemented.
  • art of possible - what can be done better or automated or ignored? Facing your challenges provoke your brain to work on solution, even unconsciously
  • timeframe - plan is not a plan without reasonable timing. that's why proper stand-up meeting and iterations timing give you a lot of information to think about and be in touch with reality. Pomodoro technique is a great example of this on personal level. 
Details on these practices will be discussed in later posts.
Interesting question here is how personal practices corelate with team practices, for example pair programming and TDD ? And how personal effectiveness causes/permits team effectiveness?

I really should mention The 3 Pillars of Personal Effectiveness in this post, very interesting reading in GTD category.


Jul 6, 2012

Jun 14, 2012

BDD Beautiful development

In next couple of weeks I'm going to try BDD for java project - http://easyb.org/.
This tool looks promising compared to existing in-house solutions.