• support[@]kurinchilion.com
  • +1 (888) 666-4252

Flexbox for CSS layouts

May 18, 2023 - by kurinchilamp 454 Views
Flexbox is a powerful CSS layout module that provides a flexible way to arrange and align elements within a container. It simplifies the creation of complex and responsive layouts. Let's dive into a basic example to understand how Flexbox works. (more…)
Continue Reading

How to setup virtual host file configuration for local WordPress setup on XAMPP?

May 17, 2023 - by kurinchilamp 450 Views
To set up a virtual host configuration for a local WordPress setup on XAMPP, follow these steps: Open the Apache configuration file: Navigate to the XAMPP installation directory and locate the httpd.conf file. It is typically found in the apache\conf subdirectory. Open the file in a text editor. Uncomment the virtual hosts include: In the httpd.conf file, search for the line that includes the httpd-vhosts.conf file. It will look like this: (more…)
Continue Reading

How to setup WordPress on Windows XAMPP?

May 17, 2023 - by kurinchilamp 445 Views
To set up WordPress on Windows using XAMPP, follow these steps: Download XAMPP: Go to the Apache Friends website (https://www.apachefriends.org/) and download the XAMPP installer for Windows. Install XAMPP: Run the downloaded XAMPP installer and follow the installation wizard to install XAMPP on your Windows machine. Choose the components you want to install, such as Apache, MySQL, and PHP. Keep the default installation directory. (more…)
Continue Reading

[eslint] Delete `CR` [prettier/prettier]

May 15, 2023 - by kurinchilamp 363 Views
Edit .eslintrc.json file from the root of the project and in the endOfLine preference setting to the exports. module.exports = { arrowParens: 'avoid', bracketSameLine: true, bracketSpacing: false, singleQuote: true, trailingComma: 'all', "endOfLine": 'auto', }; Close visual code and open it again for the changes to be applied. You will no longer see the warning message again.
Continue Reading

How to setup WordPress in ubuntu virtual box using Vagrant?

May 11, 2023 - by kurinchilamp 401 Views
To set up WordPress in an Ubuntu virtual machine using Vagrant, you can follow these steps:
  1. Install VirtualBox: Download and install Oracle VirtualBox from the official website (https://www.virtualbox.org/) for your host operating system.
  2. Install Vagrant: Download and install Vagrant from the official website (https://www.vagrantup.com/) for your host operating system.
  3. Create a new directory: Create a new directory where you want to set up your Vagrant project.
  4. Initialize Vagrant: Open a terminal or command prompt and navigate to the project directory.
  5. Run vagrant init hashicorp/bionic64 to initialize vagrant.  This command initializes a new Vagrant project with an Ubuntu 18.04 LTS (Bionic Beaver) base box.
  6. Edit Vagrantfile: Open the Vagrantfile generated in the project directory using a text editor. Modify it to include the following configuration. An example Vagrant file that can be used to set up a WordPress environment in an Ubuntu virtual machine using VirtualBox as the provider:
(more…)
Continue Reading

Adding fontawesome, material icons on React Native 0.69+

Apr 15, 2023 - by kurinchilamp 333 Views
In earlier days before React Native v0.69, react link was used to link assets in the application. As react link is now deprecated, the suggested way to integrated assets is to edit android/app/build.gradle ( NOT android/build.gradle ) and add the following: apply from: "../../node_modules/react-native-vector-icons/fonts.gradle" For more information, read https://www.npmjs.com/package/react-native-vector-icons
Continue Reading

TECHNOLOGY DEV STACK

Following are some of the technologies that we use to build and maintain solutions for our clients.