jQuery Scroll page to element
We can use jquery to scroll our page to any specific element. Some key things to keep in mind before that are: The target element should be present on the page It’s better to include …
We can use jquery to scroll our page to any specific element. Some key things to keep in mind before that are: The target element should be present on the page It’s better to include …
This post will help you fix the issue of pip or pip3 install not working for flask_mysqldb. The error might include that: Solution: Step 1: is to install brew if you don’t have it on …
Flask is a python framework used to run webserver. Flask HelloWorld Note, the capital F in flask after import keyword and also in app =. Flask live reload on code changes To reload the flask …
You can use the pdf library DomPDF without using composer. Actually the library installation dues support composer too, but they provide normal releases on their official github repo which does not require composer. How to …
This post will solve the issue where you need to first login to a remote server as an intermediary proxy and then connect to the other server, all via visual studio code. For this we …
In this post we will fix the nginx server issue where it stops and the frontend of website shows the error message related to apache server. If you check the nginx error logs, you will …
Sometimes when we’re working with files, our user is not able to save or edit the files on the server. This tutorial will help you fix that issue. For example, if while trying to save …
This tutorial explains how to publish a laravel project website on LEMP server (running nginx & mysql) on ubuntu. However, it should work the same on any other linux distribution based vps. Will PHP artisan …
We can load google fonts using javascript, resulting in better google pagespeed score. Google webfonts loader also allows us to set a timeout before loading the google fonts. The code would look like this: For …
This code will run a basic discord bot that you can split into commands and then keep everything organized in modules. Files: package.json index.js .env src/commands/index.js src/commands/ping.js (a sample command) You can add new commands …