Skip to main content

Posts

Showing posts with the label Best movies

Latest Post

Custom Metadata Types vs Custom Settings vs Custom Labels

  Custom Metadata Types vs Custom Settings vs Custom Labels 💬 In plain words:  Three lookalikes: Custom Metadata = configuration that DEPLOYS with your code (best for app settings). Custom Settings = org/user-specific values, changeable at runtime (hierarchy type is great for bypass switches). Custom Labels = translatable text for the UI. 📌 Example:  API endpoint URLs per environment → Custom Metadata (deploys with code, sandbox vs prod values). A 'Bypass_Automation__c' checkbox an admin flips during data load → hierarchy Custom Setting. The word 'Submit' translated to Hindi → Custom Label. 🎬 Real-Life Example: The Fee Table Trapped Inside Code  Skyline charges a different delivery fee per city. Apex needs those rates on every booking. The Old/Bad Way:  if (city == 'Delhi') fee = 50. Else if (city == 'Mumbai') fee = 65. … Every rate change is a code change, a test run, and a deployment. Why this is bad:  Business data is trappe...

Best movies for programmers to watch

 Here are some of the best movies for programmers to watch: The Matrix (1999): This classic science fiction movie is a must-watch for any programmer. It features a number of hacking scenes that are both exciting and realistic. The movie also explores some interesting philosophical concepts about the nature of reality and the role of technology in our lives.  Pirates of Silicon Valley (1999): This biographical drama tells the story of the rise of Steve Jobs and Bill Gates. It offers a fascinating glimpse into the early days of the personal computer revolution.  The Social Network (2010): This award-winning movie tells the story of how Mark Zuckerberg founded Facebook. It offers a behind-the-scenes look at the world of Silicon Valley and the challenges of creating a successful tech company.  Jobs (2013): This biopic tells the story of Steve Jobs' life, from his early days as a college dropout to his rise to become one of the most influential figures in the tec...

Popular Posts

Salesforce LWC Code for Multi-Select Lookup

Introduction: In Salesforce Lightning Web Components (LWC), implementing a multi-select lookup field can enhance the user experience and provide greater flexibility for selecting multiple related records. In this blog post, we will walk through the process of creating a multi-select lookup field using LWC. We will cover the required code snippets and provide step-by-step instructions to help you implement this functionality in your Salesforce org.