Posts

Friendship day quotes in hindi

Image
 Here are some heartfelt Friendship Day quotes in Hindi that you can use to celebrate the special bond of friendship: मित्रता दिवस के उद्धरण ( Friendship day quotes ) : 1. "सच्ची दोस्ती वही होती है जिसमें दिल से दिल की बात होती है, और बिना शब्दों के भी समझने की क्षमता होती है।" 2. "मित्रता के बिना जीवन अधूरा लगता है, क्योंकि दोस्तों के बिना हमारे खुशी के पल और भी अधूरे होते हैं।" 3. "सच्चा दोस्त वह है जो आपके खुशी और ग़म में हमेशा आपके साथ रहता है, बिना किसी शर्त के।" 4. "दोस्त वो होते हैं जो आपकी आँखों में छिपी हुई भावनाओं को भी समझ लेते हैं और बिना कहे आपके साथ खड़े रहते हैं।" 5. "दोस्ती का सबसे खूबसूरत हिस्सा यह है कि यह बिना किसी शर्त के होती है, और इसमें हमेशा प्यार और समझ होती है।" 6. "सच्चे दोस्त वे होते हैं जो आपके दिल की गहराइयों को जानते हैं और आपकी सबसे बड़ी ताकत बन जाते हैं।" 7. "दोस्त हर खुशी और ग़म में आपके साथ होते हैं, और उनके साथ बिताए हुए पल हमेशा दिल को छू लेने वाले होते हैं।" 8. "दोस्ती एक ऐस

react open file browser on click a div

 import React from 'react'; const Content = () => {   const handleClick = (e) => {     const fileInput = document.getElementById('file');     fileInput.click();   };   const handleFileSelect = (e) => {     const selectedFile = e.target.files[0];     console.log(selectedFile);   };   return (     <div className="body-content">       <div className="add-media" onClick={handleClick}>         <i className="plus icon"></i>         <input type="file" id="file" style={{ display: 'none' }} onChange={handleFileSelect} />       </div>     </div>   ); }; export default Content; In this example, we use two separate functions to handle the click event on the add-media div and the selection of a file using the file input. The handleClick function is called when the user clicks the add-media div with the icon. This function retrieves the file input element using the getEleme

javascript merge two array remove duplicate values

Solution: There are two different method  first method: var array1 = ["a", "b"] var array2 = ["b", "c"] array1 = array1.concat(array2); console.log(array1);    \\ output: ["a", "b", "c"] second method : let array1 = ["a", "b"]; let array2 = ["b", "c"]; let array3 = [...array1,...array2]  \\ output:[ "a", "b", "b",  "c" ] let array4=[...new Set(array3)]  \\ hint: using the new Set method removes duplicate values ​​from  array console.log(array4); \\ output:  ["a", "b", "c"]

icon hover effect in website

Image
 icon hover effect code You can download code: First you copy Below link and then google in  search , and now you can download because this site in not directly code provided some rules blogger 🙏 https://docs.google.com/document/d/1ZjDTJD_wPzTVxTIdjpXvA7vUhdp4smc-n9IVdG9qk-8/edit?usp=sharing

wonderful circle pattern using python

Image
Amazing circles pattern using python First you copy Below link and then google in search , and now you can download because this site in not directly code provided some rules blogger 🙏 https://docs.google.com/document/d/1S3_y4GhrgL1G2ereLtncMNoZKDqHJlxtV0Jp3tIIotE/edit?usp=drivesdk

youtube logo pattern using python

YouTube logo  First you copy Below link and then google in search , and now you can download because this site in not directly code provided some rules blogger 🙏 https://docs.google.com/document/d/1Wrq72SlnfvraqfHuHKPa9rv9SCAEvwkx4gQuvZjyUyM/edit?usp=drivesdk