Press "Enter" to skip to content

Posts published by “Abhishek Jaiswal”

How to change user password in linux?

0

Here is the steps for changing password in linux. Open terminal, and then type command passwd and then type your current password, and press enter. It will ask for new password, enter new password and…

How to add permission on directory in Linux Ubuntu

0

We can add permission in Linux operating system by using below commands on your directory:- Write above both command one by one add permission to your directory in linux ubuntu. To allow user ec2-user write access…

How to get SITE URL in javascript

0

Below is the code that help to get the site url in javascript, the purpose of this code is Sometime we need the site url in using js, in mine case i need to call…

How to maintain the scroll of page we have visited previously using localStorage

0

Here’s the Code that I have used for maintaining the scroll of web page I have visited Previously using localStorage. $(function () {/scroll maintaining states/var storedResult = localStorage.getItem("location");var storedURL = localStorage.getItem("url");if (storedURL !== 'undefined' &&…

Import/Export database using mysql/mariadb console

0

Sometime we got big database and stuck on the limit of phpMyAdmin upload limit, so here is the solution to import the big mysql file with command line:- First login to the mysql/mariadb using command:-…

How to install express in node js

0

To start developing with Express we are required to install node js to run the server. Then using this command install express by creating a new directory:- Then create index.js write below codes:- and then…

What is the difference between MyISAM and InnoDB?

0

MYISAM MYISAM supports Table-level Locking MyISAM designed for need of speed MyISAM does not support foreign keys hence we call MySQL with MYISAM is DBMS MyISAM stores its tables, data and indexes in diskspace using…