Author: Mohit

Git workflow for Startups

Git workflow for Startups

Small or big, every technology company works with software developers. To increase productivity and to work in parallel, developers use a version control system (VCS) like Git. Git: Git is a free and open-source distributed version control system designed to handle everything from small to large projects with speed and efficiency. Git is designed to…

Read More Read More

Successful Networking as an Intern

Successful Networking as an Intern

Internships are usually short. Generally, most of the interns try to make the best out of their internship by focusing tremendously on the work and focus to learn a lot in those few weeks or months of engagement. But, in this era, doing a great job is not sufficient to be noticed anymore; we need…

Read More Read More

How I conduct Coding Interviews

How I conduct Coding Interviews

I have been fortunate to get to the other side of the table and ask questions and discuss topics with smart minds in the industry. While some people think interviewing is fun, some think it is a tedious process while a few believe it is sort of overwork above and beyond our day jobs; but…

Read More Read More

Code smells to avoid for a healthy codebase

Code smells to avoid for a healthy codebase

We often write code to the best of our knowledge, but slowly over the weeks, we get a feeling that something is not right. We sense some discomfort with the code but still do not understand clearly what the problem is. This intuition is correct and relatable. These are bad practices, also known as code smells.…

Read More Read More

Ultimate database of Android Interview Questions

Ultimate database of Android Interview Questions

1. What is Application in Android? The Application class in Android is the base class within an Android application that contains all other components such as activities and services. The Application class, or any subclass of the Application class, is instantiated before any other class when the process for the application/package is created.The manifest file provides essential…

Read More Read More

10 Habits of Successful Developers

10 Habits of Successful Developers

1. Write clean, reusable code  Software development can sometimes get really troublesome when the code base increases in size. With multiple developers contributing to a repository, the size and the complexity of the code increases exponentially, and the ease of reading and maintaining code decreases. A clean code helps to communicate ideas and logic to…

Read More Read More

What do you need to become a good programmer?

What do you need to become a good programmer?

Technology is everywhere. It is in the hands of the children and the old, the poor and the rich. In a short span of time, technology has become the most fundamental aspect of innovation in almost all industries across the globe. This sudden spike resulted in a huge demand for programmers and developers to build…

Read More Read More

Selling on Amazon: Behind the scenes

Selling on Amazon: Behind the scenes

We are living in an era where we go to shopping malls just for entertainment and window shopping but usually end up buying most of our stuff online. Why? While relaxing at home, we can browse through a wide variety of products in one go, compare prices, get it easily shipped to our home and…

Read More Read More

The Proxy Design Pattern

The Proxy Design Pattern

Proxy means ‘in place of’, or ‘on behalf of’. These literal meanings of proxy directly explains Proxy Design Pattern. Proxies are also called surrogates, placeholders, handles, and wrappers. In a nutshell, a proxy “Controls and manage access to the object they are protecting” When to use this pattern? Proxy pattern is used when we need to…

Read More Read More