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,
Dynamic Autocomplete Search With typeahead.js
When we design search input field, It is important to show hints or a list of possible choices based on the text that user enter to improve user experices. In this post, I will show you how to implement this
includes() Method in Javascript
In Javascript, There is includes() powerful method which is separately used in array and string expressions. includes() Method at string expressions: Usage: str.includes(searchvalue, start) includes() method returns true if string expression has specified value. includes() method is case sensitive. includes() Method
Visual Studio Code Extensions For React Developer
In this post, I will introduce Visual Studio Code Extensions that will make our work easier when developing with Reactjs. 1. Auto Rename Tag It is a extension that allows you to easily edit HTML open and close tags at
Upload Multiple Files/Images with Drag and Drop Using DropzoneJS in Laravel
User experience is given great importance in web applications today. Filling out forms is a boring activity for users. That’s why it’s the application developer’s job to make it easy to fill out forms. In this post, I will explain
Create PDF file from HTML using jsPDF Javascript Library on Client-Side
There may be situations where it is necessary to produce PDF files while developing a web application. It may need to be printed especially in cases such as reporting and invoicing. PDF file creation in the web application can be
How to Integrate ckeditor5 in Web Aplications with Custom Plugins
Ckeditor is the most used text editor in web applications. In this post, I will explain how to use CKeditor5 in web applications we develop (laravel, codeigniter … in PHP, Django, Flask … in Python). Customizing the toolbar and integrating
Fetch Api Usage in Javascript
The Fetch API interface allows web browser to make HTTP requests to web servers. It works asynchronously. JQuery.ajax() and XMLHttpRequest can be used instead of the Fetch API. But fetch api is both easier to use and comes with window object. If