Posts

Showing posts from October, 2020

Python: Quick Revision

Quick Revision: Python I plan to consolidated the very basics of Python under this blog-post in a handy & concise notes for quick revision. Here is hoping it proves useful to someone. Python: Has 2 versions: 2.x & 3.x (latest & preferred) This course is for the latest version (3.x) Python is special language that doesn't use brackets({}) or semi-colons for code formatting, rather it uses indentation Commenting Code: #Single Line #Multi #line ''' triple quote is a string but can be used for multi line comments as it's ignored by interpreter i...

Android Emulator Setup for Salesforce

Image
Setting up android emulator for salesforce Pre-requisites: SFDX CLI VS code with Salesforce & SFDX extensions Step1: Install/update required SFDX plugins. sfdx plugins:install @salesforce/lwc-dev-server sfdx plugins:install @salesforce/lwc-dev-mobile sfdx plugins:update Step2: Download & Install Android Studio. https://developer.android.com/studio Step3: Additional downloads to complete Android Studio setup. Android Studio | Configure | SDK Manager: download at least one SDK Platform from API levels 23 through 29 (install at least latest 3 version or as per requirement) Android Studio | Configure |...