RVRakesh Vermainrakeshverma.hashnode.dev·Apr 19, 2024 · 2 min readDynamic Lightning Web Component in SalesforceEnable dynamic component for LWC To get started with dynamic component for lwc, we have to enable it for the salesforce org. Setup -> Search for Session Settings enable Use Lightning Web Security for Lightning web components and Aura components This ...00
RVRakesh Vermainrakeshverma.hashnode.dev·Apr 14, 2024 · 2 min readText Alignment in PythonThere are methods in python on str class which are used to adjust the padding on texts. Ex: hello = 'Hello' print(hello.ljust(21, '-')) print(hello.center(21, '-')) print(hello.rjust(21, '-')) #Expected output for this would be Hello----------------...00
RVRakesh Vermainrakeshverma.hashnode.dev·Apr 7, 2024 · 2 min readWeb app code push to GitHubCreate account on github Create repository on github Folder structure Initial push Create account on github Go to github and sign in or create account if you don't have it. Create repository on github Click on repositories tab and click on new t...00