Dec 11, 2021Make images load fast by using Webp image in websiteWhy use Webp images Webp images are especially built for the web by google to optimize the loading speed of images The image is smaller 26% by size compared to PNG images WebP supports transparency at a cost of just 22% additional bytesImage1 min readImage1 min read
Nov 30, 2021Neovim ultimate Web Dev Setup with vim plug on windowsNeovim setup for webdev and react js and DjangoNeovim3 min readNeovim3 min read
Nov 29, 2021How to create a Twitter bot in just 10 lines of codeIn this article, we will learn how to create a Twitter bot using a module called simpletwitterTwitter3 min readTwitter3 min read
Jun 2, 2021How to set focus to next input on entering key press in use ref hook in the material UI text fieldCreate an array of refs export default function App() { const [data] = useState([Data]); const inputRefs = useRef([]); const handleKeyPress = index => () => { const nextIndex…Reactjs1 min readReactjs1 min read
May 29, 2021Todo app in react js and Django rest API(part -1)Todo app in react js Preview:Best Todo App3 min readBest Todo App3 min read
May 29, 2021Python secrets module — Token GeneratorPython supports vast number of inbuilt libraries for all the purposes like textprocessing, binary data processing, file and directory access and etc.. Now Let’s see about secrets module in python Secrets module is used to generate secure random numbers for managing secrets. The secrets modgraphiule is used for generating cryptocally…Python2 min readPython2 min read
May 26, 2021Todo App in react jsSource Code: import React, { useState } from “react”; import “./styles.css”; export default function App() { const [todos, setTodos] = useState([]); const [newtodo, setNewtodo] = useState(“”); const changetodo = (e) => { setNewtodo(e.target.value); }; const savetodo = async () => { const updatedState = todos; updatedState.push(newtodo); await setTodos(updatedState); …Reactjs1 min readReactjs1 min read
Sep 15, 2020Python And Its IntroductionPython Is a Programming Language used for we development, Scripting, App Development, Game Designing, Data Science, Machine Learning, Artificial Intelligence https://www.youtube.com/watch?v=hwkIFDtNCy4Python1 min readPython1 min read