Writing Unit Test at PHP Laravel
It is important for us to write unit test if we want the codes we developed in a software project to deploy production with the least bugs. Especially if we are going to work in corporate and enterprise companies, we
Developing Currency Converter Chrome Extension
In this post, I will explain the extension that I developed for the Chrome Internet Browser to convert the exchange rate to Turkish Lira. The extension that converts the dollar value selected on the visited website to TL with the
Currying at Javascript
Currying is an important technique in functional programming. It is asked as an interview question in many interviews. Currying technique is the process of transforming a function so that it is called with a single parameter like f(a)(b)(c) each time,