AMAnirudha Mahaleinanirudhamahale.hashnode.dev·Aug 26, 2024 · 1 min readGit Stash Basics1) To Stash all the files including untracked files git stash push -u -m "message" 2) To View all the stash git stash list 3) To apply a stash git stash apply stash@{0}00
AMAnirudha Mahaleinanirudhamahale.hashnode.dev·Aug 17, 2024 · 2 min readNativewind with React NativeWhat is Nativewind? NativeWind uses Tailwind CSS as scripting language to create a universal style system for React Native. NativeWind components can be shared between platforms and will output their styles as CSS StyleSheet on web and StyleSheet.cre...00
AMAnirudha Mahaleinanirudhamahale.hashnode.dev·Aug 16, 2024 · 2 min readRemove bin and obj directory in .NET projectIn .NET projects, the obj and bin folders are automatically generated by the .NET build system. obj Folder: The obj folder is a temporary folder used by the build process. It contains intermediate files that are generated during the compilation pro...00