Manage Multiple Github Accounts on Same Machine

If you are someone who works professionally as a software engineer but also work on side projects, keep reading. Most probably, you are using git version control system for both kind of projects. This sometimes leads to pushing a commit for a personal

Read More

For Loop and Join in Databases – Oracle & PostgreSQL

Most of the software engineers who use databases use it for selecting or inserting rows into it. But, there can be cases where you need to use SELECT, UPDATE and INSERT statements together in a query that spans over multiple tables. That’s when you need to

Read More

Filter Gallery using HTML5, Bootstrap and jQuery

I recently revamped my personal website after a long time. I implemented a projects section which had a filter gallery based on the category of the project. It felt important to make such an interface as it targets those people who want to see

Read More

Standard Template Library (STL) – Introduction Tutorial

I have been programming in C++ since 2011. But till today, doubly linked lists, hash tables, pointers and the various searching/sorting algorithms on them have intimidated me. I always had to look at their syntax when I came back to C++ after

Read More

Templates and their Importance in C++

Template is a very powerful yet underused feature of C++. It should be used as much as possible. Let’s begin with a simple scenario. Let’s write a function to multiply 2 numbers in C++. [crayon-646a7de28f6c5248741286/] Now, when we pass the below inputs

Read More

Predicting Google’s Stock Price using Linear Regression

What is Linear Regression? Let’s forget the term ‘linear regression’ for some time. Instead, I want you to go back to your high school’s math class. You must have plotted a graph of a given linear equation during coordinate geometry classes in

Read More