Wednesday, October 29, 2025

Excel Image

 In excel, when you you copy the cells, it will save as image in clipboard

Tuesday, October 28, 2025

How to block or unblock css in website in chrome - How to change agent of chrome

 > Go to chrome developer tools

> Go to Network Tab

> Click on CSS, JS, ALL

> Press CTRL + F5 Key and you will see files. You can block that files.

> And you can change slow 4g or fast 4g or you can change agent in Chrome.

How to record website in chrome

 >Open developer tools

> Click on Recorder

> Click on Create recording

> Click on Start recording.

> Click on website and when you click on buttons and anywhere it will save.

>You can import, export and delete the recordings.

>It will save as JSON file.

>Click on play recording to play.

Wednesday, October 1, 2025

How to create stored procedure in MySql and how to call stored procedure

 DELIMITER $$

CREATE PROCEDURE new_procedure_procedure_name()

BEGIN

    SELECT * 

    FROM test.new_table t1

    LEFT JOIN test1.table1 t2 ON t1.id = t2.id;

END $$

DELIMITER ;


===============================

CALL new_procedure_procedure_name();

How to create new database in MYSql

 > First open My SQL workbench

>Than click on Database menu and click on Connect to database

> Than in navigator , Select Schemes tabs

> Right click in navigator and click on Create schema 

> and Type name and click on apply and click on apply and click on finish

How to connect MySql and how to install MySql

> First download MySql Workbench

> Than click on Database menu and click on Connect to database.

> Than click on OK button

> Than click on Schemas  tab.

> Than write query 

For Creating database

Create Schema test or Create Database test;