It is amazing !!!
Category: Uncategorized
[Tips] – TED TALK : Fibonacci Numbers
A fan also 🙂
[Git] – How to update your fork branch with the changes made in the source repository?
Git command needed :Â upstream Step by Step Go to your fork project dir locally that you did via cloned the … More
[Cordova] I am getting the error message “cp: no such file or directory” but the file exist in the project. How to solve it ?
Error message Error that I found when I was adding the platform in your project locally : cp: no such … More
[Cordova] – What to do when we are getting the message error “An error was encountered processing the command (domain=com.apple.CoreSimulator.SimError, code=163)” ?
Executed command : $ run cordova ios Error Message ( debug console ) ** BUILD SUCCEEDED ** No target specified … More
[JS] – Example of a immutable class in Javascript
class Sell { constructor(date, quantity, price) { this._date = new Date(date.getTime()); // new instance this._quantity = quantity; this._price = price; … More
[JS] – How to filter values in an array ?
Use Filter function : From Eloquent Javascript Book:Â “Note how the filter function, rather than deleting elements from the existing array, … More
[JS] – How to compare the values of two objects ?
Javascript function Write a function, deepEqual, that takes two values and returns true only if they are the same value … More
Women Techmakers: Make your passion
This don’t means that women want benefits or advantages, it is the opposite of this they only want equal positions … More
[Redis] – Understanding Redis
 What is Redis? Redis is a database that stores data in the form of key-value. We may store certain data … More