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

Using static IPs in Linux

It is often a requirement to assign static IP addresses to some important and permanent network interfaces. This is to avoid setting up a local DHCP server or relying on IP given by your network provider which may not be stable. This post shows steps to configure static IPs in Linux using Ubuntu 16.04 and Ubuntu 18.04 distros. We are considering two distros as network configuration has changed significantly in Ubuntu 18.04. There are two general steps to be followed: 1. Configure the network interface and assign a static IP. 2. Restart interface for the changes to take effect. Ubuntu 16.04  The current interfaces on the system are as follows: As can be seen, enp0s8 interface does not have any IP. Let's assign a static IP to it. In case you already have an interface with a DHCP assigned IP, you just need to change that IP and make it static. Edit the /etc/network/interfaces file and add the following code block. Prefer using the IP address range available for pri...

Simple HTTP Server in Python

Have you ever come across a need to share a file over a local network to a number of machines? Have you ever felt the need to share output of a task in text files available at a web-endpoint? Often, there is a requirement to quickly setup a light-weight web-server for such requirements. Python provides the easiest way to setup a simple HTTP server for such use cases with a single command. Python comes pre-installed with Linux as many of the linux libraries use python in background. Therefore there is no extra overhead of installing python. With support for python2 getting stopped in April 2020, many of the newer versions of linux distros come with default python3. Therefore this post will focus on setting up an HTTP server using both python2 and python3. We will be using Ubuntu 16.04, however it will work for majority of the linux systems where python comes pre-installed. Preparation Steps to follow before starting the server: Make sure you are in the directory which you want ...

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...