In Laravel development, I came across the situation to get the client’s browser or user agent details in server side. Here I am going to share how I have solved it. Solution: First we have to import the necessary library. To import library run the following command from the project’s root folder. This will add […]
How to focus the cursor to end of the strings in flutter
In Flutter development, I came across the situation where we need to move the cursor focus to the end of the previously assigned text. The focus should be triggered during the initial load of the widget. Solution: To achieve the result I need to understand these simple piece of the code. First I am loading […]
About Flutter
Introduction Flutter is a powerful framework which uses dart programming language, It eases your mobile application development. You can create high quality cross platform applications using flutter frameworks. That means you can create the applications for different platforms such as Android, iOS, Mac, iPad using single codebase in flutter. Flutter is an open source application […]
PostgreSQL – libpq.5.dylib LoadError
Here is the error details we resolved. PostgreSQL libpq.5.dylib LoadError The above issue when starting the rails application, Solution: If you are recently upgraded the PostgreSql 14.5, that affected gem installed in the application. To resolve the issue you have to uninstall the Gem ‘pg’ and reinstall it again. Command to execute: orMention the gem […]
What if the WP_REST actions not working after deployed to different server?
WordPress have a important feature called WP_REST to create customised api actions In some cases these actions won’t work properly when you switch the code to different server. It will simply through 404 error code. Solution 1: Check your apache server config file for mod_rewrite module is enabled or not. Also refer. how to check […]
Upgrade from Fedora 36 to Fedora 38 Using Command Line Method
Here we are going to see about Command line upgrade method for Fedora 36 system upgrade. Before proceeding to the further steps, be sure to take backup of the important files. It is highly recommended. Command line upgrade method First thing update your current system software up-to date. You can update your current Fedora 36 […]
How to install XAMPP in Mac OS
What is XAMPP? XAMPP is a software which provides the collection of packages like Apache web server, MySQL database/MariaDB, Php and Perl. It is available in Windows, MAC and Linux.If you install the XAMPP, then no need to install the above packages seperately. It does all configuration automatically Now you can follow the following steps […]