Ahmed A.·Jul 28, 2021HTML Tags ExplainedWe have all seen tags such as <b>, <a>, etc. in HTML code in this post we will explore what those tags mean and what they do. To understand…
Ahmed A.·Jul 24, 2021Big O notationToday I will discuss an important topic that is useful to know for your program but also more importantly it is useful to know for your job…
Ahmed A.·Jul 17, 2021Scripting Vs Programming LanguageScripting language and programming language are often used interchangeably, but in actuality, these two types of languages have many more…
Ahmed A.·Jul 11, 2021Ruby vs PythonWhile coding you will have to make certain choices for your application. When we look at coding especially the backend we have plenty of…
Ahmed A.·Jul 4, 2021First-Class FunctionsIn JavaScript you have the use of first-class functions, you may be asking yourself what a first-class function is. They are functions that…
Ahmed A.·Jun 27, 2021High Order FunctionsLast week we looked at the call-back functions, this week we will look at high-order functions. So what are high order functions? High…
Ahmed A.·Jun 16, 2021Callback FunctionsToday we will be looking into a type of function in JavaScript called Callback Functions. So now you may be asking yourself what is a…
Ahmed A.·Jun 7, 2021Create Your New Rails ProjectIn this post I will show you how to set up a new ruby on rails project, rails is a web application framework that uses Ruby code to make…
Ahmed A.·May 30, 2021Basic Destructuring JavaScriptDestructuring is a very useful feature of JavaScript, it is used to extract properties from objects to bind them to other variables. It can…