Web, YaK How to add Column Filtering to Vuetify Data Table 25.08.2025 by Joan Frey For a long time, my v-data-table-server implementation in the YaK only supported global search through a simple text input. While it was good enough for basic queries, I needed something more powerful—the ability to filter by individual columns using(…)
Enterprise content management, Web Getting started with Open WebUI 11.04.2025 by Daniel Westermann Everybody is talking about AI, RAG and language models today. A lot of people are using ChatGPT or other tools to get answers(…)
Web Exploring FlyonUI with Vue.js: A Fresh and Evolving Library 31.10.2024 by Joan Frey As someone who has relied on Vuetify for most of my Vue.js projects, I’m always on the lookout for new libraries that can streamline development and keep designs modern. Recently, a new UI library called FlyonUI was released, and I(…)
Web Vue – Creating an Awesome Parallax Effect with Swiper 31.10.2024 by Joan Frey Adding a parallax effect to your website brings a smooth, professional feel, making it more interactive and visually appealing. With Swiper for Vue, you can easily implement parallax effects for a slideshow. In this guide, we’ll create a parallax effect(…)
Web Creating a Global and Custom Snackbar in Vue 3 Using Vuetify and Pinia 17.10.2024 by Joan Frey In this post, we’ll walk through how to implement a Global and Custom Snackbar in Vue 3 with Vuetify and Pinia for state management. We’ll set it up so that you can easily trigger the Snackbar from any component in(…)
Development & Performance, Web Manage Feathers.js authentication in Swagger UI 30.08.2024 by Nicolas Meunier In addition to my previous articles Add a UI to explore the Feathers.js API and Add authentication in a Feathers.js REST API, today, I will explain how to manage Feathers.js authentication in Swagger UI and make it(…)
Web How to Use Dynamic Slots in Vue.js with Vuetify Data Table 24.05.2024 by Joan Frey Introduction In this tutorial, we will explore how to use dynamic slots in Vue.js with Vuetify data table. Firstly, we will start with a CompDataTable.vue component and demonstrate how to define and use custom slots to dynamically customize the content(…)
Development & Performance, Web Add authentication in a Feathers.js REST API 25.04.2024 by Nicolas Meunier Following on from my previous articles: Create REST API from your database in minute with Feathers.js, and Add a UI to explore the Feathers.js API, today I want to add authentication in my Feathers.js REST API. Creation, update(…)
Development & Performance, Web Add a UI to explore the Feathers.js API 26.03.2024 by Nicolas Meunier Following on from my previous article: Create REST API from your database in minute with Feathers.js, today I want to add a UI to explore the Feathers.js API. When we provide an API, it’s common to make a tool(…)
Development & Performance, PostgreSQL, Web Create REST API from your database in minute with Feathers.js 13.03.2024 by Nicolas Meunier Creating REST APIs is a fairly repetitive task. You’re always rewriting the Create, Read, Update, Delete methods…In my search for a framework capable of generating a REST API, I discovered Feathers, a simple and useful framework for Node.js.