Aug 1How to perform ComponentDidMount, ComponentDidUpadte and ComponentUnmount in functional componentIn React functional components, you can achieve the equivalent behavior of componentDidMount, componentDidUpdate, and componentWillUnmount lifecycle methods using the useEffect hook. 1 componentDidMount useEffect(() => { console.log(“Mount”)},[]) 2 componentDidUpdate useEffect(() => { console.log(“Mount”)},[setAnyVariableName]) 3 componentWillUnmount useEffect(() => { return()=>{ console.log(“Mount”)React Hook1 min readReact Hook1 min read
Jun 12Python library which create virtual environment in single command!To create a Python library that allows you to create a Python virtual environment using a single command, you can use the subprocess module to execute the necessary shell commands. Here's an example of how you can implement such a library: pythonCopy code import subprocess def create_virtualenv(env_name): subprocess.run(['python', …Python1 min readPython1 min read
Jun 3What should be your approach to learn any programmingThe principle of programming will never change like how to define variables ,functions and. much more to that Thing programming as a generic speaking language. to communicate with your machine Don’t stress about learning syntax , get your logic in place Try not to mug up everything Never stick to one language, as a developer you had to have a habit of adaptation.1 min read1 min read
May 15Types of React Components you should knowing for your next interview1] Functional Components 2] Class Components 3] Higher-Order Components 4] Dumb Components 5] Smart Components 6] Presentational Components 7] Container componentsJavaScript1 min readJavaScript1 min read
Apr 2Platforms where you can deploy your website for freeGitHub Pages 2. HerokuJavaScript1 min readJavaScript1 min read
Mar 11How to answer questions in an interviewAlways take a half a second pause before answering anything Always understand the question very well If confused about a question you can clear your doubt by asking them to elaborate more Your answer should be in a way that will lead to another questionInterview1 min readInterview1 min read
Feb 23Coding is much more than you thinkCoding is much more than you think Hi folks , how are you , i hope you are doing absolutely fine, so our topic ,let see to it , talking about coding it take a lot of your time , energy , patience and your brain which is much more…Accessibility2 min readAccessibility2 min read
Feb 10What exactly you need to become full stack developer in 20231. Learn the fundamentals of HTML, CSS, and JavaScript 2. Study a backend programming language such as Python or Ruby and Node Js 3. Get familiar with a database management system such as MySQL or PostgreSQL or MongoDB 4. Study a backend framework such as Flask (for Python) or Ruby on Rails 5. Practice building full-stack applicationsFull Stack Developer1 min readFull Stack Developer1 min read
Jan 29Must have add-ons skill as a Mern/Mean Developer :Must have add-ons skill as a Mern/Mean Developer : Github or any other 2. Understand deployment cycle ,how build is made from project 3. Write dynamic test cases (User perspective ) 4. Get understanding of how version control work 5. Understand one or two cloud services how they work 6. Learn about docker 7. Map out business logic first before start to code1 min read1 min read
Jan 17Javascript interview snippetsQ1. Guess the Output: var b = 1; function outer(){ var b = 2 function inner(){ b++; var b = 3; console.log(b) } inner(); } outer(); Take a deep breath , don’t jump into solution Output: 3 Q2. Guess the Output: var x = 21; var girl = function () { console.log(x); var x = 20; }; girl (); Take a deep breath , don’t jump into solution Output: undefinedJavascript Tips1 min readJavascript Tips1 min read