Category: Coding

How to fix – Slot invoked outside of the render function

If you are reading this post, chances are that have encountered the following message while trying to access the slot.default() Slot “default” invoked outside of the render function: this will not track dependencies used in the slot. Invoke the slot function inside the render function instead. In this post, we are going to explain the…


The importance of Headings element for an accessible page

If you are reading this post, chances are that you have started to think about improving your understanding of accessibility and have been trying to write pages that are semantically correct. In this article, we are going to cover one of the most common mistakes made by developers. The misuse of Heading elements (H1, H2,…


How to use variables in CSS with v-bind in VueJs 3

Frontend frameworks like VueJs, React and Svelte offer great flexibility in the development of UI components. The simplicity in which we can create components with dynamic properties offers the possibility to solve complex requirements with just a few lines of code. If you have been using VueJs, you are probably aware of the limitation that…


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…