Skip to content

Instantly share code, notes, and snippets.

View fxwahyugomugomu's full-sized avatar
🏠
Working from home

Wahyu Prabowo fxwahyugomugomu

🏠
Working from home
View GitHub Profile
@fxwahyugomugomu
fxwahyugomugomu / Activate Office 2019 for macOS VoL.md
Created September 9, 2021 10:52 — forked from zthxxx/Activate Office 2019 for macOS VoL.md
crack activate office on mac with license file

Activate MS Office 2019/2016 for macOS - Microsoft_Office_2019_VL_Serializer

Office 2019 above

2019-06-03

Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.

Ref

@fxwahyugomugomu
fxwahyugomugomu / React Native Clear Cache
Created April 27, 2021 08:34 — forked from jarretmoses/React Native Clear Cache
Clearing the Cache of your React Native Project
RN < 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache
RN >= 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache
RN >= 0.63 - watchman watch-del-all && rm -rf node_modules && npm install && rm -rf /tmp/metro-* && npm run start --reset-cache
npm >= 5 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache verify && npm install && npm start -- --reset-cache
Windows - del %appdata%\Temp\react-native-* & cd android & gradlew clean & cd .. & del node_modules/ & npm cache clean --force & npm install & npm start -- --reset-cache
@fxwahyugomugomu
fxwahyugomugomu / clean.sh
Created March 5, 2021 07:58
Clean gradlew RN
cd android && gradlew clean && cd .. && react-native run-android