Latest Articles

  • I Built a Free, Git-Native Memory Layer for AI Agents — Here’s Why and How

    I Built a Free, Git-Native Memory Layer for AI Agents — Here’s Why and How

    Discover a free, Git-native memory layer for AI agents that provides persistent identity and shared memory across sessions, devices, and runtimes. Learn how to

  • Smooth image upload and resize in laravel

    Smooth image upload and resize in laravel

    I find myself adding image upload and resize feature in most of the app I build. Laravel comes already packed with very easy file upload, but things get complicated as soon we need to manipulate the uploaded image. In this post, I will show you how you can make uploading and resizing image process buttery…

  • Learn React by creating a comment app

    Learn React by creating a comment app

    If you are coming from VueJs background learning React can be challenging at first but If you look closer its not, I would say its easier than VueJs. React is a library developed by Facebook and has a small API. But it doesn’t mean its not powerful, it has a very big community and currently…

  • API error handling in vue with axios

    API error handling in vue with axios

    Error handling within an SPA can be challenging, most of the app uses some sort of backend service to store the app data, and things can go wrong due to network connection or a bad user Input. Working with Vue.js app I have figured that to handle all the API related errors best bet is to…

  • Managing users timezone in a Laravel app

    Managing users timezone in a Laravel app

    If you are having a hard time managing users timezone in your laravel app you are in right place. In this post, I will be showing ways to manage users timezone. We will create a simple laravel application in which we will guess users timezone from the front end and store in users table to…

  • Save laravel app settings in database

    Save laravel app settings in database

    I this post I am going to share one feature which most of the application have these days to change certain settings using UI, it can be implemented in many ways but one way I find doing is to store settings in the database and provide an auto-generated form to change the settings.

  • Ready to use UUID in your next laravel app?

    Ready to use UUID in your next laravel app?

    UUID stands for Universal Unique Identifier, it has been used to generate a unique id which is a 128 bit long numbers represented by 32 hexadecimal digits. Mostly used in software development to uniquely identify information with no further context.

  • VueJS pagination component to paginate anything in Laravel

    VueJS pagination component to paginate anything in Laravel

    When it comes to listing long length data with pagination, laravel has the simplest solution to achieve it, you just call paginate() method on the Eloquent query builder and laravel will do the heavy lifting to give you paginated data. Now laravel and Vue are perfect match since Vue is the frontend framework of choice in…