Flutter just released its first stable version (flutter 1.0) and gave mobile developers a totally amazing and fast way to develop enterprise level applications. Flutter is a result of hard work put together by the developers inside the Google campus with a motivation to create a truly amazing cross-platform development framework that has never been released before. And not … [Read more...] about Flutter – Beautiful native apps in record time
programming
Do You Have To Be Good At Mathematics to Become a Great Programmer?
Someone at work asked me this question- "Are Good Programmers also Good Mathematicians?". This question got me into thinking about all the stuff that people are doing in most of the IT companies. They call themselves programmers, but are they, good mathematicians? In this article, I'm going to get into deeper level and talk about the software craftmanship and clean coding … [Read more...] about Do You Have To Be Good At Mathematics to Become a Great Programmer?
Programming Best Practices: The Art of Building Modular Applications
To build a modular application, developers require a certain level of expertise. Without the knowledge of Best Programming Practices, it becomes hard and sometimes confusing to start with the architecture development process. Many young programmers face the problem in identifying different modules of the application. And this is normal. They have not built enterprise level … [Read more...] about Programming Best Practices: The Art of Building Modular Applications
JSON Web Token: 8 Easy Steps to Understand and Implement JWT
This article is going to be a piece of complete information about the JSON Web Token. If you find JWT hard, difficult to grasp, and just want an easy answer to the question "What the heck is JWT?" then this article is for you. This article is going to be a complete answer to all your questions. The entire article is divided into sub-parts for easy understanding. The … [Read more...] about JSON Web Token: 8 Easy Steps to Understand and Implement JWT
What Every Programmer Must know about Floating Point Numbers
Hey Friends!?Today I'll talk about the concepts of floating point numbers. This is one of the trickiest part in the computer world. It is really very complicated to understand the concept of floating point numbers especially for a newbie. So, I thought of writing this article to help you understand floating point numbers better. If you are a programmer, and you think you know … [Read more...] about What Every Programmer Must know about Floating Point Numbers
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)
A Beginners Guide to Understand Collections in JAVA
I learned about Collections framework in Java in the first week itself. In fact this was the second topic that I picked up after learning the basics of the language. Recently I was trying to teach Java to a beginner and I saw that the Collections framework is a bit hard to grasp for some people. And the reason that I think is the lack of knowledge about Java's basic features … [Read more...] about A Beginners Guide to Understand Collections in JAVA
How to Start Thinking In OOPs (Object Oriented Programming) to Become the Best Programmer You Ever Wanted
Thinking in OOPS Object Oriented Programming is one of the most misunderstood concepts in today's world. It may seem difficult to accept the truth especially when every other programmer is using object oriented language to structure their code. But do you really understand OOPS and the way it must be used to solve our problems better. In this article, I have … [Read more...] about How to Start Thinking In OOPs (Object Oriented Programming) to Become the Best Programmer You Ever Wanted