PawHavenpawhaven.hashnode.dev·Nov 12, 2024Hello Uncle Font FreeUnlocking Whimsy with Hello Uncle Font If you're on the hunt for a display font that radiates joy and creativity, look no further than "Hello Uncle." This delightful handwritten typeface is designed to inject a playful spirit into your projects, infu...Discusscard
Ayoola Tosincodeblast.hashnode.dev·Jul 25, 2023How to create a functional copy button in flutterTo create a functional copy to clipboard button we are going to make use of the package called "clipboard: ^0.1.3" to handle our button functionality. You can go ahead and add the package to your pubspec.yaml file in your Flutter project. clipboard: ...Discuss·43 readsFlutter
Vajid Kagdiheyitsvajid.hashnode.dev·Sep 19, 2022How to programmatically copy to the clipboard in JavaScript?Async Clipboard API - navigator.clipboard.writeText Text-focused portion available in Chrome 66 (Since March 2018) Access is asynchronous and uses JavaScript Promises, can be written so security user prompts (if displayed) don't interrupt the JavaSc...Discuss·118 readsHow TosJavaScript
Minh Hiệphiepnm9x.hashnode.dev·Jun 27, 2022Windows copy files and exclude folders (node_modules)excludes.txt node_modules .metadata .idea .next Xcopy /I /S /E <SourceDir> <TargetDir> /EXCLUDE:excludes.txt # Example: Xcopy /I /S /E C:\Users\hiepn\Desktop D:\Backup\Desktop /EXCLUDE:excludes.txt CopyDiscussWindows