Category: Javascript

My 10 Years Experience as a Javascript Software Engineer

I like to always symbolize important events with a nice post, this gives me the chance to stop and really think about the numerous events and challenges that I had to surpass to be able to achieve this big milestone. When someone starts a new career, it usually feels like a jump into the unknown,…


How to fix routes not working on laravel on linux hosting

In this post we are going to explain how to solve 500 error shows when accessing routes on a shared host, in my case IONOS. If you want the solution, jump directly at the end of this article and leave a nice comment if it fixed the issue! 🙂 The Laravel application seems to be…


How to use REST Client with Laravel authentication token

In this post we are going to explain step by step how to use the Rest client visual studio code extension with Laravel. What is REST client Rest client is a Visual Studio code extension that enable the user to trigger HTTP request directly from your IDE. The extension can be found in the Visual…


How to use VueJs 3 – Custom event declaration

Finally after a long wait VueJs 3 has been release, and with it, lots of exciting change have also landed on our doorstep. In this article, we are going to cover a breaking change (or more precisely, a compiler error), that will be triggered when using custom events. If you have ever used VueJs for…


How to use Props in VueJs

In this post we are going to explain how to use properties using the VueJs framework. The post expect a basic understand on the framework itself and will not cover the basic configurations. First and foremost, we should introduced what Properties are in VueJs. My definition of props is: VueJs properties are variables (static or…