Skip to main content

Why programmers need to have a sense of humor?

When I asked one of my friends for his comments about my last post, this is what he had to say -, "as an MBA i know hw imp ads are so i dont quite agree wit u" (reproduced verbatim from GMail Chat History). This was the same guy who had a great sense of humor when he was working as a programmer. He quit his job as a programmer and bam!, his sense of humor went away. Now this presents a burning question in front of us - why do all good programmers need to have an innate sense of humor?

It is an established fact that computers can become boring, especially to a programmer who keeps talking to it day after day without getting any response or appreciation. It never happens that you log in to your system and the computer chimes, "Hey Bro! Where have ya been? How 'bout a cuppa coffee before you begin?" If it happens, it means that it was written by a fellow developer who had his manager breathing down his neck to complete the project. Enjoying such greeting is like wearing a Blood Diamond! So to escape this dull, meaningless drudgery day in and day out, we programmers need to have a sense of humor.

The established notion of productivity in an IT company also contributes to programmers developing a funny bone. A developer, after working working very hard, reduces the running time of a program from 30 min to 30 seconds. Excitedly, he tells his manager about it. But the MBA-retarded manager only says, "Good. While you are here, can you point me to where I can find the mails I have kept for follow-up?" Its right there man. Just below the inbox, where it says "For Follow Up". What do you want? To dish it up in front of you complete with a 'Bon Appétit' greeting! The only way one can hope to survive in such a environment is to see the funny side of it.

The HeadFirst Design Patterns book is a great example of humor in computers. So are blogs like The Daily WTF, or XKCD.

Finally a message to all the the programmers of the world aspiring to be a great one - learn to laugh. It will surely help you in avoiding the 'SenseOfHumorNotFoundException'. No kidding!

Comments

  1. While the Head First series of books are good, humorous reads, I found the one that you refer to, "head first Design Patterns" a bit too verbose and distracting. The examples stretched way too for the comfort of a technical book. Humor is fine, but not at the cost of trivializing technology.

    ReplyDelete
  2. If you want a serious book about design patterns, there are loads available in the market. Frankly, I don't find a serious technical book to be 'comforting'!

    ReplyDelete

Post a Comment

As far as possible, please refrain from posting Anonymous comments. I would really love to know who is interested in my blog! Also check out the FAQs section for the comment policy followed on this site.

Popular posts from this blog

Creating a Smart Playlist

A few days earlier I was thinking that wouldn't it be nice if I had something which will automatically generate a playlist for me with no artists repeated. Also, it would be nice if I could block those artists which I really hate (like Himesh Reshammiya!). Since I couldn't find anything already available, I decided to code it myself. Here is the outcome -  This application is created entirely in .NET Framework 4/WPF and uses Windows Media Player Library as its source of information. So you have to keep your Windows Media Player Library updated for this to work. It is tested only on Windows 7/Vista. You can download it from here . UPDATE : You can download the Windows XP version of the application here . Please provide your feedback!

Integrating React with SonarQube using Azure DevOps Pipelines

In the world of automation, code quality is of paramount importance. SonarQube and Azure DevOps are two tools which solve this problem in a continuous and automated way. They play well for a majority of languages and frameworks. However, to make the integration work for React applications still remains a challenge. In this post we will explore how we can integrate a React application to SonarQube using Azure DevOps pipelines to continuously build and assess code quality. Creating the React Application Let's start at the beginning. We will use npx to create a Typescript based React app. Why Typescript? I find it easier to work and more maintainable owing to its strongly-typed behavior. You can very well follow this guide for jsx based applications too. We will use the fantastic Create-React-App (CRA) tool to create a React application called ' sonar-azuredevops-app '. > npx create-react-app sonar-azuredevops-app --template typescript Once the project creation is done, we

Serverless Generative AI: How to Query Meta’s Llama 2 Model with Microsoft’s Semantic Kernel and AWS Services

Generative AI is a type of artificial intelligence that can create new content such as text, images, music, etc. in response to prompts. Generative AI models learn the patterns and structure of their input training data by applying neural network machine learning techniques, and then generate new data that has similar characteristics. They are all the rage these days. 😀 Some types of generative AI include: Foundation models , which are complex machine learning systems trained on vast quantities of data (text, images, audio or a mix of data types) on a massive scale. Foundation models can be adapted quickly for a wide range of downstream tasks without needing task-specific training. Examples of foundation models are GPT, LaMDA and Llama . Generative adversarial networks (GANs) , which are composed of two competing neural networks: a generator that creates fake data and a discriminator that tries to distinguish between real and fake data. The generator improves its ability to fool the d