Skip to main content

Up In The Air

Nothing can be a better example of "India Shining" than the fact that today I was on an airplane for the first time in my life - flying from Pune to Delhi. Low-cost airlines have made it really affordable for poor people like me to have enough moolah in the pocket to buy an air-ticket. Like first love, first job and various other firsts (which are left to the reader's fertile imagination), this was a special occassion for me.

The event was made even more special by the admiring looks that people gave me when I told them I was flying to Delhi. It was like having a mobile phone in  1995. The first reaction of people when they hear about someone's flight details is like "Oh! You are flying X airline. Y airline is much better. You know when I flew,.... blah.. blah.. blah". You just want to scream out, "Look I get it. You probably own an airline. Just let me enjoy my moment." So let's get on with my story.

Buzzing with nervous energy and excitement, I entered the airport. I had to proceed to get my boarding pass and then had to check-in - the two things which seemed more difficult to me than cracking the CAT exams. Like most first-time fliers, I too wanted to pretend that I was a frequent flier and knew all about it. So I tried to have a look of disdain on my face and proceeded to get my boarding pass. Luckily, I got a window seat (a first time flier's dream come true)! Next was getting through the security check.

The security personnel hand-held device kept on buzzing when he scanned my lower body even though I had nothing on me. Looking at his serious face, I got really worried. Still I maintained my composure (I was pretending to be a frequent flier for God's sake!!). Finally the culprit was found which was the little useless metal button stitched onto my Levis' jean's pockets (note the use of brand name) which serves no purpose. I cursed it under my breath and vowed to rip it apart once I reach home.

Next was boarding the aircraft. Again it was really nice to see an aircraft up, close and personal. My frequent flier attitude was still on and I disdainfully climbed up the stairs, found out my seat and disregarded the instruction to fasten my seat-belt; like a seasoned flier. When it became absolutely essential to strap myself in, I did it with a look like I was being tortured by American soldiers in Guantanamo Bay prison. The flight attendants made their routine (judging by the tone of their voice) announcements and like other passengers I pretended to pay no heed to them (although I was secretly listening to what was being said).

Finally, the flight took off and that was the most exciting part of the journey. After that it was like sitting in my company bus albeit withouht bumps and traffic jams. Two hours later, the flight descended onto Delhi and I was happy to be back on earth although my mind was still up in the air.

Comments

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