More Services!

Why services are needed One of two main reasons:  You have multiple independent teams so the idea is to separate services to make independent progress and less alignment / communication / blockers. One of the components in the application has very different / higher scaling requirements than others, which makes Read more…

Mediocracy and Cultures

Company culture refers to the attitudes and behaviours of a company and its employees. It is evident in the way an organisation’s people interact with each other, the values they hold, and the decisions they make. (source) Culture defines how company builds products, how responsibilities are shared and how trade Read more…

Thoughts on Software

Simplicity Focus on simplicity; be it – deployments, process, design, apis or people.  First Principles The simplest explanation is usually the correct one — Ockham’s razor. Focus on quality not speed; quality code is easier to maintain and extend. Don’t break what ain’t broken. Don’t break what you cannot fix. Read more…

Reinventing the wheels

As per Wiki’s deleted (Yeah! I found below content from Google’s cache) article on this
“Reinventing the wheel is a phrase that means to duplicate a basic method that has already previously been created or optimized by others..”
Lets get back a couple of steps, when development of software begins, it usually starts with a prototype, and when things start getting complex the development team starts taking out common code and create frameworks around it. These frameworks are then used / improved by the developers.
Read More!

Capturing Screen in Java, Your Own printscreen

I happened to visit a cyber cafe for some reasons, and I had to take the screenshot of the screen and Alas, for some (security :P) reasons, print screen was not working. Grrrr..
Luckily, the guy had JDK installed on his machine and I had some good 10 – 15 minutes to pull this up. So I decided to quickly use Java to capture the screen and thought to share the Utility with you. Offcourse! I have now added Swing help everyone out here.
You can skip the entire post and can play around with the code / utility with section downloads below –
Downloads –


No I want to code!

Understanding Byte Code in Java

[Q] So, what is Java Bytecode ?
[A] Bytecode is the heart of Java portability. Each Java program you write is first converted to a .class file (bytecode), which is then interpreted by Java interpreter.
Few days before I came to an interesting post, which provided a sample code in Java byte code format. Interestingly decoding the code to Java was no big deal as plenty of tools are available like JAD.
But it sparked something more than just the sample code, why is byte code important and why must a Java guy know that ?
Know Why!