Posts

Showing posts from January, 2020

Android App Version Update using the following cordova cli commands

Change the version in config.xml ionic cordova build --release android jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore app-release-unsigned.apk alias_name_1 C:\Users\<Username>\AppData\Local\Android\Sdk\build-tools\23.0.2\zipalign.exe -v 4 app-release-unsigned.apk NameOfTheApp.apk Note:   C:\Users\<Username>\AppData\Local\Android\Sdk\build-tools\23.0.2\zipalign.exe --  this path may vary depending on your OS/Folder configuration.  Once release build is generated upload your APK, for upload the new version in play store follow the below link . 1. First, log in to the Google Play Developer Console. 2. Next, locate your app in the app choices listed for your developer account. Click on the appropriate app. 3. Next, click on 'Release Management', then 'App Releases'. 4. To upload a new .APK file, click on 'Manage Production', then 'Create Release'. 5. Drag and drop the new .APK file into the 'APKs to a...

How to run Visual Studio Code as root

Run Visual Studio Code as Root sudo code --user-data-dir="~/.vscode-root"

Coding Challenges and Competitions

Be a Warrior and Start to Code Coding contests are like open markets. Don’t think of them only as gladiatorial arenas but also as real-life schools where you can learn from the instant feedback on your mistakes. Companies have adopted these contests as hiring platforms to get the best and save costs. No wonder, big tech names have their own matchups like the annual Code Jam, Microsoft’s Imagine Cup, and the Facebook Hacker Cup. At the end of the day, these challenges give you another way to practice your coding skills. As the last coder standing, you could walk away with a cash bounty, a career, or just more brain cells. The eight on this list will help you to get better jobs quickly and the growth of our careers. 1. HackerRank 2. TopCoder 3. HackerEarth 4. Skillenza 5. Codewars 6. Coderbyte 7. CodeChef 8. CodinGame A Few More Coding Challenges for Money or Jobs The eight on this list will keep you busy. But here are a few more to keep you on the cutting edge. LeetCode Codeforces Kaggl...