The Joel Test in Real Life and How I Try to Get 12 Points

When I was assigned as a CTO, I was very excited. I think it’s time for me to brought the joy and delight of coding. So I wrote my plan ahead and I have a commitment to applied the Joel Test. It’s not an easy road though and in my one and a half year as a CTO, I will share how I have achieved more than a half of them.

It’s pretty easy to achieve all of them, 12 points, when you work for a company like Google, Facebook, Yahoo or even Microsoft (yes, Joel said that Microsoft always run at 12 full-time. Incredible!). When I was at Yahoo, people were really supportive and we always try to achieve perfection in building and crafting a software. It would be different if you work for a company where not all people understand about Software Craftmanship. It’s more difficult when you work for a company (or clients) who has a type of “yesterday is the deadline.” Those kind of companies (and probably clients?) didn’t understand about planning, priority and design. The Joel Test will help you, my friend, and me to be not only an ordinary developer, but also an outstanding developer who always ship the best crafting code ever written.

Let’s get started.

Continue reading

How I Become More Productive in 2013

2013 is no more.

I’ve been struggling with too many distractions and interruptions that forced me to make a promise to revenge in the name of productivity. I’ve been doing one way or another to shake things up and counting the seconds on what I’ve done on my laptops.

Before I spit the things out that make me productive over the year, let’s admit some things that were truly distractions.

First and the most addictive one was Twitter. I’ve been struggling finding the way on how to make myself better at handling the Twitter’s stream but finally I found the way how to deal with such a hard-to-defeat distraction.

Second was email. I frequently found myself staring at Gmail more than often instead of doing something real. I do the fast-switching from Inbox, Spam, Trash, and labels such as android-dev, YouTube and Quora Weekly Digest just to see what’s new in it.

Anything else such as Facebook, Google+ and games on my tablet are distractions too, but not really disturbing since I rarely spent my time on those things. Fortunately, I don’t have any account (or maybe I just forgot the password and never logged back in) on Path, Instagram, and a bunch of me-too-chat-apps out there (however, I still stick with Google Hangout, Whatsapp, and Skype).

So, these are the things I’ve made throughout 2013 that made me more productive than ever:

Continue reading

Random Name API: One Hour Weekend Project

It might be not completed yet (name it “beta”) but I hope it helps everyone who in needs to generate random names (which is not just practically generate random chars but also human-readable names).

URL:

http://random-name-api.herokuapp.com/api/v1/get_name/<nm>

where nm is the number of names to be generated (in integer).

Example:

http://random-name-api.herokuapp.com/api/v1/get_name/5

will generate 5 random names along with their gender (“M” indicates “male” and “F” indicates “female”).

The number of names is practically unlimited (in theory), but to keep the requests as efficient as possible (because I’m only using one dyno for the app), I’ve limited the number to 100 per request. However, you can use your script in any language to do the loop to get as many result as you want.

SSHMe, How I Manage and Connect to Many Servers

I’m not going to add another ‘me-too’ solution but if you wanted to know similar solutions, you can see here.

OK, here’s the situation.

I have many servers to maintain and connect to but every time I want to connect to one or two of those servers, I need to open my notes and type the username I have (along with the password) and the specific port, if any.

For example, I want to connect to machine A with IP 192.168.1.100 using root to specific port 12020. So here’s what I’m doing:

$ ssh -l root 192.168.1.100 -p 12020
[email protected]'s password:

Now, I also want to connect to machine B with with IP 192.168.1.120 using ‘ksetyadi’ to specific port 1224.

$ ssh -l ksetyadi 192.168.1.120 -p 1224
[email protected]'s password:

This is easy when I only have one or two servers but actually, I have more than 5, actually 12, servers to maintain and using the old way is not easy anymore. Not fun.

So, what is the fun way according to me?

I opened my favorite code editor and start making my life easier and fun again.

Without further ado, see the code on Github.

A Guide to Running Unit Test using PHPUnit on Yii Framework

Let me tell you something:

TDD doesn’t drive towards good design, it drives away towards bad design. If you know what good design is, the result is a better design – Nat Pryce

I want to share my experience in setting up unit test (and later integrate it in CI —Continuous Integration) on my development machine. Hope this will save your time, my fellow developers, without going through of all errors and warnings I was stuck with before.

Disclaimer
I’m not an expert on Yii even though I have years of experience in PHP. In fact, this is the first time I’m using Yii. In the real world where I live, work and play, I use CodeIgniter and CakePHP. In terms of TDD, I started using it almost 2 years ago (thanks to Yahoo!) and always using it in almost every projects including Android (Java) and Python.

FYI, I’m using MacBookPro with MAMP PRO (PHP 5.3.6) installed. It wouldn’t be too difficult for you if you use Linux since it’s a similar process. If you use Windows, well, then goodluck! ;)

Let’s get started.

Continue reading

Merge Sort: The Algorithm

This is it. The last time I wrote about Merge Sort was last night last week and now I will show you the fun.

So here’s the code I’ve written in 9 minutes 42 seconds (almost 10 minutes!) straight.

from random import randint

def sample_list(n, r):
    result = []
    for c in range(0, n):
        result.append(randint(0, r))

    return result

def merge(left, right):
    i, j = 0, 0

    result = []

    while i < len(left) and j < len(right):
        if left[i] <= right[j]:
            result.append(left[i])
            i += 1
        else:
            j += 1

    if i < len(left):
        result += left[i:]

    if j < len(right):
        result += right[j:]

    return result

def sort(mylist):
    if len(mylist) < 2:
        return mylist

    midlist = len(mylist) / 2
    left_list = mylist[:midlist]
    right_list = mylist[midlist:]

    left_list, right_list = sort(left_list), sort(right_list)
    return merge(left_list, right_list)

if __name__ == '__main__':
    l = sample_list(10, 1000)
    print 'Unsorted list'
    print l
    print '\nSorted list'
    sort(l)

Pretty easy, right? Let me know if you have any comments or questions!

The Beauty of Merge Sort

First or second year of Computer Science’s students should not be surprised with this as this is one of the main subjects that must be mastered in order to advance to the next year. This subject usually taught in parallel with another algorithm in a lecture called “Introduction to Algorithm” or “Data Structures and Algorithm” depending on your campus.

It’s been years since I’ve got this material from university and I always come back to this subject again and again. Merge sort is one of the basic sorting algorithm but I still amazed with the way it do the sorting. So I set this weekend to visit the material again plus adding some more information about the merge sort into my head that once I’ve never known before (I’m not a nerd while back at the university so I don’t ‘eat’ everything my lecturer gave to me).

Let’s start with the easy one.

Continue reading

My First Day with Pebble and Why I Like It

It all began with a post from Kickstarter.

I’m really obsessed with technologies that can be customized and potentially useful in the future such as Google Glass, Android and so on. If some technologies come up and it says that I can create apps on top of it or it can be customized with coding, I definitely want to try it. So I decided to bought Pebble.

It doesn’t take too long for the shipping to be arrived (between 2 to 3 weeks). By the time I received the package, I opened it up and wore it on my wrist. It fits my wrist and really comfortable. I wore it for a whole day, reading the developer’s documentation, trying to make a simple ‘Hello World’ and reading specification on how to communicate with other devices using Bluetooth.

My simple conclusion is: I like it, and this is why I like Pebble.

Continue reading

10 Things That Make Cool Drivers, Cool

Driving is always my favorite activity since I was at high school. I never bored sitting behind the wheel and put my leg onto the gas pedal and push it hard. I used to be a (street) racer. I don’t mind running over 190kph using Mitsubishi Galant 2002 v6 2.4L on a Cikampek highway or running over 140kph using Honda Civic on a main road connecting Purworejo and Yogyakarta just to chase a BMW and a modified version of Corolla at 12AM and after that, running as fast as possible along with those cars as police chased us on the back (thank God I never get caught because I suddenly turned to the nearest gas station and hide while the police still chasing those two cars).

Jeez, those were my “dark ages” when I was young and now, as I’m become older, I always remind myself how important it is to be cool while driving.

“What.., wait! So you want to say that those 190kph thing-y and the pursuit wasn’t cool?”, someone asked me.

My answer when I was doing that: I felt pretty cool.

My answer recently until today and beyond: No.

Why? Simply because I have another definition of coolness while driving a car. Let me tell you.

Continue reading

Shannon’s Limit, Nyquist Limit, Bit Stuffing and Hamming Code

So, I’ve remembered that I was taking a network class while back at the university and now I am learning some of those things again and I want to share with all of you.

Why? Because I feel that I didn’t get much while back at the university and just before I go to sleep today, it all came back to me and suddenly I understand those things more than I was years ago.

So it’s about Shannon’s Limit, Nyquist Limit, Bit Stuffing and Hamming Code.

Attention:
To my frequent readers who are not familiar with the OSI layer, especially on Physical and Data-Link Layer, or non-technical person who always have some fun reading my posts, I need to notify you that the following post will be very technical and you can skip anytime you want. However, I’ll try as simple as possible to explain what I mean and probably you can get something from it. Just be sure that you’re okay with this and read ahead.

Let’s go with the first one. Shannon’s Limit (or Shannon’s Capacity). Continue reading