AWS Mobile Services There are few AWS services listed below which can be used in mobile applications so that applications are sophisticated cloud-powered. 1. Amazon Cognito ( Identity ) simplifies the task of authenticating users and storing, managing, and syncing their data across multiple devices, platforms, and applications. It works online or offline, and allows you to securely save user-specific data such as application preferences and game state. Cognito works with multiple existing identity providers and also supports unauthenticated guest users . 2. Lambda AWS Lambda lets you run code without provisioning or managing servers. You pay only for the compute time you consume - there is no charge when your code is not running. With Lambda, you can run code for virtually any type of application or backend service - all with zero administration. Just upload your code and Lambda takes care of everything required to...
Benefits of Code Review Multiple eyes on a piece of code. Finding bugs early. Coding standards compliance Consistent design and implementation. Better Structured code. Team cohesion Learn how to write better code Teaching and Sharing Knowledge. Mentoring tool. Guidelines for Authors Before raising PR: - Code is "complete as possible" - Small Pull Request. - In case of Long Request, "Point out important parts" - Explain changes in PR Description along with JIRA story links - Read the checklist and mark the things which you have considered for this PR - Pull Request Title : Use JIRA ticket and useful title description After Raising PR: - Be grateful for the reviewer's suggestions. e.g. Good call. I'll make that change., Whoops. Good catch, thanks. Fixed in a4994ec. - A common axiom is "Don't take it personally. The review is of the code, not you." - Try to respond to every comment. Gu...