blog

How To Achieve Data Immutability in Javascript & React

React is a famous library for building dynamic user interfaces. Data immutability is an idea that came from functional programming and applying it to design of your front end app can have many benefits. What is Data mutation? To understand the idea of data mutation, will need to step back to the foundations of programming and understand how … Continue reading How To Achieve Data Immutability in Javascript & React

Why You Should Start Using Private Pods in Your iOS App Project

When you are working on larger projects, it is good to write separate reusable code into a library. On iOS, CocoaPods is a great tool to handle app dependencies, and it also enables you to create your private library as a Cocoa Pod.CocoaPods is a tool for adding open-source code to your project. Creating a … Continue reading Why You Should Start Using Private Pods in Your iOS App Project

How You Can Get The Most Performance Out of Node.js💁

Ok so let's start with introducing Node.js. Node.js enables us to run javascript outside the browser. It is based on the chrome V8 engine and under the hood it uses JS, C++ and C. Oh God! Are you guys still using C? 🙈 and although you may have heard that Node.js is single threaded and … Continue reading How You Can Get The Most Performance Out of Node.js💁