Google Dorks – Power Up your Google Search!

How often does it happen that you want an eBook to pass the test next day or a PowerPoint presentation to show to your boss urgently? The answer is obvious, almost every day. But like everyone else, you end up searching for

Read More

Using Github Through Git Shell

What is Github? Github’s Wikipedia page defines it as below, GitHub is a web-based Git repository hosting service, which offers all of the distributed revision control and source code management (SCM) functionality of Git as well as adding its own features. That’s quite a mouthful. Basically Github is a

Read More

Why is Python so cool?

I was recently looking for a language which could help me in learning data science. I stumbled upon this language called Python which has been there since sometime, but is yet to become as popular as C++ or Java. I thought of giving

Read More

Big Data in Social Networks

In the last decade, the world has become connected to an extent that today, people know the minute details of what everyone is doing around them. Be it their close ones, their friends or even their favorite celebrities; all thanks to Facebook

Read More

Queue using Java Collections Framework

Queue is implemented in Java using the Collections Framework. It helps us in doing the actual work rather than making the primitive stack functions again and again.  Queue follows FIRST IN FIRST OUT operation. [crayon-65bf5a3eb8220434587088/] /* OUTPUT run: Queue contains-> Enter choice:

Read More

Stack using Java Collections Framework

Stack is implemented in Java using the Collections Framework. It helps us in doing the actual work rather than making the primitive stack functions again and again.  Stack follows LAST IN FIRST OUT operation. Stack only defines the default constructor, which creates

Read More