Means To an End


It has been quite a while since my first Hello World in BASIC and I have since absorbed a few more languages to my liking. Back in college, C and C++ were 2 of the primary languages taught which is fine. But then, there’s this junior who asked me: “Why do I have to learn something nobody can see?”.

That guy asked a very valid question. For some, crunching codes into you favorite editor with only you and the machine communicating is of the utmost fun but for others, it’s not as fun. So with this particular question, one can conclude that either you’re gonna code more in backend or frontend is pretty much answered, but that’s topic for another day.

There’s this guy I also know, he codes in every language he deemed interesting (which your fingers can’t keep count) while also mastering both backend, frontend whether it’s native, interpreted or scripted. He is a full stack developer and by stack, I meant stacks. The skills he picked up is not just average, he mastered every single one of them and most of the codes end up in production machines somewhere on the Internet.

Another case is a guy I work with in Urbanesia. He focuses his efforts as a Frontend Developer and his high standards with a unique eye for details come from his insatiable hobby as a photographer. Packed with his knowledge in development, he ventures himself into panoramic photography. You know, that photography technique to create 360x180 degrees stitched images enabling viewers as if they are there. Below is an example of his work, follow him here.

Let’s move on to something else.

I have an interesting puzzle quiz. It’s simple to be done in less than 5 minutes but also deceptive enough to filter script kiddies.

1 2 * 3 4 5 * 6 7 * 8 9 10 * 11 12 * 13 14 15 * 16 17…1000

The puzzle quiz is to code that specific pattern in various languages. Let’s start from the most inefficient way of doing it in PHP.

The codes above will yield a correct pattern. To make it interesting, let’s redo the code with the least lines of code possible like below.

There is something else we can do to further optimize this piece of code. Instead of using 2 variables, let’s just use 1.

Ok now that we’ve got the most efficient logic to recreate the pattern, let’s try indulging ourselves into various languages. Let’s start off with JavaScript.

There’s not much difference in the syntax as we compare it with the PHP codes right? Time for some CoffeeScript below.

Consider the JavaScript equivalent of the above CoffeeScript code generated from CoffeeScript in-browser compiler:

From the example above, subjectively I feel the CoffeeScript code is more beautiful to comprehend. Its support for Array Comprehension makes the code equivalent to a mathematic expression and the operators available in CoffeeScript is there to be read like reading plain English.

However as you can see the resulting JavaScript codes, it uses more variables and more lines of code. Browsers will have to download more bytes. Since GZIP compression for web pages is available in most modern browsers and daemons, sacrificing bytes for clarity I believe will save development time in the future. Again, this is subjectively speaking, your mileage may vary.

Let’s venture into another language, Python.

My first impression after doing the codes above is the codes were like New Year’s day. It’s old and new at the same time. So let’s spice it a little bit to adhere with PEP443 - Single Dispatch Generic Functions.

Now the code got more lines, more variables but if you noticed, it’s a lot more readable (verbose) and ready to be extended if deemed necessary. So for fun’s sake, let’s output differently depending on the modulus result.

The backend developer in me is happier with the last codes. It gives me flexibility and verbosity instantly. Python’s nature to uphold conventions over configurations is also a different approach to what is out there.

As you can see, implementation varies in various languages and yet all of it do the same thing: To recreate the pattern and output it.

This brings me to the title of this blog post: Means To an End.

Coding is always the easy part, the hard part is to set your mind on how to code and be ready for changes post coding. We developers live in a world where the word obsolete keeps getting redefined. After all, we are always 1/10th behind of the present. Don’t believe me? There’s a video for it below.