I think this is the 7th time I'm revisiting the algorithms now. I don't know what happens after a really good start, I tend to get busy and lose midway. I really miss the old college days when I had all the time in the world. No worries about the work, food, home, shelter... everything was taken care of by my parents. It's true that with experience comes responsibility... … [Read more...] about Revisiting Algorithms
Programming
Grading Student: Solving Hacker Rank Problem [Easy]
I was sitting idle after long intensive hours of development (mostly react native with hooks). After completing the task my mind was wanting some easy problems to solve. I don't know why it happens to me. So, I decided to open HackerRank and picked up the first problem that popped up in the practice ground. The problem was pretty easy to solve but eh... I wanted to do it … [Read more...] about Grading Student: Solving Hacker Rank Problem [Easy]
ReactJS (ES6) and AJAX to Fetch Data from Servers
Hey developers! I wrote a blog about the best javascript frameworks of 2017 and ReactJS is one of them. ReactJS is one of the best javascript framework to create views. It is developer friendly plus it gives you lot of tools to make your overall experience smooth. ReactJS loves component driven programming. So, if you are not familiar with component based programming then it’s … [Read more...] about ReactJS (ES6) and AJAX to Fetch Data from Servers
Best Javascript Framework 2017
Hey! I’m getting lots of queries related to the front-end frameworks, like which frameworks are most suitable for their projects. So, I thought of writing this article which will help you to choose the best javascript framework available in the market as of 03/17. You might already aware of various javascript frameworks out there. Every now and then a new framework emerges … [Read more...] about Best Javascript Framework 2017
LinkedList Implementation in Java (TDD WAY)
Hey buds, In this article, I’m going to implement a linkedlist in java and compare our linked list on various performance benchmarks in comparison with the original collections linkedlist. Our custom linked list will not contain as many features as offered by the collections framework but it will surely contains all the basic features which are required to be a part of any … [Read more...] about LinkedList Implementation in Java (TDD WAY)
How to become a good Web Developer
Hey guys! Recently, I have been getting a lot of queries on how to become a good web developer or which road leads to web development. First of all, I couldn’t be any happier that you are interested in Web Development and I’m sure there is a pretty nice reason for you to be a web developer. I think this article is going to be an interesting one for all the budding web … [Read more...] about How to become a good Web Developer
Simple Shopping Cart in JAVA using Collections
If you have read my previous article which solely focused on getting you started with the JAVA Collections framework then it's time to dig a little deeper and create an application to demonstrate the use of Collections in real world application. I have chosen Shopping Cart application for this purpose because I found it perfect for the situation and the use of collection in … [Read more...] about Simple Shopping Cart in JAVA using Collections