# In this tutorial you will about the parameters in the MySQL Stored Procedures.1. With the parameters you can make the stored procedure more useful & reuseable.2. There are 3 mods of parameters IN, OUT, INOUT I will explain these 3 mods in detail in this video so be with me. 1. IN Parameters. 1. IN is the default mode. 2....
Saturday, 21 January 2023
Sunday, 30 January 2022
Things to keep in mind while starting new project. || This is For Developers ||
Be clear with requirements.get reference websites from the clientBe very clear with the end of requirements. (How your website will look & how it will function at last.)Start with creating masters of the website, because they are the base of the project. masters like (Country, State, City), etc. (Masters according to projects)Masters are the base...
Wednesday, 17 November 2021
How to introduce yourself?
Introduce yourselfQ. Interviewer Question: Do i want to hire this person? Give reasons why
interviewer should hire you? ---> Your name, Tech Stack you have worked on ---> Don't add clg name, place ---> YOu can add your frameworks ---> Avoid grammatical error ---> Add your...
Saturday, 13 November 2021
How to host website on AWS
Launch an InstanceChoose Amazon Machine Image (AMI)Choose EC2 Instance Types (General Purpose t2)Configure Security Groups (Security Groups are like firewalls that define what type of traffic we want to allow.)Add InBound rules.Review InstancesClick on Download Key Pair to download key pair and keep it safe.After a successful launch of instance, you...
Wednesday, 3 November 2021
DSA With JavaScript resources
( Paid 455 ) https://www.udemy.com/course/js-algorithms-and-data-structures-masterclass/ (FreeCodeCamp : ) https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/30 Seconds:- https://www.30secondsofcode.org/js/t/algorithm/...
Sunday, 17 October 2021
What is Redux? Why use Redux? When use Redux?
Why use Redux? Redux helps us to avoid the problem of prop drilling!Instead of asking data to parent components, you can directly get that from the store.Create Big apps with Redux if your app shares a lot of data between components you should use Redux.Store, Reducers, Actions, ConstantsData can be separated using `Multiple reducers` & will...