React Drag & Drop in 10 minutesWhat is Drag and Drop in JavaScript? Drag & Drop allows us to create interactive experiences where users can drag elements from one spot to another, making interfaces more intuitive and dynamic. At its core, the drag-and-drop API involves a few key e...Sep 26, 2024·4 min read
A component is changing an uncontrolled input to be controlledconst Component = () => { // Solution: Use an empty string (not undefined or null) for the default value. const [name, setName] = useState(""); // other component code } A description of why is below: One of the common challenges developers fa...Mar 29, 2024·3 min read
How to update Thinkpad BIOS(UEFI) from Ubuntu 24.04Greetings, Ubuntu fans 👋 Before we delve into the tutorial, let's take a moment to understand the fundamental components of your ThinkPad's firmware: BIOS and UEFI. What is the Bios And UEFI ? BIOS, the traditional system present in older models, se...Mar 22, 2024·2 min read