Skip to main content

My Entry into the World of Credit Cards


After joining my job in June 2018, my salary account was opened in ICICI Bank. During the account opening process, I was offered a Life Time Free (LTF) credit card. Simply put, this was my first chance to get into the credit world without any extra hassle because first of all, neither was I aware of the concept of credit scores nor I had any credit history and secondly, I was just curious about credit cards after seeing of my father use his credit cards with extra caution and the monthly event of credit card bill payment that used to happen at my home. And in that sudden moment of joy, I made my first mistake in the credit world.

Representative Image (Source: https://jessepollak.github.io/card/)

Now if your guess is that I started spending crazy amounts of money which I couldn't repay, then you are WRONG! I am a miserly person. Money doesn't leave my hands and in general, my credit utilization has never exceeded 5% of my credit limit. So coming back to my first mistake, I asked the ICICI representative to give me the "most basic card". He gave me the ICICI Platinum Chip Credit Card and at the time I was happy with it. It took me almost 6 months to realize my mistake.

At the time, we were planning to go for a movie. One of my friends had got the LTF ICICI Rubyx credit card at the time of opening the account. So he logged into bookmyshow at the appropriate time and got the Buy One Get One Free offer on Rubyx. I was stunned by the power of this card and started checking if there ware similar benefits on my credit card but to my dismay, there was no such offer on my card. My initial decision making had cost me dearly.

Since then I voraciously started reading about credit cards and their offers, reward points, cashbacks and penalties :p As I read more, I came to a realization that I had also lost an opportunity to optimize rewards on certain significant online purchases that I did with my credit card instead of my father's credit card. Although I did realize that there is much more to credit card rewards than just free movie tickets.

I have tried to make amends for the lost 6 months. I received an offer to get Amazon Pay ICICI bank credit card and quickly applied for it in February 2019. This card more than doubled my rewards as I got >1% cashback instead of 0.5% reward on the platinum credit card. I adjusted my credit cycles to optimize the grace period that I get. I also created a list of all the credit cards at my home. Listed down all their benefits side by side to pick the most suitable card when I make any transaction.

I will mention here three instances where I used the best among the available credit cards for that transaction.
  1. Railway ticket booking on IRCTC - I used the Kotak Royale Signature credit card which waived off the transaction fees for ticket booking and I got almost 45 days to pay for the actual ticket.
  2. Online Shopping - I used the HDFC SmartBuy platform to get 10x rewards for my online purchases on Amazon with Regalia First credit card.
  3. Hotel bookings - For this I didn't get any curated benefit. The hotel that I liked the most was not in the list of hotels on HDFC SmartBuy platform. So I used my Amazon Pay ICICI credit card to book the hotel and got 1% cashback.
In future, I am planning to find more opportunities to optimize my rewards. I am planning to put my house rent on my credit card by using RentPay platform on https://redgirraffe.com. I have enough credit limit to hardly have 15-20% utilization even with rent in a city like Mumbai. I am also planning to get my first Credit report after completing 1 year as a credit card holder. Moreover I am looking to get an upgrade to my platinum credit card or at least a credit limit increase.

I still feel I don't know enough about credit cards. I am always is search of new stuff related to this lucrative field of money. I am open to information and suggestions from experienced people in this field. For the newbies, my only advice is to stay disciplined!

Comments

Popular posts from this blog

The Changing Nature of Reality Shows in India

It's been almost two decades since the modern day reality shows started in India. And the nature of these reality shows has changed drastically during this time. "Kaun Banega Crorepati (KBC)" is no longer a show just about knowledge, "Indian Idol" and "Sa Re Ga Ma Pa" are no longer just singing shows. They all have become entertainment shows. This post is an attempt to find out the reasons of this transition, analyze the current nature of these shows and assess their impact. Reasons of this change Competition from TV Serials / Soap Opera TV serials or Soap Opera as it is commonly known is very popular among the Indian masses. India being a country where family ties are very strong, for a long time, the main theme in most popular TV shows has been "family drama". Additionally, there is no dearth of TV channels, actors, producers and the crew. TV show and film production is a major employment generator in India. And so the episodes of serials a...

Local domain name resolution using /etc/hosts

The /etc/hosts file is a powerful mechanism for managing the information about hosts in the local network in the absence of a local DNS server. Setup We have 4 VMs in the local /24 network. The following are the details: vm-1-ubuntu-16-04 - 10.0.1.11 vm-2-ubuntu-16-04 - 10.0.1.12 vm-1-ubuntu-18-04 - 10.0.1.21 vm-2-ubuntu-18-04 - 10.0.1.22 The VMs are reachable via their IP address but not by their hostnames. This is problematic because we have to remember their IP addresses everytime we want to access these hosts. It is would be much simpler to remember and access the servers by their hostnames. For that we need some sort of mapping between the IP addresses and their corresponding host names. There are 3 common ways of achieving this mapping. Setup a DNS server which handles resolution for your local network. Use an existing DNS server of the local Internet Service Provider (ISP) or any other higher level ISP. Note that a public static IP address is required for this s...

Manage system hostname with hostnamectl

This article explains the simplest method to set hostname and Fully Qualified Domain Name (FQDN/fqdn) of any given system using hostnamectl Check that hostnamectl is present on the system by typing it in a shell. You will see output similar to the one given below. In case hostnamectl is not found, it is a good idea to install it. sudo apt update sudo apt install systemd-services Verify the static hostname given above using the following command: Also verify it by checking /etc/hostname file Change the hostname and set the desired hostname by running the following command and authenticating with the password. hostnamectl set-hostname <hostname> Start a new shell session or reconnect to the server to see the change in the hostname Again run above steps to verify that hostname has been changed correctly. Configure FQDN While the above process may suffice to identify the host in the local network, it is not enough when the host is to be identifi...