Almost one year passed since I passed Laravel Certification, so I want to share with you my experience how I prepared and passed this exam, what you have to learn and how to feel you are ready to pass it.
Continue reading »Programming languages
Standardization of JS has moved to a year-long update cycle, and the beginning of the year is a great time to find out what awaits us in the anniversary - the tenth edition of EcmaScript!
Continue reading »Working with large files in storage can cause an application to be out of memory as it loads the entire file into RAM before sending it to the storage. To save memory usage we need to work with streams.
Continue reading »We all know how to create a variable, how to get the value of a variable, and how to take a reference to a variable. Let's have a learn what happens in the interpreter when you change the value of a variable? Or when you delete it? How are the types of variables implemented?
Continue reading »For some web application, you probably need to ask a user to share his/her location with you. Native web browser behaviour asks you to use an outdated approach to get it using callbacks. But we'll show you how to make this request synchronously using the new JavaScript features.
Continue reading »Asynchronous functions allows us to program using asynchronous requests in a "synchronous" manner. They could be really useful with ajax calls, for example.
Continue reading »Validation is an important task every web developer should care when working with data coming to server. Symfony has Validator component for that, but let's build request auto-validation structure to be sure that data came to our appliction is already valid.
Continue reading »The development process in PHP is mostly related to the receipt and processing of data from different sources. Usage of the Standard PHP Library, SPL and knowledge of its composition is an area whose possession can confirm the competence of the PHP developer.
Continue reading »Step-by-step instructions for creating a plug-in for Chart.js library.
Continue reading »React Component lifecycle methods have changed since React 16.3 released. To prevent you to write legacy code I recommend to pay attention to it.
Continue reading »