Harish Kumar

Harish Kumar @harishkumar

1389
0
63
11

Answers

To resolve the 'Git index.lock' error during a commit:

  1. Confirm the existence of the lock file using ls project_path/.git/index.lock.
  2. Change ownership of the '.git' (...)

It seems like you are encountering an issue connecting to your MySQL server on a custom port. Here's a step-by-step guide to troubleshoot and resolve the problem:

  1. **Verify (...)

I have seen lots of developers are facing many issues on Snappy package. I recommend you to try out Spatie/BrowserShot packages. Here is the tutorial video on this: https://youtu.be/320vwRDqi9w (...)

This error is because you have low RAM. The second thing is nao-pon/flysystem-google-drive is not updated for nearly 2 years. And It depends on an old version of league/flysystem. (...)

First you must learn about Laravel Echo. And you should also watch videos in this playlist: https://www.youtube.com/playlist?list=PL1TrjkMQ8UbWfFUCimQ50CdrR_J7QvEFW

From this (...)

You can use bootstrap-vue/bootstrap-vue package in your Vue project.

If you don't want to use (...)

Try this:

# View existing remotes
git remote -v
# origin  https://github.com/user/repo.git (fetch)
# origin  https://github.com/user/repo.git (push)

# Change the 'origin'
 (...)

There is a String.prototype.includes in ES6:

"potato".includes("to");
> true

Note that this does not work in Internet Explorer or some other old browsers. To make it (...)

There are number of steps to setup Laravel with Nginx on Ubuntu server. For eg:

  • Install Nginx
  • Install php-fpm
  • Install MySql or MariaDB
  • Create database and database user

(...)

In this code example I use array.filter(...) function to remove unwanted items from an array.

Removing item from array (ECMA-262 Edition 5 code aka oldstyle JavaScript)

var
 (...)