Skip to the content.
Home | Blog | Book Reading |About | All Courses

Bash: Convert text to uppercase

We were writing a Bash Shell script where a word is taken as command line argument. This word is then used as key to fetch a line from a csv file and then pull out some specific field in it using awk command. All worked fine, except that... [Read More]

Pandas: Filter Rows based on cell values

One of the coolest tricks in Python when you want to search multiple conditions is the clever use of in operator Let’s say you want to check if the user agrees with your proposal or not. May be you ask for the user’s opinion ( or may be... [Read More]

Interview: How to showcase your work?

“How can I portray my skills in my resume?” This is one question that most Professionals usually ask me about. Most of them usually ask this question when they are moving from one role to another, or from one project to another, or sometimes just completed a Certification Course... [Read More]

Is ChatGPT different from an LLM?

Natural Language Processing (NLP) has gained a lot of momentum in recent times with the advent of the “Transformer” architecture. With it came the LLMs and ChatGPT Often, one wonders what these terminologies are? How are they related to eachother? Instead of me writing the answer for this, I asked... [Read More]

Use patch to Undo local Git Repository changes

Last week I learnt of two ways to undo local changes in a Git Repository This time, I thought of a slightly different scenario Scenario Let’s assume I have done some changes in my local Git Repository. And, then I realise that this change is good, except... [Read More]