Posts

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 |...

Few Basic & Advanced Git Commands: Possibly necessary, Definitely helpful

Image
Git Commands Git: A distributed version-control system. Keep the below diagram in mind. Basic Commands: Usage Based Empty Row PlaceHolder Initializing a git repository git init git remote add origin remote_URL or git clone remote_URL Empty Row PlaceHolder Setting Configurations git config --global user.email "you@emailaddress.com" git config --global user.name "Your Name" Empty Row PlaceHolder Getting Information Empty Row PlaceHolder List All Local branches git branch List All Remote branches ...