arundhaj

all that is technology

Productivity is about Product

 

I have read an article which was contradicting the myth against fact.

It is generally believed that; Productivity of a developer is said to increase by reducing the development time using all possible tools and techniques. The clarifies that it is bound to fail at some situations.

  • Sometimes spending less …

SMS game app on txtWeb

 

I've created a SMS based game named FLAMES on txtWeb platform. txtWeb is an innovative product which brings the internet on SMS. For all the feature phones or the other kind of phones which doesn't have internet connection can still use this txtWeb to browse most of the commonly used …

Consistency over heroism

 

I’m sure everyone would remember their full-night studies in college for the exams next day. Whats more more surprising is to see the results come out with flying colors by clearing the papers and even getting good scores. This would make us feel heroic on achieving a target with …

Boiler Plate

 

I used to wonder how the term boiler-plate penetrated into software industries. Wikipedia explains it as the part of the code duplicated multiple times within the project. Well, what I perceive is bit different; It is not called as boiler-plate because the code is duplicated, however it might be the …

License to use the word Productivity

 

Lately I see a buzzword Productivity buzzing around everywhere within corporate, websites and blogs (even this blog is no exception). The word as such is not invented anywhere recently; it is in existence from 1612. I’m sure you are now wondering why this word got charm recently!!! All credit …

Take Ownership or Give Ownership

 

We should Take Ownership, that is how we could bring the best in the work we do. We take ownership of a work due to the passion over it. The passion gives energy and we take pride in getting it done. When we don’t have passion on the work …

Real world object

 

This is the first bullet line which every one would write when asked about Object Oriented Programming(OOPs). In college, when any student answers this, we could hear a huge laugh from every corner of the room teasing that the student has memorized as in textbook.

However the fact is …

Productive in home

 

All the time I used to wonder how people spend time working in home without distractions. The work I mentioned here is not the office work, however I was trying to study and do some hobby projects. Basically they are the personal work other than mails and social networking which …

Step 1 for compiling and burning

 

Everytime I search the net for the basic steps in compiling and burning my programs. So, I wanted to record it here.

I use ATmega32 microcontroller and USBasp programmer.

Compile

$ avr-gcc -mmcu=atmega32 -Os first.c

Convert to hex

$ avr-objcopy -j .text -j .data -O ihex a.out first.hex …