Dallas, TX | (303) 667-7604 | [email protected] | GitHub: github.com/DorkNstein | LinkedIn: linkedin.com/in/yeshwanth_malekar
Full-stack developer with experience in Website building, Android and IOS app development.
Dallas, TX | (303) 667-7604 | [email protected] | GitHub: github.com/DorkNstein | LinkedIn: linkedin.com/in/yeshwanth_malekar
Full-stack developer with experience in Website building, Android and IOS app development.
# Install Cassandra in Google instance | |
## https://www.liquidweb.com/kb/how-to-install-cassandra-on-centos-7/ | |
yum -y install java | |
sudo yum -y install java | |
vim /etc/yum.repos.d/datastax.repo | |
sudo vim /etc/yum.repos.d/datastax.repo | |
# ADD steps from https://www.liquidweb.com/kb/how-to-install-cassandra-on-centos-7/ |
cd /etc/cassandra/config | |
sudo vi cassandra.yaml | |
# set rpc_address to 0.0.0.0 | |
# set broadcast_rpc_address to public ip of the instance | |
# For logs | |
tail -100f /var/logs/cassandra/cassadra.log |
ionic build --release android | |
cd platforms/android/build/outputs/apk | |
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore <your keystore>.keystore android-release-unsigned.apk <alias_name> | |
zipalign -v 4 android-release-unsigned.apk <final apk name>.apk |
# Tip 1: | |
zip -e [new file name].zip [file path] | |
# Tip 2: | |
defaults write -g PMPrintingExpandedStateForPrint -bool TRUE | |
# Reverse: | |
defaults write -g PMPrintingExpandedStateForPrint -bool FALSE | |
# Tip 3: | |
defaults write com.apple.dashboard mcx-disabled -boolean TRUE; killall Dock |
git rm -r src/stax2 |
ditto -ck --sequesterRsrc --keepParent `ls -1 -d -t ~/Library/Developer/Xcode/DerivedData/*/Build/Products/*-iphonesimulator/*.app | head -n 1` path/to/YourApp.zip | |
## https://developers.facebook.com/docs/ios/getting-started/advanced |
ngrok | |
https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-darwin-amd64.zip |
<plugin name="cordova-plugin-facebook4" spec="~1.9.1"> | |
<variable name="APP_ID" value="1653283634989097" /> | |
<variable name="APP_NAME" value="Center" /> | |
</plugin> |
cordova plugin add cordova-custom-config | |
<platform name="android"> | |
<preference name="android-manifest/application/activity/@android:windowSoftInputMode" value="adjustPan" /> | |
... | |
</platform> |